From 1495ff18b081f18334fdba2d827c47a1c0b965a6 Mon Sep 17 00:00:00 2001 From: Christoph Hansknecht Date: Sun, 24 Nov 2024 20:20:20 +0100 Subject: [PATCH] Extend support for integer literals --- grammar.js | 37 + src/grammar.json | 343 +- src/node-types.json | 62 +- src/parser.c | 525450 ++++++++++++++++++++---------------- test/corpus/literals.txt | 64 +- 5 files changed, 293388 insertions(+), 232568 deletions(-) diff --git a/grammar.js b/grammar.js index 7f83641..2190e82 100644 --- a/grammar.js +++ b/grammar.js @@ -48,6 +48,43 @@ module.exports = grammar(Python, { run_directive: $ => seq("PYTHON", /[^\r\n]+/, $._newline), + c_integer_signedness: $ => + /[uU]/, + + c_integer_type: $ => choice( + seq( + optional($.c_integer_signedness), + /[lL]/, + optional(/[lL]/), + ), + $.c_integer_signedness, + ), + + integer: $ => choice( + seq( + choice("0x", "0X"), + repeat1(/_?[A-Fa-f0-9]+/), + optional($.c_integer_type), + ), + seq( + choice("0o", "0O"), + repeat1(/_?[0-7]+/), + optional($.c_integer_type), + ), + seq( + choice("0b", "0B"), + repeat1(/_?[0-1]+/), + optional($.c_integer_type), + ), + seq( + repeat1(/[0-9]+_?/), + choice( + optional($.c_integer_type), // long numbers + optional(/[jJ]/), // complex numbers + ), + ), + ), + // Cython allows 'cimport' import_statement: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index b368355..d47d7cd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6063,164 +6063,161 @@ "value": "![a-z]" }, "integer": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "0x" - }, - { - "type": "STRING", - "value": "0X" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "_?[A-Fa-f0-9]+" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0X" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[Ll]" - }, - { - "type": "BLANK" - } - ] + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "_?[A-Fa-f0-9]+" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "0o" - }, - { - "type": "STRING", - "value": "0O" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "_?[0-7]+" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "c_integer_type" + }, + { + "type": "BLANK" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[Ll]" - }, - { - "type": "BLANK" - } - ] + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0o" + }, + { + "type": "STRING", + "value": "0O" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "_?[0-7]+" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "0b" - }, - { - "type": "STRING", - "value": "0B" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "_?[0-1]+" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "c_integer_type" + }, + { + "type": "BLANK" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[Ll]" - }, - { - "type": "BLANK" - } - ] + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "STRING", + "value": "0B" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "_?[0-1]+" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]+_?" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "c_integer_type" + }, + { + "type": "BLANK" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[Ll]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[jJ]" - }, - { - "type": "BLANK" - } - ] - } - ] + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" } - ] - } - ] - } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "c_integer_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[jJ]" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] }, "float": { "type": "TOKEN", @@ -6539,6 +6536,52 @@ } ] }, + "c_integer_signedness": { + "type": "PATTERN", + "value": "[uU]" + }, + "c_integer_type": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "c_integer_signedness" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "[lL]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[lL]" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "c_integer_signedness" + } + ] + }, "external_definition": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 751a175..b09e41f 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1011,6 +1011,21 @@ } } }, + { + "type": "c_integer_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "c_integer_signedness", + "named": true + } + ] + } + }, { "type": "c_name", "named": true, @@ -2846,6 +2861,21 @@ "named": true, "fields": {} }, + { + "type": "integer", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "c_integer_type", + "named": true + } + ] + } + }, { "type": "interpolation", "named": true, @@ -4592,6 +4622,30 @@ "type": "/=", "named": false }, + { + "type": "0B", + "named": false + }, + { + "type": "0O", + "named": false + }, + { + "type": "0X", + "named": false + }, + { + "type": "0b", + "named": false + }, + { + "type": "0o", + "named": false + }, + { + "type": "0x", + "named": false + }, { "type": ":", "named": false @@ -4768,6 +4822,10 @@ "type": "by", "named": false }, + { + "type": "c_integer_signedness", + "named": true + }, { "type": "case", "named": false @@ -4936,10 +4994,6 @@ "type": "int", "named": false }, - { - "type": "integer", - "named": true - }, { "type": "is", "named": false diff --git a/src/parser.c b/src/parser.c index 73a4280..daac9be 100644 --- a/src/parser.c +++ b/src/parser.c @@ -4,12 +4,20 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5883 -#define LARGE_STATE_COUNT 1163 -#define SYMBOL_COUNT 406 +#define STATE_COUNT 7000 +#define LARGE_STATE_COUNT 2192 +#define SYMBOL_COUNT 424 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 172 +#define TOKEN_COUNT 184 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 33 #define MAX_ALIAS_SEQUENCE_LENGTH 12 @@ -111,319 +119,337 @@ enum ts_symbol_identifiers { 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_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, + anon_sym_0x = 96, + anon_sym_0X = 97, + aux_sym_integer_token1 = 98, + anon_sym_0o = 99, + anon_sym_0O = 100, + aux_sym_integer_token2 = 101, + anon_sym_0b = 102, + anon_sym_0B = 103, + aux_sym_integer_token3 = 104, + aux_sym_integer_token4 = 105, + aux_sym_integer_token5 = 106, + sym_float = 107, + anon_sym_await = 108, + anon_sym_api = 109, + sym_true = 110, + sym_false = 111, + sym_comment = 112, + sym_line_continuation = 113, + anon_sym_PYTHON = 114, + aux_sym_run_directive_token1 = 115, + sym_c_integer_signedness = 116, + aux_sym_c_integer_type_token1 = 117, + anon_sym_object = 118, + anon_sym_property = 119, + anon_sym_include = 120, + anon_sym_DEF = 121, + anon_sym_IF = 122, + anon_sym_ELIF = 123, + anon_sym_ELSE = 124, + anon_sym_cdef = 125, + anon_sym_cpdef = 126, + anon_sym_extern = 127, + anon_sym_namespace = 128, + anon_sym_nogil = 129, + anon_sym_int = 130, + anon_sym_double = 131, + anon_sym_complex = 132, + anon_sym_operator = 133, + anon_sym_co_await = 134, + anon_sym_BANG = 135, + anon_sym_LT_EQ_GT = 136, + anon_sym_AMP_AMP = 137, + anon_sym_PIPE_PIPE = 138, + anon_sym_PLUS_PLUS = 139, + anon_sym_DASH_DASH = 140, + anon_sym_DASH_GT_STAR = 141, + anon_sym_LPAREN_RPAREN = 142, + anon_sym_LBRACK_RBRACK = 143, + anon_sym_xor = 144, + anon_sym_bitand = 145, + anon_sym_bitor = 146, + anon_sym_compl = 147, + anon_sym_xor_eq = 148, + anon_sym_and_eq = 149, + anon_sym_or_eq = 150, + anon_sym_not_eq = 151, + anon_sym_new = 152, + anon_sym_delete = 153, + anon_sym_DQUOTE_DQUOTE = 154, + anon_sym_signed = 155, + anon_sym_unsigned = 156, + anon_sym_char = 157, + anon_sym_short = 158, + anon_sym_long = 159, + anon_sym_const = 160, + anon_sym_volatile = 161, + anon_sym___stdcall = 162, + anon_sym_ctypedef = 163, + anon_sym_gil = 164, + anon_sym_QMARK = 165, + anon_sym_noexcept = 166, + anon_sym_struct = 167, + anon_sym_union = 168, + anon_sym_enum = 169, + anon_sym_cppclass = 170, + anon_sym_fused = 171, + anon_sym_public = 172, + anon_sym_packed = 173, + anon_sym_inline = 174, + anon_sym_readonly = 175, + anon_sym_sizeof = 176, + sym__newline = 177, + sym__indent = 178, + sym__dedent = 179, + sym_string_start = 180, + sym__string_content = 181, + sym_escape_interpolation = 182, + sym_string_end = 183, + sym_module = 184, + sym__statement = 185, + sym__simple_statements = 186, + sym_import_statement = 187, + sym_import_prefix = 188, + sym_relative_import = 189, + sym_future_import_statement = 190, + sym_import_from_statement = 191, + sym__import_list = 192, + sym_aliased_import = 193, + sym_wildcard_import = 194, + sym_print_statement = 195, + sym_chevron = 196, + sym_assert_statement = 197, + sym_expression_statement = 198, + sym_named_expression = 199, + sym__named_expression_lhs = 200, + sym_return_statement = 201, + sym_delete_statement = 202, + sym_raise_statement = 203, + sym_pass_statement = 204, + sym_break_statement = 205, + sym_continue_statement = 206, + sym_if_statement = 207, + sym_elif_clause = 208, + sym_else_clause = 209, + sym_match_statement = 210, + sym__match_block = 211, + sym_case_clause = 212, + sym_for_statement = 213, + sym_while_statement = 214, + sym_try_statement = 215, + sym_except_clause = 216, + sym_except_group_clause = 217, + sym_finally_clause = 218, + sym_with_statement = 219, + sym_with_clause = 220, + sym_with_item = 221, + sym_function_definition = 222, + sym_parameters = 223, + sym_lambda_parameters = 224, + sym_list_splat = 225, + sym_dictionary_splat = 226, + sym_global_statement = 227, + sym_nonlocal_statement = 228, + sym_exec_statement = 229, + sym_type_alias_statement = 230, + sym_class_definition = 231, + sym_type_parameter = 232, + sym_parenthesized_list_splat = 233, + sym_argument_list = 234, + sym_decorated_definition = 235, + sym_decorator = 236, + sym_block = 237, + sym_expression_list = 238, + sym_dotted_name = 239, + sym_case_pattern = 240, + sym__simple_pattern = 241, + sym__as_pattern = 242, + sym_union_pattern = 243, + sym__list_pattern = 244, + sym__tuple_pattern = 245, + sym_dict_pattern = 246, + sym__key_value_pattern = 247, + sym_keyword_pattern = 248, + sym_splat_pattern = 249, + sym_class_pattern = 250, + sym_complex_pattern = 251, + sym__parameters = 252, + sym__patterns = 253, + sym_parameter = 254, + sym_pattern = 255, + sym_tuple_pattern = 256, + sym_list_pattern = 257, + sym_default_parameter = 258, + sym_typed_default_parameter = 259, + sym_list_splat_pattern = 260, + sym_dictionary_splat_pattern = 261, + sym_as_pattern = 262, + sym__expression_within_for_in_clause = 263, + sym_expression = 264, + sym_primary_expression = 265, + sym_not_operator = 266, + sym_boolean_operator = 267, + sym_binary_operator = 268, + sym_unary_operator = 269, + sym__not_in = 270, + sym__is_not = 271, + sym_comparison_operator = 272, + sym_lambda = 273, + sym_lambda_within_for_in_clause = 274, + sym_assignment = 275, + sym_augmented_assignment = 276, + sym_pattern_list = 277, + sym__right_hand_side = 278, + sym_yield = 279, + sym_attribute = 280, + sym_subscript = 281, + sym_slice = 282, + sym_ellipsis = 283, + sym_call = 284, + sym_typed_parameter = 285, + sym_type = 286, + sym_splat_type = 287, + sym_generic_type = 288, + sym_union_type = 289, + sym_constrained_type = 290, + sym_member_type = 291, + sym_keyword_argument = 292, + sym_list = 293, + sym_set = 294, + sym_tuple = 295, + sym_dictionary = 296, + sym_pair = 297, + sym_list_comprehension = 298, + sym_dictionary_comprehension = 299, + sym_set_comprehension = 300, + sym_generator_expression = 301, + sym__comprehension_clauses = 302, + sym_parenthesized_expression = 303, + sym__collection_elements = 304, + sym_for_in_clause = 305, + sym_if_clause = 306, + sym_conditional_expression = 307, + sym_concatenated_string = 308, + sym_string = 309, + sym_string_content = 310, + sym_interpolation = 311, + sym__f_expression = 312, + sym__not_escape_sequence = 313, + sym_format_specifier = 314, + sym_integer = 315, + sym_none = 316, + sym_await = 317, + sym_positional_separator = 318, + sym_keyword_separator = 319, + sym_run_directive = 320, + sym_c_integer_type = 321, + sym_external_definition = 322, + sym_property_definition = 323, + sym_include_statement = 324, + sym_DEF_statement = 325, + sym_IF_statement = 326, + sym_ELIF_clause = 327, + sym_ELSE_clause = 328, + sym_cdef_statement = 329, + sym_cdef_definition_block = 330, + sym_cvar_def = 331, + sym_cdef_type_declaration = 332, + sym_extern_block = 333, + sym_extern_suite = 334, + sym_ctype_declaration = 335, + sym_cvar_decl = 336, + sym_int_type = 337, + sym_operator_name = 338, + sym__signedness = 339, + sym__longness = 340, + sym_function_pointer_type = 341, + sym_c_type = 342, + sym_c_name = 343, + sym_maybe_typed_name = 344, + sym_c_function_pointer_name = 345, + sym_type_qualifier = 346, + sym_type_index = 347, + sym_memory_view_index = 348, + sym_ctypedef_statement = 349, + sym_c_function_definition = 350, + sym_template_default = 351, + sym_template_param = 352, + sym_template_params = 353, + sym_c_parameters = 354, + sym_c_function_argument_type = 355, + sym__typedargument = 356, + sym__typedargslist = 357, + sym_gil_spec = 358, + sym_exception_value = 359, + sym_struct = 360, + sym_struct_suite = 361, + sym_enum = 362, + sym_cppclass = 363, + sym__cppclass_suite = 364, + sym_fused = 365, + sym_storageclass = 366, + sym_new_expression = 367, + sym_sizeof_expression = 368, + sym_cast_expression = 369, + aux_sym_module_repeat1 = 370, + aux_sym__simple_statements_repeat1 = 371, + aux_sym_import_prefix_repeat1 = 372, + aux_sym__import_list_repeat1 = 373, + aux_sym_print_statement_repeat1 = 374, + aux_sym_assert_statement_repeat1 = 375, + aux_sym_if_statement_repeat1 = 376, + aux_sym_match_statement_repeat1 = 377, + aux_sym__match_block_repeat1 = 378, + aux_sym_case_clause_repeat1 = 379, + aux_sym_try_statement_repeat1 = 380, + aux_sym_try_statement_repeat2 = 381, + aux_sym_with_clause_repeat1 = 382, + aux_sym_global_statement_repeat1 = 383, + aux_sym_class_definition_repeat1 = 384, + aux_sym_class_definition_repeat2 = 385, + aux_sym_type_parameter_repeat1 = 386, + aux_sym_argument_list_repeat1 = 387, + aux_sym_decorated_definition_repeat1 = 388, + aux_sym_union_pattern_repeat1 = 389, + aux_sym_dict_pattern_repeat1 = 390, + aux_sym__parameters_repeat1 = 391, + aux_sym__patterns_repeat1 = 392, + aux_sym_comparison_operator_repeat1 = 393, + aux_sym_subscript_repeat1 = 394, + aux_sym_dictionary_repeat1 = 395, + aux_sym__comprehension_clauses_repeat1 = 396, + aux_sym__collection_elements_repeat1 = 397, + aux_sym_for_in_clause_repeat1 = 398, + aux_sym_concatenated_string_repeat1 = 399, + aux_sym_string_repeat1 = 400, + aux_sym_string_content_repeat1 = 401, + aux_sym_format_specifier_repeat1 = 402, + aux_sym_integer_repeat1 = 403, + aux_sym_integer_repeat2 = 404, + aux_sym_integer_repeat3 = 405, + aux_sym_integer_repeat4 = 406, + aux_sym_external_definition_repeat1 = 407, + aux_sym_IF_statement_repeat1 = 408, + aux_sym_cdef_definition_block_repeat1 = 409, + aux_sym_cvar_def_repeat1 = 410, + aux_sym_extern_suite_repeat1 = 411, + aux_sym_cvar_decl_repeat1 = 412, + aux_sym_cvar_decl_repeat2 = 413, + aux_sym_function_pointer_type_repeat1 = 414, + aux_sym_c_type_repeat1 = 415, + aux_sym_type_qualifier_repeat1 = 416, + aux_sym_type_index_repeat1 = 417, + aux_sym_type_index_repeat2 = 418, + aux_sym_template_params_repeat1 = 419, + aux_sym__typedargslist_repeat1 = 420, + aux_sym_struct_suite_repeat1 = 421, + aux_sym__cppclass_suite_repeat1 = 422, + aux_sym_fused_repeat1 = 423, + alias_sym_as_pattern_target = 424, + alias_sym_format_expression = 425, + anon_alias_sym_longlong = 426, }; static const char * const ts_symbol_names[] = { @@ -523,7 +549,17 @@ static const char * const ts_symbol_names[] = { [anon_sym_BSLASH] = "\\", [aux_sym_format_specifier_token1] = "format_specifier_token1", [sym_type_conversion] = "type_conversion", - [sym_integer] = "integer", + [anon_sym_0x] = "0x", + [anon_sym_0X] = "0X", + [aux_sym_integer_token1] = "integer_token1", + [anon_sym_0o] = "0o", + [anon_sym_0O] = "0O", + [aux_sym_integer_token2] = "integer_token2", + [anon_sym_0b] = "0b", + [anon_sym_0B] = "0B", + [aux_sym_integer_token3] = "integer_token3", + [aux_sym_integer_token4] = "integer_token4", + [aux_sym_integer_token5] = "integer_token5", [sym_float] = "float", [anon_sym_await] = "await", [anon_sym_api] = "api", @@ -533,6 +569,8 @@ static const char * const ts_symbol_names[] = { [sym_line_continuation] = "line_continuation", [anon_sym_PYTHON] = "PYTHON", [aux_sym_run_directive_token1] = "run_directive_token1", + [sym_c_integer_signedness] = "c_integer_signedness", + [aux_sym_c_integer_type_token1] = "c_integer_type_token1", [anon_sym_object] = "object", [anon_sym_property] = "property", [anon_sym_include] = "include", @@ -730,11 +768,13 @@ static const char * const ts_symbol_names[] = { [sym__f_expression] = "_f_expression", [sym__not_escape_sequence] = "_not_escape_sequence", [sym_format_specifier] = "format_specifier", + [sym_integer] = "integer", [sym_none] = "none", [sym_await] = "await", [sym_positional_separator] = "positional_separator", [sym_keyword_separator] = "keyword_separator", [sym_run_directive] = "run_directive", + [sym_c_integer_type] = "c_integer_type", [sym_external_definition] = "external_definition", [sym_property_definition] = "property_definition", [sym_include_statement] = "include_statement", @@ -816,6 +856,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_content_repeat1] = "string_content_repeat1", [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", + [aux_sym_integer_repeat1] = "integer_repeat1", + [aux_sym_integer_repeat2] = "integer_repeat2", + [aux_sym_integer_repeat3] = "integer_repeat3", + [aux_sym_integer_repeat4] = "integer_repeat4", [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", @@ -935,7 +979,17 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BSLASH] = anon_sym_BSLASH, [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, [sym_type_conversion] = sym_type_conversion, - [sym_integer] = sym_integer, + [anon_sym_0x] = anon_sym_0x, + [anon_sym_0X] = anon_sym_0X, + [aux_sym_integer_token1] = aux_sym_integer_token1, + [anon_sym_0o] = anon_sym_0o, + [anon_sym_0O] = anon_sym_0O, + [aux_sym_integer_token2] = aux_sym_integer_token2, + [anon_sym_0b] = anon_sym_0b, + [anon_sym_0B] = anon_sym_0B, + [aux_sym_integer_token3] = aux_sym_integer_token3, + [aux_sym_integer_token4] = aux_sym_integer_token4, + [aux_sym_integer_token5] = aux_sym_integer_token5, [sym_float] = sym_float, [anon_sym_await] = anon_sym_await, [anon_sym_api] = anon_sym_api, @@ -945,6 +999,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_line_continuation] = sym_line_continuation, [anon_sym_PYTHON] = anon_sym_PYTHON, [aux_sym_run_directive_token1] = aux_sym_run_directive_token1, + [sym_c_integer_signedness] = sym_c_integer_signedness, + [aux_sym_c_integer_type_token1] = aux_sym_c_integer_type_token1, [anon_sym_object] = anon_sym_object, [anon_sym_property] = anon_sym_property, [anon_sym_include] = anon_sym_include, @@ -1142,11 +1198,13 @@ static const TSSymbol ts_symbol_map[] = { [sym__f_expression] = sym__f_expression, [sym__not_escape_sequence] = sym__not_escape_sequence, [sym_format_specifier] = sym_format_specifier, + [sym_integer] = sym_integer, [sym_none] = sym_none, [sym_await] = sym_await, [sym_positional_separator] = sym_positional_separator, [sym_keyword_separator] = sym_keyword_separator, [sym_run_directive] = sym_run_directive, + [sym_c_integer_type] = sym_c_integer_type, [sym_external_definition] = sym_external_definition, [sym_property_definition] = sym_property_definition, [sym_include_statement] = sym_include_statement, @@ -1228,6 +1286,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, + [aux_sym_integer_repeat1] = aux_sym_integer_repeat1, + [aux_sym_integer_repeat2] = aux_sym_integer_repeat2, + [aux_sym_integer_repeat3] = aux_sym_integer_repeat3, + [aux_sym_integer_repeat4] = aux_sym_integer_repeat4, [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, @@ -1635,9 +1697,49 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_integer] = { + [anon_sym_0x] = { .visible = true, - .named = true, + .named = false, + }, + [anon_sym_0X] = { + .visible = true, + .named = false, + }, + [aux_sym_integer_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_0o] = { + .visible = true, + .named = false, + }, + [anon_sym_0O] = { + .visible = true, + .named = false, + }, + [aux_sym_integer_token2] = { + .visible = false, + .named = false, + }, + [anon_sym_0b] = { + .visible = true, + .named = false, + }, + [anon_sym_0B] = { + .visible = true, + .named = false, + }, + [aux_sym_integer_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_integer_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_integer_token5] = { + .visible = false, + .named = false, }, [sym_float] = { .visible = true, @@ -1675,6 +1777,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [sym_c_integer_signedness] = { + .visible = true, + .named = true, + }, + [aux_sym_c_integer_type_token1] = { + .visible = false, + .named = false, + }, [anon_sym_object] = { .visible = true, .named = false, @@ -2467,6 +2577,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_integer] = { + .visible = true, + .named = true, + }, [sym_none] = { .visible = true, .named = true, @@ -2487,6 +2601,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_c_integer_type] = { + .visible = true, + .named = true, + }, [sym_external_definition] = { .visible = true, .named = true, @@ -2811,6 +2929,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_integer_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_integer_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_integer_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym_integer_repeat4] = { + .visible = false, + .named = false, + }, [aux_sym_external_definition_repeat1] = { .visible = false, .named = false, @@ -4501,7 +4635,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, + [4] = 4, [5] = 5, [6] = 6, [7] = 7, @@ -4530,7 +4664,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [30] = 30, [31] = 31, [32] = 32, - [33] = 2, + [33] = 33, [34] = 34, [35] = 35, [36] = 36, @@ -4557,7 +4691,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [57] = 57, [58] = 58, [59] = 59, - [60] = 60, + [60] = 2, [61] = 61, [62] = 62, [63] = 63, @@ -4585,7 +4719,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [85] = 85, [86] = 86, [87] = 87, - [88] = 88, + [88] = 3, [89] = 5, [90] = 6, [91] = 7, @@ -4614,1322 +4748,1322 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [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] = 227, - [228] = 228, - [229] = 228, - [230] = 230, - [231] = 231, - [232] = 225, - [233] = 226, - [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] = 244, - [249] = 247, - [250] = 246, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 257, + [117] = 33, + [118] = 34, + [119] = 35, + [120] = 36, + [121] = 37, + [122] = 38, + [123] = 39, + [124] = 40, + [125] = 41, + [126] = 42, + [127] = 43, + [128] = 44, + [129] = 46, + [130] = 47, + [131] = 48, + [132] = 49, + [133] = 50, + [134] = 51, + [135] = 53, + [136] = 54, + [137] = 55, + [138] = 56, + [139] = 57, + [140] = 58, + [141] = 59, + [142] = 4, + [143] = 61, + [144] = 62, + [145] = 63, + [146] = 66, + [147] = 67, + [148] = 68, + [149] = 69, + [150] = 70, + [151] = 71, + [152] = 72, + [153] = 73, + [154] = 74, + [155] = 75, + [156] = 76, + [157] = 77, + [158] = 80, + [159] = 81, + [160] = 82, + [161] = 83, + [162] = 84, + [163] = 86, + [164] = 87, + [165] = 3, + [166] = 9, + [167] = 12, + [168] = 16, + [169] = 17, + [170] = 18, + [171] = 19, + [172] = 20, + [173] = 21, + [174] = 28, + [175] = 29, + [176] = 30, + [177] = 31, + [178] = 32, + [179] = 33, + [180] = 34, + [181] = 35, + [182] = 43, + [183] = 44, + [184] = 46, + [185] = 47, + [186] = 48, + [187] = 49, + [188] = 50, + [189] = 56, + [190] = 57, + [191] = 58, + [192] = 2, + [193] = 61, + [194] = 62, + [195] = 63, + [196] = 70, + [197] = 71, + [198] = 72, + [199] = 73, + [200] = 74, + [201] = 75, + [202] = 76, + [203] = 77, + [204] = 80, + [205] = 81, + [206] = 82, + [207] = 83, + [208] = 84, + [209] = 86, + [210] = 87, + [211] = 3, + [212] = 9, + [213] = 12, + [214] = 16, + [215] = 17, + [216] = 18, + [217] = 19, + [218] = 20, + [219] = 21, + [220] = 28, + [221] = 29, + [222] = 30, + [223] = 31, + [224] = 32, + [225] = 33, + [226] = 34, + [227] = 35, + [228] = 43, + [229] = 44, + [230] = 46, + [231] = 47, + [232] = 48, + [233] = 49, + [234] = 50, + [235] = 56, + [236] = 57, + [237] = 58, + [238] = 2, + [239] = 61, + [240] = 62, + [241] = 63, + [242] = 70, + [243] = 71, + [244] = 72, + [245] = 73, + [246] = 74, + [247] = 75, + [248] = 76, + [249] = 77, + [250] = 80, + [251] = 81, + [252] = 82, + [253] = 83, + [254] = 84, + [255] = 86, + [256] = 87, + [257] = 45, [258] = 258, [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, + [260] = 259, + [261] = 259, + [262] = 259, [263] = 263, [264] = 264, - [265] = 265, + [265] = 259, [266] = 266, - [267] = 267, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, + [267] = 264, + [268] = 259, + [269] = 259, + [270] = 259, + [271] = 259, + [272] = 259, + [273] = 259, [274] = 274, - [275] = 275, + [275] = 274, [276] = 276, - [277] = 277, + [277] = 274, [278] = 278, - [279] = 253, + [279] = 278, [280] = 280, - [281] = 281, - [282] = 282, - [283] = 254, - [284] = 284, - [285] = 285, - [286] = 286, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, + [281] = 276, + [282] = 280, + [283] = 283, + [284] = 283, + [285] = 283, + [286] = 280, + [287] = 278, + [288] = 276, + [289] = 276, + [290] = 280, [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 258, + [292] = 278, + [293] = 291, + [294] = 291, + [295] = 274, + [296] = 283, + [297] = 291, + [298] = 298, [299] = 299, - [300] = 300, - [301] = 256, - [302] = 261, + [300] = 299, + [301] = 301, + [302] = 301, [303] = 303, - [304] = 251, - [305] = 262, + [304] = 298, + [305] = 303, [306] = 306, [307] = 307, - [308] = 267, - [309] = 264, + [308] = 308, + [309] = 309, [310] = 310, - [311] = 271, - [312] = 275, + [311] = 311, + [312] = 312, [313] = 313, - [314] = 266, + [314] = 314, [315] = 315, - [316] = 281, - [317] = 282, + [316] = 316, + [317] = 317, [318] = 318, - [319] = 284, - [320] = 285, - [321] = 289, - [322] = 269, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, [323] = 323, [324] = 324, [325] = 325, [326] = 326, - [327] = 272, - [328] = 306, + [327] = 327, + [328] = 328, [329] = 329, - [330] = 273, - [331] = 310, - [332] = 274, + [330] = 330, + [331] = 331, + [332] = 332, [333] = 333, [334] = 334, - [335] = 315, + [335] = 335, [336] = 336, [337] = 337, - [338] = 323, - [339] = 324, + [338] = 338, + [339] = 339, [340] = 340, - [341] = 329, + [341] = 341, [342] = 342, [343] = 343, [344] = 344, - [345] = 334, + [345] = 345, [346] = 346, - [347] = 280, - [348] = 342, - [349] = 294, - [350] = 325, - [351] = 351, - [352] = 277, - [353] = 278, - [354] = 291, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 312, + [352] = 352, + [353] = 314, + [354] = 318, [355] = 355, - [356] = 303, + [356] = 356, [357] = 357, - [358] = 313, - [359] = 318, - [360] = 276, - [361] = 361, - [362] = 294, - [363] = 300, + [358] = 323, + [359] = 325, + [360] = 360, + [361] = 331, + [362] = 362, + [363] = 340, [364] = 364, - [365] = 307, - [366] = 325, - [367] = 367, + [365] = 365, + [366] = 366, + [367] = 345, [368] = 368, - [369] = 252, - [370] = 257, - [371] = 259, - [372] = 258, - [373] = 373, + [369] = 369, + [370] = 348, + [371] = 307, + [372] = 355, + [373] = 356, [374] = 374, - [375] = 261, + [375] = 308, [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] = 472, - [474] = 474, + [377] = 309, + [378] = 362, + [379] = 364, + [380] = 310, + [381] = 366, + [382] = 368, + [383] = 369, + [384] = 311, + [385] = 313, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 386, + [390] = 390, + [391] = 316, + [392] = 390, + [393] = 317, + [394] = 394, + [395] = 394, + [396] = 396, + [397] = 397, + [398] = 396, + [399] = 399, + [400] = 397, + [401] = 321, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 399, + [407] = 324, + [408] = 329, + [409] = 347, + [410] = 326, + [411] = 306, + [412] = 412, + [413] = 413, + [414] = 402, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 328, + [419] = 338, + [420] = 420, + [421] = 405, + [422] = 344, + [423] = 346, + [424] = 330, + [425] = 412, + [426] = 357, + [427] = 420, + [428] = 360, + [429] = 365, + [430] = 307, + [431] = 308, + [432] = 321, + [433] = 324, + [434] = 328, + [435] = 330, + [436] = 333, + [437] = 335, + [438] = 336, + [439] = 349, + [440] = 350, + [441] = 312, + [442] = 365, + [443] = 323, + [444] = 325, + [445] = 331, + [446] = 348, + [447] = 355, + [448] = 356, + [449] = 362, + [450] = 364, + [451] = 366, + [452] = 368, + [453] = 369, + [454] = 386, + [455] = 390, + [456] = 394, + [457] = 396, + [458] = 397, + [459] = 399, + [460] = 402, + [461] = 405, + [462] = 329, + [463] = 347, + [464] = 306, + [465] = 412, + [466] = 413, + [467] = 415, + [468] = 416, + [469] = 417, + [470] = 338, + [471] = 344, + [472] = 346, + [473] = 357, + [474] = 360, [475] = 475, - [476] = 475, - [477] = 477, - [478] = 478, - [479] = 479, + [476] = 365, + [477] = 307, + [478] = 308, + [479] = 321, [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] = 515, + [482] = 324, + [483] = 483, + [484] = 329, + [485] = 328, + [486] = 341, + [487] = 330, + [488] = 342, + [489] = 347, + [490] = 333, + [491] = 335, + [492] = 336, + [493] = 333, + [494] = 349, + [495] = 350, + [496] = 312, + [497] = 387, + [498] = 318, + [499] = 388, + [500] = 413, + [501] = 323, + [502] = 325, + [503] = 335, + [504] = 336, + [505] = 331, + [506] = 404, + [507] = 348, + [508] = 337, + [509] = 306, + [510] = 355, + [511] = 356, + [512] = 412, + [513] = 413, + [514] = 475, + [515] = 362, + [516] = 364, [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 474, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, + [518] = 366, + [519] = 368, + [520] = 369, + [521] = 480, + [522] = 415, + [523] = 481, + [524] = 386, + [525] = 416, + [526] = 417, + [527] = 390, + [528] = 415, + [529] = 315, + [530] = 394, + [531] = 319, + [532] = 320, + [533] = 396, + [534] = 397, + [535] = 322, + [536] = 399, + [537] = 327, + [538] = 343, + [539] = 332, + [540] = 402, + [541] = 416, + [542] = 338, + [543] = 405, + [544] = 344, + [545] = 346, + [546] = 417, + [547] = 483, + [548] = 357, + [549] = 349, + [550] = 360, + [551] = 352, + [552] = 350, + [553] = 318, [554] = 554, - [555] = 555, + [555] = 554, [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, + [557] = 556, + [558] = 556, + [559] = 556, + [560] = 556, [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, + [562] = 561, + [563] = 561, + [564] = 561, + [565] = 556, + [566] = 561, + [567] = 556, + [568] = 561, + [569] = 561, + [570] = 561, + [571] = 556, + [572] = 561, + [573] = 556, + [574] = 561, + [575] = 556, + [576] = 561, + [577] = 556, [578] = 578, [579] = 579, - [580] = 580, + [580] = 579, [581] = 581, [582] = 582, - [583] = 583, + [583] = 582, [584] = 584, [585] = 585, [586] = 586, [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, + [588] = 587, + [589] = 587, + [590] = 587, + [591] = 587, + [592] = 587, [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 598, + [594] = 587, + [595] = 587, + [596] = 587, + [597] = 585, + [598] = 587, [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 619, + [600] = 587, + [601] = 587, + [602] = 587, + [603] = 587, + [604] = 587, + [605] = 587, + [606] = 587, + [607] = 587, + [608] = 599, + [609] = 585, + [610] = 593, + [611] = 586, + [612] = 599, + [613] = 586, + [614] = 593, + [615] = 586, + [616] = 599, + [617] = 585, + [618] = 593, + [619] = 587, [620] = 620, [621] = 621, - [622] = 622, + [622] = 620, [623] = 623, [624] = 624, - [625] = 625, - [626] = 626, - [627] = 627, - [628] = 628, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, - [634] = 634, - [635] = 635, + [625] = 624, + [626] = 623, + [627] = 623, + [628] = 623, + [629] = 579, + [630] = 623, + [631] = 623, + [632] = 623, + [633] = 623, + [634] = 581, + [635] = 581, [636] = 636, - [637] = 637, - [638] = 638, + [637] = 624, + [638] = 624, [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, + [640] = 579, + [641] = 581, + [642] = 624, + [643] = 636, [644] = 644, [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, + [646] = 624, + [647] = 581, + [648] = 636, + [649] = 581, + [650] = 645, + [651] = 624, + [652] = 624, + [653] = 636, + [654] = 579, + [655] = 624, + [656] = 639, + [657] = 636, + [658] = 624, + [659] = 581, + [660] = 645, + [661] = 579, + [662] = 581, + [663] = 636, + [664] = 581, + [665] = 581, + [666] = 636, + [667] = 636, + [668] = 624, + [669] = 581, + [670] = 636, + [671] = 645, + [672] = 644, + [673] = 645, + [674] = 636, + [675] = 581, + [676] = 645, + [677] = 581, + [678] = 581, + [679] = 624, + [680] = 636, + [681] = 581, + [682] = 636, + [683] = 581, [684] = 684, - [685] = 685, - [686] = 686, + [685] = 684, + [686] = 684, [687] = 687, [688] = 688, - [689] = 689, - [690] = 690, + [689] = 684, + [690] = 687, [691] = 691, [692] = 692, [693] = 693, [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, + [695] = 688, + [696] = 684, + [697] = 687, + [698] = 688, + [699] = 684, + [700] = 687, + [701] = 688, + [702] = 684, + [703] = 687, + [704] = 688, + [705] = 684, + [706] = 687, + [707] = 688, + [708] = 684, + [709] = 688, + [710] = 684, + [711] = 688, + [712] = 684, + [713] = 688, + [714] = 684, + [715] = 687, + [716] = 691, + [717] = 688, + [718] = 687, [719] = 719, [720] = 720, - [721] = 721, + [721] = 720, [722] = 722, - [723] = 723, - [724] = 724, - [725] = 725, - [726] = 726, + [723] = 722, + [724] = 720, + [725] = 719, + [726] = 719, [727] = 727, - [728] = 728, + [728] = 727, [729] = 729, [730] = 730, [731] = 731, - [732] = 474, + [732] = 732, [733] = 733, [734] = 734, [735] = 735, - [736] = 736, - [737] = 737, + [736] = 732, + [737] = 732, [738] = 738, [739] = 739, [740] = 740, - [741] = 517, - [742] = 517, - [743] = 743, - [744] = 740, - [745] = 472, - [746] = 746, - [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] = 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] = 818, - [819] = 819, - [820] = 819, - [821] = 821, - [822] = 822, - [823] = 817, - [824] = 818, - [825] = 821, - [826] = 826, - [827] = 816, - [828] = 821, - [829] = 822, - [830] = 826, - [831] = 818, - [832] = 832, - [833] = 513, - [834] = 834, + [741] = 741, + [742] = 742, + [743] = 732, + [744] = 734, + [745] = 732, + [746] = 732, + [747] = 735, + [748] = 732, + [749] = 733, + [750] = 733, + [751] = 742, + [752] = 752, + [753] = 735, + [754] = 735, + [755] = 742, + [756] = 742, + [757] = 731, + [758] = 742, + [759] = 738, + [760] = 760, + [761] = 761, + [762] = 760, + [763] = 732, + [764] = 735, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 766, + [771] = 771, + [772] = 772, + [773] = 768, + [774] = 769, + [775] = 775, + [776] = 776, + [777] = 768, + [778] = 769, + [779] = 779, + [780] = 766, + [781] = 771, + [782] = 772, + [783] = 783, + [784] = 775, + [785] = 776, + [786] = 768, + [787] = 769, + [788] = 772, + [789] = 766, + [790] = 771, + [791] = 768, + [792] = 792, + [793] = 767, + [794] = 775, + [795] = 776, + [796] = 768, + [797] = 769, + [798] = 769, + [799] = 766, + [800] = 771, + [801] = 775, + [802] = 776, + [803] = 768, + [804] = 769, + [805] = 771, + [806] = 775, + [807] = 776, + [808] = 779, + [809] = 775, + [810] = 776, + [811] = 768, + [812] = 769, + [813] = 783, + [814] = 775, + [815] = 776, + [816] = 768, + [817] = 769, + [818] = 775, + [819] = 776, + [820] = 768, + [821] = 769, + [822] = 775, + [823] = 776, + [824] = 766, + [825] = 771, + [826] = 771, + [827] = 772, + [828] = 766, + [829] = 771, + [830] = 772, + [831] = 766, + [832] = 792, + [833] = 775, + [834] = 776, [835] = 835, - [836] = 832, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 489, + [836] = 768, + [837] = 769, + [838] = 775, + [839] = 776, + [840] = 772, [841] = 841, - [842] = 835, + [842] = 842, [843] = 843, - [844] = 844, - [845] = 839, - [846] = 480, - [847] = 847, + [844] = 729, + [845] = 845, + [846] = 846, + [847] = 841, [848] = 848, [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] = 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, + [851] = 730, + [852] = 849, + [853] = 843, + [854] = 845, + [855] = 850, + [856] = 843, + [857] = 846, + [858] = 858, + [859] = 848, + [860] = 845, + [861] = 849, + [862] = 858, + [863] = 841, + [864] = 850, + [865] = 848, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 869, + [871] = 871, + [872] = 868, + [873] = 869, + [874] = 866, + [875] = 875, + [876] = 869, [877] = 877, - [878] = 878, - [879] = 876, - [880] = 880, - [881] = 881, + [878] = 875, + [879] = 835, + [880] = 875, + [881] = 875, [882] = 882, [883] = 883, [884] = 884, [885] = 885, - [886] = 886, - [887] = 882, - [888] = 878, - [889] = 876, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, + [886] = 835, + [887] = 835, + [888] = 875, + [889] = 889, + [890] = 885, + [891] = 869, + [892] = 884, + [893] = 883, [894] = 894, - [895] = 891, - [896] = 892, - [897] = 890, - [898] = 885, - [899] = 886, - [900] = 882, + [895] = 869, + [896] = 889, + [897] = 877, + [898] = 875, + [899] = 869, + [900] = 867, [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, + [903] = 882, + [904] = 904, + [905] = 902, + [906] = 875, + [907] = 901, + [908] = 877, + [909] = 869, + [910] = 835, + [911] = 875, + [912] = 912, + [913] = 913, + [914] = 914, [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] = 966, - [967] = 963, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 917, + [920] = 916, + [921] = 921, + [922] = 922, + [923] = 921, + [924] = 924, + [925] = 925, + [926] = 915, + [927] = 927, + [928] = 928, + [929] = 921, + [930] = 924, + [931] = 925, + [932] = 924, + [933] = 925, + [934] = 934, + [935] = 904, + [936] = 894, + [937] = 921, + [938] = 924, + [939] = 925, + [940] = 918, + [941] = 934, + [942] = 913, + [943] = 914, + [944] = 921, + [945] = 924, + [946] = 925, + [947] = 921, + [948] = 924, + [949] = 925, + [950] = 921, + [951] = 924, + [952] = 925, + [953] = 921, + [954] = 924, + [955] = 925, + [956] = 921, + [957] = 924, + [958] = 925, + [959] = 921, + [960] = 924, + [961] = 925, + [962] = 921, + [963] = 924, + [964] = 925, + [965] = 921, + [966] = 924, + [967] = 925, [968] = 968, - [969] = 965, - [970] = 966, - [971] = 971, - [972] = 964, - [973] = 965, + [969] = 916, + [970] = 970, + [971] = 917, + [972] = 972, + [973] = 973, [974] = 974, - [975] = 975, - [976] = 964, - [977] = 966, - [978] = 978, - [979] = 975, - [980] = 974, - [981] = 837, - [982] = 963, + [975] = 914, + [976] = 974, + [977] = 904, + [978] = 915, + [979] = 979, + [980] = 980, + [981] = 894, + [982] = 982, [983] = 983, - [984] = 974, - [985] = 968, - [986] = 978, - [987] = 968, - [988] = 971, - [989] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 916, [990] = 990, - [991] = 838, + [991] = 991, [992] = 992, - [993] = 993, - [994] = 994, + [993] = 894, + [994] = 980, [995] = 995, [996] = 996, - [997] = 997, + [997] = 996, [998] = 998, [999] = 999, [1000] = 1000, [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, + [1002] = 904, + [1003] = 974, + [1004] = 904, [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] = 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, + [1006] = 1006, + [1007] = 644, + [1008] = 894, + [1009] = 979, + [1010] = 987, + [1011] = 1011, + [1012] = 918, + [1013] = 917, + [1014] = 980, + [1015] = 996, + [1016] = 1016, + [1017] = 979, + [1018] = 1018, + [1019] = 914, + [1020] = 915, + [1021] = 1021, + [1022] = 1022, + [1023] = 1022, + [1024] = 1021, + [1025] = 970, + [1026] = 972, + [1027] = 986, + [1028] = 988, + [1029] = 918, + [1030] = 914, + [1031] = 915, + [1032] = 918, + [1033] = 916, + [1034] = 999, + [1035] = 1000, + [1036] = 917, + [1037] = 1037, + [1038] = 914, + [1039] = 1005, + [1040] = 915, + [1041] = 1006, + [1042] = 918, + [1043] = 916, + [1044] = 917, + [1045] = 1045, + [1046] = 581, + [1047] = 987, + [1048] = 1048, + [1049] = 982, + [1050] = 982, + [1051] = 904, + [1052] = 982, + [1053] = 982, + [1054] = 982, + [1055] = 982, + [1056] = 982, + [1057] = 982, + [1058] = 982, + [1059] = 982, + [1060] = 982, + [1061] = 990, + [1062] = 984, + [1063] = 894, [1064] = 1064, - [1065] = 529, - [1066] = 522, + [1065] = 904, + [1066] = 894, [1067] = 1067, - [1068] = 1063, - [1069] = 1064, + [1068] = 915, + [1069] = 918, [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1074, - [1075] = 1060, + [1074] = 894, + [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 1063, - [1079] = 1064, - [1080] = 1061, - [1081] = 1073, - [1082] = 523, - [1083] = 526, - [1084] = 1074, + [1078] = 1078, + [1079] = 917, + [1080] = 1080, + [1081] = 918, + [1082] = 1082, + [1083] = 1070, + [1084] = 917, [1085] = 1085, - [1086] = 1086, + [1086] = 914, [1087] = 1087, - [1088] = 518, - [1089] = 527, - [1090] = 1060, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, [1091] = 1091, - [1092] = 1092, - [1093] = 1063, - [1094] = 1064, - [1095] = 520, - [1096] = 1062, + [1092] = 1087, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, [1097] = 1097, - [1098] = 1058, + [1098] = 1098, [1099] = 1099, [1100] = 1100, - [1101] = 1087, - [1102] = 528, + [1101] = 1075, + [1102] = 1102, [1103] = 1103, - [1104] = 1060, + [1104] = 1104, [1105] = 1105, - [1106] = 992, - [1107] = 1063, - [1108] = 1064, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, [1109] = 1109, - [1110] = 1060, + [1110] = 1110, [1111] = 1111, - [1112] = 1112, - [1113] = 1060, - [1114] = 1067, - [1115] = 1099, - [1116] = 1111, - [1117] = 1060, - [1118] = 1076, + [1112] = 916, + [1113] = 1108, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1099, [1119] = 1119, - [1120] = 1063, - [1121] = 1064, + [1120] = 1109, + [1121] = 1100, [1122] = 1122, - [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] = 1063, - [1138] = 1064, - [1139] = 1122, - [1140] = 1140, - [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] = 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, + [1123] = 1104, + [1124] = 1090, + [1125] = 1125, + [1126] = 1102, + [1127] = 1103, + [1128] = 1125, + [1129] = 1076, + [1130] = 1130, + [1131] = 1072, + [1132] = 1132, + [1133] = 1111, + [1134] = 1077, + [1135] = 1105, + [1136] = 581, + [1137] = 1137, + [1138] = 1071, + [1139] = 581, + [1140] = 1119, + [1141] = 1141, + [1142] = 1095, + [1143] = 1096, + [1144] = 1097, + [1145] = 1098, + [1146] = 1093, + [1147] = 1094, + [1148] = 914, + [1149] = 1149, + [1150] = 1141, + [1151] = 1132, + [1152] = 1078, + [1153] = 1085, + [1154] = 1115, + [1155] = 1106, + [1156] = 1107, + [1157] = 1157, + [1158] = 1088, + [1159] = 904, + [1160] = 1160, + [1161] = 1149, + [1162] = 1162, + [1163] = 1082, + [1164] = 1117, + [1165] = 1157, + [1166] = 1160, + [1167] = 915, + [1168] = 1089, + [1169] = 1091, + [1170] = 1110, + [1171] = 1116, + [1172] = 1130, + [1173] = 1162, + [1174] = 1122, + [1175] = 1080, + [1176] = 916, + [1177] = 1114, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, [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] = 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, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1188, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1182, [1221] = 1221, - [1222] = 660, - [1223] = 728, - [1224] = 691, - [1225] = 729, - [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, + [1222] = 1222, + [1223] = 1190, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1234, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1197, + [1244] = 1231, + [1245] = 1238, + [1246] = 1240, + [1247] = 1247, + [1248] = 1248, [1249] = 1249, - [1250] = 587, - [1251] = 1047, - [1252] = 588, - [1253] = 589, - [1254] = 547, + [1250] = 1179, + [1251] = 1251, + [1252] = 1252, + [1253] = 1214, + [1254] = 1254, [1255] = 1255, - [1256] = 548, - [1257] = 590, - [1258] = 992, - [1259] = 1221, - [1260] = 678, - [1261] = 1170, - [1262] = 566, - [1263] = 679, - [1264] = 1264, - [1265] = 674, + [1256] = 1256, + [1257] = 1257, + [1258] = 1182, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1248, + [1265] = 1265, [1266] = 1266, - [1267] = 538, - [1268] = 534, + [1267] = 1251, + [1268] = 1268, [1269] = 1269, - [1270] = 680, + [1270] = 1270, [1271] = 1271, - [1272] = 1195, - [1273] = 672, + [1272] = 1241, + [1273] = 1273, [1274] = 1274, - [1275] = 1170, + [1275] = 1275, [1276] = 1276, - [1277] = 591, - [1278] = 592, - [1279] = 1195, - [1280] = 593, - [1281] = 594, - [1282] = 1221, + [1277] = 1277, + [1278] = 1278, + [1279] = 1279, + [1280] = 1280, + [1281] = 1237, + [1282] = 1282, [1283] = 1283, - [1284] = 567, - [1285] = 532, + [1284] = 1284, + [1285] = 1285, [1286] = 1286, [1287] = 1287, - [1288] = 536, - [1289] = 595, - [1290] = 1243, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, [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, + [1292] = 1292, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1241, + [1300] = 1197, + [1301] = 1231, + [1302] = 1302, + [1303] = 1303, + [1304] = 1304, + [1305] = 1238, + [1306] = 1252, + [1307] = 1307, + [1308] = 1308, + [1309] = 1206, + [1310] = 1310, [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] = 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] = 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, + [1312] = 1312, + [1313] = 1249, + [1314] = 1181, + [1315] = 1179, + [1316] = 1183, + [1317] = 1317, + [1318] = 1184, + [1319] = 1319, + [1320] = 1320, + [1321] = 1214, + [1322] = 1182, + [1323] = 1323, + [1324] = 1189, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1332, + [1333] = 1254, + [1334] = 1334, + [1335] = 1335, + [1336] = 1237, + [1337] = 1337, + [1338] = 1241, + [1339] = 1197, + [1340] = 1231, + [1341] = 1238, + [1342] = 1179, + [1343] = 1182, + [1344] = 1237, + [1345] = 1241, + [1346] = 1197, + [1347] = 1231, + [1348] = 1238, + [1349] = 1249, + [1350] = 1179, + [1351] = 1214, + [1352] = 1182, + [1353] = 1237, + [1354] = 1241, + [1355] = 1197, + [1356] = 1231, + [1357] = 1238, + [1358] = 1247, + [1359] = 1179, + [1360] = 1182, + [1361] = 1237, + [1362] = 1241, + [1363] = 1197, + [1364] = 1231, + [1365] = 1238, + [1366] = 1249, + [1367] = 1179, + [1368] = 1214, + [1369] = 1182, + [1370] = 1237, + [1371] = 1241, + [1372] = 1197, + [1373] = 1231, + [1374] = 1238, + [1375] = 1179, + [1376] = 1182, + [1377] = 1237, + [1378] = 1241, + [1379] = 1197, + [1380] = 1231, + [1381] = 1238, + [1382] = 1179, + [1383] = 1182, + [1384] = 1237, + [1385] = 1241, + [1386] = 1197, + [1387] = 1231, + [1388] = 1238, + [1389] = 1179, + [1390] = 1182, + [1391] = 1237, + [1392] = 1241, + [1393] = 1197, + [1394] = 1231, + [1395] = 1238, + [1396] = 1179, + [1397] = 1182, + [1398] = 1237, + [1399] = 1241, + [1400] = 1197, + [1401] = 1231, + [1402] = 1238, + [1403] = 1179, + [1404] = 1182, + [1405] = 1237, + [1406] = 1241, + [1407] = 1197, + [1408] = 1231, + [1409] = 1238, + [1410] = 1179, + [1411] = 1182, + [1412] = 1237, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1191, [1418] = 1418, [1419] = 1419, - [1420] = 1047, - [1421] = 992, - [1422] = 622, - [1423] = 563, - [1424] = 564, - [1425] = 676, - [1426] = 576, - [1427] = 581, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1260, [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 739, + [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, @@ -5937,36 +6071,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1437] = 1437, [1438] = 1438, [1439] = 1439, - [1440] = 1438, - [1441] = 738, - [1442] = 1442, - [1443] = 1429, - [1444] = 1444, + [1440] = 1241, + [1441] = 1441, + [1442] = 1312, + [1443] = 1197, + [1444] = 1247, [1445] = 1445, [1446] = 1446, [1447] = 1447, - [1448] = 1444, + [1448] = 1231, [1449] = 1449, - [1450] = 1450, + [1450] = 1238, [1451] = 1451, [1452] = 1452, [1453] = 1453, [1454] = 1454, - [1455] = 1455, - [1456] = 1453, - [1457] = 1430, - [1458] = 1431, - [1459] = 1459, + [1455] = 1193, + [1456] = 1249, + [1457] = 1457, + [1458] = 1179, + [1459] = 1194, [1460] = 1460, - [1461] = 735, + [1461] = 1461, [1462] = 1462, [1463] = 1463, - [1464] = 1464, + [1464] = 1195, [1465] = 1465, [1466] = 1466, [1467] = 1467, - [1468] = 1434, - [1469] = 1469, + [1468] = 1468, + [1469] = 1199, [1470] = 1470, [1471] = 1471, [1472] = 1472, @@ -5978,4408 +6112,5525 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1478] = 1478, [1479] = 1479, [1480] = 1480, - [1481] = 1466, - [1482] = 1482, + [1481] = 1481, + [1482] = 1214, [1483] = 1483, [1484] = 1484, - [1485] = 1463, - [1486] = 734, + [1485] = 1485, + [1486] = 1486, [1487] = 1487, [1488] = 1488, - [1489] = 743, + [1489] = 1182, [1490] = 1490, - [1491] = 733, + [1491] = 1491, [1492] = 1492, - [1493] = 1474, + [1493] = 1493, [1494] = 1494, - [1495] = 1467, + [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1442, - [1499] = 746, + [1498] = 1498, + [1499] = 1499, [1500] = 1500, [1501] = 1501, [1502] = 1502, [1503] = 1503, - [1504] = 1435, - [1505] = 1470, - [1506] = 1471, - [1507] = 1488, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, [1508] = 1508, [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1437, - [1515] = 1510, - [1516] = 1516, + [1514] = 1514, + [1515] = 1515, + [1516] = 1237, [1517] = 1517, [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1516, - [1524] = 1518, - [1525] = 1525, - [1526] = 1454, - [1527] = 1455, - [1528] = 1450, - [1529] = 1255, - [1530] = 1530, - [1531] = 1433, - [1532] = 1436, - [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1512, - [1537] = 1537, - [1538] = 1538, - [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] = 1487, - [1552] = 736, - [1553] = 737, - [1554] = 1477, - [1555] = 1452, - [1556] = 1479, - [1557] = 1519, - [1558] = 1558, - [1559] = 1490, - [1560] = 1537, - [1561] = 1482, - [1562] = 1483, - [1563] = 1563, - [1564] = 1446, - [1565] = 1530, - [1566] = 1558, - [1567] = 1533, + [1519] = 1268, + [1520] = 1241, + [1521] = 1197, + [1522] = 1237, + [1523] = 1337, + [1524] = 1524, + [1525] = 1241, + [1526] = 1197, + [1527] = 1231, + [1528] = 1238, + [1529] = 1231, + [1530] = 1238, + [1531] = 1249, + [1532] = 1247, + [1533] = 1179, + [1534] = 1269, + [1535] = 1416, + [1536] = 1328, + [1537] = 1271, + [1538] = 1249, + [1539] = 1214, + [1540] = 1540, + [1541] = 1337, + [1542] = 1237, + [1543] = 1241, + [1544] = 1197, + [1545] = 1231, + [1546] = 1238, + [1547] = 1247, + [1548] = 1179, + [1549] = 1182, + [1550] = 1237, + [1551] = 1241, + [1552] = 1197, + [1553] = 1231, + [1554] = 1238, + [1555] = 1179, + [1556] = 1182, + [1557] = 1273, + [1558] = 1179, + [1559] = 1233, + [1560] = 1415, + [1561] = 1416, + [1562] = 1237, + [1563] = 1257, + [1564] = 1337, + [1565] = 1182, + [1566] = 1274, + [1567] = 1567, [1568] = 1568, - [1569] = 1534, - [1570] = 1459, - [1571] = 1494, - [1572] = 1572, - [1573] = 1497, + [1569] = 1569, + [1570] = 1237, + [1571] = 1241, + [1572] = 1260, + [1573] = 1540, [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] = 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, + [1575] = 1197, + [1576] = 1214, + [1577] = 1574, + [1578] = 1578, + [1579] = 1182, + [1580] = 1580, + [1581] = 1231, + [1582] = 1238, + [1583] = 1249, + [1584] = 1524, + [1585] = 1179, + [1586] = 1214, + [1587] = 1182, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1262, + [1596] = 1263, + [1597] = 1270, + [1598] = 1275, + [1599] = 1237, + [1600] = 1278, + [1601] = 1241, + [1602] = 1197, + [1603] = 1231, + [1604] = 1452, + [1605] = 1454, + [1606] = 1467, + [1607] = 1492, + [1608] = 1511, + [1609] = 1238, + [1610] = 1249, + [1611] = 1179, [1612] = 1612, - [1613] = 1613, - [1614] = 1614, - [1615] = 1609, - [1616] = 1616, + [1613] = 1413, + [1614] = 1214, + [1615] = 1414, + [1616] = 1182, [1617] = 1617, - [1618] = 1618, + [1618] = 1418, [1619] = 1619, [1620] = 1620, - [1621] = 1618, + [1621] = 1621, [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] = 1617, - [1666] = 1666, - [1667] = 1667, - [1668] = 1612, - [1669] = 1613, - [1670] = 1614, - [1671] = 1609, - [1672] = 1616, - [1673] = 1673, - [1674] = 1674, - [1675] = 1620, - [1676] = 1676, - [1677] = 1677, - [1678] = 1678, - [1679] = 1679, - [1680] = 1680, - [1681] = 1664, - [1682] = 1622, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, - [1686] = 1686, - [1687] = 1687, - [1688] = 1688, - [1689] = 1689, - [1690] = 1690, - [1691] = 1691, - [1692] = 1622, - [1693] = 1693, - [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 1666, - [1698] = 1673, - [1699] = 1619, - [1700] = 1700, - [1701] = 1701, - [1702] = 1702, - [1703] = 1674, - [1704] = 1620, - [1705] = 1612, + [1623] = 1623, + [1624] = 1491, + [1625] = 1625, + [1626] = 1222, + [1627] = 1498, + [1628] = 1507, + [1629] = 1567, + [1630] = 1568, + [1631] = 1569, + [1632] = 1594, + [1633] = 1625, + [1634] = 1634, + [1635] = 1635, + [1636] = 1636, + [1637] = 1637, + [1638] = 1214, + [1639] = 1639, + [1640] = 1640, + [1641] = 1420, + [1642] = 1237, + [1643] = 1421, + [1644] = 1241, + [1645] = 1197, + [1646] = 1231, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1332, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, + [1654] = 1201, + [1655] = 1202, + [1656] = 1203, + [1657] = 1204, + [1658] = 1205, + [1659] = 1208, + [1660] = 1209, + [1661] = 1210, + [1662] = 1213, + [1663] = 1216, + [1664] = 1219, + [1665] = 1221, + [1666] = 1249, + [1667] = 1224, + [1668] = 1225, + [1669] = 1227, + [1670] = 1228, + [1671] = 1229, + [1672] = 1232, + [1673] = 1179, + [1674] = 1617, + [1675] = 1466, + [1676] = 1239, + [1677] = 1468, + [1678] = 1237, + [1679] = 1241, + [1680] = 1197, + [1681] = 1231, + [1682] = 1238, + [1683] = 1179, + [1684] = 1182, + [1685] = 1214, + [1686] = 1470, + [1687] = 1182, + [1688] = 1415, + [1689] = 1416, + [1690] = 1494, + [1691] = 1255, + [1692] = 1256, + [1693] = 1259, + [1694] = 1261, + [1695] = 1265, + [1696] = 1496, + [1697] = 1279, + [1698] = 1280, + [1699] = 1282, + [1700] = 1283, + [1701] = 1284, + [1702] = 1634, + [1703] = 1285, + [1704] = 1286, + [1705] = 1635, [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [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, + [1707] = 1288, + [1708] = 1289, + [1709] = 1290, + [1710] = 1415, + [1711] = 1416, + [1712] = 1292, + [1713] = 1293, + [1714] = 1294, + [1715] = 1297, + [1716] = 1298, + [1717] = 1302, + [1718] = 1303, + [1719] = 1719, + [1720] = 1307, + [1721] = 1308, + [1722] = 1310, + [1723] = 1723, + [1724] = 1636, + [1725] = 1509, + [1726] = 1510, + [1727] = 1637, + [1728] = 581, + [1729] = 581, + [1730] = 1514, + [1731] = 1517, + [1732] = 1415, + [1733] = 1326, + [1734] = 1327, + [1735] = 1329, + [1736] = 1330, + [1737] = 1331, + [1738] = 1334, + [1739] = 1739, + [1740] = 1424, + [1741] = 1425, + [1742] = 1426, + [1743] = 1428, + [1744] = 1578, + [1745] = 1429, + [1746] = 1430, + [1747] = 1747, + [1748] = 1446, + [1749] = 1431, + [1750] = 1432, + [1751] = 1433, + [1752] = 1415, + [1753] = 1434, + [1754] = 1435, + [1755] = 1437, + [1756] = 1438, + [1757] = 1439, + [1758] = 1441, + [1759] = 1445, + [1760] = 1447, + [1761] = 1451, + [1762] = 1762, + [1763] = 1415, + [1764] = 1249, + [1765] = 1416, + [1766] = 1460, + [1767] = 1639, + [1768] = 1768, + [1769] = 1461, + [1770] = 1462, + [1771] = 1415, + [1772] = 1465, + [1773] = 1471, + [1774] = 1472, + [1775] = 1473, + [1776] = 1474, + [1777] = 1475, + [1778] = 1182, + [1779] = 1476, + [1780] = 1477, + [1781] = 1518, + [1782] = 1423, + [1783] = 1478, + [1784] = 1479, + [1785] = 1415, + [1786] = 1480, + [1787] = 1481, + [1788] = 1483, + [1789] = 1485, + [1790] = 1486, + [1791] = 1487, + [1792] = 1237, + [1793] = 1490, + [1794] = 1493, + [1795] = 1795, + [1796] = 1241, + [1797] = 1499, + [1798] = 1415, + [1799] = 1500, + [1800] = 1501, + [1801] = 1502, + [1802] = 1503, + [1803] = 1504, + [1804] = 1505, + [1805] = 1197, + [1806] = 1506, + [1807] = 1508, + [1808] = 1231, + [1809] = 1238, + [1810] = 1512, + [1811] = 1415, + [1812] = 1513, + [1813] = 1813, + [1814] = 1814, + [1815] = 1815, + [1816] = 1415, + [1817] = 1415, + [1818] = 1415, + [1819] = 1179, + [1820] = 1415, [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] = 1941, - [1943] = 837, - [1944] = 838, - [1945] = 1945, - [1946] = 1946, - [1947] = 1946, - [1948] = 1945, - [1949] = 838, - [1950] = 837, - [1951] = 1951, - [1952] = 1951, - [1953] = 1953, - [1954] = 1954, - [1955] = 1955, - [1956] = 1956, - [1957] = 1953, - [1958] = 1951, + [1822] = 1415, + [1823] = 1619, + [1824] = 1415, + [1825] = 1237, + [1826] = 1415, + [1827] = 1237, + [1828] = 1415, + [1829] = 1415, + [1830] = 1415, + [1831] = 1415, + [1832] = 1415, + [1833] = 1415, + [1834] = 1415, + [1835] = 1241, + [1836] = 1197, + [1837] = 1231, + [1838] = 1222, + [1839] = 1821, + [1840] = 1719, + [1841] = 1238, + [1842] = 1620, + [1843] = 1843, + [1844] = 1226, + [1845] = 1178, + [1846] = 1815, + [1847] = 1739, + [1848] = 1747, + [1849] = 1304, + [1850] = 1453, + [1851] = 1463, + [1852] = 1515, + [1853] = 1588, + [1854] = 1589, + [1855] = 1207, + [1856] = 1211, + [1857] = 1212, + [1858] = 1217, + [1859] = 1218, + [1860] = 1287, + [1861] = 1291, + [1862] = 1295, + [1863] = 1296, + [1864] = 1436, + [1865] = 1247, + [1866] = 1222, + [1867] = 1179, + [1868] = 1241, + [1869] = 1226, + [1870] = 1739, + [1871] = 1747, + [1872] = 1304, + [1873] = 1453, + [1874] = 1463, + [1875] = 1515, + [1876] = 1588, + [1877] = 1589, + [1878] = 1207, + [1879] = 1211, + [1880] = 1212, + [1881] = 1217, + [1882] = 1218, + [1883] = 1287, + [1884] = 1291, + [1885] = 1295, + [1886] = 1296, + [1887] = 1436, + [1888] = 1621, + [1889] = 1222, + [1890] = 1890, + [1891] = 1226, + [1892] = 1739, + [1893] = 1747, + [1894] = 1304, + [1895] = 1453, + [1896] = 1463, + [1897] = 1515, + [1898] = 1588, + [1899] = 1589, + [1900] = 1207, + [1901] = 1211, + [1902] = 1212, + [1903] = 1217, + [1904] = 1218, + [1905] = 1287, + [1906] = 1291, + [1907] = 1295, + [1908] = 1296, + [1909] = 1436, + [1910] = 1622, + [1911] = 1222, + [1912] = 1197, + [1913] = 1304, + [1914] = 1249, + [1915] = 1222, + [1916] = 1231, + [1917] = 1304, + [1918] = 1082, + [1919] = 1222, + [1920] = 1238, + [1921] = 1179, + [1922] = 1222, + [1923] = 1260, + [1924] = 1222, + [1925] = 1580, + [1926] = 1222, + [1927] = 1185, + [1928] = 1222, + [1929] = 1929, + [1930] = 1222, + [1931] = 1843, + [1932] = 1222, + [1933] = 1222, + [1934] = 1222, + [1935] = 1222, + [1936] = 1222, + [1937] = 1222, + [1938] = 1222, + [1939] = 1222, + [1940] = 1222, + [1941] = 1222, + [1942] = 1222, + [1943] = 1222, + [1944] = 1277, + [1945] = 1180, + [1946] = 1186, + [1947] = 1768, + [1948] = 1647, + [1949] = 1242, + [1950] = 1198, + [1951] = 1247, + [1952] = 1222, + [1953] = 1196, + [1954] = 1249, + [1955] = 644, + [1956] = 1623, + [1957] = 1648, + [1958] = 1649, [1959] = 1959, - [1960] = 1954, - [1961] = 1959, - [1962] = 1959, - [1963] = 1963, + [1960] = 1484, + [1961] = 1890, + [1962] = 1214, + [1963] = 1488, [1964] = 1964, - [1965] = 1964, - [1966] = 1964, - [1967] = 1964, - [1968] = 1964, - [1969] = 1964, - [1970] = 1970, - [1971] = 1971, - [1972] = 1972, - [1973] = 1970, - [1974] = 1974, - [1975] = 1975, - [1976] = 1972, - [1977] = 1977, - [1978] = 1978, - [1979] = 1979, - [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] = 2004, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 2006, - [2015] = 2004, + [1965] = 1612, + [1966] = 1651, + [1967] = 1762, + [1968] = 1311, + [1969] = 1813, + [1970] = 1652, + [1971] = 1230, + [1972] = 1590, + [1973] = 1266, + [1974] = 1237, + [1975] = 1241, + [1976] = 1197, + [1977] = 1231, + [1978] = 1238, + [1979] = 1247, + [1980] = 1723, + [1981] = 1179, + [1982] = 1964, + [1983] = 1182, + [1984] = 1237, + [1985] = 1241, + [1986] = 1197, + [1987] = 1231, + [1988] = 1238, + [1989] = 1179, + [1990] = 1182, + [1991] = 1337, + [1992] = 1415, + [1993] = 1415, + [1994] = 1222, + [1995] = 1222, + [1996] = 1640, + [1997] = 1706, + [1998] = 1653, + [1999] = 1182, + [2000] = 2000, + [2001] = 1317, + [2002] = 1319, + [2003] = 1320, + [2004] = 1237, + [2005] = 1241, + [2006] = 1197, + [2007] = 1231, + [2008] = 1238, + [2009] = 1179, + [2010] = 1182, + [2011] = 1323, + [2012] = 1325, + [2013] = 1415, + [2014] = 1238, + [2015] = 2015, [2016] = 2016, - [2017] = 2012, - [2018] = 2003, - [2019] = 2006, + [2017] = 2017, + [2018] = 2018, + [2019] = 2019, [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, + [2021] = 2021, + [2022] = 2022, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 644, + [2030] = 581, + [2031] = 2031, + [2032] = 2032, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, [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, + [2041] = 2041, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 581, + [2048] = 581, + [2049] = 581, + [2050] = 2050, + [2051] = 2051, + [2052] = 2046, + [2053] = 2053, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2034, + [2059] = 2059, + [2060] = 2060, + [2061] = 2061, + [2062] = 2059, + [2063] = 2063, + [2064] = 2064, + [2065] = 2060, + [2066] = 2066, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 2071, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 2079, + [2080] = 2016, + [2081] = 2025, + [2082] = 2017, + [2083] = 2018, + [2084] = 2019, + [2085] = 2085, + [2086] = 2027, + [2087] = 2087, + [2088] = 2035, + [2089] = 2036, + [2090] = 2038, + [2091] = 2039, + [2092] = 2040, + [2093] = 2041, + [2094] = 2042, + [2095] = 2043, + [2096] = 2045, + [2097] = 2050, + [2098] = 2051, + [2099] = 2053, + [2100] = 2054, + [2101] = 2055, + [2102] = 2061, + [2103] = 2064, + [2104] = 2066, + [2105] = 2068, + [2106] = 2069, + [2107] = 2063, + [2108] = 2108, + [2109] = 2109, + [2110] = 1082, [2111] = 2111, [2112] = 2112, - [2113] = 2112, - [2114] = 2112, + [2113] = 2113, + [2114] = 2114, [2115] = 2115, [2116] = 2116, [2117] = 2117, [2118] = 2118, [2119] = 2119, [2120] = 2120, - [2121] = 2116, - [2122] = 2117, - [2123] = 2115, - [2124] = 2119, - [2125] = 2118, + [2121] = 2121, + [2122] = 2108, + [2123] = 2109, + [2124] = 2124, + [2125] = 2125, [2126] = 2126, - [2127] = 2127, + [2127] = 2111, [2128] = 2128, [2129] = 2129, [2130] = 2130, - [2131] = 2130, - [2132] = 2126, - [2133] = 2133, - [2134] = 2127, - [2135] = 2128, - [2136] = 2129, - [2137] = 2133, + [2131] = 2131, + [2132] = 2112, + [2133] = 2056, + [2134] = 2134, + [2135] = 2135, + [2136] = 2113, + [2137] = 2067, [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, - [2142] = 2142, - [2143] = 2143, - [2144] = 1940, - [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2146, - [2149] = 2130, - [2150] = 2150, + [2139] = 2114, + [2140] = 2115, + [2141] = 2116, + [2142] = 2117, + [2143] = 2020, + [2144] = 2021, + [2145] = 2023, + [2146] = 2024, + [2147] = 2026, + [2148] = 2028, + [2149] = 2118, + [2150] = 2119, [2151] = 2151, [2152] = 2152, - [2153] = 2153, - [2154] = 2154, - [2155] = 2155, - [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] = 2130, - [2169] = 2130, - [2170] = 2130, - [2171] = 2130, - [2172] = 2172, - [2173] = 2173, - [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] = 2143, - [2189] = 2189, - [2190] = 2139, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2194, - [2195] = 2130, - [2196] = 2142, + [2153] = 2031, + [2154] = 2032, + [2155] = 2033, + [2156] = 2156, + [2157] = 2120, + [2158] = 2121, + [2159] = 2037, + [2160] = 2044, + [2161] = 2057, + [2162] = 2070, + [2163] = 644, + [2164] = 644, + [2165] = 2071, + [2166] = 2125, + [2167] = 2126, + [2168] = 2072, + [2169] = 2128, + [2170] = 2073, + [2171] = 2129, + [2172] = 2156, + [2173] = 2130, + [2174] = 2131, + [2175] = 2074, + [2176] = 2075, + [2177] = 2134, + [2178] = 2135, + [2179] = 2015, + [2180] = 2076, + [2181] = 2077, + [2182] = 2085, + [2183] = 2087, + [2184] = 2078, + [2185] = 2138, + [2186] = 2079, + [2187] = 2151, + [2188] = 2152, + [2189] = 2124, + [2190] = 581, + [2191] = 636, + [2192] = 729, + [2193] = 730, + [2194] = 729, + [2195] = 730, + [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2138, + [2199] = 730, + [2200] = 2198, + [2201] = 729, + [2202] = 2202, [2203] = 2203, - [2204] = 2204, - [2205] = 2205, + [2204] = 2197, + [2205] = 2203, [2206] = 2206, - [2207] = 1995, - [2208] = 2002, - [2209] = 2140, + [2207] = 2203, + [2208] = 2197, + [2209] = 2196, [2210] = 2210, - [2211] = 2211, - [2212] = 2212, - [2213] = 2139, - [2214] = 2214, - [2215] = 2215, - [2216] = 2216, + [2211] = 2210, + [2212] = 2210, + [2213] = 2210, + [2214] = 2210, + [2215] = 2210, + [2216] = 2210, [2217] = 2217, - [2218] = 2218, - [2219] = 1985, - [2220] = 1989, + [2218] = 2217, + [2219] = 2219, + [2220] = 2220, [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, + [2222] = 2221, + [2223] = 2221, + [2224] = 2221, + [2225] = 2221, + [2226] = 2221, + [2227] = 2221, + [2228] = 2221, + [2229] = 2221, + [2230] = 2221, + [2231] = 2221, + [2232] = 2232, + [2233] = 2221, [2234] = 2234, [2235] = 2235, - [2236] = 1981, - [2237] = 2237, + [2236] = 2236, + [2237] = 2234, [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, + [2240] = 2234, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2238, + [2245] = 2245, + [2246] = 2235, + [2247] = 2247, + [2248] = 2248, + [2249] = 2249, + [2250] = 2245, + [2251] = 2236, + [2252] = 2239, + [2253] = 2234, + [2254] = 2241, + [2255] = 2242, + [2256] = 2243, + [2257] = 2238, + [2258] = 2245, + [2259] = 2242, + [2260] = 2236, + [2261] = 2236, + [2262] = 2239, + [2263] = 2241, + [2264] = 2239, + [2265] = 2234, + [2266] = 2241, + [2267] = 2242, + [2268] = 2243, + [2269] = 2238, + [2270] = 2245, + [2271] = 2242, + [2272] = 2243, + [2273] = 2238, + [2274] = 2245, + [2275] = 2236, + [2276] = 2236, + [2277] = 2239, + [2278] = 2234, + [2279] = 2234, + [2280] = 2243, + [2281] = 2235, + [2282] = 2247, + [2283] = 2236, + [2284] = 2239, + [2285] = 2249, + [2286] = 2241, + [2287] = 2242, + [2288] = 2243, + [2289] = 2238, + [2290] = 2245, + [2291] = 2241, + [2292] = 2236, + [2293] = 2239, + [2294] = 2241, + [2295] = 2242, + [2296] = 2243, + [2297] = 2238, + [2298] = 2245, + [2299] = 2236, + [2300] = 2239, + [2301] = 2241, + [2302] = 2242, + [2303] = 2243, + [2304] = 2238, + [2305] = 2245, + [2306] = 2242, + [2307] = 2243, + [2308] = 2238, + [2309] = 2235, + [2310] = 2245, + [2311] = 2247, + [2312] = 2238, + [2313] = 2248, + [2314] = 2248, + [2315] = 2243, + [2316] = 2247, + [2317] = 2249, + [2318] = 2239, + [2319] = 2235, + [2320] = 2247, + [2321] = 2247, + [2322] = 2234, + [2323] = 2235, + [2324] = 2247, + [2325] = 2248, + [2326] = 2235, + [2327] = 2247, + [2328] = 2236, + [2329] = 2239, + [2330] = 2235, + [2331] = 2234, + [2332] = 2247, + [2333] = 2241, + [2334] = 2242, + [2335] = 2236, + [2336] = 2239, + [2337] = 2234, + [2338] = 2241, + [2339] = 2242, + [2340] = 2235, + [2341] = 2243, + [2342] = 2247, + [2343] = 2238, + [2344] = 2245, + [2345] = 2243, + [2346] = 2235, + [2347] = 2247, + [2348] = 2235, + [2349] = 2247, + [2350] = 2235, + [2351] = 2247, [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] = 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, + [2353] = 2235, + [2354] = 2235, + [2355] = 2235, + [2356] = 2235, + [2357] = 2235, + [2358] = 2238, + [2359] = 2235, + [2360] = 2235, + [2361] = 2235, + [2362] = 2235, + [2363] = 2235, + [2364] = 2245, + [2365] = 2365, + [2366] = 2236, + [2367] = 2239, + [2368] = 2234, + [2369] = 2241, + [2370] = 2242, + [2371] = 2243, + [2372] = 2238, + [2373] = 2245, + [2374] = 2245, + [2375] = 2241, + [2376] = 2249, + [2377] = 2236, + [2378] = 2239, + [2379] = 2234, + [2380] = 2241, + [2381] = 2242, + [2382] = 2235, + [2383] = 2383, + [2384] = 2383, + [2385] = 2385, + [2386] = 2386, + [2387] = 2386, + [2388] = 2385, + [2389] = 2389, + [2390] = 2390, + [2391] = 2391, + [2392] = 2391, + [2393] = 2393, + [2394] = 2394, + [2395] = 2395, + [2396] = 2396, + [2397] = 2397, + [2398] = 2398, + [2399] = 2399, + [2400] = 2400, + [2401] = 2401, + [2402] = 2402, + [2403] = 2395, + [2404] = 2404, + [2405] = 2402, + [2406] = 2406, + [2407] = 2406, + [2408] = 2394, + [2409] = 2409, + [2410] = 2410, + [2411] = 2411, + [2412] = 2412, + [2413] = 2411, + [2414] = 2411, + [2415] = 2412, + [2416] = 2411, + [2417] = 2417, + [2418] = 2418, + [2419] = 2418, + [2420] = 2418, + [2421] = 2418, + [2422] = 2422, + [2423] = 2423, + [2424] = 2424, + [2425] = 2425, + [2426] = 2426, + [2427] = 2427, + [2428] = 2428, + [2429] = 2423, + [2430] = 2425, + [2431] = 2427, + [2432] = 2424, + [2433] = 2426, + [2434] = 2434, + [2435] = 2435, + [2436] = 2436, + [2437] = 2437, + [2438] = 2438, + [2439] = 2439, + [2440] = 2440, + [2441] = 2441, + [2442] = 2442, + [2443] = 2439, + [2444] = 2435, + [2445] = 2437, + [2446] = 2434, + [2447] = 2442, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2365, + [2452] = 2428, + [2453] = 2453, + [2454] = 2454, + [2455] = 2428, + [2456] = 2428, + [2457] = 2457, + [2458] = 2458, + [2459] = 2428, + [2460] = 2460, + [2461] = 2428, + [2462] = 2462, + [2463] = 2438, + [2464] = 2436, + [2465] = 2440, + [2466] = 2441, + [2467] = 2467, + [2468] = 2462, + [2469] = 2462, + [2470] = 2462, + [2471] = 2438, + [2472] = 2467, + [2473] = 2473, + [2474] = 2462, + [2475] = 2436, + [2476] = 2440, + [2477] = 2477, + [2478] = 2436, + [2479] = 2440, + [2480] = 2441, + [2481] = 2441, + [2482] = 2462, + [2483] = 2440, + [2484] = 2484, + [2485] = 2462, + [2486] = 2449, + [2487] = 2462, + [2488] = 2428, + [2489] = 2462, + [2490] = 2462, + [2491] = 2438, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2462, + [2496] = 2438, + [2497] = 2449, + [2498] = 2448, + [2499] = 2462, + [2500] = 2500, + [2501] = 2501, + [2502] = 2450, + [2503] = 2441, + [2504] = 2462, + [2505] = 2462, + [2506] = 2438, + [2507] = 2436, + [2508] = 2450, + [2509] = 2436, + [2510] = 2510, + [2511] = 2448, + [2512] = 2450, + [2513] = 2440, + [2514] = 2448, + [2515] = 2441, + [2516] = 2462, + [2517] = 2440, + [2518] = 2518, + [2519] = 2462, + [2520] = 2458, + [2521] = 2521, + [2522] = 2462, + [2523] = 2523, + [2524] = 2428, + [2525] = 2525, + [2526] = 2526, + [2527] = 2527, + [2528] = 2528, + [2529] = 2529, + [2530] = 2530, + [2531] = 2531, + [2532] = 2532, + [2533] = 2533, + [2534] = 2534, + [2535] = 2521, + [2536] = 2525, + [2537] = 2526, + [2538] = 2538, + [2539] = 2539, + [2540] = 2518, [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, + [2542] = 2542, + [2543] = 2518, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2527, + [2550] = 2532, + [2551] = 2458, + [2552] = 2436, + [2553] = 2553, + [2554] = 2400, + [2555] = 2555, + [2556] = 2556, + [2557] = 2457, + [2558] = 2401, + [2559] = 2530, + [2560] = 2531, + [2561] = 2441, + [2562] = 2562, + [2563] = 2563, + [2564] = 2564, + [2565] = 2532, + [2566] = 2533, + [2567] = 2534, + [2568] = 2568, + [2569] = 2525, + [2570] = 2526, + [2571] = 2538, + [2572] = 2518, + [2573] = 2438, + [2574] = 2453, + [2575] = 2575, + [2576] = 2530, + [2577] = 2531, + [2578] = 2578, + [2579] = 2579, + [2580] = 2462, + [2581] = 2581, + [2582] = 2582, + [2583] = 2449, + [2584] = 2448, + [2585] = 2585, + [2586] = 2586, + [2587] = 2462, + [2588] = 2462, + [2589] = 2457, + [2590] = 2396, + [2591] = 2450, + [2592] = 2454, + [2593] = 2593, + [2594] = 2532, + [2595] = 2595, + [2596] = 2530, + [2597] = 2531, + [2598] = 2538, + [2599] = 2599, + [2600] = 2600, + [2601] = 2454, + [2602] = 2521, + [2603] = 2454, + [2604] = 2533, + [2605] = 2605, + [2606] = 2606, + [2607] = 2607, + [2608] = 2533, + [2609] = 2534, + [2610] = 2610, + [2611] = 2527, + [2612] = 2534, + [2613] = 2613, + [2614] = 2614, + [2615] = 2449, + [2616] = 2448, + [2617] = 2409, + [2618] = 2449, + [2619] = 2525, + [2620] = 2458, + [2621] = 2526, + [2622] = 2462, + [2623] = 2623, + [2624] = 2393, + [2625] = 2538, + [2626] = 2626, + [2627] = 2450, + [2628] = 2628, + [2629] = 2397, + [2630] = 2399, + [2631] = 2410, + [2632] = 2632, + [2633] = 2398, + [2634] = 2457, + [2635] = 2635, + [2636] = 2636, + [2637] = 2462, + [2638] = 2527, + [2639] = 2639, + [2640] = 2458, + [2641] = 2635, + [2642] = 2642, + [2643] = 2643, + [2644] = 2521, + [2645] = 2527, + [2646] = 2635, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2643, + [2651] = 2651, + [2652] = 2438, + [2653] = 2454, + [2654] = 2649, + [2655] = 2655, + [2656] = 2436, + [2657] = 2651, + [2658] = 2458, + [2659] = 2440, + [2660] = 2648, + [2661] = 2462, + [2662] = 2662, + [2663] = 2663, + [2664] = 2477, + [2665] = 2647, + [2666] = 2521, + [2667] = 2651, + [2668] = 2649, + [2669] = 2655, + [2670] = 2648, + [2671] = 2449, + [2672] = 2521, + [2673] = 2521, + [2674] = 2663, + [2675] = 2636, + [2676] = 2441, + [2677] = 2527, + [2678] = 2462, + [2679] = 2462, + [2680] = 2477, + [2681] = 2655, + [2682] = 2663, + [2683] = 2683, + [2684] = 2527, + [2685] = 2639, + [2686] = 2636, + [2687] = 2457, + [2688] = 2477, + [2689] = 2639, + [2690] = 2642, + [2691] = 2642, + [2692] = 2454, + [2693] = 2462, + [2694] = 2643, + [2695] = 2647, + [2696] = 2448, + [2697] = 2450, + [2698] = 2457, + [2699] = 2699, + [2700] = 2663, + [2701] = 2397, + [2702] = 2399, + [2703] = 2494, + [2704] = 2410, + [2705] = 2636, + [2706] = 2706, + [2707] = 2398, + [2708] = 2448, + [2709] = 2450, + [2710] = 2699, + [2711] = 2711, + [2712] = 2400, + [2713] = 2663, + [2714] = 2636, + [2715] = 2477, + [2716] = 2639, + [2717] = 2642, + [2718] = 2643, + [2719] = 2484, + [2720] = 2720, + [2721] = 2721, + [2722] = 2647, + [2723] = 2648, + [2724] = 2639, + [2725] = 2462, + [2726] = 2642, + [2727] = 2457, + [2728] = 2643, + [2729] = 2647, + [2730] = 2730, + [2731] = 2648, + [2732] = 2500, + [2733] = 2501, + [2734] = 2734, + [2735] = 2734, + [2736] = 2390, + [2737] = 2391, + [2738] = 2706, + [2739] = 2521, + [2740] = 2527, + [2741] = 2521, + [2742] = 2706, + [2743] = 2454, + [2744] = 2492, + [2745] = 2493, + [2746] = 2663, + [2747] = 2636, + [2748] = 2449, + [2749] = 2655, + [2750] = 2639, + [2751] = 2642, + [2752] = 2643, + [2753] = 2647, + [2754] = 2711, + [2755] = 2648, + [2756] = 2494, + [2757] = 2458, + [2758] = 2651, + [2759] = 2396, + [2760] = 2720, + [2761] = 2721, + [2762] = 2699, + [2763] = 2409, + [2764] = 2500, + [2765] = 2730, + [2766] = 2720, + [2767] = 2721, + [2768] = 2501, + [2769] = 2769, + [2770] = 2730, + [2771] = 2510, + [2772] = 2651, + [2773] = 2401, + [2774] = 2484, + [2775] = 2500, + [2776] = 2501, + [2777] = 2462, + [2778] = 2720, + [2779] = 2655, + [2780] = 2721, + [2781] = 2438, + [2782] = 2706, + [2783] = 2649, + [2784] = 2649, + [2785] = 2492, + [2786] = 2493, + [2787] = 2492, + [2788] = 2493, + [2789] = 2651, + [2790] = 2494, + [2791] = 2791, + [2792] = 2792, + [2793] = 2734, + [2794] = 2477, + [2795] = 2795, [2796] = 2796, - [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] = 2833, - [2834] = 2834, - [2835] = 2831, - [2836] = 2836, - [2837] = 2836, - [2838] = 2831, - [2839] = 2836, - [2840] = 2840, - [2841] = 2841, - [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2845, - [2846] = 2846, - [2847] = 2843, - [2848] = 2841, - [2849] = 2844, - [2850] = 2850, - [2851] = 2842, - [2852] = 2852, - [2853] = 2850, + [2797] = 2699, + [2798] = 2711, + [2799] = 2527, + [2800] = 2521, + [2801] = 2663, + [2802] = 2655, + [2803] = 2730, + [2804] = 2636, + [2805] = 2484, + [2806] = 2651, + [2807] = 2649, + [2808] = 2734, + [2809] = 2639, + [2810] = 2642, + [2811] = 2510, + [2812] = 2649, + [2813] = 2643, + [2814] = 2647, + [2815] = 2648, + [2816] = 2655, + [2817] = 2527, + [2818] = 2510, + [2819] = 2393, + [2820] = 2711, + [2821] = 2541, + [2822] = 2399, + [2823] = 2409, + [2824] = 2510, + [2825] = 2484, + [2826] = 2391, + [2827] = 2410, + [2828] = 2578, + [2829] = 2579, + [2830] = 2568, + [2831] = 2575, + [2832] = 2394, + [2833] = 2398, + [2834] = 2626, + [2835] = 2545, + [2836] = 2546, + [2837] = 2628, + [2838] = 2607, + [2839] = 2585, + [2840] = 2791, + [2841] = 2792, + [2842] = 2632, + [2843] = 2599, + [2844] = 2593, + [2845] = 2523, + [2846] = 2462, + [2847] = 2595, + [2848] = 2586, + [2849] = 2606, + [2850] = 2400, + [2851] = 2623, + [2852] = 2595, + [2853] = 2600, [2854] = 2854, - [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] = 738, - [3162] = 746, - [3163] = 737, - [3164] = 735, - [3165] = 736, - [3166] = 739, - [3167] = 3167, - [3168] = 754, - [3169] = 3167, - [3170] = 3160, - [3171] = 3160, - [3172] = 734, - [3173] = 733, - [3174] = 3167, - [3175] = 3167, - [3176] = 3160, - [3177] = 743, - [3178] = 3178, - [3179] = 2216, - [3180] = 3178, - [3181] = 2221, - [3182] = 2166, - [3183] = 3183, - [3184] = 2186, - [3185] = 3183, - [3186] = 2183, - [3187] = 3187, - [3188] = 3183, - [3189] = 2172, - [3190] = 3190, - [3191] = 2142, - [3192] = 2139, - [3193] = 3193, - [3194] = 3194, - [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 3198, - [3199] = 2139, - [3200] = 2139, - [3201] = 3201, - [3202] = 2142, - [3203] = 2139, - [3204] = 2142, - [3205] = 2142, - [3206] = 3206, - [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] = 1983, - [3231] = 1996, - [3232] = 2002, - [3233] = 3233, - [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] = 1995, - [3250] = 2227, - [3251] = 3206, - [3252] = 3248, - [3253] = 3253, - [3254] = 3246, - [3255] = 3255, - [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] = 3271, - [3272] = 2139, - [3273] = 2142, - [3274] = 1999, - [3275] = 1982, - [3276] = 1977, - [3277] = 1983, - [3278] = 3278, - [3279] = 3279, - [3280] = 3266, - [3281] = 3278, - [3282] = 3282, - [3283] = 3255, - [3284] = 3284, - [3285] = 3279, - [3286] = 2634, - [3287] = 3266, - [3288] = 3270, - [3289] = 3278, - [3290] = 3236, - [3291] = 3291, - [3292] = 3292, - [3293] = 3293, - [3294] = 3294, - [3295] = 1999, - [3296] = 1982, - [3297] = 1977, - [3298] = 1983, - [3299] = 3294, - [3300] = 3293, - [3301] = 3301, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 1999, - [3306] = 2154, - [3307] = 2151, - [3308] = 1982, - [3309] = 1977, - [3310] = 2150, - [3311] = 2152, - [3312] = 2145, - [3313] = 2147, - [3314] = 2155, - [3315] = 2157, - [3316] = 2158, - [3317] = 3302, - [3318] = 2163, - [3319] = 1983, - [3320] = 3320, - [3321] = 3301, - [3322] = 3302, - [3323] = 3323, - [3324] = 3302, - [3325] = 3253, - [3326] = 2634, - [3327] = 3294, - [3328] = 3323, - [3329] = 2634, - [3330] = 3294, - [3331] = 3303, - [3332] = 3294, - [3333] = 3294, - [3334] = 3294, - [3335] = 3294, - [3336] = 3294, - [3337] = 3294, - [3338] = 3294, - [3339] = 3294, - [3340] = 3304, - [3341] = 3341, - [3342] = 3342, - [3343] = 3343, - [3344] = 3344, - [3345] = 3284, - [3346] = 3346, - [3347] = 3347, - [3348] = 3341, + [2855] = 2651, + [2856] = 2582, + [2857] = 2409, + [2858] = 2649, + [2859] = 2492, + [2860] = 2860, + [2861] = 2556, + [2862] = 2563, + [2863] = 2398, + [2864] = 2493, + [2865] = 2400, + [2866] = 2605, + [2867] = 2454, + [2868] = 2613, + [2869] = 2555, + [2870] = 2610, + [2871] = 2663, + [2872] = 2636, + [2873] = 2393, + [2874] = 2564, + [2875] = 2655, + [2876] = 2876, + [2877] = 2639, + [2878] = 2642, + [2879] = 2401, + [2880] = 2541, + [2881] = 2528, + [2882] = 2651, + [2883] = 2529, + [2884] = 2643, + [2885] = 2544, + [2886] = 2390, + [2887] = 2649, + [2888] = 2647, + [2889] = 2648, + [2890] = 2599, + [2891] = 2391, + [2892] = 2876, + [2893] = 2623, + [2894] = 2501, + [2895] = 2599, + [2896] = 2391, + [2897] = 2544, + [2898] = 2401, + [2899] = 2568, + [2900] = 2769, + [2901] = 2575, + [2902] = 2607, + [2903] = 2396, + [2904] = 2623, + [2905] = 2492, + [2906] = 2545, + [2907] = 2907, + [2908] = 2477, + [2909] = 2542, + [2910] = 2546, + [2911] = 2547, + [2912] = 2547, + [2913] = 2651, + [2914] = 2548, + [2915] = 2553, + [2916] = 2581, + [2917] = 2655, + [2918] = 2401, + [2919] = 2585, + [2920] = 2539, + [2921] = 2484, + [2922] = 2562, + [2923] = 2586, + [2924] = 2521, + [2925] = 2527, + [2926] = 2539, + [2927] = 2528, + [2928] = 2562, + [2929] = 2493, + [2930] = 2649, + [2931] = 2593, + [2932] = 2500, + [2933] = 2395, + [2934] = 2449, + [2935] = 2607, + [2936] = 2402, + [2937] = 2393, + [2938] = 2606, + [2939] = 2578, + [2940] = 2579, + [2941] = 2556, + [2942] = 2563, + [2943] = 2943, + [2944] = 2582, + [2945] = 2860, + [2946] = 2854, + [2947] = 2626, + [2948] = 2628, + [2949] = 2632, + [2950] = 2581, + [2951] = 2860, + [2952] = 2494, + [2953] = 2593, + [2954] = 2578, + [2955] = 2876, + [2956] = 2595, + [2957] = 2579, + [2958] = 2548, + [2959] = 2510, + [2960] = 2600, + [2961] = 2907, + [2962] = 2406, + [2963] = 2626, + [2964] = 2523, + [2965] = 2628, + [2966] = 2632, + [2967] = 2529, + [2968] = 2555, + [2969] = 2564, + [2970] = 2500, + [2971] = 2544, + [2972] = 2396, + [2973] = 2539, + [2974] = 2523, + [2975] = 2943, + [2976] = 2613, + [2977] = 2397, + [2978] = 2399, + [2979] = 2410, + [2980] = 2458, + [2981] = 2981, + [2982] = 2562, + [2983] = 2541, + [2984] = 2494, + [2985] = 2568, + [2986] = 2542, + [2987] = 2575, + [2988] = 2605, + [2989] = 2791, + [2990] = 2397, + [2991] = 2398, + [2992] = 2545, + [2993] = 2546, + [2994] = 2556, + [2995] = 2547, + [2996] = 2548, + [2997] = 2610, + [2998] = 2399, + [2999] = 2663, + [3000] = 2636, + [3001] = 2639, + [3002] = 2642, + [3003] = 2643, + [3004] = 2410, + [3005] = 2647, + [3006] = 2648, + [3007] = 2563, + [3008] = 2581, + [3009] = 2400, + [3010] = 2585, + [3011] = 2586, + [3012] = 2409, + [3013] = 2606, + [3014] = 2582, + [3015] = 2457, + [3016] = 2553, + [3017] = 2605, + [3018] = 2792, + [3019] = 2501, + [3020] = 2528, + [3021] = 2393, + [3022] = 2555, + [3023] = 2564, + [3024] = 2529, + [3025] = 2553, + [3026] = 2907, + [3027] = 2610, + [3028] = 2613, + [3029] = 2390, + [3030] = 2663, + [3031] = 2390, + [3032] = 2636, + [3033] = 2600, + [3034] = 2639, + [3035] = 3035, + [3036] = 2542, + [3037] = 2655, + [3038] = 2397, + [3039] = 2642, + [3040] = 2643, + [3041] = 2647, + [3042] = 2648, + [3043] = 2943, + [3044] = 3035, + [3045] = 2854, + [3046] = 3035, + [3047] = 2555, + [3048] = 2397, + [3049] = 2399, + [3050] = 2410, + [3051] = 2398, + [3052] = 2400, + [3053] = 2545, + [3054] = 2546, + [3055] = 2394, + [3056] = 2607, + [3057] = 2547, + [3058] = 2548, + [3059] = 2529, + [3060] = 2623, + [3061] = 2595, + [3062] = 2544, + [3063] = 2528, + [3064] = 2581, + [3065] = 2593, + [3066] = 2585, + [3067] = 2586, + [3068] = 2395, + [3069] = 2539, + [3070] = 2606, + [3071] = 2562, + [3072] = 2582, + [3073] = 2402, + [3074] = 2578, + [3075] = 2579, + [3076] = 2404, + [3077] = 2556, + [3078] = 2626, + [3079] = 2628, + [3080] = 2632, + [3081] = 2563, + [3082] = 3082, + [3083] = 3083, + [3084] = 2523, + [3085] = 2605, + [3086] = 2564, + [3087] = 2406, + [3088] = 2610, + [3089] = 2613, + [3090] = 2795, + [3091] = 2796, + [3092] = 2568, + [3093] = 2575, + [3094] = 2545, + [3095] = 2546, + [3096] = 2547, + [3097] = 2548, + [3098] = 2553, + [3099] = 2581, + [3100] = 2585, + [3101] = 2586, + [3102] = 2396, + [3103] = 2541, + [3104] = 2606, + [3105] = 2943, + [3106] = 3035, + [3107] = 2854, + [3108] = 2860, + [3109] = 2876, + [3110] = 2500, + [3111] = 2907, + [3112] = 2501, + [3113] = 2651, + [3114] = 2542, + [3115] = 2649, + [3116] = 2943, + [3117] = 3035, + [3118] = 2854, + [3119] = 2860, + [3120] = 2876, + [3121] = 2907, + [3122] = 3122, + [3123] = 3123, + [3124] = 2582, + [3125] = 2943, + [3126] = 3035, + [3127] = 2854, + [3128] = 2860, + [3129] = 2876, + [3130] = 2907, + [3131] = 2600, + [3132] = 2943, + [3133] = 3035, + [3134] = 2854, + [3135] = 2860, + [3136] = 2876, + [3137] = 2907, + [3138] = 2555, + [3139] = 2564, + [3140] = 3140, + [3141] = 2541, + [3142] = 2542, + [3143] = 3122, + [3144] = 3123, + [3145] = 2492, + [3146] = 2493, + [3147] = 2527, + [3148] = 2521, + [3149] = 2655, + [3150] = 2484, + [3151] = 3122, + [3152] = 3123, + [3153] = 2510, + [3154] = 2396, + [3155] = 2494, + [3156] = 2401, + [3157] = 2663, + [3158] = 2636, + [3159] = 2639, + [3160] = 2642, + [3161] = 2395, + [3162] = 2643, + [3163] = 2402, + [3164] = 2647, + [3165] = 2648, + [3166] = 2406, + [3167] = 2769, + [3168] = 2395, + [3169] = 2394, + [3170] = 2402, + [3171] = 2406, + [3172] = 2394, + [3173] = 2394, + [3174] = 2607, + [3175] = 2623, + [3176] = 2595, + [3177] = 2401, + [3178] = 2599, + [3179] = 2528, + [3180] = 2539, + [3181] = 2401, + [3182] = 2529, + [3183] = 2544, + [3184] = 2562, + [3185] = 2578, + [3186] = 2579, + [3187] = 2409, + [3188] = 3083, + [3189] = 2393, + [3190] = 2397, + [3191] = 2399, + [3192] = 2410, + [3193] = 2398, + [3194] = 2400, + [3195] = 2556, + [3196] = 2563, + [3197] = 2626, + [3198] = 2628, + [3199] = 2632, + [3200] = 2523, + [3201] = 2409, + [3202] = 2605, + [3203] = 2396, + [3204] = 2593, + [3205] = 2610, + [3206] = 2613, + [3207] = 2477, + [3208] = 2395, + [3209] = 3123, + [3210] = 2402, + [3211] = 2553, + [3212] = 2401, + [3213] = 2568, + [3214] = 3122, + [3215] = 3123, + [3216] = 2393, + [3217] = 2575, + [3218] = 2406, + [3219] = 2401, + [3220] = 2600, + [3221] = 2599, + [3222] = 2648, + [3223] = 2400, + [3224] = 2529, + [3225] = 2544, + [3226] = 2593, + [3227] = 2510, + [3228] = 2396, + [3229] = 2607, + [3230] = 2854, + [3231] = 2860, + [3232] = 2623, + [3233] = 2595, + [3234] = 2876, + [3235] = 2907, + [3236] = 2539, + [3237] = 2562, + [3238] = 2492, + [3239] = 2599, + [3240] = 2401, + [3241] = 2494, + [3242] = 2578, + [3243] = 2579, + [3244] = 2626, + [3245] = 2628, + [3246] = 2632, + [3247] = 2523, + [3248] = 2500, + [3249] = 2501, + [3250] = 2404, + [3251] = 2605, + [3252] = 2610, + [3253] = 2655, + [3254] = 2943, + [3255] = 3035, + [3256] = 2854, + [3257] = 2791, + [3258] = 2792, + [3259] = 2860, + [3260] = 2521, + [3261] = 2876, + [3262] = 2907, + [3263] = 2663, + [3264] = 2636, + [3265] = 2639, + [3266] = 2642, + [3267] = 2643, + [3268] = 2647, + [3269] = 2410, + [3270] = 2398, + [3271] = 2791, + [3272] = 2792, + [3273] = 2792, + [3274] = 2493, + [3275] = 2791, + [3276] = 2556, + [3277] = 2563, + [3278] = 2568, + [3279] = 2575, + [3280] = 2943, + [3281] = 2545, + [3282] = 2546, + [3283] = 2547, + [3284] = 2548, + [3285] = 2581, + [3286] = 2585, + [3287] = 2586, + [3288] = 2606, + [3289] = 2582, + [3290] = 2943, + [3291] = 3035, + [3292] = 2854, + [3293] = 2860, + [3294] = 2876, + [3295] = 2555, + [3296] = 2907, + [3297] = 2564, + [3298] = 2541, + [3299] = 2542, + [3300] = 2484, + [3301] = 3035, + [3302] = 2528, + [3303] = 2409, + [3304] = 2553, + [3305] = 2651, + [3306] = 2649, + [3307] = 2393, + [3308] = 2600, + [3309] = 2397, + [3310] = 2399, + [3311] = 2613, + [3312] = 3312, + [3313] = 3312, + [3314] = 2568, + [3315] = 2575, + [3316] = 2545, + [3317] = 2546, + [3318] = 2547, + [3319] = 2548, + [3320] = 2581, + [3321] = 2585, + [3322] = 2586, + [3323] = 2606, + [3324] = 2582, + [3325] = 2555, + [3326] = 2564, + [3327] = 2541, + [3328] = 2542, + [3329] = 2409, + [3330] = 3312, + [3331] = 2528, + [3332] = 2529, + [3333] = 2544, + [3334] = 2593, + [3335] = 2395, + [3336] = 2402, + [3337] = 2553, + [3338] = 3338, + [3339] = 3312, + [3340] = 2393, + [3341] = 2600, + [3342] = 2406, + [3343] = 2397, + [3344] = 2399, + [3345] = 2410, + [3346] = 2398, + [3347] = 2400, + [3348] = 2401, [3349] = 3349, - [3350] = 3350, - [3351] = 3351, - [3352] = 3341, - [3353] = 3353, - [3354] = 3269, - [3355] = 3355, - [3356] = 3350, - [3357] = 3357, - [3358] = 3358, - [3359] = 3359, - [3360] = 3360, - [3361] = 3353, - [3362] = 3362, - [3363] = 3269, - [3364] = 3355, - [3365] = 3357, - [3366] = 3366, - [3367] = 3358, - [3368] = 3368, - [3369] = 3359, - [3370] = 3360, - [3371] = 3371, - [3372] = 3372, - [3373] = 3373, - [3374] = 3341, - [3375] = 3375, - [3376] = 3376, - [3377] = 3377, - [3378] = 3342, - [3379] = 3379, - [3380] = 3380, - [3381] = 3344, - [3382] = 3362, - [3383] = 3343, - [3384] = 3384, - [3385] = 3373, - [3386] = 3341, - [3387] = 3375, - [3388] = 3388, - [3389] = 3389, - [3390] = 3390, - [3391] = 3391, - [3392] = 3344, - [3393] = 3362, - [3394] = 3372, - [3395] = 3373, - [3396] = 3396, - [3397] = 3377, - [3398] = 3375, - [3399] = 3389, - [3400] = 3400, - [3401] = 3396, - [3402] = 3384, - [3403] = 3400, - [3404] = 3404, - [3405] = 3344, - [3406] = 3362, - [3407] = 3404, - [3408] = 3373, - [3409] = 3409, - [3410] = 3375, - [3411] = 3389, - [3412] = 3344, - [3413] = 3362, - [3414] = 3368, - [3415] = 3344, - [3416] = 3362, - [3417] = 3389, - [3418] = 3344, - [3419] = 3362, + [3350] = 2396, + [3351] = 3312, + [3352] = 2394, + [3353] = 2607, + [3354] = 3312, + [3355] = 2409, + [3356] = 2623, + [3357] = 2595, + [3358] = 3312, + [3359] = 2599, + [3360] = 2393, + [3361] = 3312, + [3362] = 2399, + [3363] = 2410, + [3364] = 2398, + [3365] = 2400, + [3366] = 3312, + [3367] = 2396, + [3368] = 3312, + [3369] = 3312, + [3370] = 2539, + [3371] = 2562, + [3372] = 3312, + [3373] = 2404, + [3374] = 3312, + [3375] = 3312, + [3376] = 3082, + [3377] = 3312, + [3378] = 3312, + [3379] = 3312, + [3380] = 3312, + [3381] = 3312, + [3382] = 3312, + [3383] = 3312, + [3384] = 3312, + [3385] = 2556, + [3386] = 2563, + [3387] = 3312, + [3388] = 3312, + [3389] = 3312, + [3390] = 2578, + [3391] = 2579, + [3392] = 3312, + [3393] = 3312, + [3394] = 2626, + [3395] = 2628, + [3396] = 2632, + [3397] = 2523, + [3398] = 2943, + [3399] = 3035, + [3400] = 2854, + [3401] = 2860, + [3402] = 3349, + [3403] = 2876, + [3404] = 2907, + [3405] = 3349, + [3406] = 2401, + [3407] = 2605, + [3408] = 2401, + [3409] = 2610, + [3410] = 2401, + [3411] = 2401, + [3412] = 2613, + [3413] = 3312, + [3414] = 2397, + [3415] = 2943, + [3416] = 3416, + [3417] = 3416, + [3418] = 3416, + [3419] = 3419, [3420] = 3420, - [3421] = 3344, - [3422] = 3362, - [3423] = 3423, - [3424] = 3344, - [3425] = 3362, - [3426] = 3426, - [3427] = 3362, - [3428] = 3267, - [3429] = 3362, - [3430] = 3362, - [3431] = 3362, - [3432] = 3376, - [3433] = 3347, - [3434] = 3362, - [3435] = 3341, - [3436] = 3362, - [3437] = 3362, - [3438] = 3362, - [3439] = 3362, - [3440] = 3362, - [3441] = 3362, - [3442] = 3373, - [3443] = 3375, - [3444] = 3351, - [3445] = 3390, - [3446] = 3371, - [3447] = 3375, - [3448] = 3351, - [3449] = 3390, - [3450] = 3371, - [3451] = 3451, - [3452] = 3320, - [3453] = 3453, - [3454] = 3454, - [3455] = 3320, - [3456] = 3453, - [3457] = 3457, - [3458] = 3391, - [3459] = 3459, + [3421] = 3421, + [3422] = 3035, + [3423] = 2854, + [3424] = 2860, + [3425] = 2876, + [3426] = 3419, + [3427] = 2907, + [3428] = 3416, + [3429] = 3419, + [3430] = 3419, + [3431] = 1102, + [3432] = 1085, + [3433] = 1115, + [3434] = 3434, + [3435] = 3435, + [3436] = 1149, + [3437] = 3437, + [3438] = 1093, + [3439] = 3437, + [3440] = 3437, + [3441] = 1071, + [3442] = 1070, + [3443] = 1094, + [3444] = 3444, + [3445] = 3437, + [3446] = 3446, + [3447] = 3447, + [3448] = 3446, + [3449] = 3435, + [3450] = 3450, + [3451] = 1103, + [3452] = 1104, + [3453] = 917, + [3454] = 1619, + [3455] = 1255, + [3456] = 1256, + [3457] = 1259, + [3458] = 1261, + [3459] = 1275, [3460] = 3460, - [3461] = 3461, - [3462] = 3462, - [3463] = 3253, - [3464] = 3366, - [3465] = 3465, - [3466] = 3388, - [3467] = 3451, - [3468] = 3468, - [3469] = 3469, - [3470] = 2163, - [3471] = 2163, - [3472] = 3346, - [3473] = 3420, - [3474] = 3423, - [3475] = 3475, - [3476] = 2163, + [3461] = 1265, + [3462] = 1488, + [3463] = 1620, + [3464] = 1621, + [3465] = 1425, + [3466] = 1612, + [3467] = 1317, + [3468] = 1622, + [3469] = 1268, + [3470] = 1426, + [3471] = 1428, + [3472] = 3472, + [3473] = 1429, + [3474] = 914, + [3475] = 1269, + [3476] = 1430, [3477] = 3477, - [3478] = 3478, - [3479] = 3479, - [3480] = 3479, - [3481] = 3461, - [3482] = 3482, - [3483] = 3459, - [3484] = 3484, - [3485] = 3469, - [3486] = 3486, - [3487] = 3487, - [3488] = 3347, - [3489] = 3489, - [3490] = 3490, - [3491] = 3491, - [3492] = 3492, - [3493] = 3487, - [3494] = 3494, - [3495] = 3492, - [3496] = 3496, - [3497] = 3484, - [3498] = 3486, - [3499] = 3457, - [3500] = 3457, - [3501] = 3501, - [3502] = 2163, - [3503] = 3489, - [3504] = 3460, - [3505] = 3505, - [3506] = 3491, - [3507] = 3507, - [3508] = 3459, - [3509] = 3509, - [3510] = 3460, - [3511] = 3469, - [3512] = 2163, - [3513] = 3513, - [3514] = 3514, - [3515] = 3515, - [3516] = 3496, - [3517] = 3517, - [3518] = 3517, - [3519] = 3519, - [3520] = 3513, - [3521] = 3494, - [3522] = 3522, - [3523] = 3459, - [3524] = 3460, - [3525] = 2183, - [3526] = 3526, - [3527] = 3527, - [3528] = 3484, - [3529] = 3519, - [3530] = 3530, - [3531] = 3509, - [3532] = 3505, - [3533] = 2221, - [3534] = 3507, - [3535] = 3522, - [3536] = 3469, - [3537] = 3515, - [3538] = 3501, - [3539] = 2216, - [3540] = 3461, - [3541] = 3541, - [3542] = 3541, - [3543] = 3543, - [3544] = 3453, - [3545] = 2186, - [3546] = 3546, - [3547] = 3547, - [3548] = 3547, - [3549] = 3479, - [3550] = 3269, - [3551] = 3551, - [3552] = 3515, - [3553] = 3553, - [3554] = 3554, - [3555] = 3555, - [3556] = 3517, - [3557] = 3557, - [3558] = 3558, - [3559] = 3559, - [3560] = 3320, - [3561] = 3526, - [3562] = 3562, - [3563] = 3563, - [3564] = 3564, - [3565] = 3565, - [3566] = 3566, - [3567] = 3489, - [3568] = 3568, - [3569] = 3569, - [3570] = 3457, - [3571] = 2210, - [3572] = 3572, - [3573] = 3573, - [3574] = 3459, - [3575] = 3459, - [3576] = 3460, - [3577] = 3460, - [3578] = 3486, - [3579] = 3579, - [3580] = 2163, - [3581] = 3514, - [3582] = 3582, - [3583] = 3583, - [3584] = 3547, - [3585] = 3568, - [3586] = 3487, - [3587] = 3492, - [3588] = 3588, - [3589] = 2194, - [3590] = 3491, - [3591] = 3568, - [3592] = 3588, - [3593] = 3573, - [3594] = 3573, - [3595] = 3546, - [3596] = 3596, - [3597] = 3597, - [3598] = 2205, - [3599] = 3546, - [3600] = 3513, - [3601] = 3457, - [3602] = 2227, - [3603] = 3603, - [3604] = 3469, - [3605] = 3469, - [3606] = 3347, - [3607] = 3526, - [3608] = 3608, - [3609] = 3543, - [3610] = 3514, - [3611] = 2235, - [3612] = 3612, - [3613] = 3613, - [3614] = 2214, - [3615] = 3543, - [3616] = 3616, - [3617] = 3617, - [3618] = 3565, - [3619] = 3566, - [3620] = 3620, - [3621] = 3612, - [3622] = 3622, - [3623] = 3579, - [3624] = 3596, - [3625] = 3625, - [3626] = 3608, - [3627] = 3627, - [3628] = 3628, - [3629] = 3629, - [3630] = 3617, - [3631] = 3631, - [3632] = 3541, - [3633] = 3557, - [3634] = 3597, - [3635] = 3559, - [3636] = 3613, - [3637] = 3519, - [3638] = 3564, - [3639] = 3588, - [3640] = 3640, - [3641] = 3641, - [3642] = 3642, - [3643] = 3558, - [3644] = 3644, - [3645] = 3522, - [3646] = 3646, + [3478] = 1431, + [3479] = 1432, + [3480] = 1433, + [3481] = 1434, + [3482] = 1435, + [3483] = 1437, + [3484] = 1438, + [3485] = 1439, + [3486] = 1441, + [3487] = 3460, + [3488] = 1623, + [3489] = 1445, + [3490] = 1447, + [3491] = 915, + [3492] = 1451, + [3493] = 1319, + [3494] = 1460, + [3495] = 1461, + [3496] = 1462, + [3497] = 1465, + [3498] = 1466, + [3499] = 1468, + [3500] = 1470, + [3501] = 1471, + [3502] = 918, + [3503] = 1491, + [3504] = 1472, + [3505] = 1320, + [3506] = 1271, + [3507] = 916, + [3508] = 1473, + [3509] = 1273, + [3510] = 3510, + [3511] = 1274, + [3512] = 1278, + [3513] = 1821, + [3514] = 1219, + [3515] = 1279, + [3516] = 1202, + [3517] = 1762, + [3518] = 1813, + [3519] = 1280, + [3520] = 1282, + [3521] = 1323, + [3522] = 3510, + [3523] = 1283, + [3524] = 1284, + [3525] = 1474, + [3526] = 1475, + [3527] = 1325, + [3528] = 1476, + [3529] = 1477, + [3530] = 1478, + [3531] = 1479, + [3532] = 1480, + [3533] = 1481, + [3534] = 1483, + [3535] = 1485, + [3536] = 1285, + [3537] = 1486, + [3538] = 1487, + [3539] = 1490, + [3540] = 1493, + [3541] = 1494, + [3542] = 3510, + [3543] = 1496, + [3544] = 1499, + [3545] = 1500, + [3546] = 1501, + [3547] = 1502, + [3548] = 1503, + [3549] = 1504, + [3550] = 1505, + [3551] = 1506, + [3552] = 1286, + [3553] = 1288, + [3554] = 1289, + [3555] = 1290, + [3556] = 1292, + [3557] = 1293, + [3558] = 1230, + [3559] = 1266, + [3560] = 1634, + [3561] = 1508, + [3562] = 1640, + [3563] = 1509, + [3564] = 1510, + [3565] = 1890, + [3566] = 1512, + [3567] = 1294, + [3568] = 916, + [3569] = 1185, + [3570] = 1297, + [3571] = 1706, + [3572] = 1196, + [3573] = 1513, + [3574] = 1635, + [3575] = 1328, + [3576] = 1188, + [3577] = 1636, + [3578] = 1298, + [3579] = 1637, + [3580] = 1514, + [3581] = 1203, + [3582] = 1517, + [3583] = 1302, + [3584] = 3584, + [3585] = 1647, + [3586] = 1190, + [3587] = 1648, + [3588] = 1524, + [3589] = 1303, + [3590] = 1649, + [3591] = 3591, + [3592] = 1209, + [3593] = 1234, + [3594] = 1307, + [3595] = 1308, + [3596] = 1310, + [3597] = 1240, + [3598] = 1248, + [3599] = 1423, + [3600] = 1210, + [3601] = 1251, + [3602] = 1578, + [3603] = 1312, + [3604] = 1252, + [3605] = 1254, + [3606] = 1498, + [3607] = 1574, + [3608] = 1446, + [3609] = 1221, + [3610] = 1452, + [3611] = 3584, + [3612] = 1262, + [3613] = 1507, + [3614] = 1454, + [3615] = 3591, + [3616] = 1326, + [3617] = 1327, + [3618] = 1204, + [3619] = 1567, + [3620] = 1651, + [3621] = 1329, + [3622] = 1652, + [3623] = 1330, + [3624] = 1331, + [3625] = 1334, + [3626] = 3477, + [3627] = 1413, + [3628] = 1414, + [3629] = 1540, + [3630] = 3510, + [3631] = 1224, + [3632] = 3510, + [3633] = 1653, + [3634] = 1181, + [3635] = 1580, + [3636] = 1183, + [3637] = 3477, + [3638] = 1213, + [3639] = 1225, + [3640] = 1418, + [3641] = 1178, + [3642] = 1227, + [3643] = 1568, + [3644] = 1205, + [3645] = 1569, + [3646] = 1184, [3647] = 3647, - [3648] = 3546, - [3649] = 3479, - [3650] = 3620, - [3651] = 3622, - [3652] = 3652, - [3653] = 3653, - [3654] = 3654, - [3655] = 3655, - [3656] = 3656, - [3657] = 3628, - [3658] = 3627, - [3659] = 3631, - [3660] = 3660, - [3661] = 3660, - [3662] = 3662, - [3663] = 3608, - [3664] = 3664, - [3665] = 3616, - [3666] = 3461, - [3667] = 3543, - [3668] = 3597, - [3669] = 3453, - [3670] = 3662, - [3671] = 3569, - [3672] = 3641, - [3673] = 3579, - [3674] = 3628, - [3675] = 3642, - [3676] = 3582, - [3677] = 3562, - [3678] = 3655, - [3679] = 3656, - [3680] = 3664, - [3681] = 3681, - [3682] = 3625, - [3683] = 3681, - [3684] = 3553, - [3685] = 3555, - [3686] = 3551, - [3687] = 3687, - [3688] = 3687, - [3689] = 3583, - [3690] = 3628, - [3691] = 3583, - [3692] = 3596, - [3693] = 3628, - [3694] = 3526, - [3695] = 3695, - [3696] = 3628, - [3697] = 3554, - [3698] = 3616, - [3699] = 3628, - [3700] = 3484, - [3701] = 3612, - [3702] = 3628, - [3703] = 3563, - [3704] = 3565, - [3705] = 3654, - [3706] = 3566, - [3707] = 3554, - [3708] = 3647, - [3709] = 3557, - [3710] = 3652, - [3711] = 3559, - [3712] = 3653, - [3713] = 3564, - [3714] = 3613, - [3715] = 3558, - [3716] = 3514, - [3717] = 3569, - [3718] = 3582, - [3719] = 3562, - [3720] = 3563, - [3721] = 3553, - [3722] = 3555, - [3723] = 3695, - [3724] = 3551, - [3725] = 3629, - [3726] = 3726, - [3727] = 3727, - [3728] = 3613, - [3729] = 3729, - [3730] = 3730, - [3731] = 3546, - [3732] = 3729, - [3733] = 3730, - [3734] = 3729, - [3735] = 3726, - [3736] = 3736, - [3737] = 3543, - [3738] = 3738, - [3739] = 3558, - [3740] = 3569, - [3741] = 3582, - [3742] = 3726, - [3743] = 3562, - [3744] = 3553, - [3745] = 3555, - [3746] = 3730, - [3747] = 3551, - [3748] = 3729, - [3749] = 3583, - [3750] = 3547, - [3751] = 3751, - [3752] = 3730, - [3753] = 3596, - [3754] = 3754, - [3755] = 3730, - [3756] = 3730, - [3757] = 3738, - [3758] = 3727, - [3759] = 3729, - [3760] = 3751, - [3761] = 3754, - [3762] = 3762, - [3763] = 3754, - [3764] = 3729, - [3765] = 3754, - [3766] = 3751, - [3767] = 3687, - [3768] = 3526, - [3769] = 3730, - [3770] = 3729, - [3771] = 3751, - [3772] = 3726, - [3773] = 3754, - [3774] = 3730, - [3775] = 3754, - [3776] = 3726, - [3777] = 3730, - [3778] = 3751, - [3779] = 3726, - [3780] = 3727, - [3781] = 3729, - [3782] = 3517, - [3783] = 3557, - [3784] = 3751, - [3785] = 3726, - [3786] = 3786, - [3787] = 3559, - [3788] = 3726, - [3789] = 3754, - [3790] = 3514, - [3791] = 3564, - [3792] = 3554, - [3793] = 3730, - [3794] = 3794, - [3795] = 3616, - [3796] = 3729, - [3797] = 3751, - [3798] = 3730, - [3799] = 3563, - [3800] = 3754, - [3801] = 3565, - [3802] = 3566, - [3803] = 3597, - [3804] = 3729, - [3805] = 3612, - [3806] = 3751, - [3807] = 3515, - [3808] = 3514, - [3809] = 3729, - [3810] = 3730, - [3811] = 3579, - [3812] = 3546, - [3813] = 3513, - [3814] = 3729, - [3815] = 3608, - [3816] = 3526, - [3817] = 3543, - [3818] = 3738, - [3819] = 3491, - [3820] = 2227, - [3821] = 3821, - [3822] = 3640, - [3823] = 3555, - [3824] = 3640, - [3825] = 2235, - [3826] = 2194, - [3827] = 3827, - [3828] = 3646, - [3829] = 3596, - [3830] = 3612, - [3831] = 3551, - [3832] = 2205, - [3833] = 2214, - [3834] = 3612, - [3835] = 3613, - [3836] = 3562, - [3837] = 3613, - [3838] = 3559, - [3839] = 3557, - [3840] = 3579, - [3841] = 3827, - [3842] = 2173, - [3843] = 2237, - [3844] = 3553, - [3845] = 3522, - [3846] = 2222, - [3847] = 2191, - [3848] = 2187, - [3849] = 2189, - [3850] = 3541, - [3851] = 3557, - [3852] = 3551, - [3853] = 3554, - [3854] = 3854, - [3855] = 3559, - [3856] = 3583, - [3857] = 3558, - [3858] = 2227, - [3859] = 3554, - [3860] = 3563, - [3861] = 3597, - [3862] = 3565, - [3863] = 3562, - [3864] = 3608, - [3865] = 3555, - [3866] = 3564, - [3867] = 3563, - [3868] = 3492, - [3869] = 3646, - [3870] = 3616, - [3871] = 3616, - [3872] = 3564, - [3873] = 3608, - [3874] = 3874, - [3875] = 3597, - [3876] = 3579, - [3877] = 2210, - [3878] = 3553, - [3879] = 3558, - [3880] = 3644, - [3881] = 3486, - [3882] = 3519, - [3883] = 3588, - [3884] = 3487, - [3885] = 3565, - [3886] = 3566, - [3887] = 3569, - [3888] = 3888, - [3889] = 3489, - [3890] = 3582, - [3891] = 3583, - [3892] = 3569, - [3893] = 3644, - [3894] = 3582, - [3895] = 3895, - [3896] = 3596, - [3897] = 2235, - [3898] = 2194, - [3899] = 2205, - [3900] = 2214, - [3901] = 2210, - [3902] = 3566, - [3903] = 3903, - [3904] = 3854, - [3905] = 3905, - [3906] = 3905, - [3907] = 2235, - [3908] = 3908, - [3909] = 2194, - [3910] = 2205, - [3911] = 3854, - [3912] = 2214, - [3913] = 3913, - [3914] = 2210, - [3915] = 2227, - [3916] = 3916, - [3917] = 2210, - [3918] = 2210, - [3919] = 3919, - [3920] = 3920, - [3921] = 3921, - [3922] = 3913, - [3923] = 2227, - [3924] = 3924, - [3925] = 3925, - [3926] = 2173, - [3927] = 2237, - [3928] = 2227, - [3929] = 2222, - [3930] = 3930, - [3931] = 2191, - [3932] = 2235, - [3933] = 2187, - [3934] = 2189, - [3935] = 3920, - [3936] = 3921, - [3937] = 3908, - [3938] = 3924, - [3939] = 3939, - [3940] = 3940, - [3941] = 3939, + [3648] = 915, + [3649] = 1467, + [3650] = 1617, + [3651] = 1180, + [3652] = 1186, + [3653] = 1198, + [3654] = 3584, + [3655] = 1233, + [3656] = 3460, + [3657] = 1420, + [3658] = 1421, + [3659] = 3477, + [3660] = 914, + [3661] = 1492, + [3662] = 1189, + [3663] = 1216, + [3664] = 3584, + [3665] = 1594, + [3666] = 918, + [3667] = 1228, + [3668] = 1201, + [3669] = 3510, + [3670] = 3460, + [3671] = 1208, + [3672] = 1257, + [3673] = 1229, + [3674] = 1625, + [3675] = 1424, + [3676] = 1263, + [3677] = 1191, + [3678] = 1193, + [3679] = 1194, + [3680] = 1511, + [3681] = 1232, + [3682] = 917, + [3683] = 1195, + [3684] = 1199, + [3685] = 1270, + [3686] = 1332, + [3687] = 1500, + [3688] = 2057, + [3689] = 1421, + [3690] = 3690, + [3691] = 2494, + [3692] = 1285, + [3693] = 3693, + [3694] = 1209, + [3695] = 1470, + [3696] = 3696, + [3697] = 1233, + [3698] = 1432, + [3699] = 1433, + [3700] = 1248, + [3701] = 1251, + [3702] = 1286, + [3703] = 1288, + [3704] = 1289, + [3705] = 1290, + [3706] = 1292, + [3707] = 1293, + [3708] = 1294, + [3709] = 2070, + [3710] = 1297, + [3711] = 1115, + [3712] = 1203, + [3713] = 1204, + [3714] = 1205, + [3715] = 2085, + [3716] = 3716, + [3717] = 1434, + [3718] = 1435, + [3719] = 3696, + [3720] = 1070, + [3721] = 1437, + [3722] = 1438, + [3723] = 1210, + [3724] = 1471, + [3725] = 1472, + [3726] = 1706, + [3727] = 1473, + [3728] = 3696, + [3729] = 1424, + [3730] = 3690, + [3731] = 1208, + [3732] = 1149, + [3733] = 2015, + [3734] = 2034, + [3735] = 2087, + [3736] = 1474, + [3737] = 1475, + [3738] = 3690, + [3739] = 1578, + [3740] = 1194, + [3741] = 1213, + [3742] = 3690, + [3743] = 1425, + [3744] = 3693, + [3745] = 1071, + [3746] = 1216, + [3747] = 2044, + [3748] = 1476, + [3749] = 1426, + [3750] = 1195, + [3751] = 2151, + [3752] = 1428, + [3753] = 1477, + [3754] = 1478, + [3755] = 1452, + [3756] = 1454, + [3757] = 1467, + [3758] = 1479, + [3759] = 1312, + [3760] = 3696, + [3761] = 1480, + [3762] = 1429, + [3763] = 1085, + [3764] = 1093, + [3765] = 1499, + [3766] = 1219, + [3767] = 1094, + [3768] = 1501, + [3769] = 3769, + [3770] = 1502, + [3771] = 3693, + [3772] = 1446, + [3773] = 2152, + [3774] = 1103, + [3775] = 1498, + [3776] = 1507, + [3777] = 1567, + [3778] = 1568, + [3779] = 1569, + [3780] = 1594, + [3781] = 1625, + [3782] = 1503, + [3783] = 1430, + [3784] = 1202, + [3785] = 1273, + [3786] = 1201, + [3787] = 1274, + [3788] = 3693, + [3789] = 2156, + [3790] = 1279, + [3791] = 1104, + [3792] = 1420, + [3793] = 1102, + [3794] = 1431, + [3795] = 1280, + [3796] = 1512, + [3797] = 1282, + [3798] = 1283, + [3799] = 1284, + [3800] = 2510, + [3801] = 1229, + [3802] = 3802, + [3803] = 1331, + [3804] = 1334, + [3805] = 1821, + [3806] = 3806, + [3807] = 1890, + [3808] = 1185, + [3809] = 1196, + [3810] = 1188, + [3811] = 1190, + [3812] = 1234, + [3813] = 1240, + [3814] = 1252, + [3815] = 1254, + [3816] = 1221, + [3817] = 1224, + [3818] = 1181, + [3819] = 1183, + [3820] = 1184, + [3821] = 1189, + [3822] = 1191, + [3823] = 1225, + [3824] = 1193, + [3825] = 1227, + [3826] = 1228, + [3827] = 1232, + [3828] = 1199, + [3829] = 1255, + [3830] = 1439, + [3831] = 1268, + [3832] = 1269, + [3833] = 3806, + [3834] = 1271, + [3835] = 1278, + [3836] = 1180, + [3837] = 1186, + [3838] = 1198, + [3839] = 3806, + [3840] = 1441, + [3841] = 1445, + [3842] = 1447, + [3843] = 1451, + [3844] = 1460, + [3845] = 1413, + [3846] = 1414, + [3847] = 1418, + [3848] = 3848, + [3849] = 1466, + [3850] = 1468, + [3851] = 1461, + [3852] = 1462, + [3853] = 1494, + [3854] = 1496, + [3855] = 1509, + [3856] = 1510, + [3857] = 1514, + [3858] = 1517, + [3859] = 1465, + [3860] = 1488, + [3861] = 1653, + [3862] = 1762, + [3863] = 1813, + [3864] = 1230, + [3865] = 1266, + [3866] = 1640, + [3867] = 1256, + [3868] = 1524, + [3869] = 1259, + [3870] = 1261, + [3871] = 1265, + [3872] = 1298, + [3873] = 1302, + [3874] = 1303, + [3875] = 1307, + [3876] = 1308, + [3877] = 1481, + [3878] = 3878, + [3879] = 1483, + [3880] = 1485, + [3881] = 1486, + [3882] = 1487, + [3883] = 1490, + [3884] = 1493, + [3885] = 1178, + [3886] = 3806, + [3887] = 1310, + [3888] = 1326, + [3889] = 1327, + [3890] = 1504, + [3891] = 1505, + [3892] = 1257, + [3893] = 1317, + [3894] = 1506, + [3895] = 1540, + [3896] = 1574, + [3897] = 1508, + [3898] = 1319, + [3899] = 1320, + [3900] = 1323, + [3901] = 1325, + [3902] = 1328, + [3903] = 1332, + [3904] = 1329, + [3905] = 1580, + [3906] = 1262, + [3907] = 1263, + [3908] = 1270, + [3909] = 1275, + [3910] = 1330, + [3911] = 1513, + [3912] = 1423, + [3913] = 1492, + [3914] = 1511, + [3915] = 1617, + [3916] = 1619, + [3917] = 1620, + [3918] = 1621, + [3919] = 1622, + [3920] = 1623, + [3921] = 1491, + [3922] = 1634, + [3923] = 1635, + [3924] = 1636, + [3925] = 1637, + [3926] = 1647, + [3927] = 1648, + [3928] = 1649, + [3929] = 1651, + [3930] = 1652, + [3931] = 1612, + [3932] = 2087, + [3933] = 2015, + [3934] = 2070, + [3935] = 2085, + [3936] = 2151, + [3937] = 2152, + [3938] = 2044, + [3939] = 2034, + [3940] = 2057, + [3941] = 2156, [3942] = 3942, - [3943] = 3916, - [3944] = 3944, - [3945] = 3940, - [3946] = 3946, - [3947] = 3905, - [3948] = 2183, - [3949] = 2194, - [3950] = 3950, - [3951] = 3946, - [3952] = 3930, - [3953] = 3930, - [3954] = 2205, - [3955] = 3920, - [3956] = 3921, - [3957] = 3957, - [3958] = 2214, - [3959] = 2221, - [3960] = 3919, - [3961] = 3687, - [3962] = 3924, - [3963] = 3939, - [3964] = 3944, - [3965] = 3942, - [3966] = 3646, - [3967] = 3916, - [3968] = 3944, - [3969] = 2235, - [3970] = 2216, - [3971] = 2194, - [3972] = 2205, - [3973] = 2186, - [3974] = 3644, - [3975] = 3942, - [3976] = 2214, - [3977] = 3940, - [3978] = 3640, - [3979] = 3946, - [3980] = 3957, - [3981] = 3981, - [3982] = 3982, - [3983] = 3925, - [3984] = 2194, - [3985] = 2173, - [3986] = 2237, - [3987] = 2222, - [3988] = 2191, - [3989] = 3989, - [3990] = 3990, - [3991] = 3991, - [3992] = 2187, - [3993] = 2189, - [3994] = 3994, - [3995] = 2227, + [3943] = 2438, + [3944] = 3942, + [3945] = 3942, + [3946] = 2593, + [3947] = 3942, + [3948] = 3948, + [3949] = 3444, + [3950] = 3948, + [3951] = 2595, + [3952] = 2610, + [3953] = 2605, + [3954] = 3954, + [3955] = 3955, + [3956] = 3956, + [3957] = 2449, + [3958] = 3958, + [3959] = 2527, + [3960] = 2521, + [3961] = 3961, + [3962] = 2494, + [3963] = 2510, + [3964] = 3769, + [3965] = 3965, + [3966] = 2521, + [3967] = 2521, + [3968] = 2527, + [3969] = 2527, + [3970] = 2527, + [3971] = 2527, + [3972] = 2521, + [3973] = 2521, + [3974] = 2400, + [3975] = 2527, + [3976] = 2477, + [3977] = 2409, + [3978] = 2395, + [3979] = 2521, + [3980] = 2402, + [3981] = 2406, + [3982] = 2393, + [3983] = 2397, + [3984] = 2399, + [3985] = 2410, + [3986] = 2398, + [3987] = 2396, + [3988] = 2394, + [3989] = 2521, + [3990] = 2521, + [3991] = 2527, + [3992] = 2396, + [3993] = 2521, + [3994] = 2527, + [3995] = 3995, [3996] = 3996, - [3997] = 3997, - [3998] = 3998, - [3999] = 3999, - [4000] = 4000, - [4001] = 3982, - [4002] = 2210, + [3997] = 2527, + [3998] = 2401, + [3999] = 2401, + [4000] = 3082, + [4001] = 3035, + [4002] = 4002, [4003] = 4003, - [4004] = 3997, - [4005] = 4003, - [4006] = 4006, - [4007] = 3991, - [4008] = 3925, - [4009] = 3997, - [4010] = 3998, - [4011] = 3997, - [4012] = 3997, - [4013] = 4013, - [4014] = 3997, + [4004] = 4004, + [4005] = 4005, + [4006] = 2396, + [4007] = 4007, + [4008] = 4008, + [4009] = 4009, + [4010] = 2521, + [4011] = 2943, + [4012] = 4009, + [4013] = 2854, + [4014] = 2860, [4015] = 4015, - [4016] = 4016, - [4017] = 3997, - [4018] = 4018, - [4019] = 3982, - [4020] = 4020, - [4021] = 4015, - [4022] = 3997, - [4023] = 4023, - [4024] = 4024, - [4025] = 3997, - [4026] = 3997, - [4027] = 3997, - [4028] = 4003, - [4029] = 4023, + [4016] = 2527, + [4017] = 4007, + [4018] = 2907, + [4019] = 4019, + [4020] = 3995, + [4021] = 4021, + [4022] = 4004, + [4023] = 3996, + [4024] = 2553, + [4025] = 4003, + [4026] = 4026, + [4027] = 4015, + [4028] = 4019, + [4029] = 4026, [4030] = 4030, - [4031] = 4015, - [4032] = 4032, - [4033] = 3997, - [4034] = 4023, - [4035] = 4035, - [4036] = 4036, + [4031] = 2600, + [4032] = 2401, + [4033] = 4002, + [4034] = 2876, + [4035] = 3082, + [4036] = 4030, [4037] = 4037, - [4038] = 3989, - [4039] = 3994, - [4040] = 4006, + [4038] = 4038, + [4039] = 2527, + [4040] = 4040, [4041] = 4041, - [4042] = 4000, - [4043] = 4043, - [4044] = 3981, - [4045] = 2235, - [4046] = 2194, - [4047] = 2205, - [4048] = 2214, - [4049] = 4035, - [4050] = 3989, - [4051] = 4013, - [4052] = 4052, - [4053] = 4052, - [4054] = 4054, - [4055] = 3990, - [4056] = 3888, - [4057] = 3991, - [4058] = 4058, + [4042] = 4042, + [4043] = 2402, + [4044] = 2406, + [4045] = 4045, + [4046] = 2521, + [4047] = 4037, + [4048] = 4048, + [4049] = 4045, + [4050] = 4050, + [4051] = 4051, + [4052] = 4037, + [4053] = 4051, + [4054] = 4045, + [4055] = 4021, + [4056] = 2394, + [4057] = 4057, + [4058] = 4045, [4059] = 4059, - [4060] = 3998, - [4061] = 3990, - [4062] = 3999, - [4063] = 2205, - [4064] = 3903, - [4065] = 4035, - [4066] = 2210, - [4067] = 2235, - [4068] = 4052, - [4069] = 3999, + [4060] = 4060, + [4061] = 2395, + [4062] = 4037, + [4063] = 4057, + [4064] = 4064, + [4065] = 4064, + [4066] = 2521, + [4067] = 3082, + [4068] = 4068, + [4069] = 2527, [4070] = 4070, - [4071] = 4059, - [4072] = 3854, - [4073] = 4073, - [4074] = 2227, - [4075] = 4075, - [4076] = 3925, - [4077] = 4077, - [4078] = 4013, - [4079] = 4018, - [4080] = 2235, - [4081] = 2194, - [4082] = 2205, - [4083] = 2214, - [4084] = 2210, - [4085] = 2227, - [4086] = 4086, - [4087] = 2214, - [4088] = 4032, - [4089] = 4059, - [4090] = 4075, - [4091] = 4091, - [4092] = 4092, - [4093] = 4093, - [4094] = 3895, - [4095] = 4095, - [4096] = 4096, - [4097] = 4097, - [4098] = 4098, - [4099] = 4099, - [4100] = 4100, - [4101] = 4101, - [4102] = 3821, - [4103] = 4096, - [4104] = 4104, - [4105] = 4105, - [4106] = 3895, - [4107] = 4099, - [4108] = 4108, - [4109] = 4092, - [4110] = 4091, - [4111] = 4093, - [4112] = 4101, + [4071] = 4003, + [4072] = 4070, + [4073] = 2477, + [4074] = 4074, + [4075] = 2649, + [4076] = 2394, + [4077] = 4068, + [4078] = 2663, + [4079] = 4070, + [4080] = 4080, + [4081] = 4070, + [4082] = 4070, + [4083] = 4070, + [4084] = 4070, + [4085] = 2636, + [4086] = 4070, + [4087] = 4070, + [4088] = 2406, + [4089] = 4089, + [4090] = 2639, + [4091] = 4089, + [4092] = 4068, + [4093] = 4070, + [4094] = 2642, + [4095] = 2643, + [4096] = 2395, + [4097] = 2402, + [4098] = 2406, + [4099] = 2647, + [4100] = 2648, + [4101] = 2395, + [4102] = 2402, + [4103] = 3082, + [4104] = 4068, + [4105] = 4074, + [4106] = 4080, + [4107] = 4107, + [4108] = 4070, + [4109] = 2651, + [4110] = 2394, + [4111] = 4107, + [4112] = 4070, [4113] = 4113, [4114] = 4114, - [4115] = 4096, - [4116] = 4116, + [4115] = 4115, + [4116] = 4040, [4117] = 4117, [4118] = 4118, [4119] = 4119, - [4120] = 4101, + [4120] = 4120, [4121] = 4121, [4122] = 4122, [4123] = 4123, - [4124] = 4092, + [4124] = 4050, [4125] = 4125, - [4126] = 4093, - [4127] = 4099, - [4128] = 4096, + [4126] = 4126, + [4127] = 4127, + [4128] = 4120, [4129] = 4129, [4130] = 4130, [4131] = 4131, - [4132] = 4101, - [4133] = 4133, - [4134] = 4134, - [4135] = 3903, - [4136] = 4136, - [4137] = 4137, - [4138] = 4096, - [4139] = 4139, - [4140] = 4118, - [4141] = 4101, - [4142] = 4096, - [4143] = 4096, - [4144] = 4123, - [4145] = 4101, - [4146] = 4095, - [4147] = 4147, - [4148] = 4137, - [4149] = 4149, - [4150] = 4101, - [4151] = 4149, - [4152] = 4130, - [4153] = 4153, - [4154] = 3821, + [4132] = 4132, + [4133] = 4120, + [4134] = 4117, + [4135] = 4118, + [4136] = 4118, + [4137] = 4119, + [4138] = 4120, + [4139] = 4120, + [4140] = 4123, + [4141] = 4117, + [4142] = 4125, + [4143] = 4113, + [4144] = 4144, + [4145] = 4145, + [4146] = 4117, + [4147] = 4118, + [4148] = 4148, + [4149] = 4119, + [4150] = 4150, + [4151] = 4151, + [4152] = 4123, + [4153] = 4125, + [4154] = 4154, [4155] = 4155, - [4156] = 4101, + [4156] = 4156, [4157] = 4157, - [4158] = 4158, + [4158] = 4126, [4159] = 4159, - [4160] = 4100, + [4160] = 4159, [4161] = 4161, - [4162] = 4101, - [4163] = 2166, - [4164] = 3821, + [4162] = 4162, + [4163] = 4117, + [4164] = 4118, [4165] = 4165, [4166] = 4166, - [4167] = 3888, - [4168] = 4168, - [4169] = 4114, - [4170] = 4170, - [4171] = 4170, - [4172] = 4108, - [4173] = 4119, - [4174] = 4125, - [4175] = 4131, - [4176] = 4176, - [4177] = 4177, - [4178] = 4178, + [4167] = 4167, + [4168] = 4125, + [4169] = 4169, + [4170] = 4117, + [4171] = 4171, + [4172] = 4117, + [4173] = 4118, + [4174] = 4117, + [4175] = 4118, + [4176] = 4145, + [4177] = 4117, + [4178] = 4118, [4179] = 4179, - [4180] = 4180, - [4181] = 2172, - [4182] = 3895, - [4183] = 4139, - [4184] = 4184, - [4185] = 4104, - [4186] = 4186, - [4187] = 4030, - [4188] = 4105, - [4189] = 4179, - [4190] = 4186, - [4191] = 4113, - [4192] = 4101, - [4193] = 3888, - [4194] = 4194, - [4195] = 4101, - [4196] = 4131, - [4197] = 4197, - [4198] = 4194, - [4199] = 4097, - [4200] = 4130, - [4201] = 4091, - [4202] = 4116, - [4203] = 4117, - [4204] = 4121, - [4205] = 4122, - [4206] = 4118, + [4180] = 4171, + [4181] = 4117, + [4182] = 4118, + [4183] = 4183, + [4184] = 4119, + [4185] = 4117, + [4186] = 4118, + [4187] = 4187, + [4188] = 4117, + [4189] = 4118, + [4190] = 4190, + [4191] = 4130, + [4192] = 4117, + [4193] = 4118, + [4194] = 4118, + [4195] = 4118, + [4196] = 4162, + [4197] = 4118, + [4198] = 4118, + [4199] = 4118, + [4200] = 4118, + [4201] = 4127, + [4202] = 4120, + [4203] = 4203, + [4204] = 4119, + [4205] = 4205, + [4206] = 4125, [4207] = 4123, - [4208] = 4096, - [4209] = 4030, - [4210] = 4159, - [4211] = 4161, - [4212] = 4212, - [4213] = 3269, - [4214] = 4129, - [4215] = 4184, - [4216] = 4133, - [4217] = 4134, - [4218] = 4136, - [4219] = 4168, - [4220] = 4114, - [4221] = 4170, - [4222] = 4108, - [4223] = 4186, - [4224] = 4119, - [4225] = 4139, - [4226] = 4095, - [4227] = 4137, - [4228] = 4149, - [4229] = 4153, - [4230] = 4179, - [4231] = 4197, - [4232] = 4165, + [4208] = 4157, + [4209] = 4156, + [4210] = 4150, + [4211] = 4154, + [4212] = 4203, + [4213] = 4155, + [4214] = 4144, + [4215] = 4165, + [4216] = 4121, + [4217] = 4123, + [4218] = 4157, + [4219] = 4156, + [4220] = 4150, + [4221] = 4161, + [4222] = 4157, + [4223] = 4156, + [4224] = 4150, + [4225] = 4118, + [4226] = 4123, + [4227] = 4151, + [4228] = 4187, + [4229] = 4122, + [4230] = 4118, + [4231] = 2477, + [4232] = 4129, [4233] = 4233, - [4234] = 4176, - [4235] = 4177, - [4236] = 4236, - [4237] = 4178, - [4238] = 4104, - [4239] = 3888, + [4234] = 4234, + [4235] = 4183, + [4236] = 4190, + [4237] = 4167, + [4238] = 4238, + [4239] = 4239, [4240] = 4240, - [4241] = 4159, - [4242] = 4030, - [4243] = 4161, - [4244] = 4165, - [4245] = 4176, - [4246] = 4177, - [4247] = 4178, - [4248] = 4129, - [4249] = 4133, - [4250] = 4134, - [4251] = 4197, - [4252] = 4097, - [4253] = 4136, - [4254] = 4116, - [4255] = 4117, - [4256] = 4121, - [4257] = 4122, - [4258] = 4157, - [4259] = 3854, - [4260] = 4157, - [4261] = 4104, - [4262] = 4168, - [4263] = 4153, - [4264] = 4264, - [4265] = 4166, - [4266] = 4266, - [4267] = 4267, + [4241] = 4241, + [4242] = 4003, + [4243] = 2477, + [4244] = 4244, + [4245] = 4233, + [4246] = 4246, + [4247] = 4179, + [4248] = 4132, + [4249] = 2477, + [4250] = 4250, + [4251] = 4251, + [4252] = 4241, + [4253] = 4131, + [4254] = 4254, + [4255] = 4255, + [4256] = 4256, + [4257] = 4238, + [4258] = 4258, + [4259] = 4259, + [4260] = 4260, + [4261] = 4261, + [4262] = 4262, + [4263] = 4263, + [4264] = 4239, + [4265] = 4246, + [4266] = 4260, + [4267] = 4127, [4268] = 4268, [4269] = 4269, - [4270] = 4270, - [4271] = 4271, + [4270] = 2477, + [4271] = 4269, [4272] = 4272, - [4273] = 4273, - [4274] = 4274, + [4273] = 4148, + [4274] = 4255, [4275] = 4275, - [4276] = 4266, - [4277] = 4277, - [4278] = 4278, - [4279] = 4279, - [4280] = 4280, - [4281] = 4281, - [4282] = 4282, - [4283] = 4086, - [4284] = 4284, - [4285] = 4285, - [4286] = 4180, - [4287] = 4287, - [4288] = 2235, - [4289] = 4274, + [4276] = 4276, + [4277] = 4255, + [4278] = 2477, + [4279] = 4239, + [4280] = 4260, + [4281] = 4246, + [4282] = 4269, + [4283] = 4283, + [4284] = 4148, + [4285] = 2593, + [4286] = 4148, + [4287] = 4263, + [4288] = 4288, + [4289] = 4289, [4290] = 4290, [4291] = 4291, - [4292] = 4292, - [4293] = 2194, - [4294] = 2205, - [4295] = 4266, - [4296] = 4267, - [4297] = 3903, - [4298] = 4298, - [4299] = 4086, - [4300] = 4292, - [4301] = 2214, - [4302] = 4302, - [4303] = 4303, - [4304] = 4304, - [4305] = 4277, - [4306] = 4298, - [4307] = 4307, - [4308] = 4304, - [4309] = 4309, - [4310] = 4309, - [4311] = 4311, - [4312] = 4267, - [4313] = 3821, - [4314] = 4314, - [4315] = 4166, - [4316] = 4086, - [4317] = 4279, - [4318] = 4318, - [4319] = 4319, - [4320] = 4320, - [4321] = 4321, - [4322] = 2210, - [4323] = 3320, + [4292] = 4283, + [4293] = 4293, + [4294] = 4294, + [4295] = 4295, + [4296] = 4296, + [4297] = 4291, + [4298] = 4276, + [4299] = 4299, + [4300] = 4300, + [4301] = 4238, + [4302] = 2610, + [4303] = 2605, + [4304] = 2595, + [4305] = 4305, + [4306] = 4255, + [4307] = 4300, + [4308] = 4148, + [4309] = 4268, + [4310] = 4289, + [4311] = 4260, + [4312] = 4312, + [4313] = 4241, + [4314] = 4299, + [4315] = 4290, + [4316] = 4259, + [4317] = 4272, + [4318] = 4246, + [4319] = 4275, + [4320] = 4288, + [4321] = 4261, + [4322] = 4233, + [4323] = 4323, [4324] = 4324, [4325] = 4325, - [4326] = 4272, + [4326] = 4294, [4327] = 4327, - [4328] = 4303, - [4329] = 4282, - [4330] = 4277, + [4328] = 4312, + [4329] = 4324, + [4330] = 4330, [4331] = 4331, - [4332] = 4332, - [4333] = 4333, + [4332] = 2477, + [4333] = 4296, [4334] = 4334, - [4335] = 4335, - [4336] = 4336, - [4337] = 4319, + [4335] = 4246, + [4336] = 4260, + [4337] = 4337, [4338] = 4338, - [4339] = 4086, - [4340] = 4309, - [4341] = 2227, - [4342] = 3267, - [4343] = 3903, - [4344] = 4319, - [4345] = 4180, - [4346] = 4346, - [4347] = 4291, - [4348] = 4348, + [4339] = 4339, + [4340] = 4340, + [4341] = 4341, + [4342] = 4342, + [4343] = 4259, + [4344] = 4344, + [4345] = 4259, + [4346] = 4295, + [4347] = 4347, + [4348] = 4324, [4349] = 4349, - [4350] = 4350, - [4351] = 4292, - [4352] = 4314, + [4350] = 4295, + [4351] = 4347, + [4352] = 4290, [4353] = 4353, - [4354] = 3895, - [4355] = 4355, - [4356] = 4287, + [4354] = 4330, + [4355] = 4330, + [4356] = 4356, [4357] = 4357, [4358] = 4358, - [4359] = 4298, + [4359] = 4359, [4360] = 4360, - [4361] = 4361, - [4362] = 4338, - [4363] = 4325, - [4364] = 3284, - [4365] = 4365, + [4361] = 4296, + [4362] = 4362, + [4363] = 4289, + [4364] = 4259, + [4365] = 4294, [4366] = 4366, - [4367] = 4325, - [4368] = 4348, - [4369] = 4369, - [4370] = 4370, - [4371] = 4331, - [4372] = 4372, + [4367] = 4367, + [4368] = 4283, + [4369] = 4255, + [4370] = 4239, + [4371] = 4371, + [4372] = 4239, [4373] = 4373, - [4374] = 4331, - [4375] = 4375, - [4376] = 4180, - [4377] = 4348, + [4374] = 4374, + [4375] = 4312, + [4376] = 4376, + [4377] = 4377, [4378] = 4378, - [4379] = 4379, - [4380] = 4380, - [4381] = 4381, - [4382] = 4382, - [4383] = 4366, - [4384] = 4274, - [4385] = 4166, - [4386] = 2235, - [4387] = 2194, - [4388] = 2205, - [4389] = 2214, - [4390] = 2210, - [4391] = 2227, + [4379] = 4299, + [4380] = 4324, + [4381] = 4255, + [4382] = 4246, + [4383] = 4260, + [4384] = 4376, + [4385] = 4377, + [4386] = 4386, + [4387] = 4374, + [4388] = 4330, + [4389] = 4386, + [4390] = 4127, + [4391] = 4331, [4392] = 4392, - [4393] = 4058, + [4393] = 4367, [4394] = 4338, - [4395] = 4395, - [4396] = 4287, - [4397] = 4397, - [4398] = 4398, - [4399] = 4304, - [4400] = 3903, + [4395] = 4362, + [4396] = 4339, + [4397] = 4295, + [4398] = 4296, + [4399] = 4399, + [4400] = 4327, [4401] = 4401, [4402] = 4402, - [4403] = 4403, - [4404] = 4403, + [4403] = 4392, + [4404] = 4404, [4405] = 4405, - [4406] = 4311, - [4407] = 4407, + [4406] = 4406, + [4407] = 4344, [4408] = 4408, - [4409] = 4409, - [4410] = 4410, - [4411] = 4411, + [4409] = 4349, + [4410] = 4376, + [4411] = 4377, [4412] = 4412, - [4413] = 4278, + [4413] = 4413, [4414] = 4414, - [4415] = 4302, - [4416] = 4403, - [4417] = 4417, + [4415] = 4325, + [4416] = 4416, + [4417] = 4371, [4418] = 4418, - [4419] = 4419, - [4420] = 4414, - [4421] = 4421, - [4422] = 4333, - [4423] = 4334, - [4424] = 4403, - [4425] = 4425, - [4426] = 4403, - [4427] = 4427, - [4428] = 4428, - [4429] = 4429, - [4430] = 4320, - [4431] = 4335, - [4432] = 4432, - [4433] = 4365, - [4434] = 4434, - [4435] = 4403, - [4436] = 4403, - [4437] = 4437, - [4438] = 4438, - [4439] = 3293, + [4419] = 4312, + [4420] = 4341, + [4421] = 4269, + [4422] = 4422, + [4423] = 4413, + [4424] = 4342, + [4425] = 4401, + [4426] = 4426, + [4427] = 4416, + [4428] = 4357, + [4429] = 4404, + [4430] = 4430, + [4431] = 4353, + [4432] = 4360, + [4433] = 4356, + [4434] = 4358, + [4435] = 4362, + [4436] = 4291, + [4437] = 4367, + [4438] = 4401, + [4439] = 4347, [4440] = 4440, - [4441] = 4403, - [4442] = 4335, - [4443] = 4443, + [4441] = 4360, + [4442] = 4353, + [4443] = 4356, [4444] = 4444, - [4445] = 4445, - [4446] = 4446, - [4447] = 4403, - [4448] = 4448, - [4449] = 4403, - [4450] = 4450, - [4451] = 4451, - [4452] = 4408, - [4453] = 4403, - [4454] = 4454, - [4455] = 4455, - [4456] = 4381, - [4457] = 4403, - [4458] = 4425, - [4459] = 4443, - [4460] = 4403, - [4461] = 4461, - [4462] = 4462, - [4463] = 4414, + [4445] = 4378, + [4446] = 4401, + [4447] = 4358, + [4448] = 4325, + [4449] = 4430, + [4450] = 4401, + [4451] = 4241, + [4452] = 4444, + [4453] = 4378, + [4454] = 4401, + [4455] = 4366, + [4456] = 4339, + [4457] = 4401, + [4458] = 4327, + [4459] = 4233, + [4460] = 4460, + [4461] = 4401, + [4462] = 4338, + [4463] = 4300, [4464] = 4464, - [4465] = 4465, - [4466] = 4414, - [4467] = 4403, + [4465] = 4344, + [4466] = 4466, + [4467] = 4408, [4468] = 4468, - [4469] = 4469, - [4470] = 4418, - [4471] = 4302, - [4472] = 4472, - [4473] = 4378, - [4474] = 4474, - [4475] = 4450, - [4476] = 3304, - [4477] = 4403, - [4478] = 4478, - [4479] = 4472, - [4480] = 4480, - [4481] = 4469, - [4482] = 4482, - [4483] = 3323, - [4484] = 4333, - [4485] = 4485, - [4486] = 4486, - [4487] = 4334, - [4488] = 4488, - [4489] = 4414, + [4469] = 4405, + [4470] = 4470, + [4471] = 4468, + [4472] = 4359, + [4473] = 4386, + [4474] = 4460, + [4475] = 4399, + [4476] = 4414, + [4477] = 4323, + [4478] = 4359, + [4479] = 4238, + [4480] = 4288, + [4481] = 4481, + [4482] = 4334, + [4483] = 4340, + [4484] = 4323, + [4485] = 4402, + [4486] = 4374, + [4487] = 4371, + [4488] = 4341, + [4489] = 4349, [4490] = 4490, - [4491] = 4491, - [4492] = 4492, - [4493] = 4403, - [4494] = 4402, - [4495] = 4490, - [4496] = 4418, - [4497] = 4497, - [4498] = 4469, - [4499] = 4462, - [4500] = 4474, - [4501] = 4501, - [4502] = 4429, - [4503] = 4478, - [4504] = 3303, - [4505] = 4505, + [4491] = 4422, + [4492] = 4357, + [4493] = 4294, + [4494] = 4490, + [4495] = 4342, + [4496] = 4334, + [4497] = 4366, + [4498] = 4440, + [4499] = 4426, + [4500] = 4412, + [4501] = 4470, + [4502] = 4340, + [4503] = 4406, + [4504] = 4331, + [4505] = 4481, [4506] = 4506, - [4507] = 4507, - [4508] = 4402, - [4509] = 4451, - [4510] = 4375, - [4511] = 4511, - [4512] = 4264, + [4507] = 2438, + [4508] = 4289, + [4509] = 4371, + [4510] = 4506, + [4511] = 4353, + [4512] = 4512, [4513] = 4513, - [4514] = 4414, - [4515] = 4369, - [4516] = 4403, - [4517] = 4370, - [4518] = 4379, - [4519] = 4350, - [4520] = 4520, - [4521] = 4482, - [4522] = 4522, - [4523] = 4491, - [4524] = 4474, - [4525] = 4417, - [4526] = 4526, - [4527] = 4527, - [4528] = 4464, - [4529] = 4486, - [4530] = 4271, - [4531] = 4365, - [4532] = 4532, - [4533] = 4533, - [4534] = 4278, - [4535] = 4443, - [4536] = 4402, - [4537] = 4461, - [4538] = 4465, - [4539] = 4437, - [4540] = 4469, - [4541] = 4511, - [4542] = 4542, - [4543] = 4506, - [4544] = 4461, - [4545] = 4545, - [4546] = 4472, + [4514] = 4514, + [4515] = 4515, + [4516] = 4515, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, + [4520] = 4296, + [4521] = 4518, + [4522] = 4356, + [4523] = 4515, + [4524] = 4519, + [4525] = 4519, + [4526] = 4512, + [4527] = 4518, + [4528] = 4519, + [4529] = 4514, + [4530] = 4514, + [4531] = 4518, + [4532] = 4294, + [4533] = 4518, + [4534] = 4512, + [4535] = 4512, + [4536] = 4512, + [4537] = 4513, + [4538] = 4513, + [4539] = 4513, + [4540] = 4296, + [4541] = 4513, + [4542] = 4518, + [4543] = 4515, + [4544] = 4349, + [4545] = 4513, + [4546] = 4357, [4547] = 4547, - [4548] = 4092, - [4549] = 4408, - [4550] = 4417, - [4551] = 4551, - [4552] = 4552, - [4553] = 4425, - [4554] = 4375, - [4555] = 4271, - [4556] = 4506, - [4557] = 4414, - [4558] = 4403, - [4559] = 4375, - [4560] = 4485, - [4561] = 4511, - [4562] = 4562, - [4563] = 4451, - [4564] = 4271, - [4565] = 4468, - [4566] = 4566, - [4567] = 4490, - [4568] = 4446, - [4569] = 4438, - [4570] = 4335, - [4571] = 4571, - [4572] = 4572, - [4573] = 4444, - [4574] = 4311, - [4575] = 4450, - [4576] = 4438, - [4577] = 4577, - [4578] = 4403, - [4579] = 4403, - [4580] = 4302, - [4581] = 4333, - [4582] = 4419, - [4583] = 4334, - [4584] = 4584, - [4585] = 4444, + [4548] = 4358, + [4549] = 4378, + [4550] = 4519, + [4551] = 4514, + [4552] = 4299, + [4553] = 4360, + [4554] = 4367, + [4555] = 4519, + [4556] = 4519, + [4557] = 4339, + [4558] = 4327, + [4559] = 4344, + [4560] = 4323, + [4561] = 4512, + [4562] = 4513, + [4563] = 4519, + [4564] = 4290, + [4565] = 4512, + [4566] = 4515, + [4567] = 4283, + [4568] = 4340, + [4569] = 4512, + [4570] = 4515, + [4571] = 4513, + [4572] = 4444, + [4573] = 4334, + [4574] = 4512, + [4575] = 4341, + [4576] = 4342, + [4577] = 4312, + [4578] = 4312, + [4579] = 4519, + [4580] = 4338, + [4581] = 4295, + [4582] = 4359, + [4583] = 4518, + [4584] = 4325, + [4585] = 4512, [4586] = 4586, - [4587] = 4552, - [4588] = 4478, - [4589] = 4419, - [4590] = 4370, - [4591] = 4414, - [4592] = 4437, - [4593] = 4584, - [4594] = 4454, - [4595] = 4595, - [4596] = 4595, - [4597] = 4597, - [4598] = 4598, - [4599] = 4599, - [4600] = 4405, - [4601] = 4369, - [4602] = 4432, - [4603] = 4405, - [4604] = 4604, - [4605] = 4605, - [4606] = 4507, - [4607] = 4513, - [4608] = 4533, - [4609] = 4448, - [4610] = 4542, - [4611] = 4566, - [4612] = 4571, - [4613] = 4577, - [4614] = 4584, - [4615] = 4615, - [4616] = 4616, - [4617] = 4410, - [4618] = 4618, - [4619] = 4619, - [4620] = 4618, - [4621] = 4370, - [4622] = 3267, - [4623] = 4623, - [4624] = 4264, - [4625] = 4623, - [4626] = 4411, - [4627] = 4627, - [4628] = 4378, - [4629] = 4629, - [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4350, + [4587] = 4515, + [4588] = 2438, + [4589] = 4294, + [4590] = 4518, + [4591] = 4506, + [4592] = 4295, + [4593] = 2438, + [4594] = 4506, + [4595] = 4519, + [4596] = 4366, + [4597] = 4512, + [4598] = 4512, + [4599] = 4512, + [4600] = 4362, + [4601] = 4519, + [4602] = 4602, + [4603] = 4515, + [4604] = 4519, + [4605] = 4519, + [4606] = 4374, + [4607] = 4347, + [4608] = 2876, + [4609] = 4288, + [4610] = 4371, + [4611] = 4611, + [4612] = 4360, + [4613] = 4611, + [4614] = 4362, + [4615] = 4334, + [4616] = 4366, + [4617] = 4323, + [4618] = 2943, + [4619] = 4342, + [4620] = 4378, + [4621] = 4341, + [4622] = 4342, + [4623] = 4611, + [4624] = 4418, + [4625] = 4357, + [4626] = 4340, + [4627] = 4367, + [4628] = 2542, + [4629] = 4338, + [4630] = 4359, + [4631] = 4360, + [4632] = 4353, + [4633] = 4323, [4634] = 4634, - [4635] = 4632, - [4636] = 4623, - [4637] = 4631, - [4638] = 4638, - [4639] = 4631, - [4640] = 4427, - [4641] = 4631, - [4642] = 4454, - [4643] = 4643, - [4644] = 4623, + [4635] = 4464, + [4636] = 4362, + [4637] = 4377, + [4638] = 4466, + [4639] = 4464, + [4640] = 2449, + [4641] = 4300, + [4642] = 4386, + [4643] = 3035, + [4644] = 2555, [4645] = 4645, - [4646] = 4507, - [4647] = 4427, - [4648] = 3513, - [4649] = 4649, - [4650] = 4513, - [4651] = 4651, - [4652] = 4652, - [4653] = 4533, - [4654] = 4379, - [4655] = 4655, - [4656] = 4542, - [4657] = 4522, - [4658] = 4566, - [4659] = 4659, - [4660] = 4660, - [4661] = 4661, - [4662] = 4412, - [4663] = 4663, - [4664] = 4661, + [4646] = 4634, + [4647] = 4371, + [4648] = 4349, + [4649] = 4331, + [4650] = 4353, + [4651] = 4344, + [4652] = 4378, + [4653] = 4356, + [4654] = 4418, + [4655] = 4376, + [4656] = 4339, + [4657] = 4466, + [4658] = 2541, + [4659] = 4357, + [4660] = 4359, + [4661] = 4358, + [4662] = 4645, + [4663] = 2854, + [4664] = 4356, [4665] = 4665, - [4666] = 4407, - [4667] = 4409, - [4668] = 4410, - [4669] = 4669, - [4670] = 4411, - [4671] = 4412, - [4672] = 4599, - [4673] = 4629, - [4674] = 4445, - [4675] = 4571, - [4676] = 4676, - [4677] = 4501, - [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 4572, - [4682] = 4577, - [4683] = 4683, - [4684] = 4618, - [4685] = 4604, - [4686] = 4428, - [4687] = 4687, - [4688] = 4545, - [4689] = 4618, - [4690] = 4547, - [4691] = 4407, - [4692] = 4432, - [4693] = 4678, - [4694] = 4694, - [4695] = 4695, - [4696] = 4696, - [4697] = 4446, - [4698] = 4661, - [4699] = 4599, - [4700] = 4645, - [4701] = 4701, - [4702] = 4702, + [4666] = 4334, + [4667] = 4367, + [4668] = 4645, + [4669] = 2860, + [4670] = 2564, + [4671] = 4366, + [4672] = 2449, + [4673] = 4327, + [4674] = 4634, + [4675] = 4611, + [4676] = 4325, + [4677] = 4677, + [4678] = 4645, + [4679] = 4344, + [4680] = 2907, + [4681] = 4339, + [4682] = 2585, + [4683] = 4325, + [4684] = 4338, + [4685] = 4685, + [4686] = 4291, + [4687] = 2943, + [4688] = 4358, + [4689] = 4341, + [4690] = 3035, + [4691] = 2854, + [4692] = 2860, + [4693] = 2876, + [4694] = 4349, + [4695] = 2907, + [4696] = 2449, + [4697] = 2586, + [4698] = 4698, + [4699] = 4340, + [4700] = 4634, + [4701] = 4327, + [4702] = 4677, [4703] = 4703, - [4704] = 4432, - [4705] = 4678, + [4704] = 4704, + [4705] = 4705, [4706] = 4706, [4707] = 4707, - [4708] = 4448, - [4709] = 4709, - [4710] = 4454, - [4711] = 4599, - [4712] = 4661, - [4713] = 4434, - [4714] = 4645, - [4715] = 3284, - [4716] = 4446, - [4717] = 4520, - [4718] = 4718, - [4719] = 4428, - [4720] = 4616, - [4721] = 4520, - [4722] = 4428, - [4723] = 4501, - [4724] = 4409, - [4725] = 4572, - [4726] = 4405, - [4727] = 4445, - [4728] = 4427, - [4729] = 4709, - [4730] = 4632, - [4731] = 4448, - [4732] = 4732, - [4733] = 4501, - [4734] = 4572, - [4735] = 4659, - [4736] = 4507, - [4737] = 4659, - [4738] = 4732, - [4739] = 4739, - [4740] = 4513, - [4741] = 4533, - [4742] = 4542, - [4743] = 4566, - [4744] = 4571, - [4745] = 4577, - [4746] = 4706, - [4747] = 4320, - [4748] = 4584, - [4749] = 4407, - [4750] = 4381, - [4751] = 4751, - [4752] = 4752, - [4753] = 4753, - [4754] = 4409, - [4755] = 4755, - [4756] = 4709, - [4757] = 4410, - [4758] = 4411, - [4759] = 4669, - [4760] = 4520, - [4761] = 4761, - [4762] = 4412, - [4763] = 4445, - [4764] = 4703, - [4765] = 4765, - [4766] = 4766, - [4767] = 4767, - [4768] = 4768, - [4769] = 4769, - [4770] = 4770, - [4771] = 4771, - [4772] = 4772, - [4773] = 4773, - [4774] = 4774, - [4775] = 4775, - [4776] = 4776, + [4708] = 4704, + [4709] = 4705, + [4710] = 4710, + [4711] = 4711, + [4712] = 4665, + [4713] = 4713, + [4714] = 2593, + [4715] = 4715, + [4716] = 2595, + [4717] = 4717, + [4718] = 4713, + [4719] = 4719, + [4720] = 4703, + [4721] = 4721, + [4722] = 2605, + [4723] = 2610, + [4724] = 4724, + [4725] = 4725, + [4726] = 4726, + [4727] = 4727, + [4728] = 4704, + [4729] = 4705, + [4730] = 4706, + [4731] = 4707, + [4732] = 4706, + [4733] = 4710, + [4734] = 4734, + [4735] = 4725, + [4736] = 2943, + [4737] = 3035, + [4738] = 2854, + [4739] = 2860, + [4740] = 2876, + [4741] = 4707, + [4742] = 2907, + [4743] = 4734, + [4744] = 4713, + [4745] = 4726, + [4746] = 4703, + [4747] = 4721, + [4748] = 4725, + [4749] = 4726, + [4750] = 4727, + [4751] = 2943, + [4752] = 4704, + [4753] = 4705, + [4754] = 3035, + [4755] = 2854, + [4756] = 2860, + [4757] = 4706, + [4758] = 2876, + [4759] = 4724, + [4760] = 4710, + [4761] = 2907, + [4762] = 4721, + [4763] = 2585, + [4764] = 2586, + [4765] = 2555, + [4766] = 2564, + [4767] = 2541, + [4768] = 2542, + [4769] = 2943, + [4770] = 3035, + [4771] = 2854, + [4772] = 2860, + [4773] = 2876, + [4774] = 2907, + [4775] = 4710, + [4776] = 4444, [4777] = 4777, - [4778] = 4778, - [4779] = 4779, - [4780] = 4780, - [4781] = 4781, - [4782] = 4782, - [4783] = 4783, - [4784] = 4784, - [4785] = 4785, - [4786] = 4786, - [4787] = 4787, - [4788] = 4788, - [4789] = 4789, - [4790] = 4790, - [4791] = 4791, - [4792] = 4792, + [4778] = 4719, + [4779] = 4464, + [4780] = 4466, + [4781] = 4717, + [4782] = 4418, + [4783] = 4713, + [4784] = 4703, + [4785] = 4721, + [4786] = 4725, + [4787] = 4726, + [4788] = 4727, + [4789] = 4727, + [4790] = 4665, + [4791] = 4707, + [4792] = 2585, [4793] = 4793, - [4794] = 4794, + [4794] = 2943, [4795] = 4795, [4796] = 4796, - [4797] = 4797, + [4797] = 4795, [4798] = 4798, [4799] = 4799, [4800] = 4800, [4801] = 4801, - [4802] = 4766, + [4802] = 4799, [4803] = 4803, - [4804] = 4804, + [4804] = 4803, [4805] = 4805, [4806] = 4806, [4807] = 4807, [4808] = 4808, [4809] = 4809, - [4810] = 4770, - [4811] = 4772, - [4812] = 4798, - [4813] = 4813, - [4814] = 4803, - [4815] = 4806, - [4816] = 4816, + [4810] = 4810, + [4811] = 4806, + [4812] = 4812, + [4813] = 4812, + [4814] = 4814, + [4815] = 4815, + [4816] = 4807, [4817] = 4817, - [4818] = 4818, - [4819] = 4819, - [4820] = 4820, - [4821] = 4821, + [4818] = 3035, + [4819] = 2854, + [4820] = 4800, + [4821] = 2860, [4822] = 4822, - [4823] = 4773, - [4824] = 4824, + [4823] = 4808, + [4824] = 2876, [4825] = 4825, - [4826] = 4826, + [4826] = 4809, [4827] = 4827, [4828] = 4828, [4829] = 4829, - [4830] = 4778, - [4831] = 4831, - [4832] = 4832, - [4833] = 4833, - [4834] = 4778, - [4835] = 4835, - [4836] = 4780, + [4830] = 4830, + [4831] = 4812, + [4832] = 2876, + [4833] = 4799, + [4834] = 4815, + [4835] = 4815, + [4836] = 2876, [4837] = 4837, - [4838] = 4838, - [4839] = 4839, + [4838] = 4803, + [4839] = 4817, [4840] = 4840, [4841] = 4841, - [4842] = 4842, - [4843] = 4782, - [4844] = 4844, - [4845] = 4783, - [4846] = 4785, - [4847] = 4847, - [4848] = 4848, - [4849] = 4786, - [4850] = 4788, - [4851] = 4789, - [4852] = 4852, - [4853] = 4679, - [4854] = 4790, - [4855] = 4680, - [4856] = 4780, - [4857] = 4820, - [4858] = 4776, - [4859] = 4793, - [4860] = 4782, - [4861] = 4821, - [4862] = 4598, - [4863] = 4841, - [4864] = 4864, - [4865] = 4864, - [4866] = 4795, - [4867] = 4867, - [4868] = 4821, - [4869] = 4797, - [4870] = 4870, - [4871] = 4768, - [4872] = 4799, - [4873] = 4783, - [4874] = 4844, - [4875] = 4791, - [4876] = 4801, - [4877] = 4877, - [4878] = 4878, - [4879] = 4879, - [4880] = 4880, - [4881] = 4881, - [4882] = 4769, - [4883] = 4879, - [4884] = 4796, - [4885] = 4800, - [4886] = 4886, - [4887] = 4887, - [4888] = 4888, - [4889] = 4785, - [4890] = 4786, - [4891] = 4891, - [4892] = 4805, - [4893] = 4893, + [4842] = 2907, + [4843] = 4843, + [4844] = 4806, + [4845] = 4845, + [4846] = 4846, + [4847] = 4825, + [4848] = 2943, + [4849] = 4849, + [4850] = 2907, + [4851] = 4806, + [4852] = 2943, + [4853] = 3035, + [4854] = 2907, + [4855] = 4855, + [4856] = 4806, + [4857] = 4855, + [4858] = 4711, + [4859] = 4711, + [4860] = 2943, + [4861] = 3035, + [4862] = 4806, + [4863] = 2854, + [4864] = 2860, + [4865] = 2943, + [4866] = 2876, + [4867] = 4148, + [4868] = 4800, + [4869] = 4806, + [4870] = 2907, + [4871] = 2555, + [4872] = 2564, + [4873] = 2541, + [4874] = 2542, + [4875] = 3035, + [4876] = 4808, + [4877] = 2854, + [4878] = 2860, + [4879] = 4806, + [4880] = 4806, + [4881] = 4806, + [4882] = 4882, + [4883] = 4805, + [4884] = 4806, + [4885] = 4807, + [4886] = 4665, + [4887] = 2876, + [4888] = 4698, + [4889] = 4809, + [4890] = 4796, + [4891] = 4830, + [4892] = 4892, + [4893] = 2907, [4894] = 4894, - [4895] = 4766, - [4896] = 4788, - [4897] = 4773, - [4898] = 4679, - [4899] = 4795, - [4900] = 4680, - [4901] = 4797, - [4902] = 4598, - [4903] = 4799, - [4904] = 4807, - [4905] = 4801, - [4906] = 4808, - [4907] = 4907, - [4908] = 4770, - [4909] = 4820, - [4910] = 4772, - [4911] = 4911, - [4912] = 4912, - [4913] = 4798, - [4914] = 4776, - [4915] = 4803, - [4916] = 4793, - [4917] = 4806, - [4918] = 4789, - [4919] = 4821, - [4920] = 4841, - [4921] = 4864, - [4922] = 4922, - [4923] = 4867, - [4924] = 4867, - [4925] = 4925, - [4926] = 4870, - [4927] = 4768, - [4928] = 4867, - [4929] = 4844, - [4930] = 4824, - [4931] = 4820, - [4932] = 4880, - [4933] = 4790, - [4934] = 4769, - [4935] = 4796, - [4936] = 4800, - [4937] = 4864, - [4938] = 4826, - [4939] = 480, - [4940] = 4827, - [4941] = 4793, - [4942] = 4824, + [4895] = 4845, + [4896] = 4711, + [4897] = 4897, + [4898] = 4795, + [4899] = 2854, + [4900] = 3035, + [4901] = 4892, + [4902] = 4902, + [4903] = 4800, + [4904] = 2860, + [4905] = 4799, + [4906] = 4777, + [4907] = 4803, + [4908] = 4806, + [4909] = 4807, + [4910] = 4840, + [4911] = 4805, + [4912] = 4902, + [4913] = 4808, + [4914] = 4809, + [4915] = 2854, + [4916] = 4916, + [4917] = 4812, + [4918] = 4815, + [4919] = 2943, + [4920] = 4795, + [4921] = 3035, + [4922] = 2854, + [4923] = 2860, + [4924] = 2876, + [4925] = 2907, + [4926] = 4894, + [4927] = 4825, + [4928] = 4817, + [4929] = 2860, + [4930] = 4817, + [4931] = 4855, + [4932] = 2586, + [4933] = 4933, + [4934] = 4934, + [4935] = 4935, + [4936] = 4936, + [4937] = 4937, + [4938] = 4938, + [4939] = 4939, + [4940] = 4940, + [4941] = 4941, + [4942] = 4942, [4943] = 4943, - [4944] = 4776, + [4944] = 4944, [4945] = 4945, - [4946] = 4320, - [4947] = 4826, - [4948] = 4793, - [4949] = 4827, - [4950] = 4828, - [4951] = 4821, - [4952] = 4829, - [4953] = 4841, - [4954] = 4864, - [4955] = 4831, - [4956] = 4867, - [4957] = 4832, + [4946] = 4946, + [4947] = 4947, + [4948] = 4948, + [4949] = 4935, + [4950] = 4897, + [4951] = 4951, + [4952] = 4952, + [4953] = 4953, + [4954] = 4793, + [4955] = 4955, + [4956] = 4148, + [4957] = 4957, [4958] = 4958, - [4959] = 4870, - [4960] = 4768, - [4961] = 4961, - [4962] = 4844, - [4963] = 4828, - [4964] = 4401, - [4965] = 4880, - [4966] = 4829, - [4967] = 4769, + [4959] = 4959, + [4960] = 4960, + [4961] = 4947, + [4962] = 4955, + [4963] = 4963, + [4964] = 4964, + [4965] = 4148, + [4966] = 4963, + [4967] = 4793, [4968] = 4968, - [4969] = 4796, - [4970] = 4800, - [4971] = 4819, - [4972] = 4831, + [4969] = 4953, + [4970] = 4970, + [4971] = 4971, + [4972] = 4972, [4973] = 4973, [4974] = 4974, - [4975] = 4837, - [4976] = 4838, - [4977] = 4832, + [4975] = 4975, + [4976] = 4944, + [4977] = 4939, [4978] = 4978, - [4979] = 4839, - [4980] = 4840, - [4981] = 4776, + [4979] = 4979, + [4980] = 4942, + [4981] = 4981, [4982] = 4982, - [4983] = 4842, - [4984] = 4793, + [4983] = 4983, + [4984] = 4984, [4985] = 4985, [4986] = 4986, - [4987] = 4821, - [4988] = 4841, - [4989] = 4864, - [4990] = 4655, - [4991] = 4867, - [4992] = 4992, - [4993] = 4847, - [4994] = 4994, - [4995] = 4870, - [4996] = 4768, - [4997] = 3304, - [4998] = 4844, - [4999] = 4999, - [5000] = 4880, - [5001] = 4819, - [5002] = 4769, - [5003] = 4796, - [5004] = 4800, - [5005] = 4795, - [5006] = 5006, - [5007] = 4766, - [5008] = 4776, - [5009] = 4797, - [5010] = 4793, - [5011] = 4821, - [5012] = 4870, - [5013] = 4841, - [5014] = 4864, - [5015] = 4867, - [5016] = 5016, - [5017] = 5017, - [5018] = 4768, - [5019] = 4870, - [5020] = 4768, - [5021] = 4799, - [5022] = 4844, - [5023] = 4660, - [5024] = 4841, - [5025] = 4880, - [5026] = 4844, - [5027] = 4769, - [5028] = 4796, - [5029] = 4800, - [5030] = 5030, - [5031] = 5031, - [5032] = 5032, - [5033] = 4999, - [5034] = 5034, - [5035] = 5031, - [5036] = 4886, - [5037] = 4841, - [5038] = 4887, - [5039] = 4870, - [5040] = 4768, - [5041] = 4801, - [5042] = 4844, - [5043] = 4891, - [5044] = 4880, - [5045] = 4837, - [5046] = 4769, - [5047] = 4796, - [5048] = 4800, - [5049] = 4838, - [5050] = 5050, - [5051] = 5016, - [5052] = 4839, - [5053] = 4840, - [5054] = 4870, - [5055] = 4768, - [5056] = 3267, - [5057] = 4844, - [5058] = 5058, - [5059] = 4880, - [5060] = 4888, - [5061] = 4769, - [5062] = 5062, - [5063] = 4796, - [5064] = 4800, - [5065] = 4842, - [5066] = 4784, - [5067] = 5067, - [5068] = 5068, - [5069] = 5069, - [5070] = 4870, - [5071] = 4768, - [5072] = 4878, - [5073] = 4844, - [5074] = 3517, - [5075] = 4880, - [5076] = 4769, - [5077] = 4796, - [5078] = 4800, - [5079] = 5079, - [5080] = 4844, - [5081] = 5081, - [5082] = 4796, - [5083] = 4800, - [5084] = 5084, + [4987] = 4987, + [4988] = 4988, + [4989] = 4934, + [4990] = 4936, + [4991] = 4937, + [4992] = 4938, + [4993] = 4943, + [4994] = 4939, + [4995] = 4987, + [4996] = 4987, + [4997] = 4988, + [4998] = 4941, + [4999] = 4942, + [5000] = 5000, + [5001] = 4943, + [5002] = 4944, + [5003] = 4945, + [5004] = 2943, + [5005] = 4698, + [5006] = 4988, + [5007] = 5000, + [5008] = 2510, + [5009] = 4897, + [5010] = 3035, + [5011] = 4935, + [5012] = 5012, + [5013] = 4953, + [5014] = 4953, + [5015] = 4941, + [5016] = 4957, + [5017] = 4958, + [5018] = 4959, + [5019] = 4698, + [5020] = 4960, + [5021] = 5000, + [5022] = 5022, + [5023] = 4947, + [5024] = 4777, + [5025] = 4935, + [5026] = 4955, + [5027] = 4953, + [5028] = 4963, + [5029] = 2854, + [5030] = 2860, + [5031] = 5000, + [5032] = 2494, + [5033] = 4793, + [5034] = 4970, + [5035] = 4943, + [5036] = 4935, + [5037] = 5037, + [5038] = 4971, + [5039] = 4946, + [5040] = 5040, + [5041] = 4810, + [5042] = 5000, + [5043] = 4970, + [5044] = 4972, + [5045] = 4971, + [5046] = 4972, + [5047] = 4973, + [5048] = 4935, + [5049] = 4974, + [5050] = 4973, + [5051] = 4975, + [5052] = 4974, + [5053] = 4945, + [5054] = 4944, + [5055] = 4793, + [5056] = 4810, + [5057] = 4935, + [5058] = 2876, + [5059] = 4940, + [5060] = 4979, + [5061] = 4975, + [5062] = 4933, + [5063] = 4945, + [5064] = 4981, + [5065] = 4982, + [5066] = 4983, + [5067] = 4984, + [5068] = 4985, + [5069] = 4986, + [5070] = 4935, + [5071] = 2907, + [5072] = 4979, + [5073] = 4957, + [5074] = 4957, + [5075] = 4935, + [5076] = 5076, + [5077] = 4958, + [5078] = 5078, + [5079] = 4959, + [5080] = 4897, + [5081] = 4934, + [5082] = 4936, + [5083] = 4937, + [5084] = 4938, [5085] = 5085, - [5086] = 4784, - [5087] = 4264, - [5088] = 4776, - [5089] = 4994, - [5090] = 4847, - [5091] = 4968, - [5092] = 4307, - [5093] = 4992, - [5094] = 5094, - [5095] = 4825, - [5096] = 5085, - [5097] = 5097, - [5098] = 5098, - [5099] = 5099, - [5100] = 4776, - [5101] = 5094, - [5102] = 489, - [5103] = 5103, - [5104] = 4793, - [5105] = 5105, - [5106] = 4907, - [5107] = 3547, - [5108] = 5108, - [5109] = 5109, - [5110] = 5109, - [5111] = 5111, - [5112] = 4809, - [5113] = 4821, - [5114] = 5114, - [5115] = 4841, - [5116] = 4264, - [5117] = 4804, - [5118] = 4835, - [5119] = 5119, - [5120] = 4985, - [5121] = 4880, - [5122] = 5098, - [5123] = 4864, - [5124] = 5067, - [5125] = 5125, - [5126] = 5099, - [5127] = 4958, - [5128] = 5034, - [5129] = 4893, - [5130] = 4894, - [5131] = 5119, - [5132] = 4769, - [5133] = 5133, - [5134] = 5114, - [5135] = 4796, - [5136] = 4867, - [5137] = 4943, - [5138] = 5138, - [5139] = 4911, - [5140] = 4818, - [5141] = 4800, - [5142] = 5142, - [5143] = 4765, - [5144] = 4817, - [5145] = 5145, - [5146] = 4974, - [5147] = 4982, - [5148] = 4792, - [5149] = 4907, - [5150] = 5109, - [5151] = 4994, - [5152] = 4809, - [5153] = 5114, - [5154] = 4879, - [5155] = 4804, - [5156] = 4835, - [5157] = 4320, - [5158] = 4881, + [5086] = 4970, + [5087] = 4971, + [5088] = 4972, + [5089] = 4953, + [5090] = 5090, + [5091] = 4973, + [5092] = 5012, + [5093] = 4974, + [5094] = 4939, + [5095] = 5040, + [5096] = 4978, + [5097] = 4810, + [5098] = 4958, + [5099] = 4959, + [5100] = 5000, + [5101] = 5101, + [5102] = 5102, + [5103] = 4960, + [5104] = 4947, + [5105] = 4259, + [5106] = 4777, + [5107] = 4955, + [5108] = 4981, + [5109] = 4982, + [5110] = 4975, + [5111] = 4963, + [5112] = 4933, + [5113] = 5085, + [5114] = 4934, + [5115] = 5101, + [5116] = 4983, + [5117] = 4984, + [5118] = 4698, + [5119] = 4936, + [5120] = 4935, + [5121] = 4985, + [5122] = 5000, + [5123] = 4946, + [5124] = 4951, + [5125] = 4986, + [5126] = 4952, + [5127] = 5000, + [5128] = 4951, + [5129] = 4952, + [5130] = 5130, + [5131] = 5101, + [5132] = 4937, + [5133] = 5090, + [5134] = 5134, + [5135] = 4938, + [5136] = 4981, + [5137] = 4982, + [5138] = 4983, + [5139] = 4984, + [5140] = 4935, + [5141] = 4946, + [5142] = 4985, + [5143] = 4986, + [5144] = 4665, + [5145] = 4897, + [5146] = 4951, + [5147] = 4952, + [5148] = 4960, + [5149] = 4941, + [5150] = 4942, + [5151] = 4933, + [5152] = 2943, + [5153] = 5153, + [5154] = 5154, + [5155] = 5155, + [5156] = 5156, + [5157] = 4040, + [5158] = 5158, [5159] = 5159, - [5160] = 5067, - [5161] = 5034, - [5162] = 5162, - [5163] = 4978, - [5164] = 5133, - [5165] = 4943, - [5166] = 4870, - [5167] = 4768, - [5168] = 5058, - [5169] = 4818, - [5170] = 4844, - [5171] = 3267, - [5172] = 5172, - [5173] = 5173, - [5174] = 4912, - [5175] = 4974, + [5160] = 5160, + [5161] = 5161, + [5162] = 4822, + [5163] = 5163, + [5164] = 5164, + [5165] = 5165, + [5166] = 5166, + [5167] = 4777, + [5168] = 5158, + [5169] = 5169, + [5170] = 5170, + [5171] = 4897, + [5172] = 4259, + [5173] = 4827, + [5174] = 5174, + [5175] = 5165, [5176] = 5176, [5177] = 5177, - [5178] = 4878, + [5178] = 5178, [5179] = 5179, - [5180] = 4886, - [5181] = 4887, - [5182] = 3515, - [5183] = 4888, - [5184] = 4968, + [5180] = 5159, + [5181] = 5181, + [5182] = 5182, + [5183] = 4259, + [5184] = 5160, [5185] = 5185, - [5186] = 4992, - [5187] = 4767, - [5188] = 5068, - [5189] = 5098, - [5190] = 5099, - [5191] = 5138, - [5192] = 5103, - [5193] = 490, - [5194] = 4771, + [5186] = 5186, + [5187] = 5187, + [5188] = 5188, + [5189] = 5189, + [5190] = 3035, + [5191] = 2854, + [5192] = 2860, + [5193] = 5193, + [5194] = 2876, [5195] = 5195, - [5196] = 5103, - [5197] = 4880, + [5196] = 5196, + [5197] = 2907, [5198] = 5198, - [5199] = 4769, + [5199] = 5199, [5200] = 5200, - [5201] = 4796, - [5202] = 4800, - [5203] = 4619, - [5204] = 4878, - [5205] = 4978, + [5201] = 5166, + [5202] = 4793, + [5203] = 5203, + [5204] = 5204, + [5205] = 5205, [5206] = 5206, - [5207] = 5111, - [5208] = 4982, - [5209] = 4353, - [5210] = 5162, + [5207] = 5207, + [5208] = 5208, + [5209] = 5170, + [5210] = 5210, [5211] = 5211, - [5212] = 4360, + [5212] = 5170, [5213] = 5213, - [5214] = 4886, - [5215] = 4887, - [5216] = 4961, - [5217] = 4361, - [5218] = 4888, - [5219] = 5030, - [5220] = 5125, - [5221] = 5138, - [5222] = 5211, - [5223] = 5223, - [5224] = 5081, - [5225] = 4774, - [5226] = 5226, - [5227] = 5195, - [5228] = 4370, - [5229] = 5133, - [5230] = 4761, - [5231] = 4775, - [5232] = 5111, - [5233] = 5195, + [5214] = 5214, + [5215] = 4777, + [5216] = 5166, + [5217] = 5217, + [5218] = 4777, + [5219] = 5219, + [5220] = 5182, + [5221] = 2438, + [5222] = 5165, + [5223] = 4964, + [5224] = 5224, + [5225] = 5187, + [5226] = 5210, + [5227] = 5160, + [5228] = 4827, + [5229] = 5229, + [5230] = 5181, + [5231] = 5182, + [5232] = 5232, + [5233] = 4050, [5234] = 5234, - [5235] = 5162, - [5236] = 5211, - [5237] = 4961, - [5238] = 5030, - [5239] = 4395, - [5240] = 4805, - [5241] = 4320, - [5242] = 4397, - [5243] = 4773, - [5244] = 4777, - [5245] = 4398, - [5246] = 4822, - [5247] = 513, + [5235] = 5235, + [5236] = 5236, + [5237] = 5181, + [5238] = 4827, + [5239] = 5166, + [5240] = 5187, + [5241] = 5155, + [5242] = 5156, + [5243] = 5243, + [5244] = 5244, + [5245] = 5245, + [5246] = 5246, + [5247] = 5247, [5248] = 5248, - [5249] = 4781, - [5250] = 4761, - [5251] = 5198, - [5252] = 4891, - [5253] = 4627, - [5254] = 479, - [5255] = 4891, - [5256] = 4807, - [5257] = 4880, - [5258] = 4680, - [5259] = 4945, + [5249] = 5163, + [5250] = 5203, + [5251] = 5164, + [5252] = 4948, + [5253] = 5253, + [5254] = 5254, + [5255] = 5153, + [5256] = 5181, + [5257] = 4964, + [5258] = 5208, + [5259] = 5259, [5260] = 5260, - [5261] = 4893, - [5262] = 5058, - [5263] = 4767, - [5264] = 4945, - [5265] = 4771, - [5266] = 4894, - [5267] = 4774, - [5268] = 4775, - [5269] = 4870, - [5270] = 4777, - [5271] = 5145, - [5272] = 4781, - [5273] = 5032, - [5274] = 4761, - [5275] = 4264, - [5276] = 4808, - [5277] = 5277, - [5278] = 4787, - [5279] = 5279, - [5280] = 5280, + [5261] = 5169, + [5262] = 5170, + [5263] = 5263, + [5264] = 5264, + [5265] = 5265, + [5266] = 5266, + [5267] = 5174, + [5268] = 5268, + [5269] = 4827, + [5270] = 5270, + [5271] = 5163, + [5272] = 4948, + [5273] = 5273, + [5274] = 5164, + [5275] = 5155, + [5276] = 4948, + [5277] = 5158, + [5278] = 5156, + [5279] = 5159, + [5280] = 5263, [5281] = 5281, - [5282] = 5282, + [5282] = 5153, [5283] = 5283, [5284] = 5284, - [5285] = 5285, - [5286] = 5286, - [5287] = 5287, - [5288] = 5288, - [5289] = 5289, - [5290] = 5290, - [5291] = 5291, - [5292] = 5292, - [5293] = 5285, + [5285] = 5165, + [5286] = 2943, + [5287] = 3035, + [5288] = 2854, + [5289] = 2860, + [5290] = 2876, + [5291] = 2907, + [5292] = 5160, + [5293] = 5293, [5294] = 5294, - [5295] = 3303, - [5296] = 5285, - [5297] = 5297, - [5298] = 5285, - [5299] = 5283, + [5295] = 5236, + [5296] = 5159, + [5297] = 4777, + [5298] = 4964, + [5299] = 5299, [5300] = 5300, [5301] = 5301, [5302] = 5302, [5303] = 5303, - [5304] = 5285, + [5304] = 5304, [5305] = 5305, [5306] = 5306, [5307] = 5307, [5308] = 5308, - [5309] = 5309, - [5310] = 5310, - [5311] = 5311, + [5309] = 5247, + [5310] = 5248, + [5311] = 4074, [5312] = 5312, - [5313] = 5313, + [5313] = 5193, [5314] = 5314, [5315] = 5315, [5316] = 5316, [5317] = 5317, - [5318] = 5290, - [5319] = 5292, + [5318] = 4089, + [5319] = 5319, [5320] = 5320, - [5321] = 5321, - [5322] = 4455, - [5323] = 5320, + [5321] = 5308, + [5322] = 5195, + [5323] = 5199, [5324] = 5324, - [5325] = 5325, - [5326] = 5326, - [5327] = 5327, - [5328] = 5328, + [5325] = 5312, + [5326] = 5307, + [5327] = 5308, + [5328] = 5301, [5329] = 5329, [5330] = 5330, - [5331] = 5331, + [5331] = 5232, [5332] = 5332, - [5333] = 5285, - [5334] = 3323, - [5335] = 5335, - [5336] = 5336, - [5337] = 5326, - [5338] = 5338, - [5339] = 5339, - [5340] = 5340, - [5341] = 5341, - [5342] = 5316, - [5343] = 5320, - [5344] = 5344, - [5345] = 5320, - [5346] = 5346, - [5347] = 5347, - [5348] = 5226, + [5333] = 5333, + [5334] = 5302, + [5335] = 5293, + [5336] = 2943, + [5337] = 3035, + [5338] = 5308, + [5339] = 2854, + [5340] = 2860, + [5341] = 5306, + [5342] = 5342, + [5343] = 5343, + [5344] = 2876, + [5345] = 5195, + [5346] = 5199, + [5347] = 4347, + [5348] = 4064, [5349] = 5349, - [5350] = 5350, - [5351] = 3293, - [5352] = 5352, - [5353] = 5291, - [5354] = 5314, - [5355] = 5307, - [5356] = 3303, - [5357] = 3293, - [5358] = 5285, - [5359] = 5359, + [5350] = 5229, + [5351] = 5351, + [5352] = 5308, + [5353] = 2907, + [5354] = 5354, + [5355] = 5355, + [5356] = 5356, + [5357] = 5357, + [5358] = 5358, + [5359] = 5308, [5360] = 5360, - [5361] = 5361, - [5362] = 5281, - [5363] = 5285, + [5361] = 5349, + [5362] = 4347, + [5363] = 5229, [5364] = 5364, [5365] = 5365, - [5366] = 5329, + [5366] = 5366, [5367] = 5367, - [5368] = 5367, + [5368] = 5332, [5369] = 5369, - [5370] = 5301, - [5371] = 5330, - [5372] = 5372, - [5373] = 5373, - [5374] = 5301, - [5375] = 5340, - [5376] = 5324, - [5377] = 5320, - [5378] = 5301, + [5370] = 5370, + [5371] = 5308, + [5372] = 4331, + [5373] = 5254, + [5374] = 5374, + [5375] = 5375, + [5376] = 5308, + [5377] = 5377, + [5378] = 5378, [5379] = 5379, - [5380] = 5285, - [5381] = 5285, - [5382] = 5285, - [5383] = 5285, - [5384] = 5285, - [5385] = 5285, - [5386] = 5285, - [5387] = 5387, - [5388] = 5388, - [5389] = 5389, - [5390] = 5390, - [5391] = 5320, - [5392] = 4357, - [5393] = 5369, - [5394] = 4268, - [5395] = 5347, - [5396] = 5396, - [5397] = 5314, - [5398] = 5349, - [5399] = 5307, - [5400] = 5400, - [5401] = 5401, - [5402] = 5307, - [5403] = 5364, - [5404] = 5329, - [5405] = 5367, - [5406] = 5369, - [5407] = 5305, + [5380] = 5308, + [5381] = 5381, + [5382] = 5308, + [5383] = 5383, + [5384] = 5384, + [5385] = 5385, + [5386] = 5375, + [5387] = 5308, + [5388] = 5308, + [5389] = 5302, + [5390] = 5308, + [5391] = 5307, + [5392] = 5308, + [5393] = 5308, + [5394] = 4987, + [5395] = 5308, + [5396] = 5308, + [5397] = 5312, + [5398] = 5398, + [5399] = 5358, + [5400] = 5308, + [5401] = 5308, + [5402] = 5369, + [5403] = 5308, + [5404] = 5176, + [5405] = 5405, + [5406] = 5406, + [5407] = 5407, [5408] = 5408, - [5409] = 5409, - [5410] = 5330, + [5409] = 5366, + [5410] = 5384, [5411] = 5411, - [5412] = 5373, - [5413] = 5340, - [5414] = 5414, - [5415] = 4455, - [5416] = 4324, - [5417] = 5285, - [5418] = 5302, + [5412] = 5303, + [5413] = 5320, + [5414] = 5204, + [5415] = 5324, + [5416] = 5301, + [5417] = 5306, + [5418] = 5205, [5419] = 5419, - [5420] = 5305, - [5421] = 5331, - [5422] = 5341, - [5423] = 4355, - [5424] = 5285, - [5425] = 5307, - [5426] = 5069, - [5427] = 5427, - [5428] = 5324, - [5429] = 5429, + [5420] = 5308, + [5421] = 5421, + [5422] = 5407, + [5423] = 5315, + [5424] = 5270, + [5425] = 5425, + [5426] = 4376, + [5427] = 5195, + [5428] = 5199, + [5429] = 5356, [5430] = 5430, - [5431] = 5331, - [5432] = 5350, - [5433] = 5433, - [5434] = 5434, - [5435] = 5346, - [5436] = 5436, - [5437] = 5388, - [5438] = 5301, - [5439] = 5408, - [5440] = 5440, + [5431] = 5355, + [5432] = 5432, + [5433] = 5245, + [5434] = 4386, + [5435] = 5435, + [5436] = 5375, + [5437] = 5343, + [5438] = 4374, + [5439] = 5154, + [5440] = 5312, [5441] = 5441, - [5442] = 2166, - [5443] = 5365, - [5444] = 5280, - [5445] = 5436, - [5446] = 5446, - [5447] = 5372, - [5448] = 5448, - [5449] = 5387, - [5450] = 3304, - [5451] = 5283, - [5452] = 5452, - [5453] = 5440, - [5454] = 2172, - [5455] = 5455, - [5456] = 5300, - [5457] = 5301, - [5458] = 5285, + [5442] = 5366, + [5443] = 5349, + [5444] = 5234, + [5445] = 4080, + [5446] = 5324, + [5447] = 5320, + [5448] = 5421, + [5449] = 5253, + [5450] = 5435, + [5451] = 5307, + [5452] = 5193, + [5453] = 5375, + [5454] = 4331, + [5455] = 5305, + [5456] = 5305, + [5457] = 5315, + [5458] = 5307, [5459] = 5459, - [5460] = 5379, - [5461] = 5408, - [5462] = 5462, - [5463] = 5317, - [5464] = 5400, - [5465] = 5372, - [5466] = 5466, - [5467] = 4455, - [5468] = 5307, - [5469] = 5280, - [5470] = 5436, - [5471] = 5471, - [5472] = 5472, - [5473] = 5372, - [5474] = 5388, - [5475] = 5475, - [5476] = 5440, - [5477] = 5477, + [5460] = 5358, + [5461] = 5308, + [5462] = 5378, + [5463] = 5307, + [5464] = 5464, + [5465] = 5308, + [5466] = 5302, + [5467] = 5358, + [5468] = 5176, + [5469] = 5469, + [5470] = 5365, + [5471] = 5315, + [5472] = 5332, + [5473] = 5407, + [5474] = 5459, + [5475] = 5435, + [5476] = 5302, + [5477] = 5245, [5478] = 5478, - [5479] = 5306, - [5480] = 5285, - [5481] = 5481, - [5482] = 5364, - [5483] = 5483, - [5484] = 5484, - [5485] = 5485, - [5486] = 5486, - [5487] = 5487, - [5488] = 5388, - [5489] = 5440, - [5490] = 5387, + [5479] = 5247, + [5480] = 5248, + [5481] = 5306, + [5482] = 5408, + [5483] = 5176, + [5484] = 5254, + [5485] = 5324, + [5486] = 5301, + [5487] = 5307, + [5488] = 5435, + [5489] = 5489, + [5490] = 5304, [5491] = 5491, - [5492] = 5301, - [5493] = 3323, - [5494] = 5294, + [5492] = 4376, + [5493] = 5493, + [5494] = 5494, [5495] = 5495, - [5496] = 5462, - [5497] = 5462, - [5498] = 5315, - [5499] = 5344, - [5500] = 5290, - [5501] = 5292, - [5502] = 5462, - [5503] = 5487, - [5504] = 5389, - [5505] = 5352, - [5506] = 5285, - [5507] = 5360, - [5508] = 5108, - [5509] = 5344, - [5510] = 5485, - [5511] = 5459, - [5512] = 627, - [5513] = 5283, - [5514] = 5365, - [5515] = 5336, - [5516] = 5389, - [5517] = 5315, - [5518] = 5518, - [5519] = 5373, - [5520] = 5347, - [5521] = 5301, - [5522] = 5522, + [5496] = 5366, + [5497] = 4386, + [5498] = 5425, + [5499] = 5320, + [5500] = 5307, + [5501] = 5308, + [5502] = 4374, + [5503] = 5245, + [5504] = 5407, + [5505] = 5308, + [5506] = 5308, + [5507] = 5247, + [5508] = 5248, + [5509] = 5343, + [5510] = 5478, + [5511] = 5343, + [5512] = 5304, + [5513] = 5351, + [5514] = 5369, + [5515] = 5349, + [5516] = 5365, + [5517] = 5517, + [5518] = 5302, + [5519] = 5519, + [5520] = 5520, + [5521] = 5369, + [5522] = 5308, [5523] = 5523, - [5524] = 5524, - [5525] = 5525, - [5526] = 5526, - [5527] = 5527, - [5528] = 5528, - [5529] = 5523, + [5524] = 5293, + [5525] = 5430, + [5526] = 5351, + [5527] = 5351, + [5528] = 5305, + [5529] = 5308, [5530] = 5530, [5531] = 5531, [5532] = 5532, - [5533] = 5533, + [5533] = 5381, [5534] = 5534, [5535] = 5535, - [5536] = 5536, - [5537] = 5537, - [5538] = 5530, - [5539] = 5539, - [5540] = 5531, - [5541] = 5541, - [5542] = 5542, + [5536] = 5464, + [5537] = 5523, + [5538] = 5519, + [5539] = 5523, + [5540] = 5317, + [5541] = 4050, + [5542] = 5330, [5543] = 5543, - [5544] = 5532, - [5545] = 5545, - [5546] = 5546, + [5544] = 5317, + [5545] = 5494, + [5546] = 5253, [5547] = 5547, - [5548] = 5526, - [5549] = 5546, + [5548] = 5548, + [5549] = 5316, [5550] = 5550, - [5551] = 5527, - [5552] = 5552, - [5553] = 5553, - [5554] = 5554, + [5551] = 5495, + [5552] = 5532, + [5553] = 5330, + [5554] = 5535, [5555] = 5555, - [5556] = 5556, + [5556] = 5398, [5557] = 5557, - [5558] = 5558, - [5559] = 5559, - [5560] = 5560, - [5561] = 5539, + [5558] = 5405, + [5559] = 5299, + [5560] = 5342, + [5561] = 5523, [5562] = 5562, - [5563] = 5527, - [5564] = 5527, + [5563] = 5563, + [5564] = 5564, [5565] = 5565, - [5566] = 5566, - [5567] = 5539, - [5568] = 5568, + [5566] = 5548, + [5567] = 5567, + [5568] = 5530, [5569] = 5569, [5570] = 5570, - [5571] = 5571, - [5572] = 5572, - [5573] = 5528, - [5574] = 5574, - [5575] = 5532, - [5576] = 5532, - [5577] = 5574, - [5578] = 5578, - [5579] = 5579, - [5580] = 5580, - [5581] = 5581, - [5582] = 5582, + [5571] = 5494, + [5572] = 5383, + [5573] = 5535, + [5574] = 5204, + [5575] = 5575, + [5576] = 5555, + [5577] = 5563, + [5578] = 4040, + [5579] = 5253, + [5580] = 5531, + [5581] = 5441, + [5582] = 5517, [5583] = 5583, - [5584] = 5539, - [5585] = 5585, - [5586] = 5532, - [5587] = 5587, - [5588] = 5588, + [5584] = 5584, + [5585] = 5517, + [5586] = 5555, + [5587] = 5385, + [5588] = 5584, [5589] = 5589, - [5590] = 5590, - [5591] = 5552, - [5592] = 5580, + [5590] = 5495, + [5591] = 5591, + [5592] = 5398, [5593] = 5593, [5594] = 5594, - [5595] = 5595, - [5596] = 5539, - [5597] = 5532, + [5595] = 5567, + [5596] = 5596, + [5597] = 5563, [5598] = 5598, - [5599] = 5599, - [5600] = 5600, - [5601] = 5601, - [5602] = 5602, - [5603] = 5543, - [5604] = 5537, - [5605] = 5605, - [5606] = 5533, + [5599] = 5317, + [5600] = 4289, + [5601] = 5357, + [5602] = 5567, + [5603] = 5464, + [5604] = 5419, + [5605] = 5154, + [5606] = 5299, [5607] = 5607, - [5608] = 5546, - [5609] = 5609, - [5610] = 5610, - [5611] = 5539, - [5612] = 5532, - [5613] = 5556, - [5614] = 5614, - [5615] = 5552, + [5608] = 5432, + [5609] = 5583, + [5610] = 5293, + [5611] = 5611, + [5612] = 5357, + [5613] = 5589, + [5614] = 5565, + [5615] = 5378, [5616] = 5616, - [5617] = 5617, - [5618] = 5523, - [5619] = 5532, - [5620] = 5533, - [5621] = 5588, - [5622] = 522, - [5623] = 5539, - [5624] = 5532, - [5625] = 5535, - [5626] = 5536, - [5627] = 5541, - [5628] = 5539, - [5629] = 5531, - [5630] = 5531, - [5631] = 5631, - [5632] = 5598, - [5633] = 5545, - [5634] = 5546, - [5635] = 5562, - [5636] = 5550, - [5637] = 5539, - [5638] = 5552, - [5639] = 5562, - [5640] = 5640, + [5617] = 5405, + [5618] = 5419, + [5619] = 5591, + [5620] = 5620, + [5621] = 5398, + [5622] = 5405, + [5623] = 5432, + [5624] = 5624, + [5625] = 5370, + [5626] = 5374, + [5627] = 5627, + [5628] = 5628, + [5629] = 5381, + [5630] = 5383, + [5631] = 5519, + [5632] = 5385, + [5633] = 5548, + [5634] = 5634, + [5635] = 5635, + [5636] = 5565, + [5637] = 5316, + [5638] = 5638, + [5639] = 5563, + [5640] = 5628, [5641] = 5555, - [5642] = 5607, - [5643] = 5643, - [5644] = 5558, - [5645] = 5645, - [5646] = 5556, - [5647] = 5647, - [5648] = 5565, - [5649] = 5569, - [5650] = 5650, - [5651] = 5526, - [5652] = 5652, - [5653] = 5527, - [5654] = 5580, - [5655] = 5550, - [5656] = 5588, - [5657] = 5539, - [5658] = 5601, - [5659] = 5659, - [5660] = 5589, - [5661] = 5532, - [5662] = 5662, - [5663] = 5543, - [5664] = 5664, - [5665] = 5528, - [5666] = 5666, - [5667] = 5552, - [5668] = 5668, - [5669] = 5565, - [5670] = 523, - [5671] = 5533, - [5672] = 5672, - [5673] = 5522, + [5642] = 5642, + [5643] = 5593, + [5644] = 5205, + [5645] = 5530, + [5646] = 5646, + [5647] = 5441, + [5648] = 5583, + [5649] = 5584, + [5650] = 5270, + [5651] = 5406, + [5652] = 5464, + [5653] = 5653, + [5654] = 5532, + [5655] = 5565, + [5656] = 5469, + [5657] = 5411, + [5658] = 5234, + [5659] = 5562, + [5660] = 5583, + [5661] = 5661, + [5662] = 5611, + [5663] = 5663, + [5664] = 5299, + [5665] = 5665, + [5666] = 5234, + [5667] = 5370, + [5668] = 5374, + [5669] = 5377, + [5670] = 5381, + [5671] = 5330, + [5672] = 5383, + [5673] = 5517, [5674] = 5674, - [5675] = 5545, - [5676] = 5545, - [5677] = 5570, - [5678] = 5050, - [5679] = 5679, - [5680] = 5526, - [5681] = 5527, - [5682] = 5662, - [5683] = 5556, - [5684] = 5565, - [5685] = 5610, - [5686] = 5552, - [5687] = 5528, - [5688] = 5688, - [5689] = 5552, - [5690] = 5589, + [5675] = 5675, + [5676] = 5584, + [5677] = 5519, + [5678] = 5678, + [5679] = 5385, + [5680] = 5680, + [5681] = 5681, + [5682] = 5555, + [5683] = 5532, + [5684] = 5591, + [5685] = 5370, + [5686] = 5535, + [5687] = 5495, + [5688] = 5357, + [5689] = 5374, + [5690] = 5378, [5691] = 5691, - [5692] = 5531, - [5693] = 5532, - [5694] = 5523, - [5695] = 5695, - [5696] = 5696, - [5697] = 5546, - [5698] = 5581, - [5699] = 5659, - [5700] = 5602, - [5701] = 5525, - [5702] = 5522, - [5703] = 5523, - [5704] = 5574, - [5705] = 5578, - [5706] = 5558, - [5707] = 5533, - [5708] = 5539, - [5709] = 5539, - [5710] = 5545, - [5711] = 5593, - [5712] = 5556, - [5713] = 5583, - [5714] = 5531, - [5715] = 5578, - [5716] = 5553, - [5717] = 5595, + [5692] = 5419, + [5693] = 5607, + [5694] = 5594, + [5695] = 5494, + [5696] = 5432, + [5697] = 5591, + [5698] = 5567, + [5699] = 5699, + [5700] = 5548, + [5701] = 5316, + [5702] = 5702, + [5703] = 5377, + [5704] = 5530, + [5705] = 5232, + [5706] = 5706, + [5707] = 5441, + [5708] = 5708, + [5709] = 5709, + [5710] = 5710, + [5711] = 5377, + [5712] = 5712, + [5713] = 5713, + [5714] = 5714, + [5715] = 5715, + [5716] = 5716, + [5717] = 5717, [5718] = 5718, - [5719] = 5562, + [5719] = 5719, [5720] = 5720, - [5721] = 5526, - [5722] = 5539, - [5723] = 5614, - [5724] = 5528, - [5725] = 5600, - [5726] = 5531, - [5727] = 5554, - [5728] = 5553, + [5721] = 5721, + [5722] = 5722, + [5723] = 5723, + [5724] = 5253, + [5725] = 5725, + [5726] = 5726, + [5727] = 5727, + [5728] = 5728, [5729] = 5729, [5730] = 5730, - [5731] = 5662, - [5732] = 5664, + [5731] = 5731, + [5732] = 5732, [5733] = 5733, - [5734] = 5562, - [5735] = 5528, + [5734] = 5734, + [5735] = 5735, [5736] = 5736, - [5737] = 5541, - [5738] = 5543, - [5739] = 5674, - [5740] = 5527, - [5741] = 5546, - [5742] = 5546, - [5743] = 5526, - [5744] = 5588, + [5737] = 5737, + [5738] = 5738, + [5739] = 5739, + [5740] = 5740, + [5741] = 5253, + [5742] = 5742, + [5743] = 5743, + [5744] = 5744, [5745] = 5745, - [5746] = 5568, - [5747] = 5640, - [5748] = 5645, + [5746] = 5746, + [5747] = 5747, + [5748] = 5748, [5749] = 5749, - [5750] = 5733, - [5751] = 5539, - [5752] = 5522, - [5753] = 5579, - [5754] = 5555, - [5755] = 5539, - [5756] = 5565, - [5757] = 5601, + [5750] = 5750, + [5751] = 5723, + [5752] = 5752, + [5753] = 5744, + [5754] = 5754, + [5755] = 5755, + [5756] = 5756, + [5757] = 5757, [5758] = 5758, - [5759] = 5759, - [5760] = 5760, - [5761] = 5616, - [5762] = 5605, - [5763] = 5562, - [5764] = 5532, - [5765] = 5593, + [5759] = 5735, + [5760] = 918, + [5761] = 5726, + [5762] = 5754, + [5763] = 5763, + [5764] = 5764, + [5765] = 5765, [5766] = 5766, - [5767] = 5522, - [5768] = 5522, - [5769] = 5565, - [5770] = 5760, - [5771] = 5522, - [5772] = 5772, - [5773] = 5595, - [5774] = 5580, - [5775] = 5552, - [5776] = 5647, - [5777] = 5532, - [5778] = 5778, - [5779] = 5565, - [5780] = 5589, - [5781] = 5532, - [5782] = 5552, - [5783] = 5546, - [5784] = 5758, - [5785] = 5565, - [5786] = 5546, - [5787] = 5552, - [5788] = 5562, - [5789] = 5533, - [5790] = 5545, + [5767] = 5756, + [5768] = 5768, + [5769] = 5596, + [5770] = 5770, + [5771] = 5771, + [5772] = 5598, + [5773] = 5773, + [5774] = 5735, + [5775] = 5775, + [5776] = 5776, + [5777] = 5777, + [5778] = 5722, + [5779] = 5779, + [5780] = 5734, + [5781] = 5736, + [5782] = 5782, + [5783] = 5737, + [5784] = 5784, + [5785] = 5730, + [5786] = 5715, + [5787] = 5782, + [5788] = 5788, + [5789] = 5757, + [5790] = 5758, [5791] = 5791, - [5792] = 5580, - [5793] = 5720, - [5794] = 5598, - [5795] = 5159, - [5796] = 5580, - [5797] = 5526, - [5798] = 5580, - [5799] = 5527, + [5792] = 5792, + [5793] = 5793, + [5794] = 5794, + [5795] = 4074, + [5796] = 5796, + [5797] = 916, + [5798] = 5798, + [5799] = 5799, [5800] = 5800, - [5801] = 5691, - [5802] = 5528, - [5803] = 5571, - [5804] = 5528, - [5805] = 5533, + [5801] = 5801, + [5802] = 5802, + [5803] = 5788, + [5804] = 5804, + [5805] = 5805, [5806] = 5806, - [5807] = 5539, - [5808] = 5532, - [5809] = 5543, - [5810] = 5531, - [5811] = 5601, - [5812] = 5602, - [5813] = 5539, - [5814] = 5532, - [5815] = 5532, - [5816] = 5532, - [5817] = 5539, - [5818] = 5554, - [5819] = 5730, - [5820] = 5546, - [5821] = 5528, - [5822] = 5607, - [5823] = 5749, - [5824] = 5824, - [5825] = 5825, - [5826] = 5766, - [5827] = 5827, - [5828] = 5825, - [5829] = 5590, - [5830] = 5601, - [5831] = 5554, - [5832] = 5832, - [5833] = 5554, - [5834] = 5554, - [5835] = 5554, - [5836] = 5554, - [5837] = 5668, + [5807] = 5807, + [5808] = 5808, + [5809] = 5809, + [5810] = 5810, + [5811] = 5811, + [5812] = 5812, + [5813] = 5791, + [5814] = 5814, + [5815] = 5186, + [5816] = 5188, + [5817] = 5817, + [5818] = 5189, + [5819] = 5819, + [5820] = 5713, + [5821] = 5234, + [5822] = 5822, + [5823] = 5823, + [5824] = 5715, + [5825] = 5810, + [5826] = 5826, + [5827] = 5716, + [5828] = 5828, + [5829] = 5829, + [5830] = 5830, + [5831] = 5831, + [5832] = 5718, + [5833] = 5792, + [5834] = 5834, + [5835] = 5719, + [5836] = 5836, + [5837] = 5819, [5838] = 5838, - [5839] = 5824, - [5840] = 5583, - [5841] = 5841, - [5842] = 5730, - [5843] = 5522, - [5844] = 5553, - [5845] = 5838, + [5839] = 5721, + [5840] = 5731, + [5841] = 5738, + [5842] = 5749, + [5843] = 5755, + [5844] = 5826, + [5845] = 5845, [5846] = 5846, - [5847] = 5846, - [5848] = 5736, - [5849] = 5526, - [5850] = 5552, - [5851] = 5530, - [5852] = 5609, - [5853] = 5679, - [5854] = 5547, - [5855] = 5609, + [5847] = 5847, + [5848] = 5848, + [5849] = 5733, + [5850] = 5850, + [5851] = 5846, + [5852] = 5852, + [5853] = 5729, + [5854] = 5828, + [5855] = 5717, [5856] = 5856, - [5857] = 5536, - [5858] = 5572, - [5859] = 5688, - [5860] = 5535, - [5861] = 5856, - [5862] = 5569, - [5863] = 5539, - [5864] = 5841, - [5865] = 5580, - [5866] = 5532, - [5867] = 5533, - [5868] = 5559, - [5869] = 5579, - [5870] = 5545, - [5871] = 5545, - [5872] = 5546, - [5873] = 5616, - [5874] = 5736, - [5875] = 5547, - [5876] = 5617, - [5877] = 5562, - [5878] = 5539, - [5879] = 5532, - [5880] = 5552, - [5881] = 5749, - [5882] = 5759, + [5857] = 5764, + [5858] = 5858, + [5859] = 5834, + [5860] = 5860, + [5861] = 5848, + [5862] = 5862, + [5863] = 5863, + [5864] = 5735, + [5865] = 5858, + [5866] = 5829, + [5867] = 5867, + [5868] = 5868, + [5869] = 5726, + [5870] = 5870, + [5871] = 5830, + [5872] = 5872, + [5873] = 5717, + [5874] = 5754, + [5875] = 5756, + [5876] = 5757, + [5877] = 5758, + [5878] = 5729, + [5879] = 5776, + [5880] = 5779, + [5881] = 5742, + [5882] = 5729, + [5883] = 5743, + [5884] = 5764, + [5885] = 5885, + [5886] = 5745, + [5887] = 5747, + [5888] = 5748, + [5889] = 5856, + [5890] = 5723, + [5891] = 5860, + [5892] = 5831, + [5893] = 5744, + [5894] = 5800, + [5895] = 5848, + [5896] = 5862, + [5897] = 5863, + [5898] = 5858, + [5899] = 5899, + [5900] = 5867, + [5901] = 5868, + [5902] = 5793, + [5903] = 5870, + [5904] = 5726, + [5905] = 5717, + [5906] = 5906, + [5907] = 5754, + [5908] = 5908, + [5909] = 5756, + [5910] = 5910, + [5911] = 5757, + [5912] = 5758, + [5913] = 5776, + [5914] = 5779, + [5915] = 5915, + [5916] = 917, + [5917] = 5764, + [5918] = 5918, + [5919] = 5770, + [5920] = 5856, + [5921] = 5921, + [5922] = 5764, + [5923] = 5860, + [5924] = 5924, + [5925] = 5848, + [5926] = 5926, + [5927] = 5862, + [5928] = 5863, + [5929] = 5858, + [5930] = 5804, + [5931] = 5771, + [5932] = 5805, + [5933] = 5867, + [5934] = 5868, + [5935] = 5770, + [5936] = 5870, + [5937] = 5771, + [5938] = 5177, + [5939] = 5754, + [5940] = 5178, + [5941] = 5756, + [5942] = 5179, + [5943] = 5757, + [5944] = 5758, + [5945] = 5773, + [5946] = 5806, + [5947] = 5775, + [5948] = 5253, + [5949] = 5763, + [5950] = 5773, + [5951] = 5718, + [5952] = 5807, + [5953] = 5777, + [5954] = 5722, + [5955] = 5734, + [5956] = 5856, + [5957] = 5736, + [5958] = 5564, + [5959] = 5860, + [5960] = 5960, + [5961] = 5848, + [5962] = 5737, + [5963] = 5862, + [5964] = 5964, + [5965] = 5863, + [5966] = 5775, + [5967] = 5967, + [5968] = 5858, + [5969] = 5713, + [5970] = 5867, + [5971] = 5868, + [5972] = 5809, + [5973] = 5870, + [5974] = 5716, + [5975] = 5975, + [5976] = 5793, + [5977] = 5782, + [5978] = 5754, + [5979] = 5756, + [5980] = 5788, + [5981] = 5757, + [5982] = 5758, + [5983] = 5777, + [5984] = 5564, + [5985] = 5722, + [5986] = 5867, + [5987] = 5791, + [5988] = 5811, + [5989] = 5868, + [5990] = 5792, + [5991] = 5569, + [5992] = 5812, + [5993] = 5856, + [5994] = 5734, + [5995] = 5862, + [5996] = 5863, + [5997] = 5714, + [5998] = 5998, + [5999] = 5867, + [6000] = 5868, + [6001] = 5729, + [6002] = 5870, + [6003] = 5736, + [6004] = 6004, + [6005] = 5720, + [6006] = 5754, + [6007] = 5720, + [6008] = 5756, + [6009] = 6009, + [6010] = 5757, + [6011] = 5758, + [6012] = 5800, + [6013] = 6013, + [6014] = 5804, + [6015] = 5805, + [6016] = 5737, + [6017] = 5856, + [6018] = 5806, + [6019] = 5862, + [6020] = 5728, + [6021] = 5863, + [6022] = 5807, + [6023] = 5867, + [6024] = 5868, + [6025] = 5870, + [6026] = 5809, + [6027] = 5754, + [6028] = 5802, + [6029] = 5756, + [6030] = 5757, + [6031] = 5758, + [6032] = 6032, + [6033] = 6009, + [6034] = 5811, + [6035] = 5812, + [6036] = 5856, + [6037] = 5870, + [6038] = 5862, + [6039] = 5863, + [6040] = 5856, + [6041] = 5867, + [6042] = 5868, + [6043] = 5870, + [6044] = 5742, + [6045] = 5862, + [6046] = 5754, + [6047] = 5860, + [6048] = 5756, + [6049] = 5732, + [6050] = 5757, + [6051] = 5758, + [6052] = 5234, + [6053] = 6053, + [6054] = 5743, + [6055] = 5817, + [6056] = 6056, + [6057] = 5718, + [6058] = 915, + [6059] = 5776, + [6060] = 5862, + [6061] = 5742, + [6062] = 5817, + [6063] = 5822, + [6064] = 5870, + [6065] = 5779, + [6066] = 5757, + [6067] = 5758, + [6068] = 5782, + [6069] = 2510, + [6070] = 6070, + [6071] = 5788, + [6072] = 4050, + [6073] = 5862, + [6074] = 5810, + [6075] = 5826, + [6076] = 5791, + [6077] = 5828, + [6078] = 5829, + [6079] = 5719, + [6080] = 5830, + [6081] = 6081, + [6082] = 2494, + [6083] = 5792, + [6084] = 5743, + [6085] = 5831, + [6086] = 5745, + [6087] = 6087, + [6088] = 4050, + [6089] = 5764, + [6090] = 6090, + [6091] = 5234, + [6092] = 6092, + [6093] = 5721, + [6094] = 5731, + [6095] = 5738, + [6096] = 5749, + [6097] = 5784, + [6098] = 5755, + [6099] = 5161, + [6100] = 5822, + [6101] = 6101, + [6102] = 5739, + [6103] = 5822, + [6104] = 6104, + [6105] = 5846, + [6106] = 5747, + [6107] = 6107, + [6108] = 5748, + [6109] = 5740, + [6110] = 6110, + [6111] = 6111, + [6112] = 5723, + [6113] = 6113, + [6114] = 5856, + [6115] = 6115, + [6116] = 6116, + [6117] = 5744, + [6118] = 5810, + [6119] = 5246, + [6120] = 5766, + [6121] = 4299, + [6122] = 6013, + [6123] = 5860, + [6124] = 5699, + [6125] = 6125, + [6126] = 5709, + [6127] = 5826, + [6128] = 5768, + [6129] = 6129, + [6130] = 6130, + [6131] = 5798, + [6132] = 5845, + [6133] = 5967, + [6134] = 6130, + [6135] = 6090, + [6136] = 5836, + [6137] = 5960, + [6138] = 5975, + [6139] = 5856, + [6140] = 5564, + [6141] = 5794, + [6142] = 5850, + [6143] = 5856, + [6144] = 6032, + [6145] = 5860, + [6146] = 6146, + [6147] = 6125, + [6148] = 5848, + [6149] = 5860, + [6150] = 6150, + [6151] = 5766, + [6152] = 5862, + [6153] = 6013, + [6154] = 6154, + [6155] = 4050, + [6156] = 6125, + [6157] = 5848, + [6158] = 5768, + [6159] = 6159, + [6160] = 5798, + [6161] = 5845, + [6162] = 5800, + [6163] = 6090, + [6164] = 5975, + [6165] = 5848, + [6166] = 5850, + [6167] = 5863, + [6168] = 5828, + [6169] = 5862, + [6170] = 6032, + [6171] = 6171, + [6172] = 6146, + [6173] = 5829, + [6174] = 5910, + [6175] = 5915, + [6176] = 5862, + [6177] = 6154, + [6178] = 6159, + [6179] = 5924, + [6180] = 5766, + [6181] = 6013, + [6182] = 5746, + [6183] = 5768, + [6184] = 5863, + [6185] = 5798, + [6186] = 5858, + [6187] = 5801, + [6188] = 6090, + [6189] = 5975, + [6190] = 5850, + [6191] = 5804, + [6192] = 5805, + [6193] = 6130, + [6194] = 6032, + [6195] = 5806, + [6196] = 6146, + [6197] = 6150, + [6198] = 5852, + [6199] = 5807, + [6200] = 6200, + [6201] = 6201, + [6202] = 6202, + [6203] = 5858, + [6204] = 5796, + [6205] = 5998, + [6206] = 5745, + [6207] = 5830, + [6208] = 5719, + [6209] = 5867, + [6210] = 5868, + [6211] = 6200, + [6212] = 6201, + [6213] = 5870, + [6214] = 5863, + [6215] = 5863, + [6216] = 6092, + [6217] = 4040, + [6218] = 6111, + [6219] = 6171, + [6220] = 5796, + [6221] = 6221, + [6222] = 5831, + [6223] = 5910, + [6224] = 5915, + [6225] = 5809, + [6226] = 5867, + [6227] = 5868, + [6228] = 5717, + [6229] = 4290, + [6230] = 5870, + [6231] = 5858, + [6232] = 5663, + [6233] = 5665, + [6234] = 5674, + [6235] = 914, + [6236] = 5730, + [6237] = 5733, + [6238] = 5717, + [6239] = 5964, + [6240] = 5770, + [6241] = 5739, + [6242] = 5740, + [6243] = 5293, + [6244] = 5730, + [6245] = 5746, + [6246] = 5663, + [6247] = 5811, + [6248] = 5733, + [6249] = 5812, + [6250] = 6250, + [6251] = 5754, + [6252] = 5756, + [6253] = 5757, + [6254] = 5758, + [6255] = 5176, + [6256] = 5247, + [6257] = 5248, + [6258] = 5715, + [6259] = 6200, + [6260] = 5823, + [6261] = 5665, + [6262] = 6201, + [6263] = 5721, + [6264] = 5731, + [6265] = 5739, + [6266] = 5740, + [6267] = 5234, + [6268] = 5808, + [6269] = 5796, + [6270] = 5738, + [6271] = 6146, + [6272] = 5746, + [6273] = 5749, + [6274] = 5771, + [6275] = 5674, + [6276] = 6276, + [6277] = 5755, + [6278] = 5754, + [6279] = 5747, + [6280] = 5756, + [6281] = 5763, + [6282] = 5757, + [6283] = 5758, + [6284] = 5773, + [6285] = 5665, + [6286] = 5748, + [6287] = 5867, + [6288] = 5716, + [6289] = 6289, + [6290] = 5776, + [6291] = 5779, + [6292] = 4283, + [6293] = 5868, + [6294] = 5784, + [6295] = 5776, + [6296] = 5779, + [6297] = 5784, + [6298] = 5870, + [6299] = 6299, + [6300] = 5801, + [6301] = 5775, + [6302] = 6200, + [6303] = 5801, + [6304] = 5808, + [6305] = 6289, + [6306] = 6201, + [6307] = 5817, + [6308] = 6308, + [6309] = 5846, + [6310] = 5808, + [6311] = 5253, + [6312] = 5713, + [6313] = 5777, + [6314] = 6314, + [6315] = 6315, + [6316] = 6316, + [6317] = 6317, + [6318] = 6318, + [6319] = 6317, + [6320] = 6320, + [6321] = 6321, + [6322] = 6322, + [6323] = 6317, + [6324] = 6324, + [6325] = 6325, + [6326] = 6326, + [6327] = 6327, + [6328] = 6328, + [6329] = 6329, + [6330] = 6330, + [6331] = 5244, + [6332] = 4064, + [6333] = 6333, + [6334] = 6327, + [6335] = 4074, + [6336] = 6336, + [6337] = 6327, + [6338] = 6338, + [6339] = 6339, + [6340] = 6340, + [6341] = 6341, + [6342] = 6342, + [6343] = 4064, + [6344] = 6344, + [6345] = 6345, + [6346] = 6346, + [6347] = 5281, + [6348] = 6348, + [6349] = 6349, + [6350] = 6350, + [6351] = 6351, + [6352] = 6352, + [6353] = 6353, + [6354] = 5294, + [6355] = 6355, + [6356] = 6356, + [6357] = 6357, + [6358] = 6358, + [6359] = 6327, + [6360] = 6360, + [6361] = 6340, + [6362] = 6362, + [6363] = 6363, + [6364] = 6352, + [6365] = 6365, + [6366] = 6327, + [6367] = 6360, + [6368] = 6368, + [6369] = 6340, + [6370] = 6370, + [6371] = 6350, + [6372] = 5491, + [6373] = 6373, + [6374] = 6374, + [6375] = 6375, + [6376] = 6376, + [6377] = 6377, + [6378] = 6378, + [6379] = 6362, + [6380] = 6380, + [6381] = 6381, + [6382] = 6382, + [6383] = 6383, + [6384] = 6384, + [6385] = 6385, + [6386] = 6317, + [6387] = 6387, + [6388] = 6388, + [6389] = 6318, + [6390] = 6104, + [6391] = 6391, + [6392] = 6339, + [6393] = 6393, + [6394] = 6394, + [6395] = 6395, + [6396] = 6321, + [6397] = 6397, + [6398] = 6338, + [6399] = 6399, + [6400] = 6115, + [6401] = 6383, + [6402] = 6402, + [6403] = 6383, + [6404] = 6404, + [6405] = 6384, + [6406] = 6406, + [6407] = 6387, + [6408] = 6408, + [6409] = 6350, + [6410] = 6399, + [6411] = 6411, + [6412] = 6327, + [6413] = 6360, + [6414] = 6340, + [6415] = 6415, + [6416] = 1517, + [6417] = 6327, + [6418] = 6418, + [6419] = 6330, + [6420] = 6360, + [6421] = 6421, + [6422] = 6422, + [6423] = 6423, + [6424] = 6340, + [6425] = 6384, + [6426] = 6356, + [6427] = 6427, + [6428] = 6327, + [6429] = 6349, + [6430] = 6349, + [6431] = 6387, + [6432] = 6317, + [6433] = 6317, + [6434] = 6317, + [6435] = 6317, + [6436] = 6317, + [6437] = 6317, + [6438] = 6317, + [6439] = 6439, + [6440] = 6440, + [6441] = 6381, + [6442] = 6318, + [6443] = 4089, + [6444] = 6397, + [6445] = 6327, + [6446] = 6360, + [6447] = 6338, + [6448] = 6340, + [6449] = 6408, + [6450] = 6399, + [6451] = 6411, + [6452] = 5491, + [6453] = 6415, + [6454] = 6454, + [6455] = 6421, + [6456] = 6317, + [6457] = 6377, + [6458] = 6423, + [6459] = 6356, + [6460] = 6460, + [6461] = 6327, + [6462] = 6360, + [6463] = 6340, + [6464] = 6317, + [6465] = 6339, + [6466] = 6466, + [6467] = 4080, + [6468] = 6317, + [6469] = 6318, + [6470] = 6397, + [6471] = 6471, + [6472] = 6408, + [6473] = 6411, + [6474] = 6399, + [6475] = 6411, + [6476] = 6415, + [6477] = 6317, + [6478] = 6421, + [6479] = 6381, + [6480] = 6423, + [6481] = 6356, + [6482] = 6382, + [6483] = 6483, + [6484] = 6439, + [6485] = 6317, + [6486] = 6336, + [6487] = 6423, + [6488] = 6330, + [6489] = 6381, + [6490] = 4089, + [6491] = 6330, + [6492] = 6317, + [6493] = 6493, + [6494] = 6494, + [6495] = 6320, + [6496] = 6483, + [6497] = 6497, + [6498] = 6320, + [6499] = 6499, + [6500] = 6330, + [6501] = 6330, + [6502] = 6365, + [6503] = 6113, + [6504] = 6504, + [6505] = 6505, + [6506] = 6506, + [6507] = 6338, + [6508] = 6422, + [6509] = 6509, + [6510] = 6471, + [6511] = 6511, + [6512] = 6381, + [6513] = 6368, + [6514] = 6460, + [6515] = 6327, + [6516] = 6393, + [6517] = 6357, + [6518] = 6518, + [6519] = 6519, + [6520] = 6362, + [6521] = 6521, + [6522] = 6317, + [6523] = 6320, + [6524] = 6524, + [6525] = 6338, + [6526] = 6497, + [6527] = 6527, + [6528] = 6349, + [6529] = 6345, + [6530] = 6460, + [6531] = 6317, + [6532] = 6518, + [6533] = 6533, + [6534] = 6534, + [6535] = 6336, + [6536] = 6362, + [6537] = 6460, + [6538] = 6404, + [6539] = 6539, + [6540] = 6471, + [6541] = 6330, + [6542] = 6542, + [6543] = 6543, + [6544] = 6544, + [6545] = 6380, + [6546] = 6350, + [6547] = 6382, + [6548] = 6548, + [6549] = 6339, + [6550] = 6527, + [6551] = 6406, + [6552] = 6552, + [6553] = 6544, + [6554] = 2510, + [6555] = 6327, + [6556] = 6336, + [6557] = 6317, + [6558] = 6330, + [6559] = 6559, + [6560] = 6415, + [6561] = 6561, + [6562] = 6345, + [6563] = 6338, + [6564] = 6421, + [6565] = 6565, + [6566] = 6388, + [6567] = 6567, + [6568] = 6395, + [6569] = 6345, + [6570] = 5491, + [6571] = 6345, + [6572] = 6327, + [6573] = 6360, + [6574] = 4080, + [6575] = 6539, + [6576] = 6340, + [6577] = 5207, + [6578] = 6439, + [6579] = 6579, + [6580] = 6466, + [6581] = 6360, + [6582] = 6408, + [6583] = 6583, + [6584] = 6439, + [6585] = 6381, + [6586] = 6422, + [6587] = 6394, + [6588] = 6471, + [6589] = 2494, + [6590] = 6341, + [6591] = 6327, + [6592] = 6382, + [6593] = 6397, + [6594] = 6422, + [6595] = 6595, + [6596] = 6596, + [6597] = 6597, + [6598] = 6598, + [6599] = 6081, + [6600] = 6600, + [6601] = 6601, + [6602] = 6602, + [6603] = 6603, + [6604] = 6604, + [6605] = 6605, + [6606] = 6606, + [6607] = 6601, + [6608] = 6608, + [6609] = 6609, + [6610] = 6610, + [6611] = 6611, + [6612] = 6612, + [6613] = 6613, + [6614] = 6602, + [6615] = 6615, + [6616] = 6616, + [6617] = 6617, + [6618] = 6618, + [6619] = 6619, + [6620] = 6620, + [6621] = 6621, + [6622] = 6622, + [6623] = 6623, + [6624] = 6615, + [6625] = 6609, + [6626] = 6600, + [6627] = 6627, + [6628] = 6628, + [6629] = 6601, + [6630] = 6630, + [6631] = 6631, + [6632] = 6632, + [6633] = 6633, + [6634] = 6634, + [6635] = 6600, + [6636] = 6601, + [6637] = 6637, + [6638] = 6605, + [6639] = 6600, + [6640] = 6640, + [6641] = 6600, + [6642] = 6642, + [6643] = 6601, + [6644] = 6644, + [6645] = 6606, + [6646] = 6646, + [6647] = 6602, + [6648] = 6603, + [6649] = 6649, + [6650] = 6650, + [6651] = 6651, + [6652] = 6652, + [6653] = 6609, + [6654] = 6654, + [6655] = 6655, + [6656] = 6600, + [6657] = 6657, + [6658] = 6604, + [6659] = 6659, + [6660] = 6660, + [6661] = 6661, + [6662] = 6596, + [6663] = 6655, + [6664] = 6664, + [6665] = 6665, + [6666] = 6616, + [6667] = 6615, + [6668] = 6668, + [6669] = 6669, + [6670] = 6616, + [6671] = 6671, + [6672] = 6615, + [6673] = 6598, + [6674] = 6601, + [6675] = 6651, + [6676] = 6676, + [6677] = 6677, + [6678] = 6615, + [6679] = 6679, + [6680] = 6603, + [6681] = 6603, + [6682] = 6682, + [6683] = 6683, + [6684] = 6684, + [6685] = 6600, + [6686] = 6686, + [6687] = 6687, + [6688] = 6611, + [6689] = 6612, + [6690] = 6690, + [6691] = 6605, + [6692] = 6606, + [6693] = 6616, + [6694] = 6617, + [6695] = 6682, + [6696] = 6696, + [6697] = 6622, + [6698] = 6698, + [6699] = 6699, + [6700] = 6606, + [6701] = 6602, + [6702] = 6627, + [6703] = 6600, + [6704] = 6704, + [6705] = 6633, + [6706] = 6609, + [6707] = 6601, + [6708] = 6637, + [6709] = 6609, + [6710] = 6710, + [6711] = 6600, + [6712] = 6601, + [6713] = 6644, + [6714] = 6714, + [6715] = 6600, + [6716] = 6611, + [6717] = 6615, + [6718] = 6619, + [6719] = 6612, + [6720] = 6651, + [6721] = 6601, + [6722] = 6606, + [6723] = 6710, + [6724] = 6724, + [6725] = 6725, + [6726] = 6604, + [6727] = 6601, + [6728] = 6660, + [6729] = 6600, + [6730] = 6615, + [6731] = 6602, + [6732] = 6617, + [6733] = 6598, + [6734] = 6734, + [6735] = 6598, + [6736] = 6601, + [6737] = 6682, + [6738] = 6671, + [6739] = 6609, + [6740] = 6740, + [6741] = 6602, + [6742] = 6686, + [6743] = 6676, + [6744] = 6710, + [6745] = 6682, + [6746] = 6679, + [6747] = 6686, + [6748] = 6748, + [6749] = 6696, + [6750] = 6649, + [6751] = 6751, + [6752] = 6724, + [6753] = 6725, + [6754] = 6602, + [6755] = 6710, + [6756] = 6756, + [6757] = 6734, + [6758] = 6758, + [6759] = 6601, + [6760] = 6724, + [6761] = 6725, + [6762] = 6679, + [6763] = 6632, + [6764] = 6764, + [6765] = 6602, + [6766] = 6766, + [6767] = 6615, + [6768] = 6632, + [6769] = 6657, + [6770] = 6655, + [6771] = 6655, + [6772] = 6598, + [6773] = 6606, + [6774] = 6600, + [6775] = 6682, + [6776] = 6686, + [6777] = 6710, + [6778] = 6622, + [6779] = 6601, + [6780] = 6780, + [6781] = 6724, + [6782] = 6725, + [6783] = 6613, + [6784] = 6601, + [6785] = 6598, + [6786] = 6786, + [6787] = 6602, + [6788] = 6788, + [6789] = 6682, + [6790] = 6790, + [6791] = 6598, + [6792] = 6686, + [6793] = 6619, + [6794] = 6794, + [6795] = 6632, + [6796] = 6704, + [6797] = 6632, + [6798] = 6627, + [6799] = 6799, + [6800] = 6655, + [6801] = 6600, + [6802] = 6802, + [6803] = 6657, + [6804] = 6601, + [6805] = 6616, + [6806] = 6696, + [6807] = 6655, + [6808] = 6710, + [6809] = 6809, + [6810] = 6630, + [6811] = 6686, + [6812] = 6812, + [6813] = 6605, + [6814] = 6814, + [6815] = 6815, + [6816] = 6682, + [6817] = 6724, + [6818] = 6627, + [6819] = 6725, + [6820] = 6616, + [6821] = 6598, + [6822] = 6822, + [6823] = 6823, + [6824] = 6824, + [6825] = 6600, + [6826] = 6826, + [6827] = 1104, + [6828] = 6646, + [6829] = 6633, + [6830] = 6764, + [6831] = 6682, + [6832] = 6600, + [6833] = 6657, + [6834] = 6601, + [6835] = 6835, + [6836] = 6654, + [6837] = 6686, + [6838] = 6620, + [6839] = 6751, + [6840] = 6696, + [6841] = 6841, + [6842] = 6686, + [6843] = 6637, + [6844] = 6824, + [6845] = 6710, + [6846] = 6846, + [6847] = 6847, + [6848] = 6601, + [6849] = 6640, + [6850] = 6621, + [6851] = 6628, + [6852] = 6665, + [6853] = 6710, + [6854] = 6602, + [6855] = 6642, + [6856] = 6756, + [6857] = 6857, + [6858] = 6802, + [6859] = 6657, + [6860] = 6598, + [6861] = 6602, + [6862] = 6862, + [6863] = 6597, + [6864] = 6864, + [6865] = 6826, + [6866] = 6600, + [6867] = 6601, + [6868] = 6868, + [6869] = 6655, + [6870] = 6696, + [6871] = 6655, + [6872] = 6684, + [6873] = 6724, + [6874] = 6812, + [6875] = 6598, + [6876] = 6609, + [6877] = 6644, + [6878] = 6632, + [6879] = 6616, + [6880] = 6835, + [6881] = 6699, + [6882] = 6642, + [6883] = 6631, + [6884] = 6652, + [6885] = 6676, + [6886] = 6886, + [6887] = 6600, + [6888] = 6823, + [6889] = 6601, + [6890] = 1094, + [6891] = 6891, + [6892] = 6613, + [6893] = 6724, + [6894] = 6725, + [6895] = 6780, + [6896] = 6896, + [6897] = 6651, + [6898] = 6633, + [6899] = 6602, + [6900] = 6605, + [6901] = 6606, + [6902] = 6725, + [6903] = 6600, + [6904] = 6724, + [6905] = 6905, + [6906] = 6906, + [6907] = 6601, + [6908] = 6659, + [6909] = 6909, + [6910] = 6660, + [6911] = 6683, + [6912] = 6598, + [6913] = 6613, + [6914] = 6600, + [6915] = 6601, + [6916] = 6632, + [6917] = 6602, + [6918] = 6600, + [6919] = 6600, + [6920] = 6601, + [6921] = 6725, + [6922] = 6655, + [6923] = 6601, + [6924] = 6764, + [6925] = 6601, + [6926] = 6655, + [6927] = 6596, + [6928] = 5918, + [6929] = 6665, + [6930] = 6632, + [6931] = 6600, + [6932] = 6932, + [6933] = 6600, + [6934] = 6660, + [6935] = 6661, + [6936] = 6622, + [6937] = 6764, + [6938] = 6606, + [6939] = 6909, + [6940] = 6665, + [6941] = 6650, + [6942] = 6698, + [6943] = 6740, + [6944] = 6661, + [6945] = 6600, + [6946] = 6906, + [6947] = 6764, + [6948] = 6619, + [6949] = 6764, + [6950] = 6764, + [6951] = 6764, + [6952] = 6601, + [6953] = 6790, + [6954] = 6905, + [6955] = 6596, + [6956] = 6786, + [6957] = 6655, + [6958] = 6612, + [6959] = 6906, + [6960] = 6637, + [6961] = 6886, + [6962] = 6604, + [6963] = 6847, + [6964] = 6671, + [6965] = 6600, + [6966] = 6617, + [6967] = 6600, + [6968] = 6794, + [6969] = 6969, + [6970] = 6906, + [6971] = 6971, + [6972] = 6862, + [6973] = 6671, + [6974] = 6809, + [6975] = 6969, + [6976] = 6611, + [6977] = 6604, + [6978] = 6644, + [6979] = 6609, + [6980] = 6598, + [6981] = 6616, + [6982] = 6676, + [6983] = 6657, + [6984] = 6704, + [6985] = 6600, + [6986] = 6679, + [6987] = 6601, + [6988] = 6630, + [6989] = 6989, + [6990] = 6847, + [6991] = 6969, + [6992] = 6847, + [6993] = 6993, + [6994] = 6714, + [6995] = 6600, + [6996] = 6601, + [6997] = 6684, + [6998] = 6601, + [6999] = 6815, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -10574,2874 +11825,5200 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(69); - if (lookahead == '\r') SKIP(65); - if (lookahead == '!') ADVANCE(210); - if (lookahead == '"') ADVANCE(24); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(121); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '+') ADVANCE(110); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(101); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(85); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(131); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(144); - if (lookahead == '?') ADVANCE(220); - if (lookahead == '@') ADVANCE(99); - if (lookahead == '[') ADVANCE(96); - if (lookahead == '\\') ADVANCE(165); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(124); - if (lookahead == 'e') ADVANCE(198); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '}') ADVANCE(108); - if (lookahead == '~') ADVANCE(127); + if (eof) ADVANCE(160); + if (lookahead == '\r') SKIP(155); + if (lookahead == '!') ADVANCE(390); + if (lookahead == '"') ADVANCE(77); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(240); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(223); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(214); + if (lookahead == '.') ADVANCE(163); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(303); + if (lookahead == '1') ADVANCE(304); + if (lookahead == ':') ADVANCE(186); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(252); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(400); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(243); + if (lookahead == '_') ADVANCE(376); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'f') ADVANCE(355); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(352); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(219); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(318); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(377); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(377); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(306); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(65); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + lookahead == 0xfeff) SKIP(155); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\n') ADVANCE(380); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(162); + if (lookahead == '\n') ADVANCE(283); END_STATE(); case 3: if (lookahead == '\n') SKIP(3); - if (lookahead == '\r') ADVANCE(167); - if (lookahead == '#') ADVANCE(168); - if (lookahead == '\\') ADVANCE(166); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '}') ADVANCE(108); + if (lookahead == '\r') ADVANCE(288); + if (lookahead == '#') ADVANCE(289); + if (lookahead == '\\') ADVANCE(287); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(167); - if (lookahead != 0) ADVANCE(168); + lookahead == 0xfeff) ADVANCE(288); + if (lookahead != 0) ADVANCE(289); END_STATE(); case 4: if (lookahead == '\n') SKIP(4); if (lookahead == '\r') SKIP(4); - if (lookahead == '#') ADVANCE(202); - if (lookahead == '\\') ADVANCE(206); + if (lookahead == '#') ADVANCE(378); + if (lookahead == '\\') ADVANCE(382); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(207); - if (lookahead != 0) ADVANCE(208); + lookahead == 0xfeff) ADVANCE(383); + if (lookahead != 0) ADVANCE(384); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(112); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(84); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(142); - if (lookahead == '?') ADVANCE(220); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '}') ADVANCE(108); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '!') ADVANCE(31); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '+') ADVANCE(111); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(85); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(144); - if (lookahead == '@') ADVANCE(99); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '^') ADVANCE(124); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(94); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(85); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '@') ADVANCE(98); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(123); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(108); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(186); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(253); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(243); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(218); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '@') ADVANCE(98); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(123); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(108); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '?') ADVANCE(400); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(8); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '+') ADVANCE(111); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(129); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(41); - if (lookahead == '@') ADVANCE(99); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '^') ADVANCE(124); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 10: if (lookahead == '\r') SKIP(10); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(111); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(28); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(135); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(43); - if (lookahead == '@') ADVANCE(34); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '^') ADVANCE(35); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(36); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(186); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(10); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(84); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(42); - if (lookahead == '@') ADVANCE(98); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(123); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(108); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(250); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(243); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(218); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 12: if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(31); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '+') ADVANCE(111); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '/') ADVANCE(113); - if (lookahead == ':') ADVANCE(85); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(144); - if (lookahead == '@') ADVANCE(99); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '^') ADVANCE(124); - if (lookahead == '|') ADVANCE(105); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(12); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); - if (lookahead == '!') ADVANCE(209); - if (lookahead == '"') ADVANCE(24); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(121); - if (lookahead == '(') ADVANCE(25); - if (lookahead == '*') ADVANCE(80); - if (lookahead == '+') ADVANCE(110); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(101); - if (lookahead == '/') ADVANCE(115); - if (lookahead == '<') ADVANCE(130); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(144); - if (lookahead == '[') ADVANCE(44); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '^') ADVANCE(124); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(186); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(13); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); - if (lookahead == '!') ADVANCE(31); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '+') ADVANCE(111); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '0') ADVANCE(176); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(144); - if (lookahead == '@') ADVANCE(99); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(124); - if (lookahead == '|') ADVANCE(105); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(94); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 15: if (lookahead == '\r') SKIP(15); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '/') ADVANCE(114); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '@') ADVANCE(98); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(123); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(108); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(186); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(15); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 16: if (lookahead == '\r') SKIP(16); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '+') ADVANCE(111); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '/') ADVANCE(113); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(29); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(41); - if (lookahead == '@') ADVANCE(99); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '^') ADVANCE(124); - if (lookahead == 'e') ADVANCE(198); - if (lookahead == '|') ADVANCE(105); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(186); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(352); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(16); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 17: if (lookahead == '\r') SKIP(17); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(203); - if (lookahead == ')') ADVANCE(74); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '.') ADVANCE(71); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(136); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(143); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(108); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(17); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 18: if (lookahead == '\r') SKIP(18); - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '/') ADVANCE(114); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(30); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(146); - if (lookahead == '?') ADVANCE(220); - if (lookahead == '@') ADVANCE(98); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(123); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(108); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(186); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(18); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 19: if (lookahead == '\r') SKIP(19); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ':') ADVANCE(84); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == 'e') ADVANCE(200); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(94); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(19); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 20: if (lookahead == '\r') SKIP(20); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(75); - if (lookahead == ':') ADVANCE(84); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '[') ADVANCE(96); - if (lookahead == '\\') ADVANCE(21); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(90); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '+') ADVANCE(224); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '@') ADVANCE(96); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(97); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(98); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(20); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 21: - if (lookahead == '\r') ADVANCE(1); - if ((!eof && lookahead == 00) || - lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') SKIP(21); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(21); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 22: if (lookahead == '\r') SKIP(22); - if (lookahead == '!') ADVANCE(31); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '+') ADVANCE(111); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(144); - if (lookahead == '@') ADVANCE(99); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '^') ADVANCE(124); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(22); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 23: if (lookahead == '\r') SKIP(23); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '/') ADVANCE(114); - if (lookahead == ':') ADVANCE(85); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '@') ADVANCE(98); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(123); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(108); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(254); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(23); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 24: - if (lookahead == '"') ADVANCE(219); + if (lookahead == '\r') SKIP(24); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(24); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 25: - if (lookahead == ')') ADVANCE(217); + if (lookahead == '\r') SKIP(25); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(254); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(25); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 26: - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + if (lookahead == '\r') SKIP(26); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(254); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'i') ADVANCE(350); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(26); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 27: - if (lookahead == '.') ADVANCE(161); + if (lookahead == '\r') SKIP(27); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(254); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'i') ADVANCE(350); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(27); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 28: - if (lookahead == '/') ADVANCE(38); - if (lookahead == '=') ADVANCE(151); + if (lookahead == '\r') SKIP(28); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'i') ADVANCE(350); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(28); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 29: - if (lookahead == '<') ADVANCE(126); + if (lookahead == '\r') SKIP(29); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'i') ADVANCE(350); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(29); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 30: - if (lookahead == '<') ADVANCE(125); + if (lookahead == '\r') SKIP(30); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'n') ADVANCE(354); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(30); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 31: - if (lookahead == '=') ADVANCE(140); + if (lookahead == '\r') SKIP(31); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(232); + if (lookahead == ':') ADVANCE(186); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(253); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(243); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(218); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(31); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 32: - if (lookahead == '=') ADVANCE(140); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); + if (lookahead == '\r') SKIP(32); + if (lookahead == '!') ADVANCE(389); + if (lookahead == '"') ADVANCE(77); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(240); + if (lookahead == '(') ADVANCE(78); + if (lookahead == '*') ADVANCE(179); + if (lookahead == '+') ADVANCE(223); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(214); + if (lookahead == '/') ADVANCE(234); + if (lookahead == '<') ADVANCE(251); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '[') ADVANCE(106); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(243); + if (lookahead == 'a') ADVANCE(349); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(219); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(32); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(154); + if (lookahead == '\r') SKIP(33); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(232); + if (lookahead == ':') ADVANCE(186); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(253); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(243); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '|') ADVANCE(218); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(33); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 34: - if (lookahead == '=') ADVANCE(152); + if (lookahead == '\r') SKIP(34); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(232); + if (lookahead == ':') ADVANCE(186); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(253); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(243); + if (lookahead == '_') ADVANCE(141); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'e') ADVANCE(118); + if (lookahead == 'f') ADVANCE(130); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == '|') ADVANCE(218); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '0' || + lookahead == '1') ADVANCE(310); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(34); END_STATE(); case 35: - if (lookahead == '=') ADVANCE(159); + if (lookahead == '\r') SKIP(35); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(232); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(253); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(243); + if (lookahead == '_') ADVANCE(142); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'b') ADVANCE(137); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '|') ADVANCE(218); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(35); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(306); END_STATE(); case 36: - if (lookahead == '=') ADVANCE(160); + if (lookahead == '\r') SKIP(36); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '/') ADVANCE(231); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(400); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '}') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(36); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 37: - if (lookahead == '=') ADVANCE(155); + if (lookahead == '\r') SKIP(37); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'b') ADVANCE(137); + if (lookahead == 'e') ADVANCE(118); + if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(317); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(37); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 38: - if (lookahead == '=') ADVANCE(153); + if (lookahead == '\r') SKIP(38); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '_') ADVANCE(142); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'b') ADVANCE(137); + if (lookahead == 'e') ADVANCE(118); + if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(38); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(306); END_STATE(); case 39: - if (lookahead == '=') ADVANCE(157); + if (lookahead == '\r') SKIP(39); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '_') ADVANCE(145); + if (lookahead == 'a') ADVANCE(294); + if (lookahead == 'b') ADVANCE(299); + if (lookahead == 'f') ADVANCE(297); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(39); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('c' <= lookahead && lookahead <= 'e')) ADVANCE(300); END_STATE(); case 40: - if (lookahead == '=') ADVANCE(156); + if (lookahead == '\r') SKIP(40); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '_') ADVANCE(141); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'b') ADVANCE(137); + if (lookahead == 'e') ADVANCE(118); + if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (lookahead == '0' || + lookahead == '1') ADVANCE(310); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(40); END_STATE(); case 41: - if (lookahead == '>') ADVANCE(82); + if (lookahead == '\r') SKIP(41); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(94); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(41); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 42: - if (lookahead == '>') ADVANCE(81); + if (lookahead == '\r') SKIP(42); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(317); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 43: - if (lookahead == '>') ADVANCE(40); + if (lookahead == '\r') SKIP(43); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(165); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(86); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(43); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 44: - if (lookahead == ']') ADVANCE(218); + if (lookahead == '\r') SKIP(44); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '_') ADVANCE(145); + if (lookahead == 'a') ADVANCE(295); + if (lookahead == 'f') ADVANCE(296); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(44); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'e')) ADVANCE(300); END_STATE(); case 45: - if (lookahead == '_') ADVANCE(51); - if (lookahead == '0' || - lookahead == '1') ADVANCE(174); + if (lookahead == '\r') SKIP(45); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(94); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(45); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 46: - if (lookahead == '_') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(175); + if (lookahead == '\r') SKIP(46); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '_') ADVANCE(142); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(46); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(306); END_STATE(); case 47: - if (lookahead == '_') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(178); + if (lookahead == '\r') SKIP(47); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '_') ADVANCE(141); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (lookahead == '0' || + lookahead == '1') ADVANCE(310); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(47); END_STATE(); case 48: - if (lookahead == '{') ADVANCE(64); + if (lookahead == '\r') SKIP(48); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(186); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '_') ADVANCE(145); + if (lookahead == 'a') ADVANCE(294); + if (lookahead == 'b') ADVANCE(299); + if (lookahead == 'e') ADVANCE(293); + if (lookahead == 'f') ADVANCE(297); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(48); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == 'c' || + lookahead == 'd') ADVANCE(300); END_STATE(); case 49: - if (lookahead == '}') ADVANCE(162); - if (lookahead != 0) ADVANCE(49); + if (lookahead == '\r') SKIP(49); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(49); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 50: - if (lookahead == '+' || - lookahead == '-') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (lookahead == '\r') SKIP(50); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(50); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 51: - if (lookahead == '0' || - lookahead == '1') ADVANCE(174); + if (lookahead == '\r') SKIP(51); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(51); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(175); + if (lookahead == '\r') SKIP(52); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(186); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(52); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (lookahead == '\r') SKIP(53); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(85); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(243); + if (lookahead == '|') ADVANCE(218); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(53); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 54: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); + if (lookahead == '\r') SKIP(54); + if (lookahead == '#') ADVANCE(379); + if (lookahead == ',') ADVANCE(170); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'n') ADVANCE(354); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(54); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(178); + if (lookahead == '\r') SKIP(55); + if (lookahead == '#') ADVANCE(379); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'f') ADVANCE(363); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(55); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 56: + if (lookahead == '\r') SKIP(56); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(86); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '_') ADVANCE(145); + if (lookahead == 'a') ADVANCE(298); + if (lookahead == 'i') ADVANCE(111); + if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(386); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(385); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); + if (lookahead == '\r') SKIP(57); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(86); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'b') ADVANCE(137); + if (lookahead == 'e') ADVANCE(118); + if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(110); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(57); END_STATE(); case 58: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + if (lookahead == '\r') SKIP(58); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(379); + if (lookahead == ')') ADVANCE(169); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(257); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'b') ADVANCE(137); + if (lookahead == 'e') ADVANCE(118); + if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(58); END_STATE(); case 59: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + if (lookahead == '\r') SKIP(59); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(86); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(400); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(242); + if (lookahead == '|') ADVANCE(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(59); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 60: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); + if (lookahead == '\r') SKIP(60); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == ')') ADVANCE(169); + if (lookahead == ',') ADVANCE(170); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(257); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == '}') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(60); END_STATE(); case 61: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + if (lookahead == '\r') SKIP(61); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'n') ADVANCE(354); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '|') ADVANCE(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(61); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 62: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); + if (lookahead == '\r') SKIP(62); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '\\') ADVANCE(71); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(62); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 63: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); + if (lookahead == '\r') SKIP(63); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(90); + if (lookahead == '&') ADVANCE(91); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(93); + if (lookahead == '/') ADVANCE(84); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(87); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '@') ADVANCE(96); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(97); + if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(123); + if (lookahead == '|') ADVANCE(98); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(63); END_STATE(); case 64: - if (lookahead != 0 && - lookahead != '}') ADVANCE(49); + if (lookahead == '\r') SKIP(64); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(64); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 65: - if (eof) ADVANCE(69); if (lookahead == '\r') SKIP(65); - if (lookahead == '!') ADVANCE(210); - if (lookahead == '"') ADVANCE(24); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '%') ADVANCE(117); - if (lookahead == '&') ADVANCE(121); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '+') ADVANCE(110); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(101); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(85); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(131); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(144); - if (lookahead == '?') ADVANCE(220); - if (lookahead == '@') ADVANCE(99); - if (lookahead == '[') ADVANCE(96); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '^') ADVANCE(124); - if (lookahead == 'e') ADVANCE(198); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '}') ADVANCE(108); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(65); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 66: - if (eof) ADVANCE(69); if (lookahead == '\r') SKIP(66); - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(103); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(84); - if (lookahead == ';') ADVANCE(70); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(142); - if (lookahead == '?') ADVANCE(220); - if (lookahead == '@') ADVANCE(98); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(108); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == ',') ADVANCE(170); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(66); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 67: - if (eof) ADVANCE(69); if (lookahead == '\r') SKIP(67); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '+') ADVANCE(109); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '0') ADVANCE(171); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '@') ADVANCE(98); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == 'e') ADVANCE(199); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(365); + if (lookahead == '|') ADVANCE(217); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(67); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 68: - if (eof) ADVANCE(69); if (lookahead == '\r') SKIP(68); - if (lookahead == '#') ADVANCE(203); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '+') ADVANCE(109); - 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); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == 'e') ADVANCE(200); - if (lookahead == '{') ADVANCE(107); - if (lookahead == '~') ADVANCE(127); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'e') ADVANCE(373); + if (lookahead == 'n') ADVANCE(354); + if (lookahead == 'w') ADVANCE(339); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(68); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(201); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 69: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == '\r') SKIP(69); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(177); + if (lookahead == ',') ADVANCE(170); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(71); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(69); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '\r') SKIP(70); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'e') ADVANCE(372); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(70); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '\r') ADVANCE(1); + if ((!eof && lookahead == 00) || + lookahead == '\n') ADVANCE(380); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + if (lookahead == '\r') SKIP(72); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(253); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(243); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(218); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(72); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '\r') SKIP(73); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(73); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == '\r') SKIP(74); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(352); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(74); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == '\r') SKIP(75); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(75); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '\r') SKIP(76); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'f') ADVANCE(363); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(352); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '|') ADVANCE(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(76); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(92); - if (lookahead == '=') ADVANCE(150); + if (lookahead == '"') ADVANCE(399); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(91); + if (lookahead == ')') ADVANCE(397); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(37); - if (lookahead == '=') ADVANCE(150); + if (lookahead == '*') ADVANCE(99); + if (lookahead == '=') ADVANCE(271); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(150); + if (lookahead == '.') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '.') ADVANCE(282); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(156); + if (lookahead == '.') ADVANCE(322); + if (lookahead == '_') ADVANCE(83); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + if (lookahead == '.') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '/') ADVANCE(100); + if (lookahead == '=') ADVANCE(272); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(83); + if (lookahead == '<') ADVANCE(245); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '*') ADVANCE(88); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + if (lookahead == '<') ADVANCE(244); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_except); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + if (lookahead == '<') ADVANCE(101); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_except_STAR); + if (lookahead == '=') ADVANCE(261); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '=') ADVANCE(261); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(216); + if (lookahead == '=') ADVANCE(275); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(279); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(155); + if (lookahead == '=') ADVANCE(269); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(270); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(139); + if (lookahead == '=') ADVANCE(182); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '=') ADVANCE(260); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(218); + if (lookahead == '=') ADVANCE(273); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == '=') ADVANCE(280); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '=') ADVANCE(276); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(274); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(215); - if (lookahead == '=') ADVANCE(149); - if (lookahead == '>') ADVANCE(90); + if (lookahead == '=') ADVANCE(278); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(149); + if (lookahead == '=') ADVANCE(277); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(89); + if (lookahead == '>') ADVANCE(181); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '>') ADVANCE(180); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(160); + if (lookahead == '>') ADVANCE(102); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(160); - if (lookahead == '|') ADVANCE(213); + if (lookahead == ']') ADVANCE(398); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == 'c') ADVANCE(189); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == 'd') ADVANCE(227); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(214); - if (lookahead == '=') ADVANCE(148); + if (lookahead == 'f') ADVANCE(183); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(148); + if (lookahead == 'f') ADVANCE(183); + if (lookahead == 'n') ADVANCE(193); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == 'f') ADVANCE(183); + if (lookahead == 'n') ADVANCE(193); + if (lookahead == 's') ADVANCE(247); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(119); - if (lookahead == '=') ADVANCE(151); + if (lookahead == 'g') ADVANCE(116); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(118); + if (lookahead == 'g') ADVANCE(116); + if (lookahead == 't') ADVANCE(225); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(151); + if (lookahead == 'h') ADVANCE(200); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == 'i') ADVANCE(119); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(154); + if (lookahead == 'i') ADVANCE(136); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(153); + if (lookahead == 'l') ADVANCE(387); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == 'm') ADVANCE(166); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '=') ADVANCE(158); + if (lookahead == 'n') ADVANCE(108); + if (lookahead == 's') ADVANCE(171); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(158); + if (lookahead == 'n') ADVANCE(108); + if (lookahead == 's') ADVANCE(173); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == 'n') ADVANCE(193); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(159); + if (lookahead == 'n') ADVANCE(107); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == 'o') ADVANCE(135); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(157); + if (lookahead == 'o') ADVANCE(120); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == 'o') ADVANCE(114); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == 'o') ADVANCE(113); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(126); - if (lookahead == '=') ADVANCE(138); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'r') ADVANCE(126); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(126); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(147); + if (lookahead == 'r') ADVANCE(229); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(126); - if (lookahead == '=') ADVANCE(137); - if (lookahead == '>') ADVANCE(147); + if (lookahead == 'r') ADVANCE(191); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(125); + if (lookahead == 'r') ADVANCE(126); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(125); - if (lookahead == '=') ADVANCE(137); - if (lookahead == '>') ADVANCE(147); + if (lookahead == 's') ADVANCE(109); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(39); + if (lookahead == 't') ADVANCE(225); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(137); - if (lookahead == '>') ADVANCE(147); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == 'y') ADVANCE(195); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(211); + if (lookahead == '{') ADVANCE(154); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '}') ADVANCE(283); + if (lookahead != 0) ADVANCE(139); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '+' || + lookahead == '-') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == '0' || + lookahead == '1') ADVANCE(310); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_GT); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(306); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(141); - if (lookahead == '>') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(141); - if (lookahead == '>') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '>') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_LT_GT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_AT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(151); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead != 0 && + lookahead != '}') ADVANCE(139); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (eof) ADVANCE(160); + if (lookahead == '\r') SKIP(155); + if (lookahead == '!') ADVANCE(390); + if (lookahead == '"') ADVANCE(77); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(240); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '+') ADVANCE(223); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(214); + if (lookahead == '.') ADVANCE(163); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(303); + if (lookahead == '1') ADVANCE(304); + if (lookahead == ':') ADVANCE(186); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(252); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(400); + if (lookahead == '@') ADVANCE(212); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '^') ADVANCE(243); + if (lookahead == '_') ADVANCE(376); + if (lookahead == 'a') ADVANCE(347); + if (lookahead == 'b') ADVANCE(374); + if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'f') ADVANCE(355); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(352); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(219); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(318); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(377); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(377); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(306); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(155); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + if (eof) ADVANCE(160); + if (lookahead == '\r') SKIP(156); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(170); + if (lookahead == '-') ADVANCE(216); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == ':') ADVANCE(185); + if (lookahead == ';') ADVANCE(161); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(400); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'f') ADVANCE(355); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(156); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + if (eof) ADVANCE(160); + if (lookahead == '\r') SKIP(157); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'e') ADVANCE(342); + if (lookahead == 'f') ADVANCE(355); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(157); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + if (eof) ADVANCE(160); + if (lookahead == '\r') SKIP(158); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'f') ADVANCE(355); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(158); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (eof) ADVANCE(160); + if (lookahead == '\r') SKIP(159); + if (lookahead == '#') ADVANCE(379); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(168); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(80); + if (lookahead == '0') ADVANCE(312); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'e') ADVANCE(343); + if (lookahead == 'f') ADVANCE(355); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'w') ADVANCE(339); + if (lookahead == '{') ADVANCE(220); + if (lookahead == '~') ADVANCE(246); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 162: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 163: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(81); END_STATE(); case 164: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(163); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_BSLASH); - ADVANCE_MAP( - 0, 204, - '\n', 162, - '\r', 2, - 'N', 48, - 'U', 62, - 'u', 58, - 'x', 56, - '"', 162, - '\'', 162, - '\\', 162, - 'a', 162, - 'b', 162, - 'f', 162, - 'n', 162, - 'r', 162, - 't', 162, - 'v', 162, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(164); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); case 166: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if ((!eof && lookahead == 00)) ADVANCE(168); - if (lookahead == '\r') ADVANCE(168); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '{' && - lookahead != '}') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 167: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - ADVANCE_MAP( - '\r', 167, - '#', 168, - '\\', 166, - '\t', 167, - 0x0b, 167, - '\f', 167, - ' ', 167, - 0x200b, 167, - 0x2060, 167, - 0xfeff, 167, - ); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != '{' && - lookahead != '}') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_from); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 168: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '{' && - lookahead != '}') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 169: - ACCEPT_TOKEN(sym_type_conversion); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 170: - ACCEPT_TOKEN(sym_integer); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 171: - ACCEPT_TOKEN(sym_integer); - ADVANCE_MAP( - '.', 183, - '_', 173, - 'B', 45, - 'b', 45, - 'E', 50, - 'e', 50, - 'O', 46, - 'o', 46, - 'X', 47, - 'x', 47, - 'J', 170, - 'L', 170, - 'j', 170, - 'l', 170, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(172); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 172: - ACCEPT_TOKEN(sym_integer); - ADVANCE_MAP( - '.', 183, - '_', 173, - 'E', 50, - 'e', 50, - 'J', 170, - 'L', 170, - 'j', 170, - 'l', 170, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(172); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 173: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(183); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(50); - if (lookahead == 'J' || - lookahead == 'L' || - lookahead == 'j' || - lookahead == 'l') ADVANCE(170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(172); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(124); END_STATE(); case 174: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(51); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(170); - if (lookahead == '0' || - lookahead == '1') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 175: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(52); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(170); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(175); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 176: - ACCEPT_TOKEN(sym_integer); - ADVANCE_MAP( - '_', 179, - 'B', 45, - 'b', 45, - 'O', 46, - 'o', 46, - 'X', 47, - 'x', 47, - 'J', 170, - 'L', 170, - 'j', 170, - 'l', 170, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(177); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(205); + if (lookahead == '=') ADVANCE(271); END_STATE(); case 177: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(179); - if (lookahead == 'J' || - lookahead == 'L' || - lookahead == 'j' || - lookahead == 'l') ADVANCE(170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(177); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(204); END_STATE(); case 178: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(55); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(170); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(178); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(99); + if (lookahead == '=') ADVANCE(271); END_STATE(); case 179: - ACCEPT_TOKEN(sym_integer); - if (lookahead == 'J' || - lookahead == 'L' || - lookahead == 'j' || - lookahead == 'l') ADVANCE(170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(177); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(271); END_STATE(); case 180: - ACCEPT_TOKEN(sym_float); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 181: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(183); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(50); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(277); END_STATE(); case 182: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(184); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 183: - ACCEPT_TOKEN(sym_float); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(50); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 184: - ACCEPT_TOKEN(sym_float); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 185: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(88); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 186: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(189); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(182); END_STATE(); case 187: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(190); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 188: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(191); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 189: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(192); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 190: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(193); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_async); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 191: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(194); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 192: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(195); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 193: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(196); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 194: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(197); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_in); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 195: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(86); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_by); END_STATE(); case 196: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(185); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_by); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 197: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(87); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_except); + if (lookahead == '*') ADVANCE(199); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 198: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(186); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_except); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 199: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(187); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_except_STAR); END_STATE(); case 200: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(188); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 201: - ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); + ACCEPT_TOKEN(anon_sym_with); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); case 202: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(203); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 203: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '*') ADVANCE(396); END_STATE(); case 204: - ACCEPT_TOKEN(sym_line_continuation); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 205: - ACCEPT_TOKEN(sym_line_continuation); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(276); END_STATE(); case 206: - ACCEPT_TOKEN(aux_sym_run_directive_token1); - if ((!eof && lookahead == 00)) ADVANCE(205); - if (lookahead == '\n') ADVANCE(204); - if (lookahead == '\r') ADVANCE(1); - if (lookahead != 0) ADVANCE(208); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 207: - ACCEPT_TOKEN(aux_sym_run_directive_token1); - ADVANCE_MAP( - '#', 202, - '\\', 206, - '\t', 207, - 0x0b, 207, - '\f', 207, - ' ', 207, - 0x200b, 207, - 0x2060, 207, - 0xfeff, 207, - ); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(208); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(260); END_STATE(); case 208: - ACCEPT_TOKEN(aux_sym_run_directive_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(398); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(140); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(273); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(395); + if (lookahead == '=') ADVANCE(270); + if (lookahead == '>') ADVANCE(203); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(270); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(202); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(281); + if (lookahead == '|') ADVANCE(393); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == '\r') SKIP(0); - if (lookahead == 'D') ADVANCE(1); - 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 || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(0); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 1: - if (lookahead == 'E') ADVANCE(30); + case 221: + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 2: - if (lookahead == 'L') ADVANCE(31); + case 222: + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 3: - if (lookahead == 'a') ADVANCE(32); + case 223: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '=') ADVANCE(269); END_STATE(); - case 4: - if (lookahead == 'F') ADVANCE(33); + case 224: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(269); END_STATE(); - case 5: - if (lookahead == 'o') ADVANCE(34); + case 225: + ACCEPT_TOKEN(anon_sym_not); END_STATE(); - case 6: - if (lookahead == 'Y') ADVANCE(35); + case 226: + ACCEPT_TOKEN(anon_sym_not); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); - case 7: - if (lookahead == 'r') ADVANCE(36); + case 227: + ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 8: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(37); + case 228: + ACCEPT_TOKEN(anon_sym_and); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); - case 9: - if (lookahead == 'n') ADVANCE(38); - if (lookahead == 'p') ADVANCE(39); - if (lookahead == 's') ADVANCE(40); - if (lookahead == 'w') ADVANCE(41); + case 229: + ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 10: - if (lookahead == 'i') ADVANCE(42); - if (lookahead == 'r') ADVANCE(43); - if (lookahead == 'y') ADVANCE(44); + case 230: + ACCEPT_TOKEN(anon_sym_or); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); - case 11: - ADVANCE_MAP( - 'a', 45, - 'd', 46, - 'h', 47, - 'i', 48, - 'l', 49, - 'o', 50, - 'p', 51, - 't', 52, - ); + case 231: + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 12: - if (lookahead == 'e') ADVANCE(53); - if (lookahead == 'o') ADVANCE(54); + case 232: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '=') ADVANCE(272); END_STATE(); - case 13: - if (lookahead == 'l') ADVANCE(55); - if (lookahead == 'n') ADVANCE(56); - if (lookahead == 'x') ADVANCE(57); + case 233: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(237); END_STATE(); - case 14: - if (lookahead == 'i') ADVANCE(58); - if (lookahead == 'o') ADVANCE(59); - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 'u') ADVANCE(61); + case 234: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(272); END_STATE(); - case 15: - if (lookahead == 'i') ADVANCE(62); - if (lookahead == 'l') ADVANCE(63); + case 235: + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 16: - if (lookahead == 'f') ADVANCE(64); - if (lookahead == 'm') ADVANCE(65); - if (lookahead == 'n') ADVANCE(66); - if (lookahead == 's') ADVANCE(67); + case 236: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(275); END_STATE(); - case 17: - if (lookahead == 'a') ADVANCE(68); - if (lookahead == 'o') ADVANCE(69); + case 237: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 18: - if (lookahead == 'a') ADVANCE(70); + case 238: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(274); END_STATE(); - case 19: - if (lookahead == 'a') ADVANCE(71); - if (lookahead == 'e') ADVANCE(72); - if (lookahead == 'o') ADVANCE(73); + case 239: + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 20: - if (lookahead == 'b') ADVANCE(74); - if (lookahead == 'p') ADVANCE(75); - if (lookahead == 'r') ADVANCE(76); + case 240: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(392); + if (lookahead == '=') ADVANCE(279); END_STATE(); - case 21: - if (lookahead == 'a') ADVANCE(77); - if (lookahead == 'r') ADVANCE(78); - if (lookahead == 'u') ADVANCE(79); + case 241: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(279); END_STATE(); - case 22: - if (lookahead == 'a') ADVANCE(80); - if (lookahead == 'e') ADVANCE(81); + case 242: + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 23: - if (lookahead == 'h') ADVANCE(82); - if (lookahead == 'i') ADVANCE(83); - if (lookahead == 't') ADVANCE(84); + case 243: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(280); END_STATE(); - case 24: - if (lookahead == 'r') ADVANCE(85); - if (lookahead == 'y') ADVANCE(86); + case 244: + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 25: - if (lookahead == 'n') ADVANCE(87); + case 245: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(278); END_STATE(); - case 26: - if (lookahead == 'o') ADVANCE(88); + case 246: + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 27: - if (lookahead == 'h') ADVANCE(89); - if (lookahead == 'i') ADVANCE(90); + case 247: + ACCEPT_TOKEN(anon_sym_is); END_STATE(); - case 28: - if (lookahead == 'o') ADVANCE(91); + case 248: + ACCEPT_TOKEN(anon_sym_is); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); - case 29: - if (lookahead == 'i') ADVANCE(92); + case 249: + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 30: - if (lookahead == 'F') ADVANCE(93); + case 250: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(245); END_STATE(); - case 31: - if (lookahead == 'I') ADVANCE(94); - if (lookahead == 'S') ADVANCE(95); + case 251: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(245); + if (lookahead == '=') ADVANCE(259); END_STATE(); - case 32: - if (lookahead == 'l') ADVANCE(96); + case 252: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(245); + if (lookahead == '=') ADVANCE(259); + if (lookahead == '>') ADVANCE(268); END_STATE(); - case 33: - ACCEPT_TOKEN(anon_sym_IF); + case 253: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(245); + if (lookahead == '=') ADVANCE(258); + if (lookahead == '>') ADVANCE(268); END_STATE(); - case 34: - if (lookahead == 'n') ADVANCE(97); + case 254: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(244); END_STATE(); - case 35: - if (lookahead == 'T') ADVANCE(98); + case 255: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(244); + if (lookahead == '=') ADVANCE(258); + if (lookahead == '>') ADVANCE(268); END_STATE(); - case 36: - if (lookahead == 'u') ADVANCE(99); + case 256: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(101); END_STATE(); - case 37: - if (lookahead == 'f') ADVANCE(100); - if (lookahead == 's') ADVANCE(101); + case 257: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(258); + if (lookahead == '>') ADVANCE(268); END_STATE(); - case 38: - if (lookahead == 'd') ADVANCE(102); + case 258: + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 39: - if (lookahead == 'i') ADVANCE(103); + case 259: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(391); END_STATE(); - case 40: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(104); - if (lookahead == 'y') ADVANCE(105); + case 260: + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 41: - if (lookahead == 'a') ADVANCE(106); + case 261: + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 42: - if (lookahead == 't') ADVANCE(107); + case 262: + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 43: - if (lookahead == 'e') ADVANCE(108); + case 263: + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 44: - ACCEPT_TOKEN(anon_sym_by); + case 264: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(262); END_STATE(); - case 45: - if (lookahead == 's') ADVANCE(109); + case 265: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(262); + if (lookahead == '>') ADVANCE(181); END_STATE(); - case 46: - if (lookahead == 'e') ADVANCE(110); + case 266: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(262); + if (lookahead == '>') ADVANCE(180); END_STATE(); - case 47: - if (lookahead == 'a') ADVANCE(111); + case 267: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '>') ADVANCE(180); END_STATE(); - case 48: - if (lookahead == 'm') ADVANCE(112); + case 268: + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 49: - if (lookahead == 'a') ADVANCE(113); + case 269: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 50: - if (lookahead == '_') ADVANCE(114); - if (lookahead == 'm') ADVANCE(115); - if (lookahead == 'n') ADVANCE(116); + case 270: + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 51: - if (lookahead == 'd') ADVANCE(117); - if (lookahead == 'p') ADVANCE(118); + case 271: + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 52: - if (lookahead == 'y') ADVANCE(119); + case 272: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 53: - if (lookahead == 'f') ADVANCE(120); - if (lookahead == 'l') ADVANCE(121); + case 273: + ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); - case 54: - if (lookahead == 'u') ADVANCE(122); + case 274: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); - case 55: - if (lookahead == 'i') ADVANCE(123); - if (lookahead == 's') ADVANCE(124); + case 275: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 56: - if (lookahead == 'u') ADVANCE(125); + case 276: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 57: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 't') ADVANCE(127); + case 277: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 58: - if (lookahead == 'n') ADVANCE(128); + case 278: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 59: - if (lookahead == 'r') ADVANCE(129); + case 279: + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 60: - if (lookahead == 'o') ADVANCE(130); + case 280: + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 61: - if (lookahead == 's') ADVANCE(131); + case 281: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 62: - if (lookahead == 'l') ADVANCE(132); + case 282: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 63: - if (lookahead == 'o') ADVANCE(133); + case 283: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_if); + case 284: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(283); END_STATE(); - case 65: - if (lookahead == 'p') ADVANCE(134); + case 285: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'c') ADVANCE(135); - if (lookahead == 'l') ADVANCE(136); - if (lookahead == 't') ADVANCE(137); + case 286: + ACCEPT_TOKEN(anon_sym_BSLASH); + ADVANCE_MAP( + 0, 380, + '\n', 283, + '\r', 2, + 'N', 138, + 'U', 152, + 'u', 148, + 'x', 146, + '"', 283, + '\'', 283, + '\\', 283, + 'a', 283, + 'b', 283, + 'f', 283, + 'n', 283, + 'r', 283, + 't', 283, + 'v', 283, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(285); END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_is); + case 287: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if ((!eof && lookahead == 00)) ADVANCE(289); + if (lookahead == '\r') ADVANCE(289); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(289); END_STATE(); - case 68: - if (lookahead == 'm') ADVANCE(138); + case 288: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + ADVANCE_MAP( + '\r', 288, + '#', 289, + '\\', 287, + '\t', 288, + 0x0b, 288, + '\f', 288, + ' ', 288, + 0x200b, 288, + 0x2060, 288, + 0xfeff, 288, + ); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '{' && + lookahead != '}') ADVANCE(289); END_STATE(); - case 69: - if (lookahead == 'n') ADVANCE(139); + case 289: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(289); END_STATE(); - case 70: - if (lookahead == 't') ADVANCE(140); + case 290: + ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 71: - if (lookahead == 'm') ADVANCE(141); + case 291: + ACCEPT_TOKEN(anon_sym_0x); END_STATE(); - case 72: - if (lookahead == 'w') ADVANCE(142); + case 292: + ACCEPT_TOKEN(anon_sym_0X); END_STATE(); - case 73: - if (lookahead == 'e') ADVANCE(143); - if (lookahead == 'g') ADVANCE(144); - if (lookahead == 'n') ADVANCE(145); - if (lookahead == 't') ADVANCE(146); + case 293: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 'l') ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); - case 74: - if (lookahead == 'j') ADVANCE(147); + case 294: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 'n') ADVANCE(108); + if (lookahead == 's') ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); - case 75: - if (lookahead == 'e') ADVANCE(148); + case 295: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 'n') ADVANCE(108); + if (lookahead == 's') ADVANCE(173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '_') ADVANCE(149); + case 296: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 'o') ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); - case 77: - if (lookahead == 'c') ADVANCE(150); - if (lookahead == 's') ADVANCE(151); + case 297: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 'r') ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); - case 78: - if (lookahead == 'i') ADVANCE(152); - if (lookahead == 'o') ADVANCE(153); + case 298: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 's') ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); - case 79: - if (lookahead == 'b') ADVANCE(154); + case 299: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 'y') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); - case 80: - if (lookahead == 'i') ADVANCE(155); + case 300: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); END_STATE(); - case 81: - if (lookahead == 'a') ADVANCE(156); - if (lookahead == 't') ADVANCE(157); + case 301: + ACCEPT_TOKEN(anon_sym_0o); END_STATE(); - case 82: - if (lookahead == 'o') ADVANCE(158); + case 302: + ACCEPT_TOKEN(anon_sym_0O); END_STATE(); - case 83: - if (lookahead == 'g') ADVANCE(159); - if (lookahead == 'z') ADVANCE(160); + case 303: + ACCEPT_TOKEN(aux_sym_integer_token2); + if (lookahead == 'B') ADVANCE(309); + if (lookahead == 'O') ADVANCE(302); + if (lookahead == 'X') ADVANCE(292); + if (lookahead == 'x') ADVANCE(291); + if (lookahead == '0' || + lookahead == '1') ADVANCE(304); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(306); END_STATE(); - case 84: - if (lookahead == 'r') ADVANCE(161); + case 304: + ACCEPT_TOKEN(aux_sym_integer_token2); + if (lookahead == '0' || + lookahead == '1') ADVANCE(304); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(306); END_STATE(); - case 85: - if (lookahead == 'y') ADVANCE(162); + case 305: + ACCEPT_TOKEN(aux_sym_integer_token2); + if (lookahead == '0' || + lookahead == '1') ADVANCE(305); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(307); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); - case 86: - if (lookahead == 'p') ADVANCE(163); + case 306: + ACCEPT_TOKEN(aux_sym_integer_token2); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(306); END_STATE(); - case 87: - if (lookahead == 'i') ADVANCE(164); - if (lookahead == 's') ADVANCE(165); + case 307: + ACCEPT_TOKEN(aux_sym_integer_token2); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(307); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); END_STATE(); - case 88: - if (lookahead == 'l') ADVANCE(166); + case 308: + ACCEPT_TOKEN(anon_sym_0b); END_STATE(); - case 89: - if (lookahead == 'i') ADVANCE(167); + case 309: + ACCEPT_TOKEN(anon_sym_0B); END_STATE(); - case 90: - if (lookahead == 't') ADVANCE(168); + case 310: + ACCEPT_TOKEN(aux_sym_integer_token3); + if (lookahead == '0' || + lookahead == '1') ADVANCE(310); END_STATE(); - case 91: - if (lookahead == 'r') ADVANCE(169); + case 311: + ACCEPT_TOKEN(aux_sym_integer_token4); + END_STATE(); + case 312: + ACCEPT_TOKEN(aux_sym_integer_token4); + ADVANCE_MAP( + '.', 322, + 'B', 309, + 'O', 302, + 'X', 292, + '_', 314, + 'b', 308, + 'o', 301, + 'x', 291, + 'E', 140, + 'e', 140, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(313); + END_STATE(); + case 313: + ACCEPT_TOKEN(aux_sym_integer_token4); + if (lookahead == '.') ADVANCE(322); + if (lookahead == '_') ADVANCE(314); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(313); + END_STATE(); + case 314: + ACCEPT_TOKEN(aux_sym_integer_token4); + if (lookahead == '.') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + END_STATE(); + case 315: + ACCEPT_TOKEN(aux_sym_integer_token4); + if (lookahead == 'B') ADVANCE(309); + if (lookahead == 'O') ADVANCE(302); + if (lookahead == 'X') ADVANCE(292); + if (lookahead == '_') ADVANCE(311); + if (lookahead == 'b') ADVANCE(308); + if (lookahead == 'o') ADVANCE(301); + if (lookahead == 'x') ADVANCE(291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + END_STATE(); + case 316: + ACCEPT_TOKEN(aux_sym_integer_token4); + if (lookahead == '_') ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + END_STATE(); + case 317: + ACCEPT_TOKEN(aux_sym_integer_token5); + END_STATE(); + case 318: + ACCEPT_TOKEN(aux_sym_integer_token5); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 319: + ACCEPT_TOKEN(sym_float); + END_STATE(); + case 320: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(140); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + END_STATE(); + case 321: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(323); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + END_STATE(); + case 322: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(140); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + END_STATE(); + case 323: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + END_STATE(); + case 324: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '*') ADVANCE(199); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 325: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(190); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 326: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(331); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 327: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(332); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 328: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(333); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 329: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(228); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 330: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(188); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 331: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(358); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 332: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(359); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 333: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(360); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 334: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(184); + if (lookahead == 'n') ADVANCE(194); + if (lookahead == 's') ADVANCE(248); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 335: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(184); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 336: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(340); + if (lookahead == 't') ADVANCE(226); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(340); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 338: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(201); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 339: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(368); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 340: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(345); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 341: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(364); + if (lookahead == 'x') ADVANCE(326); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 342: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(364); + if (lookahead == 'x') ADVANCE(327); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 343: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(364); + if (lookahead == 'x') ADVANCE(328); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 344: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(364); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 345: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(388); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 346: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(167); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 347: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(329); + if (lookahead == 's') ADVANCE(172); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 348: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(329); + if (lookahead == 's') ADVANCE(174); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 349: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(329); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 350: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(194); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 351: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(325); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 352: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(336); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 353: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(346); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 354: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(337); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 355: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'r') ADVANCE(353); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 356: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(362); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 357: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(367); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 358: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(369); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 359: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(370); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 360: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(371); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 361: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(230); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 362: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(192); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 363: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(353); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 364: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(330); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 365: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(174); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 366: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(375); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 367: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(226); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 368: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(338); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 369: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(197); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 370: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(324); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 371: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(198); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 372: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'x') ADVANCE(326); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 373: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'x') ADVANCE(328); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 374: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(196); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 375: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 376: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0' || + lookahead == '1') ADVANCE(305); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(307); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 377: + ACCEPT_TOKEN(sym_identifier); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 378: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(379); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(378); + END_STATE(); + case 379: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(379); + END_STATE(); + case 380: + ACCEPT_TOKEN(sym_line_continuation); + END_STATE(); + case 381: + ACCEPT_TOKEN(sym_line_continuation); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(384); + END_STATE(); + case 382: + ACCEPT_TOKEN(aux_sym_run_directive_token1); + if ((!eof && lookahead == 00)) ADVANCE(381); + if (lookahead == '\n') ADVANCE(380); + if (lookahead == '\r') ADVANCE(1); + if (lookahead != 0) ADVANCE(384); + END_STATE(); + case 383: + ACCEPT_TOKEN(aux_sym_run_directive_token1); + ADVANCE_MAP( + '#', 378, + '\\', 382, + '\t', 383, + 0x0b, 383, + '\f', 383, + ' ', 383, + 0x200b, 383, + 0x2060, 383, + 0xfeff, 383, + ); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(384); + END_STATE(); + case 384: + ACCEPT_TOKEN(aux_sym_run_directive_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(384); + END_STATE(); + case 385: + ACCEPT_TOKEN(sym_c_integer_signedness); + END_STATE(); + case 386: + ACCEPT_TOKEN(aux_sym_c_integer_type_token1); + END_STATE(); + case 387: + ACCEPT_TOKEN(anon_sym_nogil); + END_STATE(); + case 388: + ACCEPT_TOKEN(anon_sym_nogil); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + END_STATE(); + case 389: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(261); + END_STATE(); + case 390: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(261); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); + END_STATE(); + case 391: + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + END_STATE(); + case 392: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 393: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 394: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 395: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 396: + ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); + END_STATE(); + case 397: + ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); + END_STATE(); + case 398: + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + END_STATE(); + case 399: + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); + END_STATE(); + case 400: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == '\r') SKIP(0); + if (lookahead == 'D') ADVANCE(1); + 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 || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); + END_STATE(); + case 1: + if (lookahead == 'E') ADVANCE(30); + END_STATE(); + case 2: + if (lookahead == 'L') ADVANCE(31); + END_STATE(); + case 3: + if (lookahead == 'a') ADVANCE(32); + END_STATE(); + case 4: + if (lookahead == 'F') ADVANCE(33); + END_STATE(); + case 5: + if (lookahead == 'o') ADVANCE(34); + END_STATE(); + case 6: + if (lookahead == 'Y') ADVANCE(35); + END_STATE(); + case 7: + if (lookahead == 'r') ADVANCE(36); + END_STATE(); + case 8: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(37); + END_STATE(); + case 9: + 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 == 'i') ADVANCE(42); + if (lookahead == 'r') ADVANCE(43); + END_STATE(); + case 11: + ADVANCE_MAP( + 'a', 44, + 'd', 45, + 'h', 46, + 'i', 47, + 'l', 48, + 'o', 49, + 'p', 50, + 't', 51, + ); + END_STATE(); + case 12: + if (lookahead == 'e') ADVANCE(52); + if (lookahead == 'o') ADVANCE(53); + END_STATE(); + case 13: + if (lookahead == 'l') ADVANCE(54); + if (lookahead == 'n') ADVANCE(55); + if (lookahead == 'x') ADVANCE(56); + END_STATE(); + case 14: + if (lookahead == 'i') ADVANCE(57); + if (lookahead == 'u') ADVANCE(58); + END_STATE(); + case 15: + if (lookahead == 'i') ADVANCE(59); + if (lookahead == 'l') ADVANCE(60); + END_STATE(); + case 16: + if (lookahead == 'm') ADVANCE(61); + if (lookahead == 'n') ADVANCE(62); + END_STATE(); + case 17: + if (lookahead == 'a') ADVANCE(63); + if (lookahead == 'o') ADVANCE(64); + END_STATE(); + case 18: + if (lookahead == 'a') ADVANCE(65); + END_STATE(); + case 19: + if (lookahead == 'a') ADVANCE(66); + if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'o') ADVANCE(68); + END_STATE(); + case 20: + if (lookahead == 'b') ADVANCE(69); + if (lookahead == 'p') ADVANCE(70); + if (lookahead == 'r') ADVANCE(71); + END_STATE(); + case 21: + if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'r') ADVANCE(73); + if (lookahead == 'u') ADVANCE(74); + END_STATE(); + case 22: + if (lookahead == 'a') ADVANCE(75); + if (lookahead == 'e') ADVANCE(76); + END_STATE(); + case 23: + if (lookahead == 'h') ADVANCE(77); + if (lookahead == 'i') ADVANCE(78); + if (lookahead == 't') ADVANCE(79); + END_STATE(); + case 24: + if (lookahead == 'r') ADVANCE(80); + if (lookahead == 'y') ADVANCE(81); + END_STATE(); + case 25: + if (lookahead == 'n') ADVANCE(82); + END_STATE(); + case 26: + if (lookahead == 'o') ADVANCE(83); + END_STATE(); + case 27: + if (lookahead == 'h') ADVANCE(84); + END_STATE(); + case 28: + if (lookahead == 'o') ADVANCE(85); + END_STATE(); + case 29: + if (lookahead == 'i') ADVANCE(86); + END_STATE(); + case 30: + if (lookahead == 'F') ADVANCE(87); + END_STATE(); + case 31: + if (lookahead == 'I') ADVANCE(88); + if (lookahead == 'S') ADVANCE(89); + END_STATE(); + case 32: + if (lookahead == 'l') ADVANCE(90); + END_STATE(); + case 33: + ACCEPT_TOKEN(anon_sym_IF); + END_STATE(); + case 34: + if (lookahead == 'n') ADVANCE(91); + END_STATE(); + case 35: + if (lookahead == 'T') ADVANCE(92); + END_STATE(); + case 36: + if (lookahead == 'u') ADVANCE(93); + END_STATE(); + case 37: + if (lookahead == 'f') ADVANCE(94); + if (lookahead == 's') ADVANCE(95); + END_STATE(); + case 38: + if (lookahead == 'd') ADVANCE(96); + END_STATE(); + case 39: + if (lookahead == 'i') ADVANCE(97); + END_STATE(); + case 40: + if (lookahead == 's') ADVANCE(98); + END_STATE(); + case 41: + if (lookahead == 'a') ADVANCE(99); + END_STATE(); + case 42: + if (lookahead == 't') ADVANCE(100); + END_STATE(); + case 43: + if (lookahead == 'e') ADVANCE(101); + END_STATE(); + case 44: + if (lookahead == 's') ADVANCE(102); + END_STATE(); + case 45: + if (lookahead == 'e') ADVANCE(103); + END_STATE(); + case 46: + if (lookahead == 'a') ADVANCE(104); + END_STATE(); + case 47: + if (lookahead == 'm') ADVANCE(105); + END_STATE(); + case 48: + if (lookahead == 'a') ADVANCE(106); + END_STATE(); + case 49: + if (lookahead == '_') ADVANCE(107); + if (lookahead == 'm') ADVANCE(108); + if (lookahead == 'n') ADVANCE(109); + END_STATE(); + case 50: + if (lookahead == 'd') ADVANCE(110); + if (lookahead == 'p') ADVANCE(111); + END_STATE(); + case 51: + if (lookahead == 'y') ADVANCE(112); + END_STATE(); + case 52: + if (lookahead == 'f') ADVANCE(113); + if (lookahead == 'l') ADVANCE(114); + END_STATE(); + case 53: + if (lookahead == 'u') ADVANCE(115); + END_STATE(); + case 54: + if (lookahead == 'i') ADVANCE(116); + END_STATE(); + case 55: + if (lookahead == 'u') ADVANCE(117); + END_STATE(); + case 56: + if (lookahead == 'e') ADVANCE(118); + if (lookahead == 't') ADVANCE(119); + END_STATE(); + case 57: + if (lookahead == 'n') ADVANCE(120); + END_STATE(); + case 58: + if (lookahead == 's') ADVANCE(121); + END_STATE(); + case 59: + if (lookahead == 'l') ADVANCE(122); + END_STATE(); + case 60: + if (lookahead == 'o') ADVANCE(123); + END_STATE(); + case 61: + if (lookahead == 'p') ADVANCE(124); + END_STATE(); + case 62: + if (lookahead == 'c') ADVANCE(125); + if (lookahead == 'l') ADVANCE(126); + if (lookahead == 't') ADVANCE(127); + END_STATE(); + case 63: + if (lookahead == 'm') ADVANCE(128); + END_STATE(); + case 64: + if (lookahead == 'n') ADVANCE(129); + END_STATE(); + case 65: + if (lookahead == 't') ADVANCE(130); + END_STATE(); + case 66: + if (lookahead == 'm') ADVANCE(131); + END_STATE(); + case 67: + if (lookahead == 'w') ADVANCE(132); + END_STATE(); + case 68: + if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'n') ADVANCE(134); + if (lookahead == 't') ADVANCE(135); + END_STATE(); + case 69: + if (lookahead == 'j') ADVANCE(136); + END_STATE(); + case 70: + if (lookahead == 'e') ADVANCE(137); + END_STATE(); + case 71: + if (lookahead == '_') ADVANCE(138); + END_STATE(); + case 72: + if (lookahead == 'c') ADVANCE(139); + if (lookahead == 's') ADVANCE(140); + END_STATE(); + case 73: + if (lookahead == 'i') ADVANCE(141); + if (lookahead == 'o') ADVANCE(142); + END_STATE(); + case 74: + if (lookahead == 'b') ADVANCE(143); + END_STATE(); + case 75: + if (lookahead == 'i') ADVANCE(144); + END_STATE(); + case 76: + if (lookahead == 'a') ADVANCE(145); + if (lookahead == 't') ADVANCE(146); + END_STATE(); + case 77: + if (lookahead == 'o') ADVANCE(147); + END_STATE(); + case 78: + if (lookahead == 'g') ADVANCE(148); + if (lookahead == 'z') ADVANCE(149); + END_STATE(); + case 79: + if (lookahead == 'r') ADVANCE(150); + END_STATE(); + case 80: + if (lookahead == 'y') ADVANCE(151); + END_STATE(); + case 81: + if (lookahead == 'p') ADVANCE(152); + END_STATE(); + case 82: + if (lookahead == 'i') ADVANCE(153); + if (lookahead == 's') ADVANCE(154); + END_STATE(); + case 83: + if (lookahead == 'l') ADVANCE(155); + END_STATE(); + case 84: + if (lookahead == 'i') ADVANCE(156); + END_STATE(); + case 85: + if (lookahead == 'r') ADVANCE(157); + END_STATE(); + case 86: + if (lookahead == 'e') ADVANCE(158); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_DEF); + END_STATE(); + case 88: + if (lookahead == 'F') ADVANCE(159); + END_STATE(); + case 89: + if (lookahead == 'E') ADVANCE(160); + END_STATE(); + case 90: + if (lookahead == 's') ADVANCE(161); + END_STATE(); + case 91: + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(170); + if (lookahead == 'H') ADVANCE(163); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_DEF); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 94: - if (lookahead == 'F') ADVANCE(171); + if (lookahead == 'u') ADVANCE(165); END_STATE(); case 95: - if (lookahead == 'E') ADVANCE(172); + if (lookahead == 't') ADVANCE(166); END_STATE(); case 96: - if (lookahead == 's') ADVANCE(173); + if (lookahead == '_') ADVANCE(167); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_api); END_STATE(); case 98: - if (lookahead == 'H') ADVANCE(175); + if (lookahead == 'e') ADVANCE(168); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'i') ADVANCE(169); END_STATE(); case 100: - if (lookahead == 'u') ADVANCE(177); + if (lookahead == 'a') ADVANCE(170); + if (lookahead == 'o') ADVANCE(171); END_STATE(); case 101: - if (lookahead == 't') ADVANCE(178); + if (lookahead == 'a') ADVANCE(172); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '_') ADVANCE(179); + if (lookahead == 'e') ADVANCE(173); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_api); + if (lookahead == 'f') ADVANCE(174); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'r') ADVANCE(175); END_STATE(); case 105: - if (lookahead == 'n') ADVANCE(181); + if (lookahead == 'p') ADVANCE(176); END_STATE(); case 106: - if (lookahead == 'i') ADVANCE(182); + if (lookahead == 's') ADVANCE(177); END_STATE(); case 107: - if (lookahead == 'a') ADVANCE(183); - if (lookahead == 'o') ADVANCE(184); + if (lookahead == 'a') ADVANCE(178); END_STATE(); case 108: - if (lookahead == 'a') ADVANCE(185); + if (lookahead == 'p') ADVANCE(179); END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 's') ADVANCE(180); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 110: - if (lookahead == 'f') ADVANCE(187); + if (lookahead == 'e') ADVANCE(182); END_STATE(); case 111: - if (lookahead == 'r') ADVANCE(188); + if (lookahead == 'c') ADVANCE(183); END_STATE(); case 112: - if (lookahead == 'p') ADVANCE(189); + if (lookahead == 'p') ADVANCE(184); END_STATE(); case 113: - if (lookahead == 's') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 114: - if (lookahead == 'a') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_del); + if (lookahead == 'e') ADVANCE(185); END_STATE(); case 115: - if (lookahead == 'p') ADVANCE(192); + if (lookahead == 'b') ADVANCE(186); END_STATE(); case 116: - if (lookahead == 's') ADVANCE(193); - if (lookahead == 't') ADVANCE(194); + if (lookahead == 'f') ADVANCE(187); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'm') ADVANCE(188); END_STATE(); case 118: - if (lookahead == 'c') ADVANCE(196); + if (lookahead == 'c') ADVANCE(189); END_STATE(); case 119: - if (lookahead == 'p') ADVANCE(197); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_def); + if (lookahead == 'a') ADVANCE(191); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_del); - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 122: - if (lookahead == 'b') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_gil); END_STATE(); case 123: - if (lookahead == 'f') ADVANCE(200); + if (lookahead == 'b') ADVANCE(193); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'o') ADVANCE(194); END_STATE(); case 125: - if (lookahead == 'm') ADVANCE(202); + if (lookahead == 'l') ADVANCE(195); END_STATE(); case 126: - if (lookahead == 'c') ADVANCE(203); + if (lookahead == 'i') ADVANCE(196); END_STATE(); case 127: - if (lookahead == 'e') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_int); END_STATE(); case 128: - if (lookahead == 'a') ADVANCE(205); + if (lookahead == 'b') ADVANCE(197); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'g') ADVANCE(198); END_STATE(); case 130: - if (lookahead == 'm') ADVANCE(206); + if (lookahead == 'c') ADVANCE(199); END_STATE(); case 131: - if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_gil); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 133: - if (lookahead == 'b') ADVANCE(208); + if (lookahead == 'x') ADVANCE(201); END_STATE(); case 134: - if (lookahead == 'o') ADVANCE(209); + if (lookahead == 'l') ADVANCE(202); END_STATE(); case 135: - if (lookahead == 'l') ADVANCE(210); + if (lookahead == '_') ADVANCE(203); END_STATE(); case 136: - if (lookahead == 'i') ADVANCE(211); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'r') ADVANCE(205); END_STATE(); case 138: - if (lookahead == 'b') ADVANCE(212); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 139: - if (lookahead == 'g') ADVANCE(213); + if (lookahead == 'k') ADVANCE(207); END_STATE(); case 140: - if (lookahead == 'c') ADVANCE(214); + if (lookahead == 's') ADVANCE(208); END_STATE(); case 141: - if (lookahead == 'e') ADVANCE(215); + if (lookahead == 'n') ADVANCE(209); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'p') ADVANCE(210); END_STATE(); case 143: - if (lookahead == 'x') ADVANCE(216); + if (lookahead == 'l') ADVANCE(211); END_STATE(); case 144: - if (lookahead == 'i') ADVANCE(217); + if (lookahead == 's') ADVANCE(212); END_STATE(); case 145: - if (lookahead == 'l') ADVANCE(218); + if (lookahead == 'd') ADVANCE(213); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '_') ADVANCE(219); + if (lookahead == 'u') ADVANCE(214); END_STATE(); case 147: - if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'r') ADVANCE(215); END_STATE(); case 148: - if (lookahead == 'r') ADVANCE(221); + if (lookahead == 'n') ADVANCE(216); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 150: - if (lookahead == 'k') ADVANCE(223); + if (lookahead == 'u') ADVANCE(218); END_STATE(); case 151: - if (lookahead == 's') ADVANCE(224); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 152: - if (lookahead == 'n') ADVANCE(225); + if (lookahead == 'e') ADVANCE(219); END_STATE(); case 153: - if (lookahead == 'p') ADVANCE(226); + if (lookahead == 'o') ADVANCE(220); END_STATE(); case 154: - if (lookahead == 'l') ADVANCE(227); + if (lookahead == 'i') ADVANCE(221); END_STATE(); case 155: - if (lookahead == 's') ADVANCE(228); + if (lookahead == 'a') ADVANCE(222); END_STATE(); case 156: - if (lookahead == 'd') ADVANCE(229); + if (lookahead == 'l') ADVANCE(223); END_STATE(); case 157: - if (lookahead == 'u') ADVANCE(230); + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(224); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(231); + if (lookahead == 'l') ADVANCE(225); END_STATE(); case 159: - if (lookahead == 'n') ADVANCE(232); + ACCEPT_TOKEN(anon_sym_ELIF); END_STATE(); case 160: - if (lookahead == 'e') ADVANCE(233); + ACCEPT_TOKEN(anon_sym_ELSE); END_STATE(); case 161: - if (lookahead == 'u') ADVANCE(234); + if (lookahead == 'e') ADVANCE(226); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_None); END_STATE(); case 163: - if (lookahead == 'e') ADVANCE(235); + if (lookahead == 'O') ADVANCE(227); END_STATE(); case 164: - if (lookahead == 'o') ADVANCE(236); + ACCEPT_TOKEN(sym_true); END_STATE(); case 165: - if (lookahead == 'i') ADVANCE(237); + if (lookahead == 't') ADVANCE(228); END_STATE(); case 166: - if (lookahead == 'a') ADVANCE(238); + if (lookahead == 'd') ADVANCE(229); END_STATE(); case 167: - if (lookahead == 'l') ADVANCE(239); + if (lookahead == 'e') ADVANCE(230); END_STATE(); case 168: - if (lookahead == 'h') ADVANCE(240); + if (lookahead == 'r') ADVANCE(231); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '_') ADVANCE(241); + if (lookahead == 't') ADVANCE(232); END_STATE(); case 170: - if (lookahead == 'l') ADVANCE(242); + if (lookahead == 'n') ADVANCE(233); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_ELIF); + if (lookahead == 'r') ADVANCE(234); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_ELSE); + if (lookahead == 'k') ADVANCE(235); END_STATE(); case 173: - if (lookahead == 'e') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_None); + ACCEPT_TOKEN(anon_sym_cdef); END_STATE(); case 175: - if (lookahead == 'O') ADVANCE(244); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 176: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'o') ADVANCE(236); END_STATE(); case 177: - if (lookahead == 't') ADVANCE(245); + if (lookahead == 's') ADVANCE(237); END_STATE(); case 178: - if (lookahead == 'd') ADVANCE(246); + if (lookahead == 'w') ADVANCE(238); END_STATE(); case 179: - if (lookahead == 'e') ADVANCE(247); + if (lookahead == 'l') ADVANCE(239); END_STATE(); case 180: - if (lookahead == 'r') ADVANCE(248); + if (lookahead == 't') ADVANCE(240); END_STATE(); case 181: - if (lookahead == 'c') ADVANCE(249); + if (lookahead == 'i') ADVANCE(241); END_STATE(); case 182: - if (lookahead == 't') ADVANCE(250); + if (lookahead == 'f') ADVANCE(242); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(251); + if (lookahead == 'l') ADVANCE(243); END_STATE(); case 184: - if (lookahead == 'r') ADVANCE(252); + if (lookahead == 'e') ADVANCE(244); END_STATE(); case 185: - if (lookahead == 'k') ADVANCE(253); + if (lookahead == 't') ADVANCE(245); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'l') ADVANCE(246); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_cdef); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_char); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 189: - if (lookahead == 'o') ADVANCE(254); + ACCEPT_TOKEN(anon_sym_exec); END_STATE(); case 190: - if (lookahead == 's') ADVANCE(255); + if (lookahead == 'r') ADVANCE(247); END_STATE(); case 191: - if (lookahead == 'w') ADVANCE(256); + if (lookahead == 'l') ADVANCE(248); END_STATE(); case 192: - if (lookahead == 'l') ADVANCE(257); + if (lookahead == 'd') ADVANCE(249); END_STATE(); case 193: - if (lookahead == 't') ADVANCE(258); + if (lookahead == 'a') ADVANCE(250); END_STATE(); case 194: - if (lookahead == 'i') ADVANCE(259); + if (lookahead == 'r') ADVANCE(251); END_STATE(); case 195: - if (lookahead == 'f') ADVANCE(260); + if (lookahead == 'u') ADVANCE(252); END_STATE(); case 196: - if (lookahead == 'l') ADVANCE(261); + if (lookahead == 'n') ADVANCE(253); END_STATE(); case 197: - if (lookahead == 'e') ADVANCE(262); + if (lookahead == 'd') ADVANCE(254); END_STATE(); case 198: - if (lookahead == 't') ADVANCE(263); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 199: - if (lookahead == 'l') ADVANCE(264); + if (lookahead == 'h') ADVANCE(255); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 's') ADVANCE(256); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'c') ADVANCE(257); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'o') ADVANCE(258); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_exec); + if (lookahead == 'e') ADVANCE(259); END_STATE(); case 204: - if (lookahead == 'r') ADVANCE(265); + if (lookahead == 'c') ADVANCE(260); END_STATE(); case 205: - if (lookahead == 'l') ADVANCE(266); + if (lookahead == 'a') ADVANCE(261); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'q') ADVANCE(262); END_STATE(); case 207: - if (lookahead == 'd') ADVANCE(267); + if (lookahead == 'e') ADVANCE(263); END_STATE(); case 208: - if (lookahead == 'a') ADVANCE(268); + ACCEPT_TOKEN(anon_sym_pass); END_STATE(); case 209: - if (lookahead == 'r') ADVANCE(269); + if (lookahead == 't') ADVANCE(264); END_STATE(); case 210: - if (lookahead == 'u') ADVANCE(270); + if (lookahead == 'e') ADVANCE(265); END_STATE(); case 211: - if (lookahead == 'n') ADVANCE(271); + if (lookahead == 'i') ADVANCE(266); END_STATE(); case 212: - if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(267); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 'o') ADVANCE(268); END_STATE(); case 214: - if (lookahead == 'h') ADVANCE(273); + if (lookahead == 'r') ADVANCE(269); END_STATE(); case 215: - if (lookahead == 's') ADVANCE(274); + if (lookahead == 't') ADVANCE(270); END_STATE(); case 216: - if (lookahead == 'c') ADVANCE(275); + if (lookahead == 'e') ADVANCE(271); END_STATE(); case 217: - if (lookahead == 'l') ADVANCE(276); + if (lookahead == 'o') ADVANCE(272); END_STATE(); case 218: - if (lookahead == 'o') ADVANCE(277); + if (lookahead == 'c') ADVANCE(273); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(278); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 220: - if (lookahead == 'c') ADVANCE(279); + if (lookahead == 'n') ADVANCE(274); END_STATE(); case 221: - if (lookahead == 'a') ADVANCE(280); + if (lookahead == 'g') ADVANCE(275); END_STATE(); case 222: - if (lookahead == 'q') ADVANCE(281); + if (lookahead == 't') ADVANCE(276); END_STATE(); case 223: - if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'e') ADVANCE(277); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_pass); + if (lookahead == 'e') ADVANCE(278); END_STATE(); case 225: - if (lookahead == 't') ADVANCE(283); + if (lookahead == 'd') ADVANCE(279); END_STATE(); case 226: - if (lookahead == 'e') ADVANCE(284); + ACCEPT_TOKEN(sym_false); END_STATE(); case 227: - if (lookahead == 'i') ADVANCE(285); + if (lookahead == 'N') ADVANCE(280); END_STATE(); case 228: - if (lookahead == 'e') ADVANCE(286); + if (lookahead == 'u') ADVANCE(281); END_STATE(); case 229: - if (lookahead == 'o') ADVANCE(287); + if (lookahead == 'c') ADVANCE(282); END_STATE(); case 230: - if (lookahead == 'r') ADVANCE(288); + if (lookahead == 'q') ADVANCE(283); END_STATE(); case 231: - if (lookahead == 't') ADVANCE(289); + if (lookahead == 't') ADVANCE(284); END_STATE(); case 232: - if (lookahead == 'e') ADVANCE(290); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 233: - if (lookahead == 'o') ADVANCE(291); + if (lookahead == 'd') ADVANCE(285); END_STATE(); case 234: - if (lookahead == 'c') ADVANCE(292); + ACCEPT_TOKEN(anon_sym_bitor); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_type); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 236: - if (lookahead == 'n') ADVANCE(293); + if (lookahead == 'r') ADVANCE(286); END_STATE(); case 237: - if (lookahead == 'g') ADVANCE(294); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 238: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 'a') ADVANCE(287); END_STATE(); case 239: - if (lookahead == 'e') ADVANCE(296); + ACCEPT_TOKEN(anon_sym_compl); + if (lookahead == 'e') ADVANCE(288); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_with); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 241: - if (lookahead == 'e') ADVANCE(297); + if (lookahead == 'n') ADVANCE(289); END_STATE(); case 242: - if (lookahead == 'd') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_cpdef); END_STATE(); case 243: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'a') ADVANCE(290); END_STATE(); case 244: - if (lookahead == 'N') ADVANCE(299); + if (lookahead == 'd') ADVANCE(291); END_STATE(); case 245: - if (lookahead == 'u') ADVANCE(300); + if (lookahead == 'e') ADVANCE(292); END_STATE(); case 246: - if (lookahead == 'c') ADVANCE(301); + if (lookahead == 'e') ADVANCE(293); END_STATE(); case 247: - if (lookahead == 'q') ADVANCE(302); + if (lookahead == 'n') ADVANCE(294); END_STATE(); case 248: - if (lookahead == 't') ADVANCE(303); + if (lookahead == 'l') ADVANCE(295); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_async); + ACCEPT_TOKEN(anon_sym_fused); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'l') ADVANCE(296); END_STATE(); case 251: - if (lookahead == 'd') ADVANCE(304); + if (lookahead == 't') ADVANCE(297); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_bitor); + if (lookahead == 'd') ADVANCE(298); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'e') ADVANCE(299); END_STATE(); case 254: - if (lookahead == 'r') ADVANCE(305); + if (lookahead == 'a') ADVANCE(300); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 256: - if (lookahead == 'a') ADVANCE(306); + if (lookahead == 'p') ADVANCE(301); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_compl); - if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'e') ADVANCE(302); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'c') ADVANCE(303); END_STATE(); case 259: - if (lookahead == 'n') ADVANCE(308); + if (lookahead == 'q') ADVANCE(304); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_cpdef); + if (lookahead == 't') ADVANCE(305); END_STATE(); case 261: - if (lookahead == 'a') ADVANCE(309); + if (lookahead == 't') ADVANCE(306); END_STATE(); case 262: - if (lookahead == 'd') ADVANCE(310); + ACCEPT_TOKEN(anon_sym_or_eq); END_STATE(); case 263: - if (lookahead == 'e') ADVANCE(311); + if (lookahead == 'd') ADVANCE(307); END_STATE(); case 264: - if (lookahead == 'e') ADVANCE(312); + ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 265: - if (lookahead == 'n') ADVANCE(313); + if (lookahead == 'r') ADVANCE(308); END_STATE(); case 266: - if (lookahead == 'l') ADVANCE(314); + if (lookahead == 'c') ADVANCE(309); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_fused); + ACCEPT_TOKEN(anon_sym_raise); END_STATE(); case 268: - if (lookahead == 'l') ADVANCE(315); + if (lookahead == 'n') ADVANCE(310); END_STATE(); case 269: - if (lookahead == 't') ADVANCE(316); + if (lookahead == 'n') ADVANCE(311); END_STATE(); case 270: - if (lookahead == 'd') ADVANCE(317); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 271: - if (lookahead == 'e') ADVANCE(318); + if (lookahead == 'd') ADVANCE(312); END_STATE(); case 272: - if (lookahead == 'a') ADVANCE(319); + if (lookahead == 'f') ADVANCE(313); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 't') ADVANCE(314); END_STATE(); case 274: - if (lookahead == 'p') ADVANCE(320); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 275: - if (lookahead == 'e') ADVANCE(321); + if (lookahead == 'n') ADVANCE(315); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_nogil); + if (lookahead == 'i') ADVANCE(316); END_STATE(); case 277: - if (lookahead == 'c') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 278: - if (lookahead == 'q') ADVANCE(323); + if (lookahead == 'q') ADVANCE(317); END_STATE(); case 279: - if (lookahead == 't') ADVANCE(324); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 280: - if (lookahead == 't') ADVANCE(325); + ACCEPT_TOKEN(anon_sym_PYTHON); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_or_eq); + if (lookahead == 'r') ADVANCE(318); END_STATE(); case 282: - if (lookahead == 'd') ADVANCE(326); + if (lookahead == 'a') ADVANCE(319); END_STATE(); case 283: - ACCEPT_TOKEN(anon_sym_print); + ACCEPT_TOKEN(anon_sym_and_eq); END_STATE(); case 284: - if (lookahead == 'r') ADVANCE(327); + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); case 285: - if (lookahead == 'c') ADVANCE(328); + ACCEPT_TOKEN(anon_sym_bitand); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_raise); + if (lookahead == 't') ADVANCE(320); END_STATE(); case 287: - if (lookahead == 'n') ADVANCE(329); + if (lookahead == 'i') ADVANCE(321); END_STATE(); case 288: - if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'x') ADVANCE(322); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'u') ADVANCE(323); END_STATE(); case 290: - if (lookahead == 'd') ADVANCE(331); + if (lookahead == 's') ADVANCE(324); END_STATE(); case 291: - if (lookahead == 'f') ADVANCE(332); + if (lookahead == 'e') ADVANCE(325); END_STATE(); case 292: - if (lookahead == 't') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_union); + ACCEPT_TOKEN(anon_sym_double); END_STATE(); case 294: - if (lookahead == 'n') ADVANCE(334); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 295: - if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'y') ADVANCE(326); END_STATE(); case 296: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 297: - if (lookahead == 'q') ADVANCE(336); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 298: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 'e') ADVANCE(327); END_STATE(); case 299: - ACCEPT_TOKEN(anon_sym_PYTHON); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 300: - if (lookahead == 'r') ADVANCE(337); + ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); case 301: - if (lookahead == 'a') ADVANCE(338); + if (lookahead == 'a') ADVANCE(328); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_and_eq); + if (lookahead == 'p') ADVANCE(329); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_assert); + if (lookahead == 'a') ADVANCE(330); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_bitand); + ACCEPT_TOKEN(anon_sym_not_eq); END_STATE(); case 305: - if (lookahead == 't') ADVANCE(339); + ACCEPT_TOKEN(anon_sym_object); END_STATE(); case 306: - if (lookahead == 'i') ADVANCE(340); + if (lookahead == 'o') ADVANCE(331); END_STATE(); case 307: - if (lookahead == 'x') ADVANCE(341); + ACCEPT_TOKEN(anon_sym_packed); END_STATE(); case 308: - if (lookahead == 'u') ADVANCE(342); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 309: - if (lookahead == 's') ADVANCE(343); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 310: - if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'l') ADVANCE(333); END_STATE(); case 311: - ACCEPT_TOKEN(anon_sym_delete); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 312: - ACCEPT_TOKEN(anon_sym_double); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 313: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 314: - if (lookahead == 'y') ADVANCE(345); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_global); + if (lookahead == 'e') ADVANCE(334); END_STATE(); case 316: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'l') ADVANCE(335); END_STATE(); case 317: - if (lookahead == 'e') ADVANCE(346); + ACCEPT_TOKEN(anon_sym_xor_eq); END_STATE(); case 318: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'e') ADVANCE(336); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_lambda); + if (lookahead == 'l') ADVANCE(337); END_STATE(); case 320: - if (lookahead == 'a') ADVANCE(347); + ACCEPT_TOKEN(anon_sym_cimport); END_STATE(); case 321: - if (lookahead == 'p') ADVANCE(348); + if (lookahead == 't') ADVANCE(338); END_STATE(); case 322: - if (lookahead == 'a') ADVANCE(349); + ACCEPT_TOKEN(anon_sym_complex); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_not_eq); + if (lookahead == 'e') ADVANCE(339); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_object); + if (lookahead == 's') ADVANCE(340); END_STATE(); case 325: - if (lookahead == 'o') ADVANCE(350); + if (lookahead == 'f') ADVANCE(341); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_packed); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 327: - if (lookahead == 't') ADVANCE(351); + ACCEPT_TOKEN(anon_sym_include); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 'c') ADVANCE(342); END_STATE(); case 329: - if (lookahead == 'l') ADVANCE(352); + if (lookahead == 't') ADVANCE(343); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'l') ADVANCE(344); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 'r') ADVANCE(345); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'y') ADVANCE(346); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'y') ADVANCE(347); END_STATE(); case 334: - if (lookahead == 'e') ADVANCE(353); + if (lookahead == 'd') ADVANCE(348); END_STATE(); case 335: - if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'e') ADVANCE(349); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_xor_eq); + if (lookahead == '_') ADVANCE(350); END_STATE(); case 337: - if (lookahead == 'e') ADVANCE(355); + if (lookahead == 'l') ADVANCE(351); END_STATE(); case 338: - if (lookahead == 'l') ADVANCE(356); + ACCEPT_TOKEN(anon_sym_co_await); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_cimport); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 340: - if (lookahead == 't') ADVANCE(357); + ACCEPT_TOKEN(anon_sym_cppclass); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_complex); + ACCEPT_TOKEN(anon_sym_ctypedef); END_STATE(); case 342: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'e') ADVANCE(352); END_STATE(); case 343: - if (lookahead == 's') ADVANCE(359); + ACCEPT_TOKEN(anon_sym_noexcept); END_STATE(); case 344: - if (lookahead == 'f') ADVANCE(360); + ACCEPT_TOKEN(anon_sym_nonlocal); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_finally); + ACCEPT_TOKEN(anon_sym_operator); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_include); + ACCEPT_TOKEN(anon_sym_property); END_STATE(); case 347: - if (lookahead == 'c') ADVANCE(361); + ACCEPT_TOKEN(anon_sym_readonly); END_STATE(); case 348: - if (lookahead == 't') ADVANCE(362); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 349: - if (lookahead == 'l') ADVANCE(363); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 350: - if (lookahead == 'r') ADVANCE(364); + if (lookahead == '_') ADVANCE(353); END_STATE(); case 351: - if (lookahead == 'y') ADVANCE(365); - END_STATE(); - case 352: - if (lookahead == 'y') ADVANCE(366); - END_STATE(); - case 353: - if (lookahead == 'd') ADVANCE(367); - END_STATE(); - case 354: - if (lookahead == 'e') ADVANCE(368); - END_STATE(); - case 355: - if (lookahead == '_') ADVANCE(369); - END_STATE(); - case 356: - if (lookahead == 'l') ADVANCE(370); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_co_await); - END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 359: - ACCEPT_TOKEN(anon_sym_cppclass); - END_STATE(); - case 360: - ACCEPT_TOKEN(anon_sym_ctypedef); - END_STATE(); - case 361: - if (lookahead == 'e') ADVANCE(371); - END_STATE(); - case 362: - ACCEPT_TOKEN(anon_sym_noexcept); - END_STATE(); - case 363: - 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: + case 352: ACCEPT_TOKEN(anon_sym_namespace); END_STATE(); - case 372: + case 353: ACCEPT_TOKEN(anon_sym___future__); END_STATE(); default: @@ -13451,5888 +17028,7005 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 66, .external_lex_state = 2}, - [2] = {.lex_state = 66, .external_lex_state = 3}, - [3] = {.lex_state = 66, .external_lex_state = 3}, - [4] = {.lex_state = 66, .external_lex_state = 3}, - [5] = {.lex_state = 66, .external_lex_state = 3}, - [6] = {.lex_state = 66, .external_lex_state = 3}, - [7] = {.lex_state = 66, .external_lex_state = 3}, - [8] = {.lex_state = 66, .external_lex_state = 3}, - [9] = {.lex_state = 66, .external_lex_state = 3}, - [10] = {.lex_state = 66, .external_lex_state = 3}, - [11] = {.lex_state = 66, .external_lex_state = 3}, - [12] = {.lex_state = 66, .external_lex_state = 3}, - [13] = {.lex_state = 66, .external_lex_state = 3}, - [14] = {.lex_state = 66, .external_lex_state = 3}, - [15] = {.lex_state = 66, .external_lex_state = 3}, - [16] = {.lex_state = 66, .external_lex_state = 3}, - [17] = {.lex_state = 66, .external_lex_state = 3}, - [18] = {.lex_state = 66, .external_lex_state = 3}, - [19] = {.lex_state = 66, .external_lex_state = 3}, - [20] = {.lex_state = 66, .external_lex_state = 3}, - [21] = {.lex_state = 66, .external_lex_state = 3}, - [22] = {.lex_state = 66, .external_lex_state = 3}, - [23] = {.lex_state = 66, .external_lex_state = 3}, - [24] = {.lex_state = 66, .external_lex_state = 3}, - [25] = {.lex_state = 66, .external_lex_state = 3}, - [26] = {.lex_state = 66, .external_lex_state = 3}, - [27] = {.lex_state = 66, .external_lex_state = 3}, - [28] = {.lex_state = 66, .external_lex_state = 3}, - [29] = {.lex_state = 66, .external_lex_state = 3}, - [30] = {.lex_state = 66, .external_lex_state = 3}, - [31] = {.lex_state = 66, .external_lex_state = 3}, - [32] = {.lex_state = 66, .external_lex_state = 3}, - [33] = {.lex_state = 66, .external_lex_state = 3}, - [34] = {.lex_state = 66, .external_lex_state = 3}, - [35] = {.lex_state = 66, .external_lex_state = 3}, - [36] = {.lex_state = 66, .external_lex_state = 3}, - [37] = {.lex_state = 66, .external_lex_state = 3}, - [38] = {.lex_state = 66, .external_lex_state = 3}, - [39] = {.lex_state = 66, .external_lex_state = 3}, - [40] = {.lex_state = 66, .external_lex_state = 3}, - [41] = {.lex_state = 66, .external_lex_state = 3}, - [42] = {.lex_state = 66, .external_lex_state = 3}, - [43] = {.lex_state = 66, .external_lex_state = 3}, - [44] = {.lex_state = 66, .external_lex_state = 3}, - [45] = {.lex_state = 66, .external_lex_state = 3}, - [46] = {.lex_state = 66, .external_lex_state = 3}, - [47] = {.lex_state = 66, .external_lex_state = 3}, - [48] = {.lex_state = 66, .external_lex_state = 3}, - [49] = {.lex_state = 66, .external_lex_state = 3}, - [50] = {.lex_state = 66, .external_lex_state = 3}, - [51] = {.lex_state = 66, .external_lex_state = 3}, - [52] = {.lex_state = 66, .external_lex_state = 3}, - [53] = {.lex_state = 66, .external_lex_state = 3}, - [54] = {.lex_state = 66, .external_lex_state = 3}, - [55] = {.lex_state = 66, .external_lex_state = 3}, - [56] = {.lex_state = 66, .external_lex_state = 3}, - [57] = {.lex_state = 66, .external_lex_state = 3}, - [58] = {.lex_state = 66, .external_lex_state = 3}, - [59] = {.lex_state = 66, .external_lex_state = 3}, - [60] = {.lex_state = 66, .external_lex_state = 3}, - [61] = {.lex_state = 66, .external_lex_state = 3}, - [62] = {.lex_state = 66, .external_lex_state = 3}, - [63] = {.lex_state = 66, .external_lex_state = 3}, - [64] = {.lex_state = 66, .external_lex_state = 3}, - [65] = {.lex_state = 66, .external_lex_state = 3}, - [66] = {.lex_state = 66, .external_lex_state = 3}, - [67] = {.lex_state = 66, .external_lex_state = 3}, - [68] = {.lex_state = 66, .external_lex_state = 3}, - [69] = {.lex_state = 66, .external_lex_state = 3}, - [70] = {.lex_state = 66, .external_lex_state = 3}, - [71] = {.lex_state = 66, .external_lex_state = 3}, - [72] = {.lex_state = 66, .external_lex_state = 3}, - [73] = {.lex_state = 66, .external_lex_state = 3}, - [74] = {.lex_state = 66, .external_lex_state = 3}, - [75] = {.lex_state = 66, .external_lex_state = 3}, - [76] = {.lex_state = 66, .external_lex_state = 3}, - [77] = {.lex_state = 66, .external_lex_state = 3}, - [78] = {.lex_state = 66, .external_lex_state = 3}, - [79] = {.lex_state = 66, .external_lex_state = 3}, - [80] = {.lex_state = 66, .external_lex_state = 3}, - [81] = {.lex_state = 66, .external_lex_state = 3}, - [82] = {.lex_state = 66, .external_lex_state = 3}, - [83] = {.lex_state = 66, .external_lex_state = 3}, - [84] = {.lex_state = 66, .external_lex_state = 3}, - [85] = {.lex_state = 66, .external_lex_state = 3}, - [86] = {.lex_state = 66, .external_lex_state = 3}, - [87] = {.lex_state = 66, .external_lex_state = 3}, - [88] = {.lex_state = 66, .external_lex_state = 3}, - [89] = {.lex_state = 66, .external_lex_state = 3}, - [90] = {.lex_state = 66, .external_lex_state = 3}, - [91] = {.lex_state = 66, .external_lex_state = 3}, - [92] = {.lex_state = 66, .external_lex_state = 3}, - [93] = {.lex_state = 66, .external_lex_state = 3}, - [94] = {.lex_state = 66, .external_lex_state = 3}, - [95] = {.lex_state = 66, .external_lex_state = 3}, - [96] = {.lex_state = 66, .external_lex_state = 3}, - [97] = {.lex_state = 66, .external_lex_state = 3}, - [98] = {.lex_state = 66, .external_lex_state = 3}, - [99] = {.lex_state = 66, .external_lex_state = 3}, - [100] = {.lex_state = 66, .external_lex_state = 3}, - [101] = {.lex_state = 66, .external_lex_state = 3}, - [102] = {.lex_state = 66, .external_lex_state = 3}, - [103] = {.lex_state = 66, .external_lex_state = 3}, - [104] = {.lex_state = 66, .external_lex_state = 3}, - [105] = {.lex_state = 66, .external_lex_state = 3}, - [106] = {.lex_state = 66, .external_lex_state = 3}, - [107] = {.lex_state = 66, .external_lex_state = 3}, - [108] = {.lex_state = 66, .external_lex_state = 3}, - [109] = {.lex_state = 66, .external_lex_state = 3}, - [110] = {.lex_state = 66, .external_lex_state = 3}, - [111] = {.lex_state = 66, .external_lex_state = 3}, - [112] = {.lex_state = 66, .external_lex_state = 3}, - [113] = {.lex_state = 66, .external_lex_state = 3}, - [114] = {.lex_state = 66, .external_lex_state = 3}, - [115] = {.lex_state = 66, .external_lex_state = 3}, - [116] = {.lex_state = 66, .external_lex_state = 3}, - [117] = {.lex_state = 66, .external_lex_state = 3}, - [118] = {.lex_state = 66, .external_lex_state = 3}, - [119] = {.lex_state = 66, .external_lex_state = 3}, - [120] = {.lex_state = 66, .external_lex_state = 3}, - [121] = {.lex_state = 66, .external_lex_state = 3}, - [122] = {.lex_state = 66, .external_lex_state = 3}, - [123] = {.lex_state = 66, .external_lex_state = 3}, - [124] = {.lex_state = 66, .external_lex_state = 3}, - [125] = {.lex_state = 66, .external_lex_state = 3}, - [126] = {.lex_state = 66, .external_lex_state = 3}, - [127] = {.lex_state = 66, .external_lex_state = 3}, - [128] = {.lex_state = 66, .external_lex_state = 3}, - [129] = {.lex_state = 66, .external_lex_state = 3}, - [130] = {.lex_state = 66, .external_lex_state = 3}, - [131] = {.lex_state = 66, .external_lex_state = 3}, - [132] = {.lex_state = 66, .external_lex_state = 3}, - [133] = {.lex_state = 66, .external_lex_state = 3}, - [134] = {.lex_state = 66, .external_lex_state = 3}, - [135] = {.lex_state = 66, .external_lex_state = 3}, - [136] = {.lex_state = 66, .external_lex_state = 3}, - [137] = {.lex_state = 66, .external_lex_state = 3}, - [138] = {.lex_state = 66, .external_lex_state = 3}, - [139] = {.lex_state = 66, .external_lex_state = 3}, - [140] = {.lex_state = 66, .external_lex_state = 3}, - [141] = {.lex_state = 66, .external_lex_state = 3}, - [142] = {.lex_state = 66, .external_lex_state = 3}, - [143] = {.lex_state = 66, .external_lex_state = 3}, - [144] = {.lex_state = 66, .external_lex_state = 3}, - [145] = {.lex_state = 66, .external_lex_state = 3}, - [146] = {.lex_state = 66, .external_lex_state = 3}, - [147] = {.lex_state = 66, .external_lex_state = 3}, - [148] = {.lex_state = 66, .external_lex_state = 3}, - [149] = {.lex_state = 66, .external_lex_state = 3}, - [150] = {.lex_state = 66, .external_lex_state = 3}, - [151] = {.lex_state = 66, .external_lex_state = 3}, - [152] = {.lex_state = 66, .external_lex_state = 3}, - [153] = {.lex_state = 66, .external_lex_state = 3}, - [154] = {.lex_state = 66, .external_lex_state = 3}, - [155] = {.lex_state = 66, .external_lex_state = 3}, - [156] = {.lex_state = 66, .external_lex_state = 3}, - [157] = {.lex_state = 66, .external_lex_state = 3}, - [158] = {.lex_state = 66, .external_lex_state = 3}, - [159] = {.lex_state = 66, .external_lex_state = 3}, - [160] = {.lex_state = 66, .external_lex_state = 3}, - [161] = {.lex_state = 66, .external_lex_state = 3}, - [162] = {.lex_state = 66, .external_lex_state = 3}, - [163] = {.lex_state = 66, .external_lex_state = 3}, - [164] = {.lex_state = 66, .external_lex_state = 3}, - [165] = {.lex_state = 66, .external_lex_state = 3}, - [166] = {.lex_state = 66, .external_lex_state = 3}, - [167] = {.lex_state = 66, .external_lex_state = 3}, - [168] = {.lex_state = 66, .external_lex_state = 3}, - [169] = {.lex_state = 66, .external_lex_state = 3}, - [170] = {.lex_state = 66, .external_lex_state = 3}, - [171] = {.lex_state = 66, .external_lex_state = 3}, - [172] = {.lex_state = 66, .external_lex_state = 3}, - [173] = {.lex_state = 66, .external_lex_state = 3}, - [174] = {.lex_state = 66, .external_lex_state = 3}, - [175] = {.lex_state = 66, .external_lex_state = 3}, - [176] = {.lex_state = 66, .external_lex_state = 3}, - [177] = {.lex_state = 66, .external_lex_state = 3}, - [178] = {.lex_state = 66, .external_lex_state = 3}, - [179] = {.lex_state = 66, .external_lex_state = 3}, - [180] = {.lex_state = 66, .external_lex_state = 3}, - [181] = {.lex_state = 66, .external_lex_state = 3}, - [182] = {.lex_state = 66, .external_lex_state = 3}, - [183] = {.lex_state = 66, .external_lex_state = 3}, - [184] = {.lex_state = 66, .external_lex_state = 3}, - [185] = {.lex_state = 66, .external_lex_state = 3}, - [186] = {.lex_state = 66, .external_lex_state = 3}, - [187] = {.lex_state = 66, .external_lex_state = 3}, - [188] = {.lex_state = 66, .external_lex_state = 3}, - [189] = {.lex_state = 66, .external_lex_state = 3}, - [190] = {.lex_state = 66, .external_lex_state = 3}, - [191] = {.lex_state = 66, .external_lex_state = 3}, - [192] = {.lex_state = 66, .external_lex_state = 3}, - [193] = {.lex_state = 66, .external_lex_state = 3}, - [194] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 3}, - [199] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 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}, - [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 = 2}, - [214] = {.lex_state = 66, .external_lex_state = 2}, - [215] = {.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 = 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}, - [228] = {.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 = 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 = 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}, - [254] = {.lex_state = 66, .external_lex_state = 4}, - [255] = {.lex_state = 66, .external_lex_state = 4}, - [256] = {.lex_state = 66, .external_lex_state = 4}, - [257] = {.lex_state = 66, .external_lex_state = 4}, - [258] = {.lex_state = 66, .external_lex_state = 4}, - [259] = {.lex_state = 66, .external_lex_state = 4}, - [260] = {.lex_state = 66, .external_lex_state = 4}, - [261] = {.lex_state = 66, .external_lex_state = 4}, - [262] = {.lex_state = 66, .external_lex_state = 4}, - [263] = {.lex_state = 66, .external_lex_state = 4}, - [264] = {.lex_state = 66, .external_lex_state = 4}, - [265] = {.lex_state = 66, .external_lex_state = 4}, - [266] = {.lex_state = 66, .external_lex_state = 4}, - [267] = {.lex_state = 66, .external_lex_state = 4}, - [268] = {.lex_state = 66, .external_lex_state = 4}, - [269] = {.lex_state = 66, .external_lex_state = 4}, - [270] = {.lex_state = 66, .external_lex_state = 4}, - [271] = {.lex_state = 66, .external_lex_state = 4}, - [272] = {.lex_state = 66, .external_lex_state = 4}, - [273] = {.lex_state = 66, .external_lex_state = 4}, - [274] = {.lex_state = 66, .external_lex_state = 4}, - [275] = {.lex_state = 66, .external_lex_state = 4}, - [276] = {.lex_state = 66, .external_lex_state = 4}, - [277] = {.lex_state = 66, .external_lex_state = 4}, - [278] = {.lex_state = 66, .external_lex_state = 4}, - [279] = {.lex_state = 66, .external_lex_state = 4}, - [280] = {.lex_state = 66, .external_lex_state = 4}, - [281] = {.lex_state = 66, .external_lex_state = 4}, - [282] = {.lex_state = 66, .external_lex_state = 4}, - [283] = {.lex_state = 66, .external_lex_state = 4}, - [284] = {.lex_state = 66, .external_lex_state = 4}, - [285] = {.lex_state = 66, .external_lex_state = 4}, - [286] = {.lex_state = 66, .external_lex_state = 4}, - [287] = {.lex_state = 66, .external_lex_state = 4}, - [288] = {.lex_state = 66, .external_lex_state = 4}, - [289] = {.lex_state = 66, .external_lex_state = 4}, - [290] = {.lex_state = 66, .external_lex_state = 4}, - [291] = {.lex_state = 66, .external_lex_state = 4}, - [292] = {.lex_state = 66, .external_lex_state = 4}, - [293] = {.lex_state = 66, .external_lex_state = 4}, - [294] = {.lex_state = 66, .external_lex_state = 4}, - [295] = {.lex_state = 66, .external_lex_state = 4}, - [296] = {.lex_state = 66, .external_lex_state = 4}, - [297] = {.lex_state = 66, .external_lex_state = 4}, - [298] = {.lex_state = 66, .external_lex_state = 4}, - [299] = {.lex_state = 66, .external_lex_state = 4}, - [300] = {.lex_state = 66, .external_lex_state = 4}, - [301] = {.lex_state = 66, .external_lex_state = 4}, - [302] = {.lex_state = 66, .external_lex_state = 4}, - [303] = {.lex_state = 66, .external_lex_state = 4}, - [304] = {.lex_state = 66, .external_lex_state = 4}, - [305] = {.lex_state = 66, .external_lex_state = 4}, - [306] = {.lex_state = 66, .external_lex_state = 4}, - [307] = {.lex_state = 66, .external_lex_state = 4}, - [308] = {.lex_state = 66, .external_lex_state = 4}, - [309] = {.lex_state = 66, .external_lex_state = 4}, - [310] = {.lex_state = 66, .external_lex_state = 4}, - [311] = {.lex_state = 66, .external_lex_state = 4}, - [312] = {.lex_state = 66, .external_lex_state = 4}, - [313] = {.lex_state = 66, .external_lex_state = 4}, - [314] = {.lex_state = 66, .external_lex_state = 4}, - [315] = {.lex_state = 66, .external_lex_state = 4}, - [316] = {.lex_state = 66, .external_lex_state = 4}, - [317] = {.lex_state = 66, .external_lex_state = 4}, - [318] = {.lex_state = 66, .external_lex_state = 4}, - [319] = {.lex_state = 66, .external_lex_state = 4}, - [320] = {.lex_state = 66, .external_lex_state = 4}, - [321] = {.lex_state = 66, .external_lex_state = 4}, - [322] = {.lex_state = 66, .external_lex_state = 4}, - [323] = {.lex_state = 66, .external_lex_state = 4}, - [324] = {.lex_state = 66, .external_lex_state = 4}, - [325] = {.lex_state = 66, .external_lex_state = 4}, - [326] = {.lex_state = 66, .external_lex_state = 4}, - [327] = {.lex_state = 66, .external_lex_state = 4}, - [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}, - [332] = {.lex_state = 66, .external_lex_state = 4}, - [333] = {.lex_state = 66, .external_lex_state = 4}, - [334] = {.lex_state = 66, .external_lex_state = 4}, - [335] = {.lex_state = 66, .external_lex_state = 4}, - [336] = {.lex_state = 66, .external_lex_state = 4}, - [337] = {.lex_state = 66, .external_lex_state = 4}, - [338] = {.lex_state = 66, .external_lex_state = 4}, - [339] = {.lex_state = 66, .external_lex_state = 4}, - [340] = {.lex_state = 66, .external_lex_state = 4}, - [341] = {.lex_state = 66, .external_lex_state = 4}, - [342] = {.lex_state = 66, .external_lex_state = 4}, - [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 = 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}, - [350] = {.lex_state = 66, .external_lex_state = 4}, - [351] = {.lex_state = 66, .external_lex_state = 4}, - [352] = {.lex_state = 66, .external_lex_state = 4}, - [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 = 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}, - [360] = {.lex_state = 66, .external_lex_state = 4}, - [361] = {.lex_state = 66, .external_lex_state = 4}, - [362] = {.lex_state = 66, .external_lex_state = 4}, - [363] = {.lex_state = 66, .external_lex_state = 4}, - [364] = {.lex_state = 66, .external_lex_state = 4}, - [365] = {.lex_state = 66, .external_lex_state = 4}, - [366] = {.lex_state = 66, .external_lex_state = 4}, - [367] = {.lex_state = 66, .external_lex_state = 4}, - [368] = {.lex_state = 66, .external_lex_state = 4}, - [369] = {.lex_state = 66, .external_lex_state = 4}, - [370] = {.lex_state = 66, .external_lex_state = 4}, - [371] = {.lex_state = 66, .external_lex_state = 4}, - [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 = 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}, - [379] = {.lex_state = 66, .external_lex_state = 4}, - [380] = {.lex_state = 66, .external_lex_state = 4}, - [381] = {.lex_state = 66, .external_lex_state = 4}, - [382] = {.lex_state = 66, .external_lex_state = 4}, - [383] = {.lex_state = 66, .external_lex_state = 4}, - [384] = {.lex_state = 66, .external_lex_state = 4}, - [385] = {.lex_state = 66, .external_lex_state = 4}, - [386] = {.lex_state = 66, .external_lex_state = 4}, - [387] = {.lex_state = 66, .external_lex_state = 4}, - [388] = {.lex_state = 66, .external_lex_state = 4}, - [389] = {.lex_state = 66, .external_lex_state = 4}, - [390] = {.lex_state = 66, .external_lex_state = 4}, - [391] = {.lex_state = 66, .external_lex_state = 4}, - [392] = {.lex_state = 66, .external_lex_state = 4}, - [393] = {.lex_state = 66, .external_lex_state = 4}, - [394] = {.lex_state = 66, .external_lex_state = 4}, - [395] = {.lex_state = 66, .external_lex_state = 4}, - [396] = {.lex_state = 66, .external_lex_state = 4}, - [397] = {.lex_state = 66, .external_lex_state = 4}, - [398] = {.lex_state = 66, .external_lex_state = 4}, - [399] = {.lex_state = 66, .external_lex_state = 4}, - [400] = {.lex_state = 66, .external_lex_state = 4}, - [401] = {.lex_state = 66, .external_lex_state = 4}, - [402] = {.lex_state = 66, .external_lex_state = 4}, - [403] = {.lex_state = 66, .external_lex_state = 4}, - [404] = {.lex_state = 66, .external_lex_state = 4}, - [405] = {.lex_state = 66, .external_lex_state = 4}, - [406] = {.lex_state = 66, .external_lex_state = 4}, - [407] = {.lex_state = 66, .external_lex_state = 4}, - [408] = {.lex_state = 66, .external_lex_state = 4}, - [409] = {.lex_state = 66, .external_lex_state = 4}, - [410] = {.lex_state = 66, .external_lex_state = 4}, - [411] = {.lex_state = 66, .external_lex_state = 4}, - [412] = {.lex_state = 66, .external_lex_state = 4}, - [413] = {.lex_state = 66, .external_lex_state = 4}, - [414] = {.lex_state = 66, .external_lex_state = 4}, - [415] = {.lex_state = 66, .external_lex_state = 4}, - [416] = {.lex_state = 66, .external_lex_state = 4}, - [417] = {.lex_state = 66, .external_lex_state = 4}, - [418] = {.lex_state = 66, .external_lex_state = 4}, - [419] = {.lex_state = 66, .external_lex_state = 4}, - [420] = {.lex_state = 66, .external_lex_state = 4}, - [421] = {.lex_state = 66, .external_lex_state = 4}, - [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 = 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 = 66, .external_lex_state = 4}, - [439] = {.lex_state = 66, .external_lex_state = 4}, - [440] = {.lex_state = 66, .external_lex_state = 4}, - [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 = 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 = 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}, - [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 = 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 = 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 = 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 = 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}, - [526] = {.lex_state = 66, .external_lex_state = 3}, - [527] = {.lex_state = 66, .external_lex_state = 3}, - [528] = {.lex_state = 66, .external_lex_state = 3}, - [529] = {.lex_state = 66, .external_lex_state = 3}, - [530] = {.lex_state = 66, .external_lex_state = 3}, - [531] = {.lex_state = 66, .external_lex_state = 3}, - [532] = {.lex_state = 66, .external_lex_state = 3}, - [533] = {.lex_state = 66, .external_lex_state = 3}, - [534] = {.lex_state = 66, .external_lex_state = 3}, - [535] = {.lex_state = 66, .external_lex_state = 3}, - [536] = {.lex_state = 66, .external_lex_state = 3}, - [537] = {.lex_state = 66, .external_lex_state = 3}, - [538] = {.lex_state = 66, .external_lex_state = 3}, - [539] = {.lex_state = 66, .external_lex_state = 3}, - [540] = {.lex_state = 66, .external_lex_state = 3}, - [541] = {.lex_state = 66, .external_lex_state = 3}, - [542] = {.lex_state = 66, .external_lex_state = 3}, - [543] = {.lex_state = 66, .external_lex_state = 3}, - [544] = {.lex_state = 66, .external_lex_state = 3}, - [545] = {.lex_state = 66, .external_lex_state = 3}, - [546] = {.lex_state = 66, .external_lex_state = 3}, - [547] = {.lex_state = 66, .external_lex_state = 3}, - [548] = {.lex_state = 66, .external_lex_state = 3}, - [549] = {.lex_state = 66, .external_lex_state = 3}, - [550] = {.lex_state = 66, .external_lex_state = 3}, - [551] = {.lex_state = 66, .external_lex_state = 3}, - [552] = {.lex_state = 66, .external_lex_state = 3}, - [553] = {.lex_state = 66, .external_lex_state = 3}, - [554] = {.lex_state = 66, .external_lex_state = 3}, - [555] = {.lex_state = 66, .external_lex_state = 3}, - [556] = {.lex_state = 66, .external_lex_state = 3}, - [557] = {.lex_state = 66, .external_lex_state = 3}, - [558] = {.lex_state = 66, .external_lex_state = 3}, - [559] = {.lex_state = 66, .external_lex_state = 3}, - [560] = {.lex_state = 66, .external_lex_state = 3}, - [561] = {.lex_state = 66, .external_lex_state = 3}, - [562] = {.lex_state = 66, .external_lex_state = 3}, - [563] = {.lex_state = 66, .external_lex_state = 3}, - [564] = {.lex_state = 66, .external_lex_state = 3}, - [565] = {.lex_state = 66, .external_lex_state = 3}, - [566] = {.lex_state = 66, .external_lex_state = 3}, - [567] = {.lex_state = 66, .external_lex_state = 3}, - [568] = {.lex_state = 66, .external_lex_state = 3}, - [569] = {.lex_state = 66, .external_lex_state = 3}, - [570] = {.lex_state = 66, .external_lex_state = 3}, - [571] = {.lex_state = 66, .external_lex_state = 3}, - [572] = {.lex_state = 66, .external_lex_state = 3}, - [573] = {.lex_state = 66, .external_lex_state = 3}, - [574] = {.lex_state = 66, .external_lex_state = 3}, - [575] = {.lex_state = 66, .external_lex_state = 3}, - [576] = {.lex_state = 66, .external_lex_state = 3}, - [577] = {.lex_state = 66, .external_lex_state = 3}, - [578] = {.lex_state = 66, .external_lex_state = 3}, - [579] = {.lex_state = 66, .external_lex_state = 3}, - [580] = {.lex_state = 66, .external_lex_state = 3}, - [581] = {.lex_state = 66, .external_lex_state = 3}, - [582] = {.lex_state = 66, .external_lex_state = 3}, - [583] = {.lex_state = 66, .external_lex_state = 3}, - [584] = {.lex_state = 66, .external_lex_state = 3}, - [585] = {.lex_state = 66, .external_lex_state = 3}, - [586] = {.lex_state = 66, .external_lex_state = 3}, - [587] = {.lex_state = 66, .external_lex_state = 3}, - [588] = {.lex_state = 66, .external_lex_state = 3}, - [589] = {.lex_state = 66, .external_lex_state = 3}, - [590] = {.lex_state = 66, .external_lex_state = 3}, - [591] = {.lex_state = 66, .external_lex_state = 3}, - [592] = {.lex_state = 66, .external_lex_state = 3}, - [593] = {.lex_state = 66, .external_lex_state = 3}, - [594] = {.lex_state = 66, .external_lex_state = 3}, - [595] = {.lex_state = 66, .external_lex_state = 3}, - [596] = {.lex_state = 66, .external_lex_state = 3}, - [597] = {.lex_state = 66, .external_lex_state = 3}, - [598] = {.lex_state = 66, .external_lex_state = 3}, - [599] = {.lex_state = 66, .external_lex_state = 3}, - [600] = {.lex_state = 66, .external_lex_state = 3}, - [601] = {.lex_state = 66, .external_lex_state = 3}, - [602] = {.lex_state = 66, .external_lex_state = 3}, - [603] = {.lex_state = 66, .external_lex_state = 3}, - [604] = {.lex_state = 66, .external_lex_state = 3}, - [605] = {.lex_state = 66, .external_lex_state = 3}, - [606] = {.lex_state = 66, .external_lex_state = 3}, - [607] = {.lex_state = 66, .external_lex_state = 3}, - [608] = {.lex_state = 66, .external_lex_state = 3}, - [609] = {.lex_state = 66, .external_lex_state = 3}, - [610] = {.lex_state = 66, .external_lex_state = 3}, - [611] = {.lex_state = 66, .external_lex_state = 3}, - [612] = {.lex_state = 66, .external_lex_state = 3}, - [613] = {.lex_state = 66, .external_lex_state = 3}, - [614] = {.lex_state = 66, .external_lex_state = 3}, - [615] = {.lex_state = 66, .external_lex_state = 3}, - [616] = {.lex_state = 66, .external_lex_state = 3}, - [617] = {.lex_state = 66, .external_lex_state = 3}, - [618] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 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}, - [626] = {.lex_state = 66, .external_lex_state = 3}, - [627] = {.lex_state = 66, .external_lex_state = 3}, - [628] = {.lex_state = 66, .external_lex_state = 3}, - [629] = {.lex_state = 66, .external_lex_state = 3}, - [630] = {.lex_state = 66, .external_lex_state = 3}, - [631] = {.lex_state = 66, .external_lex_state = 3}, - [632] = {.lex_state = 66, .external_lex_state = 3}, - [633] = {.lex_state = 66, .external_lex_state = 3}, - [634] = {.lex_state = 66, .external_lex_state = 3}, - [635] = {.lex_state = 66, .external_lex_state = 3}, - [636] = {.lex_state = 66, .external_lex_state = 3}, - [637] = {.lex_state = 66, .external_lex_state = 3}, - [638] = {.lex_state = 66, .external_lex_state = 3}, - [639] = {.lex_state = 66, .external_lex_state = 3}, - [640] = {.lex_state = 66, .external_lex_state = 3}, - [641] = {.lex_state = 66, .external_lex_state = 3}, - [642] = {.lex_state = 66, .external_lex_state = 3}, - [643] = {.lex_state = 66, .external_lex_state = 3}, - [644] = {.lex_state = 66, .external_lex_state = 3}, - [645] = {.lex_state = 66, .external_lex_state = 3}, - [646] = {.lex_state = 66, .external_lex_state = 3}, - [647] = {.lex_state = 66, .external_lex_state = 3}, - [648] = {.lex_state = 66, .external_lex_state = 3}, - [649] = {.lex_state = 66, .external_lex_state = 3}, - [650] = {.lex_state = 66, .external_lex_state = 3}, - [651] = {.lex_state = 66, .external_lex_state = 3}, - [652] = {.lex_state = 66, .external_lex_state = 3}, - [653] = {.lex_state = 66, .external_lex_state = 3}, - [654] = {.lex_state = 66, .external_lex_state = 3}, - [655] = {.lex_state = 66, .external_lex_state = 3}, - [656] = {.lex_state = 66, .external_lex_state = 3}, - [657] = {.lex_state = 66, .external_lex_state = 3}, - [658] = {.lex_state = 66, .external_lex_state = 3}, - [659] = {.lex_state = 66, .external_lex_state = 3}, - [660] = {.lex_state = 66, .external_lex_state = 3}, - [661] = {.lex_state = 66, .external_lex_state = 3}, - [662] = {.lex_state = 66, .external_lex_state = 3}, - [663] = {.lex_state = 66, .external_lex_state = 3}, - [664] = {.lex_state = 66, .external_lex_state = 3}, - [665] = {.lex_state = 66, .external_lex_state = 3}, - [666] = {.lex_state = 66, .external_lex_state = 3}, - [667] = {.lex_state = 66, .external_lex_state = 3}, - [668] = {.lex_state = 66, .external_lex_state = 3}, - [669] = {.lex_state = 66, .external_lex_state = 3}, - [670] = {.lex_state = 66, .external_lex_state = 3}, - [671] = {.lex_state = 66, .external_lex_state = 3}, - [672] = {.lex_state = 66, .external_lex_state = 3}, - [673] = {.lex_state = 66, .external_lex_state = 3}, - [674] = {.lex_state = 66, .external_lex_state = 3}, - [675] = {.lex_state = 66, .external_lex_state = 3}, - [676] = {.lex_state = 66, .external_lex_state = 3}, - [677] = {.lex_state = 66, .external_lex_state = 3}, - [678] = {.lex_state = 66, .external_lex_state = 3}, - [679] = {.lex_state = 66, .external_lex_state = 3}, - [680] = {.lex_state = 66, .external_lex_state = 3}, - [681] = {.lex_state = 66, .external_lex_state = 3}, - [682] = {.lex_state = 66, .external_lex_state = 3}, - [683] = {.lex_state = 66, .external_lex_state = 3}, - [684] = {.lex_state = 66, .external_lex_state = 3}, - [685] = {.lex_state = 66, .external_lex_state = 3}, - [686] = {.lex_state = 66, .external_lex_state = 3}, - [687] = {.lex_state = 66, .external_lex_state = 3}, - [688] = {.lex_state = 66, .external_lex_state = 3}, - [689] = {.lex_state = 66, .external_lex_state = 3}, - [690] = {.lex_state = 66, .external_lex_state = 3}, - [691] = {.lex_state = 66, .external_lex_state = 3}, - [692] = {.lex_state = 66, .external_lex_state = 3}, - [693] = {.lex_state = 66, .external_lex_state = 3}, - [694] = {.lex_state = 66, .external_lex_state = 3}, - [695] = {.lex_state = 66, .external_lex_state = 3}, - [696] = {.lex_state = 66, .external_lex_state = 3}, - [697] = {.lex_state = 66, .external_lex_state = 3}, - [698] = {.lex_state = 66, .external_lex_state = 3}, - [699] = {.lex_state = 66, .external_lex_state = 3}, - [700] = {.lex_state = 66, .external_lex_state = 3}, - [701] = {.lex_state = 66, .external_lex_state = 3}, - [702] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 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 = 66, .external_lex_state = 3}, - [717] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 3}, - [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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 66, .external_lex_state = 2}, - [834] = {.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 = 66, .external_lex_state = 2}, - [841] = {.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 = 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 = 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 = 66, .external_lex_state = 6}, - [857] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 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 = 2}, - [871] = {.lex_state = 5, .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 = 66, .external_lex_state = 7}, - [878] = {.lex_state = 5, .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 = 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 = 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 = 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 = 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 = 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}, + [1] = {.lex_state = 156, .external_lex_state = 2}, + [2] = {.lex_state = 156, .external_lex_state = 3}, + [3] = {.lex_state = 156, .external_lex_state = 3}, + [4] = {.lex_state = 156, .external_lex_state = 3}, + [5] = {.lex_state = 156, .external_lex_state = 3}, + [6] = {.lex_state = 156, .external_lex_state = 3}, + [7] = {.lex_state = 156, .external_lex_state = 3}, + [8] = {.lex_state = 156, .external_lex_state = 3}, + [9] = {.lex_state = 156, .external_lex_state = 3}, + [10] = {.lex_state = 156, .external_lex_state = 3}, + [11] = {.lex_state = 156, .external_lex_state = 3}, + [12] = {.lex_state = 156, .external_lex_state = 3}, + [13] = {.lex_state = 156, .external_lex_state = 3}, + [14] = {.lex_state = 156, .external_lex_state = 3}, + [15] = {.lex_state = 156, .external_lex_state = 3}, + [16] = {.lex_state = 156, .external_lex_state = 3}, + [17] = {.lex_state = 156, .external_lex_state = 3}, + [18] = {.lex_state = 156, .external_lex_state = 3}, + [19] = {.lex_state = 156, .external_lex_state = 3}, + [20] = {.lex_state = 156, .external_lex_state = 3}, + [21] = {.lex_state = 156, .external_lex_state = 3}, + [22] = {.lex_state = 156, .external_lex_state = 3}, + [23] = {.lex_state = 156, .external_lex_state = 3}, + [24] = {.lex_state = 156, .external_lex_state = 3}, + [25] = {.lex_state = 156, .external_lex_state = 3}, + [26] = {.lex_state = 156, .external_lex_state = 3}, + [27] = {.lex_state = 156, .external_lex_state = 3}, + [28] = {.lex_state = 156, .external_lex_state = 3}, + [29] = {.lex_state = 156, .external_lex_state = 3}, + [30] = {.lex_state = 156, .external_lex_state = 3}, + [31] = {.lex_state = 156, .external_lex_state = 3}, + [32] = {.lex_state = 156, .external_lex_state = 3}, + [33] = {.lex_state = 156, .external_lex_state = 3}, + [34] = {.lex_state = 156, .external_lex_state = 3}, + [35] = {.lex_state = 156, .external_lex_state = 3}, + [36] = {.lex_state = 156, .external_lex_state = 3}, + [37] = {.lex_state = 156, .external_lex_state = 3}, + [38] = {.lex_state = 156, .external_lex_state = 3}, + [39] = {.lex_state = 156, .external_lex_state = 3}, + [40] = {.lex_state = 156, .external_lex_state = 3}, + [41] = {.lex_state = 156, .external_lex_state = 3}, + [42] = {.lex_state = 156, .external_lex_state = 3}, + [43] = {.lex_state = 156, .external_lex_state = 3}, + [44] = {.lex_state = 156, .external_lex_state = 3}, + [45] = {.lex_state = 156, .external_lex_state = 3}, + [46] = {.lex_state = 156, .external_lex_state = 3}, + [47] = {.lex_state = 156, .external_lex_state = 3}, + [48] = {.lex_state = 156, .external_lex_state = 3}, + [49] = {.lex_state = 156, .external_lex_state = 3}, + [50] = {.lex_state = 156, .external_lex_state = 3}, + [51] = {.lex_state = 156, .external_lex_state = 3}, + [52] = {.lex_state = 156, .external_lex_state = 3}, + [53] = {.lex_state = 156, .external_lex_state = 3}, + [54] = {.lex_state = 156, .external_lex_state = 3}, + [55] = {.lex_state = 156, .external_lex_state = 3}, + [56] = {.lex_state = 156, .external_lex_state = 3}, + [57] = {.lex_state = 156, .external_lex_state = 3}, + [58] = {.lex_state = 156, .external_lex_state = 3}, + [59] = {.lex_state = 156, .external_lex_state = 3}, + [60] = {.lex_state = 156, .external_lex_state = 3}, + [61] = {.lex_state = 156, .external_lex_state = 3}, + [62] = {.lex_state = 156, .external_lex_state = 3}, + [63] = {.lex_state = 156, .external_lex_state = 3}, + [64] = {.lex_state = 156, .external_lex_state = 3}, + [65] = {.lex_state = 156, .external_lex_state = 3}, + [66] = {.lex_state = 156, .external_lex_state = 3}, + [67] = {.lex_state = 156, .external_lex_state = 3}, + [68] = {.lex_state = 156, .external_lex_state = 3}, + [69] = {.lex_state = 156, .external_lex_state = 3}, + [70] = {.lex_state = 156, .external_lex_state = 3}, + [71] = {.lex_state = 156, .external_lex_state = 3}, + [72] = {.lex_state = 156, .external_lex_state = 3}, + [73] = {.lex_state = 156, .external_lex_state = 3}, + [74] = {.lex_state = 156, .external_lex_state = 3}, + [75] = {.lex_state = 156, .external_lex_state = 3}, + [76] = {.lex_state = 156, .external_lex_state = 3}, + [77] = {.lex_state = 156, .external_lex_state = 3}, + [78] = {.lex_state = 156, .external_lex_state = 3}, + [79] = {.lex_state = 156, .external_lex_state = 3}, + [80] = {.lex_state = 156, .external_lex_state = 3}, + [81] = {.lex_state = 156, .external_lex_state = 3}, + [82] = {.lex_state = 156, .external_lex_state = 3}, + [83] = {.lex_state = 156, .external_lex_state = 3}, + [84] = {.lex_state = 156, .external_lex_state = 3}, + [85] = {.lex_state = 156, .external_lex_state = 3}, + [86] = {.lex_state = 156, .external_lex_state = 3}, + [87] = {.lex_state = 156, .external_lex_state = 3}, + [88] = {.lex_state = 156, .external_lex_state = 3}, + [89] = {.lex_state = 156, .external_lex_state = 3}, + [90] = {.lex_state = 156, .external_lex_state = 3}, + [91] = {.lex_state = 156, .external_lex_state = 3}, + [92] = {.lex_state = 156, .external_lex_state = 3}, + [93] = {.lex_state = 156, .external_lex_state = 3}, + [94] = {.lex_state = 156, .external_lex_state = 3}, + [95] = {.lex_state = 156, .external_lex_state = 3}, + [96] = {.lex_state = 156, .external_lex_state = 3}, + [97] = {.lex_state = 156, .external_lex_state = 3}, + [98] = {.lex_state = 156, .external_lex_state = 3}, + [99] = {.lex_state = 156, .external_lex_state = 3}, + [100] = {.lex_state = 156, .external_lex_state = 3}, + [101] = {.lex_state = 156, .external_lex_state = 3}, + [102] = {.lex_state = 156, .external_lex_state = 3}, + [103] = {.lex_state = 156, .external_lex_state = 3}, + [104] = {.lex_state = 156, .external_lex_state = 3}, + [105] = {.lex_state = 156, .external_lex_state = 3}, + [106] = {.lex_state = 156, .external_lex_state = 3}, + [107] = {.lex_state = 156, .external_lex_state = 3}, + [108] = {.lex_state = 156, .external_lex_state = 3}, + [109] = {.lex_state = 156, .external_lex_state = 3}, + [110] = {.lex_state = 156, .external_lex_state = 3}, + [111] = {.lex_state = 156, .external_lex_state = 3}, + [112] = {.lex_state = 156, .external_lex_state = 3}, + [113] = {.lex_state = 156, .external_lex_state = 3}, + [114] = {.lex_state = 156, .external_lex_state = 3}, + [115] = {.lex_state = 156, .external_lex_state = 3}, + [116] = {.lex_state = 156, .external_lex_state = 3}, + [117] = {.lex_state = 156, .external_lex_state = 3}, + [118] = {.lex_state = 156, .external_lex_state = 3}, + [119] = {.lex_state = 156, .external_lex_state = 3}, + [120] = {.lex_state = 156, .external_lex_state = 3}, + [121] = {.lex_state = 156, .external_lex_state = 3}, + [122] = {.lex_state = 156, .external_lex_state = 3}, + [123] = {.lex_state = 156, .external_lex_state = 3}, + [124] = {.lex_state = 156, .external_lex_state = 3}, + [125] = {.lex_state = 156, .external_lex_state = 3}, + [126] = {.lex_state = 156, .external_lex_state = 3}, + [127] = {.lex_state = 156, .external_lex_state = 3}, + [128] = {.lex_state = 156, .external_lex_state = 3}, + [129] = {.lex_state = 156, .external_lex_state = 3}, + [130] = {.lex_state = 156, .external_lex_state = 3}, + [131] = {.lex_state = 156, .external_lex_state = 3}, + [132] = {.lex_state = 156, .external_lex_state = 3}, + [133] = {.lex_state = 156, .external_lex_state = 3}, + [134] = {.lex_state = 156, .external_lex_state = 3}, + [135] = {.lex_state = 156, .external_lex_state = 3}, + [136] = {.lex_state = 156, .external_lex_state = 3}, + [137] = {.lex_state = 156, .external_lex_state = 3}, + [138] = {.lex_state = 156, .external_lex_state = 3}, + [139] = {.lex_state = 156, .external_lex_state = 3}, + [140] = {.lex_state = 156, .external_lex_state = 3}, + [141] = {.lex_state = 156, .external_lex_state = 3}, + [142] = {.lex_state = 156, .external_lex_state = 3}, + [143] = {.lex_state = 156, .external_lex_state = 3}, + [144] = {.lex_state = 156, .external_lex_state = 3}, + [145] = {.lex_state = 156, .external_lex_state = 3}, + [146] = {.lex_state = 156, .external_lex_state = 3}, + [147] = {.lex_state = 156, .external_lex_state = 3}, + [148] = {.lex_state = 156, .external_lex_state = 3}, + [149] = {.lex_state = 156, .external_lex_state = 3}, + [150] = {.lex_state = 156, .external_lex_state = 3}, + [151] = {.lex_state = 156, .external_lex_state = 3}, + [152] = {.lex_state = 156, .external_lex_state = 3}, + [153] = {.lex_state = 156, .external_lex_state = 3}, + [154] = {.lex_state = 156, .external_lex_state = 3}, + [155] = {.lex_state = 156, .external_lex_state = 3}, + [156] = {.lex_state = 156, .external_lex_state = 3}, + [157] = {.lex_state = 156, .external_lex_state = 3}, + [158] = {.lex_state = 156, .external_lex_state = 3}, + [159] = {.lex_state = 156, .external_lex_state = 3}, + [160] = {.lex_state = 156, .external_lex_state = 3}, + [161] = {.lex_state = 156, .external_lex_state = 3}, + [162] = {.lex_state = 156, .external_lex_state = 3}, + [163] = {.lex_state = 156, .external_lex_state = 3}, + [164] = {.lex_state = 156, .external_lex_state = 3}, + [165] = {.lex_state = 156, .external_lex_state = 3}, + [166] = {.lex_state = 156, .external_lex_state = 3}, + [167] = {.lex_state = 156, .external_lex_state = 3}, + [168] = {.lex_state = 156, .external_lex_state = 3}, + [169] = {.lex_state = 156, .external_lex_state = 3}, + [170] = {.lex_state = 156, .external_lex_state = 3}, + [171] = {.lex_state = 156, .external_lex_state = 3}, + [172] = {.lex_state = 156, .external_lex_state = 3}, + [173] = {.lex_state = 156, .external_lex_state = 3}, + [174] = {.lex_state = 156, .external_lex_state = 3}, + [175] = {.lex_state = 156, .external_lex_state = 3}, + [176] = {.lex_state = 156, .external_lex_state = 3}, + [177] = {.lex_state = 156, .external_lex_state = 3}, + [178] = {.lex_state = 156, .external_lex_state = 3}, + [179] = {.lex_state = 156, .external_lex_state = 3}, + [180] = {.lex_state = 156, .external_lex_state = 3}, + [181] = {.lex_state = 156, .external_lex_state = 3}, + [182] = {.lex_state = 156, .external_lex_state = 3}, + [183] = {.lex_state = 156, .external_lex_state = 3}, + [184] = {.lex_state = 156, .external_lex_state = 3}, + [185] = {.lex_state = 156, .external_lex_state = 3}, + [186] = {.lex_state = 156, .external_lex_state = 3}, + [187] = {.lex_state = 156, .external_lex_state = 3}, + [188] = {.lex_state = 156, .external_lex_state = 3}, + [189] = {.lex_state = 156, .external_lex_state = 3}, + [190] = {.lex_state = 156, .external_lex_state = 3}, + [191] = {.lex_state = 156, .external_lex_state = 3}, + [192] = {.lex_state = 156, .external_lex_state = 3}, + [193] = {.lex_state = 156, .external_lex_state = 3}, + [194] = {.lex_state = 156, .external_lex_state = 3}, + [195] = {.lex_state = 156, .external_lex_state = 3}, + [196] = {.lex_state = 156, .external_lex_state = 3}, + [197] = {.lex_state = 156, .external_lex_state = 3}, + [198] = {.lex_state = 156, .external_lex_state = 3}, + [199] = {.lex_state = 156, .external_lex_state = 3}, + [200] = {.lex_state = 156, .external_lex_state = 3}, + [201] = {.lex_state = 156, .external_lex_state = 3}, + [202] = {.lex_state = 156, .external_lex_state = 3}, + [203] = {.lex_state = 156, .external_lex_state = 3}, + [204] = {.lex_state = 156, .external_lex_state = 3}, + [205] = {.lex_state = 156, .external_lex_state = 3}, + [206] = {.lex_state = 156, .external_lex_state = 3}, + [207] = {.lex_state = 156, .external_lex_state = 3}, + [208] = {.lex_state = 156, .external_lex_state = 3}, + [209] = {.lex_state = 156, .external_lex_state = 3}, + [210] = {.lex_state = 156, .external_lex_state = 3}, + [211] = {.lex_state = 156, .external_lex_state = 3}, + [212] = {.lex_state = 156, .external_lex_state = 3}, + [213] = {.lex_state = 156, .external_lex_state = 3}, + [214] = {.lex_state = 156, .external_lex_state = 3}, + [215] = {.lex_state = 156, .external_lex_state = 3}, + [216] = {.lex_state = 156, .external_lex_state = 3}, + [217] = {.lex_state = 156, .external_lex_state = 3}, + [218] = {.lex_state = 156, .external_lex_state = 3}, + [219] = {.lex_state = 156, .external_lex_state = 3}, + [220] = {.lex_state = 156, .external_lex_state = 3}, + [221] = {.lex_state = 156, .external_lex_state = 3}, + [222] = {.lex_state = 156, .external_lex_state = 3}, + [223] = {.lex_state = 156, .external_lex_state = 3}, + [224] = {.lex_state = 156, .external_lex_state = 3}, + [225] = {.lex_state = 156, .external_lex_state = 3}, + [226] = {.lex_state = 156, .external_lex_state = 3}, + [227] = {.lex_state = 156, .external_lex_state = 3}, + [228] = {.lex_state = 156, .external_lex_state = 3}, + [229] = {.lex_state = 156, .external_lex_state = 3}, + [230] = {.lex_state = 156, .external_lex_state = 3}, + [231] = {.lex_state = 156, .external_lex_state = 3}, + [232] = {.lex_state = 156, .external_lex_state = 3}, + [233] = {.lex_state = 156, .external_lex_state = 3}, + [234] = {.lex_state = 156, .external_lex_state = 3}, + [235] = {.lex_state = 156, .external_lex_state = 3}, + [236] = {.lex_state = 156, .external_lex_state = 3}, + [237] = {.lex_state = 156, .external_lex_state = 3}, + [238] = {.lex_state = 156, .external_lex_state = 3}, + [239] = {.lex_state = 156, .external_lex_state = 3}, + [240] = {.lex_state = 156, .external_lex_state = 3}, + [241] = {.lex_state = 156, .external_lex_state = 3}, + [242] = {.lex_state = 156, .external_lex_state = 3}, + [243] = {.lex_state = 156, .external_lex_state = 3}, + [244] = {.lex_state = 156, .external_lex_state = 3}, + [245] = {.lex_state = 156, .external_lex_state = 3}, + [246] = {.lex_state = 156, .external_lex_state = 3}, + [247] = {.lex_state = 156, .external_lex_state = 3}, + [248] = {.lex_state = 156, .external_lex_state = 3}, + [249] = {.lex_state = 156, .external_lex_state = 3}, + [250] = {.lex_state = 156, .external_lex_state = 3}, + [251] = {.lex_state = 156, .external_lex_state = 3}, + [252] = {.lex_state = 156, .external_lex_state = 3}, + [253] = {.lex_state = 156, .external_lex_state = 3}, + [254] = {.lex_state = 156, .external_lex_state = 3}, + [255] = {.lex_state = 156, .external_lex_state = 3}, + [256] = {.lex_state = 156, .external_lex_state = 3}, + [257] = {.lex_state = 156, .external_lex_state = 3}, + [258] = {.lex_state = 156, .external_lex_state = 2}, + [259] = {.lex_state = 156, .external_lex_state = 3}, + [260] = {.lex_state = 156, .external_lex_state = 3}, + [261] = {.lex_state = 156, .external_lex_state = 3}, + [262] = {.lex_state = 156, .external_lex_state = 3}, + [263] = {.lex_state = 156, .external_lex_state = 2}, + [264] = {.lex_state = 156, .external_lex_state = 2}, + [265] = {.lex_state = 156, .external_lex_state = 3}, + [266] = {.lex_state = 156, .external_lex_state = 2}, + [267] = {.lex_state = 156, .external_lex_state = 3}, + [268] = {.lex_state = 156, .external_lex_state = 3}, + [269] = {.lex_state = 156, .external_lex_state = 3}, + [270] = {.lex_state = 156, .external_lex_state = 3}, + [271] = {.lex_state = 156, .external_lex_state = 3}, + [272] = {.lex_state = 156, .external_lex_state = 3}, + [273] = {.lex_state = 156, .external_lex_state = 3}, + [274] = {.lex_state = 5, .external_lex_state = 4}, + [275] = {.lex_state = 5, .external_lex_state = 4}, + [276] = {.lex_state = 5, .external_lex_state = 4}, + [277] = {.lex_state = 5, .external_lex_state = 4}, + [278] = {.lex_state = 5, .external_lex_state = 4}, + [279] = {.lex_state = 5, .external_lex_state = 4}, + [280] = {.lex_state = 5, .external_lex_state = 4}, + [281] = {.lex_state = 5, .external_lex_state = 4}, + [282] = {.lex_state = 5, .external_lex_state = 4}, + [283] = {.lex_state = 5, .external_lex_state = 4}, + [284] = {.lex_state = 5, .external_lex_state = 4}, + [285] = {.lex_state = 5, .external_lex_state = 4}, + [286] = {.lex_state = 5, .external_lex_state = 4}, + [287] = {.lex_state = 5, .external_lex_state = 4}, + [288] = {.lex_state = 5, .external_lex_state = 4}, + [289] = {.lex_state = 5, .external_lex_state = 4}, + [290] = {.lex_state = 5, .external_lex_state = 4}, + [291] = {.lex_state = 5, .external_lex_state = 4}, + [292] = {.lex_state = 5, .external_lex_state = 4}, + [293] = {.lex_state = 5, .external_lex_state = 4}, + [294] = {.lex_state = 5, .external_lex_state = 4}, + [295] = {.lex_state = 5, .external_lex_state = 4}, + [296] = {.lex_state = 5, .external_lex_state = 4}, + [297] = {.lex_state = 5, .external_lex_state = 4}, + [298] = {.lex_state = 6, .external_lex_state = 4}, + [299] = {.lex_state = 6, .external_lex_state = 4}, + [300] = {.lex_state = 6, .external_lex_state = 4}, + [301] = {.lex_state = 6, .external_lex_state = 4}, + [302] = {.lex_state = 6, .external_lex_state = 4}, + [303] = {.lex_state = 6, .external_lex_state = 4}, + [304] = {.lex_state = 6, .external_lex_state = 4}, + [305] = {.lex_state = 6, .external_lex_state = 4}, + [306] = {.lex_state = 5, .external_lex_state = 4}, + [307] = {.lex_state = 5, .external_lex_state = 4}, + [308] = {.lex_state = 5, .external_lex_state = 4}, + [309] = {.lex_state = 5, .external_lex_state = 4}, + [310] = {.lex_state = 5, .external_lex_state = 4}, + [311] = {.lex_state = 5, .external_lex_state = 4}, + [312] = {.lex_state = 5, .external_lex_state = 4}, + [313] = {.lex_state = 5, .external_lex_state = 4}, + [314] = {.lex_state = 5, .external_lex_state = 4}, + [315] = {.lex_state = 5, .external_lex_state = 4}, + [316] = {.lex_state = 5, .external_lex_state = 4}, + [317] = {.lex_state = 5, .external_lex_state = 4}, + [318] = {.lex_state = 5, .external_lex_state = 4}, + [319] = {.lex_state = 5, .external_lex_state = 4}, + [320] = {.lex_state = 5, .external_lex_state = 4}, + [321] = {.lex_state = 5, .external_lex_state = 4}, + [322] = {.lex_state = 5, .external_lex_state = 4}, + [323] = {.lex_state = 5, .external_lex_state = 4}, + [324] = {.lex_state = 5, .external_lex_state = 4}, + [325] = {.lex_state = 5, .external_lex_state = 4}, + [326] = {.lex_state = 5, .external_lex_state = 4}, + [327] = {.lex_state = 5, .external_lex_state = 4}, + [328] = {.lex_state = 5, .external_lex_state = 4}, + [329] = {.lex_state = 5, .external_lex_state = 4}, + [330] = {.lex_state = 5, .external_lex_state = 4}, + [331] = {.lex_state = 5, .external_lex_state = 4}, + [332] = {.lex_state = 5, .external_lex_state = 4}, + [333] = {.lex_state = 5, .external_lex_state = 4}, + [334] = {.lex_state = 5, .external_lex_state = 4}, + [335] = {.lex_state = 5, .external_lex_state = 4}, + [336] = {.lex_state = 5, .external_lex_state = 4}, + [337] = {.lex_state = 5, .external_lex_state = 4}, + [338] = {.lex_state = 5, .external_lex_state = 4}, + [339] = {.lex_state = 5, .external_lex_state = 4}, + [340] = {.lex_state = 5, .external_lex_state = 4}, + [341] = {.lex_state = 5, .external_lex_state = 4}, + [342] = {.lex_state = 5, .external_lex_state = 4}, + [343] = {.lex_state = 5, .external_lex_state = 4}, + [344] = {.lex_state = 5, .external_lex_state = 4}, + [345] = {.lex_state = 5, .external_lex_state = 4}, + [346] = {.lex_state = 5, .external_lex_state = 4}, + [347] = {.lex_state = 5, .external_lex_state = 4}, + [348] = {.lex_state = 5, .external_lex_state = 4}, + [349] = {.lex_state = 5, .external_lex_state = 4}, + [350] = {.lex_state = 5, .external_lex_state = 4}, + [351] = {.lex_state = 5, .external_lex_state = 4}, + [352] = {.lex_state = 5, .external_lex_state = 4}, + [353] = {.lex_state = 5, .external_lex_state = 4}, + [354] = {.lex_state = 5, .external_lex_state = 4}, + [355] = {.lex_state = 5, .external_lex_state = 4}, + [356] = {.lex_state = 5, .external_lex_state = 4}, + [357] = {.lex_state = 5, .external_lex_state = 4}, + [358] = {.lex_state = 5, .external_lex_state = 4}, + [359] = {.lex_state = 5, .external_lex_state = 4}, + [360] = {.lex_state = 5, .external_lex_state = 4}, + [361] = {.lex_state = 5, .external_lex_state = 4}, + [362] = {.lex_state = 5, .external_lex_state = 4}, + [363] = {.lex_state = 5, .external_lex_state = 4}, + [364] = {.lex_state = 5, .external_lex_state = 4}, + [365] = {.lex_state = 5, .external_lex_state = 4}, + [366] = {.lex_state = 5, .external_lex_state = 4}, + [367] = {.lex_state = 5, .external_lex_state = 4}, + [368] = {.lex_state = 5, .external_lex_state = 4}, + [369] = {.lex_state = 5, .external_lex_state = 4}, + [370] = {.lex_state = 5, .external_lex_state = 4}, + [371] = {.lex_state = 5, .external_lex_state = 4}, + [372] = {.lex_state = 5, .external_lex_state = 4}, + [373] = {.lex_state = 5, .external_lex_state = 4}, + [374] = {.lex_state = 5, .external_lex_state = 4}, + [375] = {.lex_state = 5, .external_lex_state = 4}, + [376] = {.lex_state = 5, .external_lex_state = 4}, + [377] = {.lex_state = 5, .external_lex_state = 4}, + [378] = {.lex_state = 5, .external_lex_state = 4}, + [379] = {.lex_state = 5, .external_lex_state = 4}, + [380] = {.lex_state = 5, .external_lex_state = 4}, + [381] = {.lex_state = 5, .external_lex_state = 4}, + [382] = {.lex_state = 5, .external_lex_state = 4}, + [383] = {.lex_state = 5, .external_lex_state = 4}, + [384] = {.lex_state = 5, .external_lex_state = 4}, + [385] = {.lex_state = 5, .external_lex_state = 4}, + [386] = {.lex_state = 5, .external_lex_state = 4}, + [387] = {.lex_state = 5, .external_lex_state = 4}, + [388] = {.lex_state = 5, .external_lex_state = 4}, + [389] = {.lex_state = 5, .external_lex_state = 4}, + [390] = {.lex_state = 5, .external_lex_state = 4}, + [391] = {.lex_state = 5, .external_lex_state = 4}, + [392] = {.lex_state = 5, .external_lex_state = 4}, + [393] = {.lex_state = 5, .external_lex_state = 4}, + [394] = {.lex_state = 5, .external_lex_state = 4}, + [395] = {.lex_state = 5, .external_lex_state = 4}, + [396] = {.lex_state = 5, .external_lex_state = 4}, + [397] = {.lex_state = 5, .external_lex_state = 4}, + [398] = {.lex_state = 5, .external_lex_state = 4}, + [399] = {.lex_state = 5, .external_lex_state = 4}, + [400] = {.lex_state = 5, .external_lex_state = 4}, + [401] = {.lex_state = 5, .external_lex_state = 4}, + [402] = {.lex_state = 5, .external_lex_state = 4}, + [403] = {.lex_state = 5, .external_lex_state = 4}, + [404] = {.lex_state = 5, .external_lex_state = 4}, + [405] = {.lex_state = 5, .external_lex_state = 4}, + [406] = {.lex_state = 5, .external_lex_state = 4}, + [407] = {.lex_state = 5, .external_lex_state = 4}, + [408] = {.lex_state = 5, .external_lex_state = 4}, + [409] = {.lex_state = 5, .external_lex_state = 4}, + [410] = {.lex_state = 5, .external_lex_state = 4}, + [411] = {.lex_state = 5, .external_lex_state = 4}, + [412] = {.lex_state = 5, .external_lex_state = 4}, + [413] = {.lex_state = 5, .external_lex_state = 4}, + [414] = {.lex_state = 5, .external_lex_state = 4}, + [415] = {.lex_state = 5, .external_lex_state = 4}, + [416] = {.lex_state = 5, .external_lex_state = 4}, + [417] = {.lex_state = 5, .external_lex_state = 4}, + [418] = {.lex_state = 5, .external_lex_state = 4}, + [419] = {.lex_state = 5, .external_lex_state = 4}, + [420] = {.lex_state = 7, .external_lex_state = 5}, + [421] = {.lex_state = 5, .external_lex_state = 4}, + [422] = {.lex_state = 5, .external_lex_state = 4}, + [423] = {.lex_state = 5, .external_lex_state = 4}, + [424] = {.lex_state = 5, .external_lex_state = 4}, + [425] = {.lex_state = 5, .external_lex_state = 4}, + [426] = {.lex_state = 5, .external_lex_state = 4}, + [427] = {.lex_state = 7, .external_lex_state = 5}, + [428] = {.lex_state = 5, .external_lex_state = 4}, + [429] = {.lex_state = 5, .external_lex_state = 4}, + [430] = {.lex_state = 5, .external_lex_state = 4}, + [431] = {.lex_state = 5, .external_lex_state = 4}, + [432] = {.lex_state = 5, .external_lex_state = 4}, + [433] = {.lex_state = 5, .external_lex_state = 4}, + [434] = {.lex_state = 5, .external_lex_state = 4}, + [435] = {.lex_state = 5, .external_lex_state = 4}, + [436] = {.lex_state = 5, .external_lex_state = 4}, + [437] = {.lex_state = 5, .external_lex_state = 4}, + [438] = {.lex_state = 5, .external_lex_state = 4}, + [439] = {.lex_state = 5, .external_lex_state = 4}, + [440] = {.lex_state = 5, .external_lex_state = 4}, + [441] = {.lex_state = 5, .external_lex_state = 4}, + [442] = {.lex_state = 5, .external_lex_state = 4}, + [443] = {.lex_state = 5, .external_lex_state = 4}, + [444] = {.lex_state = 5, .external_lex_state = 4}, + [445] = {.lex_state = 5, .external_lex_state = 4}, + [446] = {.lex_state = 5, .external_lex_state = 4}, + [447] = {.lex_state = 5, .external_lex_state = 4}, + [448] = {.lex_state = 5, .external_lex_state = 4}, + [449] = {.lex_state = 5, .external_lex_state = 4}, + [450] = {.lex_state = 5, .external_lex_state = 4}, + [451] = {.lex_state = 5, .external_lex_state = 4}, + [452] = {.lex_state = 5, .external_lex_state = 4}, + [453] = {.lex_state = 5, .external_lex_state = 4}, + [454] = {.lex_state = 5, .external_lex_state = 4}, + [455] = {.lex_state = 5, .external_lex_state = 4}, + [456] = {.lex_state = 5, .external_lex_state = 4}, + [457] = {.lex_state = 5, .external_lex_state = 4}, + [458] = {.lex_state = 5, .external_lex_state = 4}, + [459] = {.lex_state = 5, .external_lex_state = 4}, + [460] = {.lex_state = 5, .external_lex_state = 4}, + [461] = {.lex_state = 5, .external_lex_state = 4}, + [462] = {.lex_state = 5, .external_lex_state = 4}, + [463] = {.lex_state = 5, .external_lex_state = 4}, + [464] = {.lex_state = 5, .external_lex_state = 4}, + [465] = {.lex_state = 5, .external_lex_state = 4}, + [466] = {.lex_state = 5, .external_lex_state = 4}, + [467] = {.lex_state = 5, .external_lex_state = 4}, + [468] = {.lex_state = 5, .external_lex_state = 4}, + [469] = {.lex_state = 5, .external_lex_state = 4}, + [470] = {.lex_state = 5, .external_lex_state = 4}, + [471] = {.lex_state = 5, .external_lex_state = 4}, + [472] = {.lex_state = 5, .external_lex_state = 4}, + [473] = {.lex_state = 5, .external_lex_state = 4}, + [474] = {.lex_state = 5, .external_lex_state = 4}, + [475] = {.lex_state = 5, .external_lex_state = 4}, + [476] = {.lex_state = 5, .external_lex_state = 4}, + [477] = {.lex_state = 5, .external_lex_state = 4}, + [478] = {.lex_state = 5, .external_lex_state = 4}, + [479] = {.lex_state = 5, .external_lex_state = 4}, + [480] = {.lex_state = 5, .external_lex_state = 4}, + [481] = {.lex_state = 5, .external_lex_state = 4}, + [482] = {.lex_state = 5, .external_lex_state = 4}, + [483] = {.lex_state = 5, .external_lex_state = 4}, + [484] = {.lex_state = 5, .external_lex_state = 4}, + [485] = {.lex_state = 5, .external_lex_state = 4}, + [486] = {.lex_state = 5, .external_lex_state = 4}, + [487] = {.lex_state = 5, .external_lex_state = 4}, + [488] = {.lex_state = 5, .external_lex_state = 4}, + [489] = {.lex_state = 5, .external_lex_state = 4}, + [490] = {.lex_state = 5, .external_lex_state = 4}, + [491] = {.lex_state = 5, .external_lex_state = 4}, + [492] = {.lex_state = 5, .external_lex_state = 4}, + [493] = {.lex_state = 5, .external_lex_state = 4}, + [494] = {.lex_state = 5, .external_lex_state = 4}, + [495] = {.lex_state = 5, .external_lex_state = 4}, + [496] = {.lex_state = 5, .external_lex_state = 4}, + [497] = {.lex_state = 5, .external_lex_state = 4}, + [498] = {.lex_state = 5, .external_lex_state = 4}, + [499] = {.lex_state = 5, .external_lex_state = 4}, + [500] = {.lex_state = 5, .external_lex_state = 4}, + [501] = {.lex_state = 5, .external_lex_state = 4}, + [502] = {.lex_state = 5, .external_lex_state = 4}, + [503] = {.lex_state = 5, .external_lex_state = 4}, + [504] = {.lex_state = 5, .external_lex_state = 4}, + [505] = {.lex_state = 5, .external_lex_state = 4}, + [506] = {.lex_state = 5, .external_lex_state = 4}, + [507] = {.lex_state = 5, .external_lex_state = 4}, + [508] = {.lex_state = 5, .external_lex_state = 4}, + [509] = {.lex_state = 5, .external_lex_state = 4}, + [510] = {.lex_state = 5, .external_lex_state = 4}, + [511] = {.lex_state = 5, .external_lex_state = 4}, + [512] = {.lex_state = 5, .external_lex_state = 4}, + [513] = {.lex_state = 5, .external_lex_state = 4}, + [514] = {.lex_state = 5, .external_lex_state = 4}, + [515] = {.lex_state = 5, .external_lex_state = 4}, + [516] = {.lex_state = 5, .external_lex_state = 4}, + [517] = {.lex_state = 5, .external_lex_state = 4}, + [518] = {.lex_state = 5, .external_lex_state = 4}, + [519] = {.lex_state = 5, .external_lex_state = 4}, + [520] = {.lex_state = 5, .external_lex_state = 4}, + [521] = {.lex_state = 5, .external_lex_state = 4}, + [522] = {.lex_state = 5, .external_lex_state = 4}, + [523] = {.lex_state = 5, .external_lex_state = 4}, + [524] = {.lex_state = 5, .external_lex_state = 4}, + [525] = {.lex_state = 5, .external_lex_state = 4}, + [526] = {.lex_state = 5, .external_lex_state = 4}, + [527] = {.lex_state = 5, .external_lex_state = 4}, + [528] = {.lex_state = 5, .external_lex_state = 4}, + [529] = {.lex_state = 5, .external_lex_state = 4}, + [530] = {.lex_state = 5, .external_lex_state = 4}, + [531] = {.lex_state = 5, .external_lex_state = 4}, + [532] = {.lex_state = 5, .external_lex_state = 4}, + [533] = {.lex_state = 5, .external_lex_state = 4}, + [534] = {.lex_state = 5, .external_lex_state = 4}, + [535] = {.lex_state = 5, .external_lex_state = 4}, + [536] = {.lex_state = 5, .external_lex_state = 4}, + [537] = {.lex_state = 5, .external_lex_state = 4}, + [538] = {.lex_state = 5, .external_lex_state = 4}, + [539] = {.lex_state = 5, .external_lex_state = 4}, + [540] = {.lex_state = 5, .external_lex_state = 4}, + [541] = {.lex_state = 5, .external_lex_state = 4}, + [542] = {.lex_state = 5, .external_lex_state = 4}, + [543] = {.lex_state = 5, .external_lex_state = 4}, + [544] = {.lex_state = 5, .external_lex_state = 4}, + [545] = {.lex_state = 5, .external_lex_state = 4}, + [546] = {.lex_state = 5, .external_lex_state = 4}, + [547] = {.lex_state = 5, .external_lex_state = 4}, + [548] = {.lex_state = 5, .external_lex_state = 4}, + [549] = {.lex_state = 5, .external_lex_state = 4}, + [550] = {.lex_state = 5, .external_lex_state = 4}, + [551] = {.lex_state = 5, .external_lex_state = 4}, + [552] = {.lex_state = 5, .external_lex_state = 4}, + [553] = {.lex_state = 5, .external_lex_state = 4}, + [554] = {.lex_state = 7, .external_lex_state = 5}, + [555] = {.lex_state = 7, .external_lex_state = 5}, + [556] = {.lex_state = 5, .external_lex_state = 5}, + [557] = {.lex_state = 5, .external_lex_state = 5}, + [558] = {.lex_state = 5, .external_lex_state = 5}, + [559] = {.lex_state = 5, .external_lex_state = 5}, + [560] = {.lex_state = 5, .external_lex_state = 5}, + [561] = {.lex_state = 5, .external_lex_state = 5}, + [562] = {.lex_state = 5, .external_lex_state = 5}, + [563] = {.lex_state = 5, .external_lex_state = 5}, + [564] = {.lex_state = 5, .external_lex_state = 5}, + [565] = {.lex_state = 5, .external_lex_state = 5}, + [566] = {.lex_state = 5, .external_lex_state = 5}, + [567] = {.lex_state = 5, .external_lex_state = 5}, + [568] = {.lex_state = 5, .external_lex_state = 5}, + [569] = {.lex_state = 5, .external_lex_state = 5}, + [570] = {.lex_state = 5, .external_lex_state = 5}, + [571] = {.lex_state = 5, .external_lex_state = 5}, + [572] = {.lex_state = 5, .external_lex_state = 5}, + [573] = {.lex_state = 5, .external_lex_state = 5}, + [574] = {.lex_state = 5, .external_lex_state = 5}, + [575] = {.lex_state = 5, .external_lex_state = 5}, + [576] = {.lex_state = 5, .external_lex_state = 5}, + [577] = {.lex_state = 5, .external_lex_state = 5}, + [578] = {.lex_state = 5, .external_lex_state = 2}, + [579] = {.lex_state = 7, .external_lex_state = 5}, + [580] = {.lex_state = 7, .external_lex_state = 5}, + [581] = {.lex_state = 72, .external_lex_state = 5}, + [582] = {.lex_state = 8, .external_lex_state = 6}, + [583] = {.lex_state = 8, .external_lex_state = 6}, + [584] = {.lex_state = 8, .external_lex_state = 6}, + [585] = {.lex_state = 9, .external_lex_state = 6}, + [586] = {.lex_state = 9, .external_lex_state = 6}, + [587] = {.lex_state = 9, .external_lex_state = 6}, + [588] = {.lex_state = 9, .external_lex_state = 6}, + [589] = {.lex_state = 9, .external_lex_state = 6}, + [590] = {.lex_state = 9, .external_lex_state = 6}, + [591] = {.lex_state = 9, .external_lex_state = 6}, + [592] = {.lex_state = 9, .external_lex_state = 6}, + [593] = {.lex_state = 9, .external_lex_state = 6}, + [594] = {.lex_state = 9, .external_lex_state = 6}, + [595] = {.lex_state = 9, .external_lex_state = 6}, + [596] = {.lex_state = 9, .external_lex_state = 6}, + [597] = {.lex_state = 9, .external_lex_state = 6}, + [598] = {.lex_state = 9, .external_lex_state = 6}, + [599] = {.lex_state = 9, .external_lex_state = 6}, + [600] = {.lex_state = 9, .external_lex_state = 6}, + [601] = {.lex_state = 9, .external_lex_state = 6}, + [602] = {.lex_state = 9, .external_lex_state = 6}, + [603] = {.lex_state = 9, .external_lex_state = 6}, + [604] = {.lex_state = 9, .external_lex_state = 6}, + [605] = {.lex_state = 9, .external_lex_state = 6}, + [606] = {.lex_state = 9, .external_lex_state = 6}, + [607] = {.lex_state = 9, .external_lex_state = 6}, + [608] = {.lex_state = 9, .external_lex_state = 6}, + [609] = {.lex_state = 9, .external_lex_state = 6}, + [610] = {.lex_state = 9, .external_lex_state = 6}, + [611] = {.lex_state = 9, .external_lex_state = 6}, + [612] = {.lex_state = 9, .external_lex_state = 6}, + [613] = {.lex_state = 9, .external_lex_state = 6}, + [614] = {.lex_state = 9, .external_lex_state = 6}, + [615] = {.lex_state = 9, .external_lex_state = 6}, + [616] = {.lex_state = 9, .external_lex_state = 6}, + [617] = {.lex_state = 9, .external_lex_state = 6}, + [618] = {.lex_state = 9, .external_lex_state = 6}, + [619] = {.lex_state = 9, .external_lex_state = 6}, + [620] = {.lex_state = 8, .external_lex_state = 6}, + [621] = {.lex_state = 8, .external_lex_state = 6}, + [622] = {.lex_state = 8, .external_lex_state = 6}, + [623] = {.lex_state = 8, .external_lex_state = 2}, + [624] = {.lex_state = 10, .external_lex_state = 7}, + [625] = {.lex_state = 10, .external_lex_state = 5}, + [626] = {.lex_state = 8, .external_lex_state = 2}, + [627] = {.lex_state = 8, .external_lex_state = 2}, + [628] = {.lex_state = 8, .external_lex_state = 2}, + [629] = {.lex_state = 10, .external_lex_state = 7}, + [630] = {.lex_state = 8, .external_lex_state = 2}, + [631] = {.lex_state = 8, .external_lex_state = 2}, + [632] = {.lex_state = 8, .external_lex_state = 2}, + [633] = {.lex_state = 8, .external_lex_state = 2}, + [634] = {.lex_state = 11, .external_lex_state = 5}, + [635] = {.lex_state = 12, .external_lex_state = 7}, + [636] = {.lex_state = 12, .external_lex_state = 7}, + [637] = {.lex_state = 13, .external_lex_state = 7}, + [638] = {.lex_state = 14, .external_lex_state = 5}, + [639] = {.lex_state = 13, .external_lex_state = 6}, + [640] = {.lex_state = 15, .external_lex_state = 2}, + [641] = {.lex_state = 12, .external_lex_state = 5}, + [642] = {.lex_state = 16, .external_lex_state = 5}, + [643] = {.lex_state = 12, .external_lex_state = 5}, + [644] = {.lex_state = 11, .external_lex_state = 5}, + [645] = {.lex_state = 13, .external_lex_state = 7}, + [646] = {.lex_state = 13, .external_lex_state = 6}, + [647] = {.lex_state = 73, .external_lex_state = 2}, + [648] = {.lex_state = 14, .external_lex_state = 5}, + [649] = {.lex_state = 14, .external_lex_state = 5}, + [650] = {.lex_state = 13, .external_lex_state = 6}, + [651] = {.lex_state = 13, .external_lex_state = 8}, + [652] = {.lex_state = 10, .external_lex_state = 2}, + [653] = {.lex_state = 17, .external_lex_state = 7}, + [654] = {.lex_state = 13, .external_lex_state = 6}, + [655] = {.lex_state = 10, .external_lex_state = 8}, + [656] = {.lex_state = 10, .external_lex_state = 6}, + [657] = {.lex_state = 74, .external_lex_state = 5}, + [658] = {.lex_state = 18, .external_lex_state = 2}, + [659] = {.lex_state = 17, .external_lex_state = 7}, + [660] = {.lex_state = 13, .external_lex_state = 8}, + [661] = {.lex_state = 13, .external_lex_state = 8}, + [662] = {.lex_state = 74, .external_lex_state = 5}, + [663] = {.lex_state = 13, .external_lex_state = 6}, + [664] = {.lex_state = 13, .external_lex_state = 8}, + [665] = {.lex_state = 12, .external_lex_state = 2}, + [666] = {.lex_state = 12, .external_lex_state = 2}, + [667] = {.lex_state = 13, .external_lex_state = 8}, + [668] = {.lex_state = 10, .external_lex_state = 6}, + [669] = {.lex_state = 75, .external_lex_state = 2}, + [670] = {.lex_state = 75, .external_lex_state = 2}, + [671] = {.lex_state = 10, .external_lex_state = 8}, + [672] = {.lex_state = 11, .external_lex_state = 2}, + [673] = {.lex_state = 10, .external_lex_state = 6}, + [674] = {.lex_state = 12, .external_lex_state = 8}, + [675] = {.lex_state = 11, .external_lex_state = 2}, + [676] = {.lex_state = 10, .external_lex_state = 7}, + [677] = {.lex_state = 13, .external_lex_state = 6}, + [678] = {.lex_state = 12, .external_lex_state = 8}, + [679] = {.lex_state = 19, .external_lex_state = 2}, + [680] = {.lex_state = 10, .external_lex_state = 6}, + [681] = {.lex_state = 10, .external_lex_state = 6}, + [682] = {.lex_state = 19, .external_lex_state = 2}, + [683] = {.lex_state = 19, .external_lex_state = 2}, + [684] = {.lex_state = 8, .external_lex_state = 8}, + [685] = {.lex_state = 8, .external_lex_state = 8}, + [686] = {.lex_state = 8, .external_lex_state = 8}, + [687] = {.lex_state = 9, .external_lex_state = 7}, + [688] = {.lex_state = 8, .external_lex_state = 6}, + [689] = {.lex_state = 8, .external_lex_state = 8}, + [690] = {.lex_state = 9, .external_lex_state = 7}, + [691] = {.lex_state = 8, .external_lex_state = 6}, + [692] = {.lex_state = 8, .external_lex_state = 2}, + [693] = {.lex_state = 8, .external_lex_state = 2}, + [694] = {.lex_state = 8, .external_lex_state = 2}, + [695] = {.lex_state = 8, .external_lex_state = 6}, + [696] = {.lex_state = 8, .external_lex_state = 8}, + [697] = {.lex_state = 9, .external_lex_state = 7}, + [698] = {.lex_state = 8, .external_lex_state = 6}, + [699] = {.lex_state = 8, .external_lex_state = 8}, + [700] = {.lex_state = 9, .external_lex_state = 7}, + [701] = {.lex_state = 8, .external_lex_state = 6}, + [702] = {.lex_state = 8, .external_lex_state = 8}, + [703] = {.lex_state = 9, .external_lex_state = 7}, + [704] = {.lex_state = 8, .external_lex_state = 6}, + [705] = {.lex_state = 8, .external_lex_state = 8}, + [706] = {.lex_state = 9, .external_lex_state = 7}, + [707] = {.lex_state = 8, .external_lex_state = 6}, + [708] = {.lex_state = 8, .external_lex_state = 8}, + [709] = {.lex_state = 8, .external_lex_state = 6}, + [710] = {.lex_state = 8, .external_lex_state = 8}, + [711] = {.lex_state = 8, .external_lex_state = 6}, + [712] = {.lex_state = 8, .external_lex_state = 8}, + [713] = {.lex_state = 8, .external_lex_state = 6}, + [714] = {.lex_state = 8, .external_lex_state = 8}, + [715] = {.lex_state = 9, .external_lex_state = 7}, + [716] = {.lex_state = 8, .external_lex_state = 6}, + [717] = {.lex_state = 8, .external_lex_state = 6}, + [718] = {.lex_state = 9, .external_lex_state = 7}, + [719] = {.lex_state = 9, .external_lex_state = 8}, + [720] = {.lex_state = 9, .external_lex_state = 8}, + [721] = {.lex_state = 9, .external_lex_state = 8}, + [722] = {.lex_state = 8, .external_lex_state = 2}, + [723] = {.lex_state = 8, .external_lex_state = 2}, + [724] = {.lex_state = 9, .external_lex_state = 8}, + [725] = {.lex_state = 9, .external_lex_state = 8}, + [726] = {.lex_state = 9, .external_lex_state = 8}, + [727] = {.lex_state = 9, .external_lex_state = 2}, + [728] = {.lex_state = 9, .external_lex_state = 2}, + [729] = {.lex_state = 20, .external_lex_state = 5}, + [730] = {.lex_state = 20, .external_lex_state = 5}, + [731] = {.lex_state = 9, .external_lex_state = 2}, + [732] = {.lex_state = 9, .external_lex_state = 6}, + [733] = {.lex_state = 9, .external_lex_state = 2}, + [734] = {.lex_state = 21, .external_lex_state = 6}, + [735] = {.lex_state = 9, .external_lex_state = 2}, + [736] = {.lex_state = 9, .external_lex_state = 6}, + [737] = {.lex_state = 9, .external_lex_state = 6}, + [738] = {.lex_state = 9, .external_lex_state = 2}, + [739] = {.lex_state = 9, .external_lex_state = 2}, + [740] = {.lex_state = 9, .external_lex_state = 2}, + [741] = {.lex_state = 9, .external_lex_state = 6}, + [742] = {.lex_state = 9, .external_lex_state = 2}, + [743] = {.lex_state = 9, .external_lex_state = 6}, + [744] = {.lex_state = 21, .external_lex_state = 6}, + [745] = {.lex_state = 9, .external_lex_state = 6}, + [746] = {.lex_state = 9, .external_lex_state = 6}, + [747] = {.lex_state = 9, .external_lex_state = 2}, + [748] = {.lex_state = 9, .external_lex_state = 6}, + [749] = {.lex_state = 9, .external_lex_state = 2}, + [750] = {.lex_state = 9, .external_lex_state = 2}, + [751] = {.lex_state = 9, .external_lex_state = 2}, + [752] = {.lex_state = 9, .external_lex_state = 2}, + [753] = {.lex_state = 9, .external_lex_state = 2}, + [754] = {.lex_state = 9, .external_lex_state = 2}, + [755] = {.lex_state = 9, .external_lex_state = 2}, + [756] = {.lex_state = 9, .external_lex_state = 2}, + [757] = {.lex_state = 9, .external_lex_state = 2}, + [758] = {.lex_state = 9, .external_lex_state = 2}, + [759] = {.lex_state = 9, .external_lex_state = 2}, + [760] = {.lex_state = 9, .external_lex_state = 2}, + [761] = {.lex_state = 9, .external_lex_state = 2}, + [762] = {.lex_state = 9, .external_lex_state = 2}, + [763] = {.lex_state = 9, .external_lex_state = 6}, + [764] = {.lex_state = 9, .external_lex_state = 2}, + [765] = {.lex_state = 8, .external_lex_state = 6}, + [766] = {.lex_state = 8, .external_lex_state = 6}, + [767] = {.lex_state = 157, .external_lex_state = 2}, + [768] = {.lex_state = 9, .external_lex_state = 6}, + [769] = {.lex_state = 9, .external_lex_state = 6}, + [770] = {.lex_state = 8, .external_lex_state = 6}, + [771] = {.lex_state = 8, .external_lex_state = 8}, + [772] = {.lex_state = 8, .external_lex_state = 6}, + [773] = {.lex_state = 9, .external_lex_state = 6}, + [774] = {.lex_state = 9, .external_lex_state = 6}, + [775] = {.lex_state = 9, .external_lex_state = 6}, + [776] = {.lex_state = 9, .external_lex_state = 6}, + [777] = {.lex_state = 9, .external_lex_state = 6}, + [778] = {.lex_state = 9, .external_lex_state = 6}, + [779] = {.lex_state = 159, .external_lex_state = 9}, + [780] = {.lex_state = 8, .external_lex_state = 6}, + [781] = {.lex_state = 8, .external_lex_state = 8}, + [782] = {.lex_state = 8, .external_lex_state = 6}, + [783] = {.lex_state = 157, .external_lex_state = 2}, + [784] = {.lex_state = 9, .external_lex_state = 6}, + [785] = {.lex_state = 9, .external_lex_state = 6}, + [786] = {.lex_state = 9, .external_lex_state = 6}, + [787] = {.lex_state = 9, .external_lex_state = 6}, + [788] = {.lex_state = 8, .external_lex_state = 6}, + [789] = {.lex_state = 8, .external_lex_state = 6}, + [790] = {.lex_state = 8, .external_lex_state = 8}, + [791] = {.lex_state = 9, .external_lex_state = 6}, + [792] = {.lex_state = 159, .external_lex_state = 10}, + [793] = {.lex_state = 157, .external_lex_state = 3}, + [794] = {.lex_state = 9, .external_lex_state = 6}, + [795] = {.lex_state = 9, .external_lex_state = 6}, + [796] = {.lex_state = 9, .external_lex_state = 6}, + [797] = {.lex_state = 9, .external_lex_state = 6}, + [798] = {.lex_state = 9, .external_lex_state = 6}, + [799] = {.lex_state = 8, .external_lex_state = 6}, + [800] = {.lex_state = 8, .external_lex_state = 8}, + [801] = {.lex_state = 9, .external_lex_state = 6}, + [802] = {.lex_state = 9, .external_lex_state = 6}, + [803] = {.lex_state = 9, .external_lex_state = 6}, + [804] = {.lex_state = 9, .external_lex_state = 6}, + [805] = {.lex_state = 8, .external_lex_state = 8}, + [806] = {.lex_state = 9, .external_lex_state = 6}, + [807] = {.lex_state = 9, .external_lex_state = 6}, + [808] = {.lex_state = 159, .external_lex_state = 10}, + [809] = {.lex_state = 9, .external_lex_state = 6}, + [810] = {.lex_state = 9, .external_lex_state = 6}, + [811] = {.lex_state = 9, .external_lex_state = 6}, + [812] = {.lex_state = 9, .external_lex_state = 6}, + [813] = {.lex_state = 157, .external_lex_state = 3}, + [814] = {.lex_state = 9, .external_lex_state = 6}, + [815] = {.lex_state = 9, .external_lex_state = 6}, + [816] = {.lex_state = 9, .external_lex_state = 6}, + [817] = {.lex_state = 9, .external_lex_state = 6}, + [818] = {.lex_state = 9, .external_lex_state = 6}, + [819] = {.lex_state = 9, .external_lex_state = 6}, + [820] = {.lex_state = 9, .external_lex_state = 6}, + [821] = {.lex_state = 9, .external_lex_state = 6}, + [822] = {.lex_state = 9, .external_lex_state = 6}, + [823] = {.lex_state = 9, .external_lex_state = 6}, + [824] = {.lex_state = 8, .external_lex_state = 6}, + [825] = {.lex_state = 8, .external_lex_state = 8}, + [826] = {.lex_state = 8, .external_lex_state = 8}, + [827] = {.lex_state = 8, .external_lex_state = 6}, + [828] = {.lex_state = 8, .external_lex_state = 6}, + [829] = {.lex_state = 8, .external_lex_state = 8}, + [830] = {.lex_state = 8, .external_lex_state = 6}, + [831] = {.lex_state = 8, .external_lex_state = 6}, + [832] = {.lex_state = 159, .external_lex_state = 9}, + [833] = {.lex_state = 9, .external_lex_state = 6}, + [834] = {.lex_state = 9, .external_lex_state = 6}, + [835] = {.lex_state = 5, .external_lex_state = 7}, + [836] = {.lex_state = 9, .external_lex_state = 6}, + [837] = {.lex_state = 9, .external_lex_state = 6}, + [838] = {.lex_state = 9, .external_lex_state = 6}, + [839] = {.lex_state = 9, .external_lex_state = 6}, + [840] = {.lex_state = 8, .external_lex_state = 6}, + [841] = {.lex_state = 22, .external_lex_state = 6}, + [842] = {.lex_state = 9, .external_lex_state = 2}, + [843] = {.lex_state = 8, .external_lex_state = 8}, + [844] = {.lex_state = 20, .external_lex_state = 2}, + [845] = {.lex_state = 8, .external_lex_state = 6}, + [846] = {.lex_state = 8, .external_lex_state = 2}, + [847] = {.lex_state = 22, .external_lex_state = 8}, + [848] = {.lex_state = 22, .external_lex_state = 8}, + [849] = {.lex_state = 22, .external_lex_state = 7}, + [850] = {.lex_state = 22, .external_lex_state = 7}, + [851] = {.lex_state = 20, .external_lex_state = 2}, + [852] = {.lex_state = 22, .external_lex_state = 8}, + [853] = {.lex_state = 8, .external_lex_state = 6}, + [854] = {.lex_state = 8, .external_lex_state = 8}, + [855] = {.lex_state = 22, .external_lex_state = 8}, + [856] = {.lex_state = 8, .external_lex_state = 7}, + [857] = {.lex_state = 8, .external_lex_state = 2}, + [858] = {.lex_state = 8, .external_lex_state = 2}, + [859] = {.lex_state = 22, .external_lex_state = 6}, + [860] = {.lex_state = 8, .external_lex_state = 7}, + [861] = {.lex_state = 22, .external_lex_state = 6}, + [862] = {.lex_state = 8, .external_lex_state = 2}, + [863] = {.lex_state = 22, .external_lex_state = 7}, + [864] = {.lex_state = 22, .external_lex_state = 6}, + [865] = {.lex_state = 22, .external_lex_state = 7}, + [866] = {.lex_state = 156, .external_lex_state = 2}, + [867] = {.lex_state = 156, .external_lex_state = 3}, + [868] = {.lex_state = 156, .external_lex_state = 3}, + [869] = {.lex_state = 9, .external_lex_state = 7}, + [870] = {.lex_state = 9, .external_lex_state = 7}, + [871] = {.lex_state = 5, .external_lex_state = 5}, + [872] = {.lex_state = 156, .external_lex_state = 2}, + [873] = {.lex_state = 9, .external_lex_state = 7}, + [874] = {.lex_state = 156, .external_lex_state = 3}, + [875] = {.lex_state = 9, .external_lex_state = 7}, + [876] = {.lex_state = 9, .external_lex_state = 7}, + [877] = {.lex_state = 8, .external_lex_state = 2}, + [878] = {.lex_state = 9, .external_lex_state = 7}, + [879] = {.lex_state = 5, .external_lex_state = 8}, + [880] = {.lex_state = 9, .external_lex_state = 7}, + [881] = {.lex_state = 9, .external_lex_state = 7}, + [882] = {.lex_state = 158, .external_lex_state = 3}, + [883] = {.lex_state = 156, .external_lex_state = 2}, + [884] = {.lex_state = 158, .external_lex_state = 3}, + [885] = {.lex_state = 159, .external_lex_state = 10}, + [886] = {.lex_state = 5, .external_lex_state = 5}, + [887] = {.lex_state = 5, .external_lex_state = 7}, + [888] = {.lex_state = 9, .external_lex_state = 7}, + [889] = {.lex_state = 158, .external_lex_state = 3}, + [890] = {.lex_state = 159, .external_lex_state = 9}, + [891] = {.lex_state = 9, .external_lex_state = 7}, + [892] = {.lex_state = 158, .external_lex_state = 2}, + [893] = {.lex_state = 156, .external_lex_state = 3}, + [894] = {.lex_state = 8, .external_lex_state = 7}, + [895] = {.lex_state = 9, .external_lex_state = 7}, + [896] = {.lex_state = 158, .external_lex_state = 2}, + [897] = {.lex_state = 8, .external_lex_state = 2}, + [898] = {.lex_state = 9, .external_lex_state = 7}, + [899] = {.lex_state = 9, .external_lex_state = 7}, + [900] = {.lex_state = 156, .external_lex_state = 2}, + [901] = {.lex_state = 158, .external_lex_state = 2}, + [902] = {.lex_state = 157, .external_lex_state = 2}, + [903] = {.lex_state = 158, .external_lex_state = 2}, + [904] = {.lex_state = 8, .external_lex_state = 7}, + [905] = {.lex_state = 157, .external_lex_state = 3}, + [906] = {.lex_state = 9, .external_lex_state = 7}, + [907] = {.lex_state = 158, .external_lex_state = 3}, + [908] = {.lex_state = 8, .external_lex_state = 2}, + [909] = {.lex_state = 9, .external_lex_state = 7}, [910] = {.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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 3}, - [1085] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 8}, - [1091] = {.lex_state = 66, .external_lex_state = 8}, - [1092] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 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}, - [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 = 66, .external_lex_state = 8}, - [1105] = {.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 = 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 = 8}, - [1135] = {.lex_state = 66, .external_lex_state = 8}, - [1136] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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 = 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}, - [1168] = {.lex_state = 66, .external_lex_state = 2}, - [1169] = {.lex_state = 66, .external_lex_state = 2}, - [1170] = {.lex_state = 66, .external_lex_state = 2}, - [1171] = {.lex_state = 66, .external_lex_state = 2}, - [1172] = {.lex_state = 66, .external_lex_state = 2}, - [1173] = {.lex_state = 66, .external_lex_state = 2}, - [1174] = {.lex_state = 66, .external_lex_state = 2}, - [1175] = {.lex_state = 66, .external_lex_state = 2}, - [1176] = {.lex_state = 66, .external_lex_state = 2}, - [1177] = {.lex_state = 66, .external_lex_state = 2}, - [1178] = {.lex_state = 66, .external_lex_state = 2}, - [1179] = {.lex_state = 66, .external_lex_state = 2}, - [1180] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [1185] = {.lex_state = 66, .external_lex_state = 2}, - [1186] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [1193] = {.lex_state = 66, .external_lex_state = 2}, - [1194] = {.lex_state = 66, .external_lex_state = 2}, - [1195] = {.lex_state = 66, .external_lex_state = 2}, - [1196] = {.lex_state = 66, .external_lex_state = 2}, - [1197] = {.lex_state = 66, .external_lex_state = 2}, - [1198] = {.lex_state = 66, .external_lex_state = 2}, - [1199] = {.lex_state = 66, .external_lex_state = 2}, - [1200] = {.lex_state = 66, .external_lex_state = 2}, - [1201] = {.lex_state = 66, .external_lex_state = 2}, - [1202] = {.lex_state = 66, .external_lex_state = 2}, - [1203] = {.lex_state = 66, .external_lex_state = 2}, - [1204] = {.lex_state = 66, .external_lex_state = 2}, - [1205] = {.lex_state = 66, .external_lex_state = 2}, - [1206] = {.lex_state = 66, .external_lex_state = 2}, - [1207] = {.lex_state = 66, .external_lex_state = 2}, - [1208] = {.lex_state = 66, .external_lex_state = 2}, - [1209] = {.lex_state = 66, .external_lex_state = 2}, - [1210] = {.lex_state = 66, .external_lex_state = 2}, - [1211] = {.lex_state = 66, .external_lex_state = 2}, - [1212] = {.lex_state = 66, .external_lex_state = 2}, - [1213] = {.lex_state = 66, .external_lex_state = 2}, - [1214] = {.lex_state = 66, .external_lex_state = 2}, - [1215] = {.lex_state = 66, .external_lex_state = 2}, - [1216] = {.lex_state = 66, .external_lex_state = 2}, - [1217] = {.lex_state = 66, .external_lex_state = 2}, - [1218] = {.lex_state = 66, .external_lex_state = 2}, - [1219] = {.lex_state = 66, .external_lex_state = 2}, - [1220] = {.lex_state = 66, .external_lex_state = 2}, - [1221] = {.lex_state = 66, .external_lex_state = 2}, - [1222] = {.lex_state = 66, .external_lex_state = 2}, - [1223] = {.lex_state = 66, .external_lex_state = 2}, - [1224] = {.lex_state = 66, .external_lex_state = 2}, - [1225] = {.lex_state = 66, .external_lex_state = 2}, - [1226] = {.lex_state = 66, .external_lex_state = 2}, - [1227] = {.lex_state = 66, .external_lex_state = 2}, - [1228] = {.lex_state = 66, .external_lex_state = 2}, - [1229] = {.lex_state = 66, .external_lex_state = 2}, - [1230] = {.lex_state = 66, .external_lex_state = 2}, - [1231] = {.lex_state = 66, .external_lex_state = 2}, - [1232] = {.lex_state = 66, .external_lex_state = 2}, - [1233] = {.lex_state = 66, .external_lex_state = 2}, - [1234] = {.lex_state = 66, .external_lex_state = 2}, - [1235] = {.lex_state = 66, .external_lex_state = 2}, - [1236] = {.lex_state = 66, .external_lex_state = 2}, - [1237] = {.lex_state = 66, .external_lex_state = 2}, - [1238] = {.lex_state = 66, .external_lex_state = 2}, - [1239] = {.lex_state = 66, .external_lex_state = 2}, - [1240] = {.lex_state = 66, .external_lex_state = 2}, - [1241] = {.lex_state = 66, .external_lex_state = 2}, - [1242] = {.lex_state = 66, .external_lex_state = 2}, - [1243] = {.lex_state = 66, .external_lex_state = 2}, - [1244] = {.lex_state = 66, .external_lex_state = 2}, - [1245] = {.lex_state = 66, .external_lex_state = 2}, - [1246] = {.lex_state = 66, .external_lex_state = 2}, - [1247] = {.lex_state = 66, .external_lex_state = 2}, - [1248] = {.lex_state = 66, .external_lex_state = 2}, - [1249] = {.lex_state = 66, .external_lex_state = 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 = 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}, - [1259] = {.lex_state = 66, .external_lex_state = 2}, - [1260] = {.lex_state = 66, .external_lex_state = 2}, - [1261] = {.lex_state = 66, .external_lex_state = 2}, - [1262] = {.lex_state = 66, .external_lex_state = 2}, - [1263] = {.lex_state = 66, .external_lex_state = 2}, - [1264] = {.lex_state = 66, .external_lex_state = 2}, - [1265] = {.lex_state = 66, .external_lex_state = 2}, - [1266] = {.lex_state = 66, .external_lex_state = 2}, - [1267] = {.lex_state = 66, .external_lex_state = 2}, - [1268] = {.lex_state = 66, .external_lex_state = 2}, - [1269] = {.lex_state = 66, .external_lex_state = 2}, - [1270] = {.lex_state = 66, .external_lex_state = 2}, - [1271] = {.lex_state = 66, .external_lex_state = 2}, - [1272] = {.lex_state = 66, .external_lex_state = 2}, - [1273] = {.lex_state = 66, .external_lex_state = 2}, - [1274] = {.lex_state = 66, .external_lex_state = 2}, - [1275] = {.lex_state = 66, .external_lex_state = 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}, - [1280] = {.lex_state = 66, .external_lex_state = 2}, - [1281] = {.lex_state = 66, .external_lex_state = 2}, - [1282] = {.lex_state = 66, .external_lex_state = 2}, - [1283] = {.lex_state = 66, .external_lex_state = 2}, - [1284] = {.lex_state = 66, .external_lex_state = 2}, - [1285] = {.lex_state = 66, .external_lex_state = 2}, - [1286] = {.lex_state = 66, .external_lex_state = 2}, - [1287] = {.lex_state = 66, .external_lex_state = 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}, - [1291] = {.lex_state = 66, .external_lex_state = 2}, - [1292] = {.lex_state = 66, .external_lex_state = 2}, - [1293] = {.lex_state = 66, .external_lex_state = 2}, - [1294] = {.lex_state = 66, .external_lex_state = 2}, - [1295] = {.lex_state = 66, .external_lex_state = 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 = 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 = 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 = 5}, - [1310] = {.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}, - [1315] = {.lex_state = 66, .external_lex_state = 2}, - [1316] = {.lex_state = 66, .external_lex_state = 2}, - [1317] = {.lex_state = 66, .external_lex_state = 2}, - [1318] = {.lex_state = 66, .external_lex_state = 2}, - [1319] = {.lex_state = 66, .external_lex_state = 2}, - [1320] = {.lex_state = 66, .external_lex_state = 2}, - [1321] = {.lex_state = 66, .external_lex_state = 2}, - [1322] = {.lex_state = 66, .external_lex_state = 2}, - [1323] = {.lex_state = 66, .external_lex_state = 2}, - [1324] = {.lex_state = 66, .external_lex_state = 2}, - [1325] = {.lex_state = 66, .external_lex_state = 2}, - [1326] = {.lex_state = 66, .external_lex_state = 2}, - [1327] = {.lex_state = 66, .external_lex_state = 2}, - [1328] = {.lex_state = 66, .external_lex_state = 2}, - [1329] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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 = 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 = 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}, - [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}, - [1355] = {.lex_state = 66, .external_lex_state = 2}, - [1356] = {.lex_state = 66, .external_lex_state = 2}, - [1357] = {.lex_state = 66, .external_lex_state = 2}, - [1358] = {.lex_state = 66, .external_lex_state = 2}, - [1359] = {.lex_state = 66, .external_lex_state = 2}, - [1360] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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 = 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}, - [1376] = {.lex_state = 66, .external_lex_state = 2}, - [1377] = {.lex_state = 66, .external_lex_state = 2}, - [1378] = {.lex_state = 66, .external_lex_state = 2}, - [1379] = {.lex_state = 66, .external_lex_state = 2}, - [1380] = {.lex_state = 66, .external_lex_state = 2}, - [1381] = {.lex_state = 66, .external_lex_state = 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}, - [1386] = {.lex_state = 66, .external_lex_state = 2}, - [1387] = {.lex_state = 66, .external_lex_state = 2}, - [1388] = {.lex_state = 66, .external_lex_state = 2}, - [1389] = {.lex_state = 66, .external_lex_state = 2}, - [1390] = {.lex_state = 66, .external_lex_state = 2}, - [1391] = {.lex_state = 66, .external_lex_state = 2}, - [1392] = {.lex_state = 66, .external_lex_state = 2}, - [1393] = {.lex_state = 66, .external_lex_state = 2}, - [1394] = {.lex_state = 66, .external_lex_state = 2}, - [1395] = {.lex_state = 66, .external_lex_state = 2}, - [1396] = {.lex_state = 66, .external_lex_state = 2}, - [1397] = {.lex_state = 66, .external_lex_state = 2}, - [1398] = {.lex_state = 66, .external_lex_state = 2}, - [1399] = {.lex_state = 66, .external_lex_state = 2}, - [1400] = {.lex_state = 66, .external_lex_state = 2}, - [1401] = {.lex_state = 66, .external_lex_state = 2}, - [1402] = {.lex_state = 66, .external_lex_state = 2}, - [1403] = {.lex_state = 66, .external_lex_state = 2}, - [1404] = {.lex_state = 66, .external_lex_state = 2}, - [1405] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [1410] = {.lex_state = 66, .external_lex_state = 2}, - [1411] = {.lex_state = 66, .external_lex_state = 2}, - [1412] = {.lex_state = 66, .external_lex_state = 2}, - [1413] = {.lex_state = 66, .external_lex_state = 2}, - [1414] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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}, - [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 = 3}, - [1430] = {.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 = 3}, - [1435] = {.lex_state = 66, .external_lex_state = 3}, - [1436] = {.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 = 3}, - [1440] = {.lex_state = 66, .external_lex_state = 3}, - [1441] = {.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 = 3}, - [1445] = {.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 = 3}, - [1451] = {.lex_state = 66, .external_lex_state = 2}, - [1452] = {.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 = 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}, - [1461] = {.lex_state = 66, .external_lex_state = 2}, - [1462] = {.lex_state = 66, .external_lex_state = 2}, - [1463] = {.lex_state = 66, .external_lex_state = 2}, - [1464] = {.lex_state = 66, .external_lex_state = 2}, - [1465] = {.lex_state = 66, .external_lex_state = 2}, - [1466] = {.lex_state = 66, .external_lex_state = 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 = 3}, - [1474] = {.lex_state = 66, .external_lex_state = 3}, - [1475] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 3}, - [1486] = {.lex_state = 66, .external_lex_state = 2}, - [1487] = {.lex_state = 66, .external_lex_state = 2}, - [1488] = {.lex_state = 66, .external_lex_state = 2}, - [1489] = {.lex_state = 66, .external_lex_state = 2}, - [1490] = {.lex_state = 66, .external_lex_state = 2}, - [1491] = {.lex_state = 66, .external_lex_state = 2}, - [1492] = {.lex_state = 66, .external_lex_state = 2}, - [1493] = {.lex_state = 66, .external_lex_state = 2}, - [1494] = {.lex_state = 66, .external_lex_state = 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 = 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 = 2}, - [1510] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 2}, - [1515] = {.lex_state = 66, .external_lex_state = 2}, - [1516] = {.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 = 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 = 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 = 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 = 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 = 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 = 2}, - [1546] = {.lex_state = 66, .external_lex_state = 2}, - [1547] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 3}, - [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}, - [1556] = {.lex_state = 66, .external_lex_state = 3}, - [1557] = {.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 = 3}, - [1563] = {.lex_state = 66, .external_lex_state = 2}, - [1564] = {.lex_state = 66, .external_lex_state = 2}, - [1565] = {.lex_state = 66, .external_lex_state = 2}, - [1566] = {.lex_state = 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 = 2}, - [1570] = {.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 = 3}, - [1576] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 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 = 3}, - [1585] = {.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 = 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 = 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 = 3}, - [1607] = {.lex_state = 66, .external_lex_state = 3}, - [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}, - [1612] = {.lex_state = 66, .external_lex_state = 2}, - [1613] = {.lex_state = 66, .external_lex_state = 2}, - [1614] = {.lex_state = 66, .external_lex_state = 2}, - [1615] = {.lex_state = 66, .external_lex_state = 2}, - [1616] = {.lex_state = 66, .external_lex_state = 2}, - [1617] = {.lex_state = 66, .external_lex_state = 2}, - [1618] = {.lex_state = 66, .external_lex_state = 2}, - [1619] = {.lex_state = 66, .external_lex_state = 2}, - [1620] = {.lex_state = 66, .external_lex_state = 2}, - [1621] = {.lex_state = 66, .external_lex_state = 2}, - [1622] = {.lex_state = 66, .external_lex_state = 2}, - [1623] = {.lex_state = 66, .external_lex_state = 2}, - [1624] = {.lex_state = 66, .external_lex_state = 2}, - [1625] = {.lex_state = 66, .external_lex_state = 2}, - [1626] = {.lex_state = 66, .external_lex_state = 2}, - [1627] = {.lex_state = 66, .external_lex_state = 2}, - [1628] = {.lex_state = 66, .external_lex_state = 2}, - [1629] = {.lex_state = 66, .external_lex_state = 2}, - [1630] = {.lex_state = 66, .external_lex_state = 2}, - [1631] = {.lex_state = 66, .external_lex_state = 2}, - [1632] = {.lex_state = 66, .external_lex_state = 2}, - [1633] = {.lex_state = 66, .external_lex_state = 2}, - [1634] = {.lex_state = 66, .external_lex_state = 2}, - [1635] = {.lex_state = 66, .external_lex_state = 2}, - [1636] = {.lex_state = 66, .external_lex_state = 2}, - [1637] = {.lex_state = 66, .external_lex_state = 2}, - [1638] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 2}, - [1643] = {.lex_state = 66, .external_lex_state = 2}, - [1644] = {.lex_state = 66, .external_lex_state = 2}, - [1645] = {.lex_state = 66, .external_lex_state = 2}, - [1646] = {.lex_state = 66, .external_lex_state = 2}, - [1647] = {.lex_state = 66, .external_lex_state = 2}, - [1648] = {.lex_state = 66, .external_lex_state = 2}, - [1649] = {.lex_state = 66, .external_lex_state = 2}, - [1650] = {.lex_state = 66, .external_lex_state = 2}, - [1651] = {.lex_state = 66, .external_lex_state = 2}, - [1652] = {.lex_state = 66, .external_lex_state = 2}, - [1653] = {.lex_state = 66, .external_lex_state = 2}, - [1654] = {.lex_state = 66, .external_lex_state = 2}, - [1655] = {.lex_state = 66, .external_lex_state = 2}, - [1656] = {.lex_state = 66, .external_lex_state = 2}, - [1657] = {.lex_state = 66, .external_lex_state = 2}, - [1658] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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}, - [1674] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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}, - [1683] = {.lex_state = 66, .external_lex_state = 2}, - [1684] = {.lex_state = 66, .external_lex_state = 2}, - [1685] = {.lex_state = 66, .external_lex_state = 2}, - [1686] = {.lex_state = 66, .external_lex_state = 2}, - [1687] = {.lex_state = 66, .external_lex_state = 2}, - [1688] = {.lex_state = 66, .external_lex_state = 2}, - [1689] = {.lex_state = 66, .external_lex_state = 2}, - [1690] = {.lex_state = 66, .external_lex_state = 2}, - [1691] = {.lex_state = 66, .external_lex_state = 2}, - [1692] = {.lex_state = 66, .external_lex_state = 2}, - [1693] = {.lex_state = 66, .external_lex_state = 2}, - [1694] = {.lex_state = 66, .external_lex_state = 2}, - [1695] = {.lex_state = 66, .external_lex_state = 2}, - [1696] = {.lex_state = 66, .external_lex_state = 2}, - [1697] = {.lex_state = 66, .external_lex_state = 2}, - [1698] = {.lex_state = 66, .external_lex_state = 2}, - [1699] = {.lex_state = 66, .external_lex_state = 2}, - [1700] = {.lex_state = 66, .external_lex_state = 2}, - [1701] = {.lex_state = 66, .external_lex_state = 2}, - [1702] = {.lex_state = 66, .external_lex_state = 2}, - [1703] = {.lex_state = 66, .external_lex_state = 2}, - [1704] = {.lex_state = 66, .external_lex_state = 2}, - [1705] = {.lex_state = 66, .external_lex_state = 2}, - [1706] = {.lex_state = 66, .external_lex_state = 2}, - [1707] = {.lex_state = 66, .external_lex_state = 2}, - [1708] = {.lex_state = 66, .external_lex_state = 2}, - [1709] = {.lex_state = 66, .external_lex_state = 2}, - [1710] = {.lex_state = 66, .external_lex_state = 2}, - [1711] = {.lex_state = 66, .external_lex_state = 2}, - [1712] = {.lex_state = 66, .external_lex_state = 2}, - [1713] = {.lex_state = 66, .external_lex_state = 2}, - [1714] = {.lex_state = 66, .external_lex_state = 2}, - [1715] = {.lex_state = 66, .external_lex_state = 2}, - [1716] = {.lex_state = 66, .external_lex_state = 2}, - [1717] = {.lex_state = 66, .external_lex_state = 2}, - [1718] = {.lex_state = 66, .external_lex_state = 2}, - [1719] = {.lex_state = 66, .external_lex_state = 2}, - [1720] = {.lex_state = 66, .external_lex_state = 2}, - [1721] = {.lex_state = 66, .external_lex_state = 2}, - [1722] = {.lex_state = 66, .external_lex_state = 2}, - [1723] = {.lex_state = 66, .external_lex_state = 2}, - [1724] = {.lex_state = 66, .external_lex_state = 2}, - [1725] = {.lex_state = 66, .external_lex_state = 2}, - [1726] = {.lex_state = 66, .external_lex_state = 2}, - [1727] = {.lex_state = 66, .external_lex_state = 2}, - [1728] = {.lex_state = 66, .external_lex_state = 2}, - [1729] = {.lex_state = 66, .external_lex_state = 2}, - [1730] = {.lex_state = 66, .external_lex_state = 2}, - [1731] = {.lex_state = 66, .external_lex_state = 2}, - [1732] = {.lex_state = 66, .external_lex_state = 2}, - [1733] = {.lex_state = 66, .external_lex_state = 2}, - [1734] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [1739] = {.lex_state = 66, .external_lex_state = 2}, - [1740] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [1745] = {.lex_state = 66, .external_lex_state = 2}, - [1746] = {.lex_state = 66, .external_lex_state = 2}, - [1747] = {.lex_state = 66, .external_lex_state = 2}, - [1748] = {.lex_state = 66, .external_lex_state = 2}, - [1749] = {.lex_state = 66, .external_lex_state = 2}, - [1750] = {.lex_state = 66, .external_lex_state = 2}, - [1751] = {.lex_state = 66, .external_lex_state = 2}, - [1752] = {.lex_state = 66, .external_lex_state = 2}, - [1753] = {.lex_state = 66, .external_lex_state = 2}, - [1754] = {.lex_state = 66, .external_lex_state = 2}, - [1755] = {.lex_state = 66, .external_lex_state = 2}, - [1756] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 2}, - [1765] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [1770] = {.lex_state = 66, .external_lex_state = 2}, - [1771] = {.lex_state = 66, .external_lex_state = 2}, - [1772] = {.lex_state = 66, .external_lex_state = 2}, - [1773] = {.lex_state = 66, .external_lex_state = 2}, - [1774] = {.lex_state = 66, .external_lex_state = 2}, - [1775] = {.lex_state = 66, .external_lex_state = 2}, - [1776] = {.lex_state = 66, .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}, - [1781] = {.lex_state = 66, .external_lex_state = 2}, - [1782] = {.lex_state = 66, .external_lex_state = 2}, - [1783] = {.lex_state = 66, .external_lex_state = 2}, - [1784] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [1790] = {.lex_state = 66, .external_lex_state = 2}, - [1791] = {.lex_state = 66, .external_lex_state = 2}, - [1792] = {.lex_state = 66, .external_lex_state = 2}, - [1793] = {.lex_state = 66, .external_lex_state = 2}, - [1794] = {.lex_state = 66, .external_lex_state = 2}, - [1795] = {.lex_state = 66, .external_lex_state = 2}, - [1796] = {.lex_state = 66, .external_lex_state = 2}, - [1797] = {.lex_state = 66, .external_lex_state = 2}, - [1798] = {.lex_state = 66, .external_lex_state = 2}, - [1799] = {.lex_state = 66, .external_lex_state = 2}, - [1800] = {.lex_state = 66, .external_lex_state = 2}, - [1801] = {.lex_state = 66, .external_lex_state = 2}, - [1802] = {.lex_state = 66, .external_lex_state = 2}, - [1803] = {.lex_state = 66, .external_lex_state = 2}, - [1804] = {.lex_state = 66, .external_lex_state = 2}, - [1805] = {.lex_state = 66, .external_lex_state = 2}, - [1806] = {.lex_state = 66, .external_lex_state = 2}, - [1807] = {.lex_state = 66, .external_lex_state = 2}, - [1808] = {.lex_state = 66, .external_lex_state = 2}, - [1809] = {.lex_state = 66, .external_lex_state = 2}, - [1810] = {.lex_state = 66, .external_lex_state = 2}, - [1811] = {.lex_state = 66, .external_lex_state = 2}, - [1812] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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}, - [1820] = {.lex_state = 66, .external_lex_state = 2}, - [1821] = {.lex_state = 66, .external_lex_state = 2}, - [1822] = {.lex_state = 66, .external_lex_state = 2}, - [1823] = {.lex_state = 66, .external_lex_state = 2}, - [1824] = {.lex_state = 66, .external_lex_state = 2}, - [1825] = {.lex_state = 66, .external_lex_state = 2}, - [1826] = {.lex_state = 66, .external_lex_state = 2}, - [1827] = {.lex_state = 66, .external_lex_state = 2}, - [1828] = {.lex_state = 66, .external_lex_state = 2}, - [1829] = {.lex_state = 66, .external_lex_state = 2}, - [1830] = {.lex_state = 66, .external_lex_state = 2}, - [1831] = {.lex_state = 66, .external_lex_state = 2}, - [1832] = {.lex_state = 66, .external_lex_state = 2}, - [1833] = {.lex_state = 66, .external_lex_state = 2}, - [1834] = {.lex_state = 66, .external_lex_state = 2}, - [1835] = {.lex_state = 66, .external_lex_state = 2}, - [1836] = {.lex_state = 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 = 66, .external_lex_state = 2}, - [1848] = {.lex_state = 66, .external_lex_state = 2}, - [1849] = {.lex_state = 66, .external_lex_state = 2}, - [1850] = {.lex_state = 66, .external_lex_state = 2}, - [1851] = {.lex_state = 66, .external_lex_state = 2}, - [1852] = {.lex_state = 66, .external_lex_state = 2}, - [1853] = {.lex_state = 66, .external_lex_state = 2}, - [1854] = {.lex_state = 66, .external_lex_state = 2}, - [1855] = {.lex_state = 66, .external_lex_state = 2}, - [1856] = {.lex_state = 66, .external_lex_state = 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 = 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 = 2}, - [1871] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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}, - [1884] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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 = 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 = 2}, - [1908] = {.lex_state = 66, .external_lex_state = 2}, - [1909] = {.lex_state = 66, .external_lex_state = 2}, - [1910] = {.lex_state = 66, .external_lex_state = 2}, - [1911] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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}, - [1920] = {.lex_state = 66, .external_lex_state = 2}, - [1921] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [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 = 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 = 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 = 8}, - [1961] = {.lex_state = 66, .external_lex_state = 2}, - [1962] = {.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}, - [1967] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 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 = 14, .external_lex_state = 11}, - [1988] = {.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 = 14, .external_lex_state = 11}, - [1993] = {.lex_state = 66, .external_lex_state = 2}, - [1994] = {.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 = 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}, - [2006] = {.lex_state = 66, .external_lex_state = 2}, - [2007] = {.lex_state = 66, .external_lex_state = 2}, - [2008] = {.lex_state = 66, .external_lex_state = 2}, - [2009] = {.lex_state = 66, .external_lex_state = 2}, - [2010] = {.lex_state = 66, .external_lex_state = 2}, - [2011] = {.lex_state = 66, .external_lex_state = 2}, - [2012] = {.lex_state = 66, .external_lex_state = 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 = 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}, - [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 = 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}, - [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 = 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 = 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 = 5}, - [2141] = {.lex_state = 15, .external_lex_state = 5}, - [2142] = {.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 = 23, .external_lex_state = 14}, - [2147] = {.lex_state = 15, .external_lex_state = 11}, - [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 = 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 = 12}, - [2157] = {.lex_state = 15, .external_lex_state = 11}, - [2158] = {.lex_state = 15, .external_lex_state = 11}, - [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 = 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 = 14}, - [2172] = {.lex_state = 15, .external_lex_state = 5}, - [2173] = {.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 = 7}, - [2177] = {.lex_state = 15, .external_lex_state = 15}, - [2178] = {.lex_state = 15, .external_lex_state = 12}, - [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 = 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 = 7}, - [2189] = {.lex_state = 15, .external_lex_state = 11}, - [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 = 11}, - [2194] = {.lex_state = 15, .external_lex_state = 11}, - [2195] = {.lex_state = 15, .external_lex_state = 16}, - [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 = 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 = 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 = 15, .external_lex_state = 15}, - [2254] = {.lex_state = 15, .external_lex_state = 12}, - [2255] = {.lex_state = 15, .external_lex_state = 12}, - [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 = 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 = 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 = 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 = 23, .external_lex_state = 11}, - [2314] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 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 = 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 = 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 = 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 = 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 = 12}, - [2379] = {.lex_state = 15, .external_lex_state = 15}, - [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 = 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 = 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 = 12}, - [2399] = {.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 = 6}, - [2404] = {.lex_state = 15, .external_lex_state = 15}, - [2405] = {.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 = 15, .external_lex_state = 15}, - [2410] = {.lex_state = 15, .external_lex_state = 15}, - [2411] = {.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 = 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 = 14}, - [2423] = {.lex_state = 15, .external_lex_state = 15}, - [2424] = {.lex_state = 15, .external_lex_state = 15}, - [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 = 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 = 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 = 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 = 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 = 15}, - [2461] = {.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 = 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 = 12}, - [2469] = {.lex_state = 15, .external_lex_state = 16}, - [2470] = {.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 = 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 = 23, .external_lex_state = 16}, - [2483] = {.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 = 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 = 15}, - [2500] = {.lex_state = 15, .external_lex_state = 15}, - [2501] = {.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 = 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 = 16}, - [2530] = {.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 = 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 = 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 = 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 = 14}, - [2562] = {.lex_state = 15, .external_lex_state = 14}, - [2563] = {.lex_state = 15, .external_lex_state = 16}, - [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 = 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 = 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 = 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 = 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 = 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 = 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 = 15, .external_lex_state = 14}, - [2602] = {.lex_state = 15, .external_lex_state = 12}, - [2603] = {.lex_state = 15, .external_lex_state = 16}, - [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 = 16, .external_lex_state = 11}, - [2610] = {.lex_state = 15, .external_lex_state = 16}, - [2611] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 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 = 16}, - [2626] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 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 = 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 = 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 = 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 = 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 = 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 = 14}, - [2671] = {.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}, - [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 = 16}, - [2687] = {.lex_state = 15, .external_lex_state = 16}, - [2688] = {.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 = 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 = 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 = 15, .external_lex_state = 14}, - [2746] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 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 = 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 = 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 = 15, .external_lex_state = 14}, - [2777] = {.lex_state = 5, .external_lex_state = 12}, - [2778] = {.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 = 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 = 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 = 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 = 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 = 12}, - [2894] = {.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 = 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 = 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 = 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 = 66, .external_lex_state = 13}, - [2923] = {.lex_state = 66, .external_lex_state = 13}, - [2924] = {.lex_state = 66, .external_lex_state = 13}, - [2925] = {.lex_state = 66, .external_lex_state = 13}, - [2926] = {.lex_state = 66, .external_lex_state = 13}, - [2927] = {.lex_state = 66, .external_lex_state = 13}, - [2928] = {.lex_state = 66, .external_lex_state = 13}, - [2929] = {.lex_state = 66, .external_lex_state = 13}, - [2930] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 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 = 13}, - [2948] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 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 = 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 = 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 = 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 = 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 = 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 = 12}, - [2986] = {.lex_state = 66, .external_lex_state = 13}, - [2987] = {.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 = 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 = 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}, - [3003] = {.lex_state = 66, .external_lex_state = 13}, - [3004] = {.lex_state = 66, .external_lex_state = 13}, - [3005] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 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 = 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 = 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 = 5, .external_lex_state = 7}, - [3025] = {.lex_state = 66, .external_lex_state = 13}, - [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}, - [3031] = {.lex_state = 66, .external_lex_state = 13}, - [3032] = {.lex_state = 66, .external_lex_state = 13}, - [3033] = {.lex_state = 66, .external_lex_state = 13}, - [3034] = {.lex_state = 66, .external_lex_state = 13}, - [3035] = {.lex_state = 66, .external_lex_state = 13}, - [3036] = {.lex_state = 66, .external_lex_state = 13}, - [3037] = {.lex_state = 66, .external_lex_state = 13}, - [3038] = {.lex_state = 66, .external_lex_state = 13}, - [3039] = {.lex_state = 66, .external_lex_state = 13}, - [3040] = {.lex_state = 66, .external_lex_state = 13}, - [3041] = {.lex_state = 66, .external_lex_state = 13}, - [3042] = {.lex_state = 66, .external_lex_state = 13}, - [3043] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 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}, - [3051] = {.lex_state = 66, .external_lex_state = 13}, - [3052] = {.lex_state = 66, .external_lex_state = 13}, - [3053] = {.lex_state = 66, .external_lex_state = 13}, - [3054] = {.lex_state = 66, .external_lex_state = 13}, - [3055] = {.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 = 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}, - [3064] = {.lex_state = 66, .external_lex_state = 13}, - [3065] = {.lex_state = 66, .external_lex_state = 13}, - [3066] = {.lex_state = 66, .external_lex_state = 13}, - [3067] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 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 = 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 = 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}, - [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 = 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 = 13}, - [3109] = {.lex_state = 66, .external_lex_state = 13}, - [3110] = {.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 = 66, .external_lex_state = 13}, - [3115] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 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}, - [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 = 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 = 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 = 66, .external_lex_state = 13}, - [3174] = {.lex_state = 5, .external_lex_state = 2}, - [3175] = {.lex_state = 5, .external_lex_state = 2}, - [3176] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 66, .external_lex_state = 12}, - [3184] = {.lex_state = 18, .external_lex_state = 12}, - [3185] = {.lex_state = 66, .external_lex_state = 12}, - [3186] = {.lex_state = 18, .external_lex_state = 12}, - [3187] = {.lex_state = 66, .external_lex_state = 12}, - [3188] = {.lex_state = 66, .external_lex_state = 12}, - [3189] = {.lex_state = 66, .external_lex_state = 12}, - [3190] = {.lex_state = 15, .external_lex_state = 14}, - [3191] = {.lex_state = 17, .external_lex_state = 12}, - [3192] = {.lex_state = 17, .external_lex_state = 12}, - [3193] = {.lex_state = 66, .external_lex_state = 14}, - [3194] = {.lex_state = 66, .external_lex_state = 12}, - [3195] = {.lex_state = 66, .external_lex_state = 14}, - [3196] = {.lex_state = 66, .external_lex_state = 2}, - [3197] = {.lex_state = 66, .external_lex_state = 2}, - [3198] = {.lex_state = 66, .external_lex_state = 12}, - [3199] = {.lex_state = 17, .external_lex_state = 15}, - [3200] = {.lex_state = 17, .external_lex_state = 15}, - [3201] = {.lex_state = 14, .external_lex_state = 16}, - [3202] = {.lex_state = 17, .external_lex_state = 16}, - [3203] = {.lex_state = 17, .external_lex_state = 16}, - [3204] = {.lex_state = 17, .external_lex_state = 15}, - [3205] = {.lex_state = 17, .external_lex_state = 15}, - [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 = 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 = 66, .external_lex_state = 2}, - [3269] = {.lex_state = 18, .external_lex_state = 12}, - [3270] = {.lex_state = 66, .external_lex_state = 14}, - [3271] = {.lex_state = 18, .external_lex_state = 11}, - [3272] = {.lex_state = 17, .external_lex_state = 14}, - [3273] = {.lex_state = 17, .external_lex_state = 14}, - [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 = 15, .external_lex_state = 12}, - [3278] = {.lex_state = 66, .external_lex_state = 13}, - [3279] = {.lex_state = 66, .external_lex_state = 12}, - [3280] = {.lex_state = 66, .external_lex_state = 13}, - [3281] = {.lex_state = 66, .external_lex_state = 13}, - [3282] = {.lex_state = 66, .external_lex_state = 13}, - [3283] = {.lex_state = 18, .external_lex_state = 11}, - [3284] = {.lex_state = 9, .external_lex_state = 11}, - [3285] = {.lex_state = 66, .external_lex_state = 12}, - [3286] = {.lex_state = 15, .external_lex_state = 12}, - [3287] = {.lex_state = 66, .external_lex_state = 13}, - [3288] = {.lex_state = 66, .external_lex_state = 14}, - [3289] = {.lex_state = 66, .external_lex_state = 13}, - [3290] = {.lex_state = 18, .external_lex_state = 11}, - [3291] = {.lex_state = 18, .external_lex_state = 11}, - [3292] = {.lex_state = 18, .external_lex_state = 11}, - [3293] = {.lex_state = 9, .external_lex_state = 11}, - [3294] = {.lex_state = 15, .external_lex_state = 12}, - [3295] = {.lex_state = 15, .external_lex_state = 16}, - [3296] = {.lex_state = 15, .external_lex_state = 16}, - [3297] = {.lex_state = 15, .external_lex_state = 16}, - [3298] = {.lex_state = 15, .external_lex_state = 16}, - [3299] = {.lex_state = 15, .external_lex_state = 12}, - [3300] = {.lex_state = 9, .external_lex_state = 12}, - [3301] = {.lex_state = 66, .external_lex_state = 12}, - [3302] = {.lex_state = 66, .external_lex_state = 14}, - [3303] = {.lex_state = 9, .external_lex_state = 11}, - [3304] = {.lex_state = 9, .external_lex_state = 12}, - [3305] = {.lex_state = 15, .external_lex_state = 14}, - [3306] = {.lex_state = 15, .external_lex_state = 12}, - [3307] = {.lex_state = 15, .external_lex_state = 12}, - [3308] = {.lex_state = 15, .external_lex_state = 14}, - [3309] = {.lex_state = 15, .external_lex_state = 14}, - [3310] = {.lex_state = 15, .external_lex_state = 12}, - [3311] = {.lex_state = 15, .external_lex_state = 12}, - [3312] = {.lex_state = 15, .external_lex_state = 12}, - [3313] = {.lex_state = 15, .external_lex_state = 12}, - [3314] = {.lex_state = 15, .external_lex_state = 12}, - [3315] = {.lex_state = 15, .external_lex_state = 12}, - [3316] = {.lex_state = 15, .external_lex_state = 12}, - [3317] = {.lex_state = 66, .external_lex_state = 14}, - [3318] = {.lex_state = 18, .external_lex_state = 12}, - [3319] = {.lex_state = 15, .external_lex_state = 14}, - [3320] = {.lex_state = 18, .external_lex_state = 12}, - [3321] = {.lex_state = 66, .external_lex_state = 12}, - [3322] = {.lex_state = 66, .external_lex_state = 14}, - [3323] = {.lex_state = 9, .external_lex_state = 12}, - [3324] = {.lex_state = 66, .external_lex_state = 14}, - [3325] = {.lex_state = 5, .external_lex_state = 12}, - [3326] = {.lex_state = 15, .external_lex_state = 14}, - [3327] = {.lex_state = 15, .external_lex_state = 12}, - [3328] = {.lex_state = 9, .external_lex_state = 11}, - [3329] = {.lex_state = 15, .external_lex_state = 16}, - [3330] = {.lex_state = 15, .external_lex_state = 12}, - [3331] = {.lex_state = 9, .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 = 15, .external_lex_state = 12}, - [3339] = {.lex_state = 15, .external_lex_state = 12}, - [3340] = {.lex_state = 9, .external_lex_state = 11}, - [3341] = {.lex_state = 66, .external_lex_state = 12}, - [3342] = {.lex_state = 5, .external_lex_state = 14}, - [3343] = {.lex_state = 5, .external_lex_state = 14}, - [3344] = {.lex_state = 66, .external_lex_state = 12}, - [3345] = {.lex_state = 9, .external_lex_state = 12}, - [3346] = {.lex_state = 5, .external_lex_state = 14}, - [3347] = {.lex_state = 18, .external_lex_state = 14}, - [3348] = {.lex_state = 66, .external_lex_state = 12}, - [3349] = {.lex_state = 9, .external_lex_state = 11}, - [3350] = {.lex_state = 5, .external_lex_state = 14}, - [3351] = {.lex_state = 66, .external_lex_state = 12}, - [3352] = {.lex_state = 66, .external_lex_state = 12}, - [3353] = {.lex_state = 5, .external_lex_state = 14}, - [3354] = {.lex_state = 18, .external_lex_state = 11}, - [3355] = {.lex_state = 5, .external_lex_state = 14}, - [3356] = {.lex_state = 5, .external_lex_state = 14}, - [3357] = {.lex_state = 5, .external_lex_state = 14}, - [3358] = {.lex_state = 5, .external_lex_state = 14}, - [3359] = {.lex_state = 5, .external_lex_state = 14}, - [3360] = {.lex_state = 5, .external_lex_state = 14}, - [3361] = {.lex_state = 5, .external_lex_state = 14}, - [3362] = {.lex_state = 66, .external_lex_state = 12}, - [3363] = {.lex_state = 18, .external_lex_state = 14}, - [3364] = {.lex_state = 5, .external_lex_state = 14}, - [3365] = {.lex_state = 5, .external_lex_state = 14}, - [3366] = {.lex_state = 5, .external_lex_state = 14}, - [3367] = {.lex_state = 5, .external_lex_state = 14}, - [3368] = {.lex_state = 5, .external_lex_state = 14}, - [3369] = {.lex_state = 5, .external_lex_state = 14}, - [3370] = {.lex_state = 5, .external_lex_state = 14}, - [3371] = {.lex_state = 66, .external_lex_state = 12}, - [3372] = {.lex_state = 9, .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 = 5, .external_lex_state = 14}, - [3377] = {.lex_state = 5, .external_lex_state = 14}, - [3378] = {.lex_state = 5, .external_lex_state = 14}, - [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 = 5, .external_lex_state = 14}, - [3384] = {.lex_state = 5, .external_lex_state = 14}, - [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 = 5, .external_lex_state = 14}, - [3389] = {.lex_state = 66, .external_lex_state = 12}, - [3390] = {.lex_state = 66, .external_lex_state = 12}, - [3391] = {.lex_state = 18, .external_lex_state = 14}, - [3392] = {.lex_state = 66, .external_lex_state = 12}, - [3393] = {.lex_state = 66, .external_lex_state = 12}, - [3394] = {.lex_state = 9, .external_lex_state = 12}, - [3395] = {.lex_state = 66, .external_lex_state = 12}, - [3396] = {.lex_state = 5, .external_lex_state = 14}, - [3397] = {.lex_state = 5, .external_lex_state = 14}, - [3398] = {.lex_state = 66, .external_lex_state = 12}, - [3399] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 5, .external_lex_state = 14}, - [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 = 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 = 66, .external_lex_state = 12}, - [3413] = {.lex_state = 66, .external_lex_state = 12}, - [3414] = {.lex_state = 5, .external_lex_state = 14}, - [3415] = {.lex_state = 66, .external_lex_state = 12}, - [3416] = {.lex_state = 66, .external_lex_state = 12}, - [3417] = {.lex_state = 66, .external_lex_state = 12}, - [3418] = {.lex_state = 66, .external_lex_state = 12}, - [3419] = {.lex_state = 66, .external_lex_state = 12}, - [3420] = {.lex_state = 5, .external_lex_state = 14}, - [3421] = {.lex_state = 66, .external_lex_state = 12}, - [3422] = {.lex_state = 66, .external_lex_state = 12}, - [3423] = {.lex_state = 5, .external_lex_state = 14}, - [3424] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 9, .external_lex_state = 12}, - [3429] = {.lex_state = 66, .external_lex_state = 12}, - [3430] = {.lex_state = 66, .external_lex_state = 12}, - [3431] = {.lex_state = 66, .external_lex_state = 12}, - [3432] = {.lex_state = 5, .external_lex_state = 14}, - [3433] = {.lex_state = 18, .external_lex_state = 11}, - [3434] = {.lex_state = 66, .external_lex_state = 12}, - [3435] = {.lex_state = 66, .external_lex_state = 12}, - [3436] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 5, .external_lex_state = 14}, - [3452] = {.lex_state = 18, .external_lex_state = 14}, - [3453] = {.lex_state = 18, .external_lex_state = 14}, - [3454] = {.lex_state = 18, .external_lex_state = 16}, - [3455] = {.lex_state = 18, .external_lex_state = 11}, - [3456] = {.lex_state = 18, .external_lex_state = 11}, - [3457] = {.lex_state = 18, .external_lex_state = 12}, - [3458] = {.lex_state = 18, .external_lex_state = 12}, - [3459] = {.lex_state = 18, .external_lex_state = 12}, - [3460] = {.lex_state = 18, .external_lex_state = 12}, - [3461] = {.lex_state = 18, .external_lex_state = 11}, - [3462] = {.lex_state = 18, .external_lex_state = 12}, - [3463] = {.lex_state = 5, .external_lex_state = 16}, - [3464] = {.lex_state = 5, .external_lex_state = 11}, - [3465] = {.lex_state = 5, .external_lex_state = 11}, - [3466] = {.lex_state = 5, .external_lex_state = 11}, - [3467] = {.lex_state = 5, .external_lex_state = 11}, - [3468] = {.lex_state = 5, .external_lex_state = 11}, - [3469] = {.lex_state = 18, .external_lex_state = 12}, - [3470] = {.lex_state = 15, .external_lex_state = 16}, - [3471] = {.lex_state = 5, .external_lex_state = 15}, - [3472] = {.lex_state = 5, .external_lex_state = 11}, - [3473] = {.lex_state = 5, .external_lex_state = 11}, - [3474] = {.lex_state = 5, .external_lex_state = 11}, - [3475] = {.lex_state = 5, .external_lex_state = 11}, - [3476] = {.lex_state = 5, .external_lex_state = 15}, - [3477] = {.lex_state = 5, .external_lex_state = 11}, - [3478] = {.lex_state = 5, .external_lex_state = 11}, - [3479] = {.lex_state = 18, .external_lex_state = 14}, - [3480] = {.lex_state = 18, .external_lex_state = 11}, - [3481] = {.lex_state = 18, .external_lex_state = 14}, - [3482] = {.lex_state = 5, .external_lex_state = 11}, - [3483] = {.lex_state = 18, .external_lex_state = 14}, - [3484] = {.lex_state = 5, .external_lex_state = 11}, - [3485] = {.lex_state = 18, .external_lex_state = 14}, - [3486] = {.lex_state = 18, .external_lex_state = 12}, - [3487] = {.lex_state = 18, .external_lex_state = 12}, - [3488] = {.lex_state = 5, .external_lex_state = 12}, - [3489] = {.lex_state = 18, .external_lex_state = 12}, - [3490] = {.lex_state = 9, .external_lex_state = 12}, - [3491] = {.lex_state = 18, .external_lex_state = 12}, - [3492] = {.lex_state = 18, .external_lex_state = 14}, - [3493] = {.lex_state = 18, .external_lex_state = 14}, - [3494] = {.lex_state = 5, .external_lex_state = 14}, - [3495] = {.lex_state = 18, .external_lex_state = 12}, - [3496] = {.lex_state = 5, .external_lex_state = 14}, - [3497] = {.lex_state = 5, .external_lex_state = 14}, - [3498] = {.lex_state = 18, .external_lex_state = 14}, - [3499] = {.lex_state = 18, .external_lex_state = 14}, - [3500] = {.lex_state = 18, .external_lex_state = 16}, - [3501] = {.lex_state = 5, .external_lex_state = 14}, - [3502] = {.lex_state = 5, .external_lex_state = 16}, - [3503] = {.lex_state = 18, .external_lex_state = 14}, - [3504] = {.lex_state = 18, .external_lex_state = 14}, - [3505] = {.lex_state = 5, .external_lex_state = 14}, - [3506] = {.lex_state = 18, .external_lex_state = 14}, - [3507] = {.lex_state = 5, .external_lex_state = 14}, - [3508] = {.lex_state = 18, .external_lex_state = 16}, - [3509] = {.lex_state = 5, .external_lex_state = 14}, - [3510] = {.lex_state = 18, .external_lex_state = 16}, - [3511] = {.lex_state = 18, .external_lex_state = 16}, - [3512] = {.lex_state = 5, .external_lex_state = 14}, - [3513] = {.lex_state = 18, .external_lex_state = 14}, - [3514] = {.lex_state = 5, .external_lex_state = 12}, - [3515] = {.lex_state = 18, .external_lex_state = 14}, - [3516] = {.lex_state = 5, .external_lex_state = 11}, - [3517] = {.lex_state = 18, .external_lex_state = 14}, - [3518] = {.lex_state = 18, .external_lex_state = 11}, - [3519] = {.lex_state = 18, .external_lex_state = 11}, - [3520] = {.lex_state = 18, .external_lex_state = 11}, - [3521] = {.lex_state = 5, .external_lex_state = 11}, - [3522] = {.lex_state = 18, .external_lex_state = 14}, - [3523] = {.lex_state = 15, .external_lex_state = 11}, - [3524] = {.lex_state = 15, .external_lex_state = 11}, - [3525] = {.lex_state = 18, .external_lex_state = 11}, - [3526] = {.lex_state = 5, .external_lex_state = 12}, - [3527] = {.lex_state = 66, .external_lex_state = 12}, - [3528] = {.lex_state = 5, .external_lex_state = 12}, - [3529] = {.lex_state = 18, .external_lex_state = 14}, - [3530] = {.lex_state = 19, .external_lex_state = 17}, - [3531] = {.lex_state = 5, .external_lex_state = 11}, - [3532] = {.lex_state = 5, .external_lex_state = 11}, - [3533] = {.lex_state = 18, .external_lex_state = 11}, - [3534] = {.lex_state = 5, .external_lex_state = 11}, - [3535] = {.lex_state = 18, .external_lex_state = 11}, - [3536] = {.lex_state = 15, .external_lex_state = 11}, - [3537] = {.lex_state = 18, .external_lex_state = 11}, - [3538] = {.lex_state = 5, .external_lex_state = 11}, - [3539] = {.lex_state = 18, .external_lex_state = 11}, - [3540] = {.lex_state = 5, .external_lex_state = 12}, - [3541] = {.lex_state = 18, .external_lex_state = 14}, - [3542] = {.lex_state = 18, .external_lex_state = 11}, - [3543] = {.lex_state = 5, .external_lex_state = 12}, - [3544] = {.lex_state = 5, .external_lex_state = 12}, - [3545] = {.lex_state = 18, .external_lex_state = 11}, - [3546] = {.lex_state = 5, .external_lex_state = 12}, - [3547] = {.lex_state = 18, .external_lex_state = 14}, - [3548] = {.lex_state = 18, .external_lex_state = 11}, - [3549] = {.lex_state = 5, .external_lex_state = 12}, - [3550] = {.lex_state = 18, .external_lex_state = 16}, - [3551] = {.lex_state = 5, .external_lex_state = 12}, - [3552] = {.lex_state = 18, .external_lex_state = 12}, - [3553] = {.lex_state = 5, .external_lex_state = 12}, - [3554] = {.lex_state = 5, .external_lex_state = 12}, - [3555] = {.lex_state = 5, .external_lex_state = 12}, - [3556] = {.lex_state = 18, .external_lex_state = 12}, - [3557] = {.lex_state = 5, .external_lex_state = 12}, - [3558] = {.lex_state = 5, .external_lex_state = 12}, - [3559] = {.lex_state = 5, .external_lex_state = 12}, - [3560] = {.lex_state = 18, .external_lex_state = 16}, - [3561] = {.lex_state = 5, .external_lex_state = 14}, - [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 = 12}, - [3566] = {.lex_state = 5, .external_lex_state = 12}, - [3567] = {.lex_state = 18, .external_lex_state = 11}, - [3568] = {.lex_state = 5, .external_lex_state = 12}, - [3569] = {.lex_state = 5, .external_lex_state = 12}, - [3570] = {.lex_state = 15, .external_lex_state = 12}, - [3571] = {.lex_state = 15, .external_lex_state = 11}, - [3572] = {.lex_state = 66, .external_lex_state = 13}, - [3573] = {.lex_state = 5, .external_lex_state = 12}, - [3574] = {.lex_state = 15, .external_lex_state = 12}, - [3575] = {.lex_state = 15, .external_lex_state = 12}, - [3576] = {.lex_state = 15, .external_lex_state = 12}, - [3577] = {.lex_state = 15, .external_lex_state = 12}, - [3578] = {.lex_state = 18, .external_lex_state = 11}, - [3579] = {.lex_state = 5, .external_lex_state = 12}, - [3580] = {.lex_state = 5, .external_lex_state = 14}, - [3581] = {.lex_state = 5, .external_lex_state = 14}, - [3582] = {.lex_state = 5, .external_lex_state = 12}, - [3583] = {.lex_state = 5, .external_lex_state = 12}, - [3584] = {.lex_state = 18, .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 = 11}, - [3588] = {.lex_state = 18, .external_lex_state = 14}, - [3589] = {.lex_state = 15, .external_lex_state = 11}, - [3590] = {.lex_state = 18, .external_lex_state = 11}, - [3591] = {.lex_state = 5, .external_lex_state = 12}, - [3592] = {.lex_state = 18, .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 = 16}, - [3596] = {.lex_state = 5, .external_lex_state = 12}, - [3597] = {.lex_state = 5, .external_lex_state = 12}, - [3598] = {.lex_state = 15, .external_lex_state = 11}, - [3599] = {.lex_state = 5, .external_lex_state = 14}, - [3600] = {.lex_state = 18, .external_lex_state = 12}, - [3601] = {.lex_state = 15, .external_lex_state = 11}, - [3602] = {.lex_state = 15, .external_lex_state = 11}, - [3603] = {.lex_state = 66, .external_lex_state = 12}, - [3604] = {.lex_state = 15, .external_lex_state = 12}, - [3605] = {.lex_state = 15, .external_lex_state = 12}, - [3606] = {.lex_state = 5, .external_lex_state = 16}, - [3607] = {.lex_state = 5, .external_lex_state = 16}, - [3608] = {.lex_state = 5, .external_lex_state = 12}, - [3609] = {.lex_state = 5, .external_lex_state = 16}, - [3610] = {.lex_state = 5, .external_lex_state = 16}, - [3611] = {.lex_state = 15, .external_lex_state = 11}, - [3612] = {.lex_state = 5, .external_lex_state = 12}, - [3613] = {.lex_state = 5, .external_lex_state = 12}, - [3614] = {.lex_state = 15, .external_lex_state = 11}, - [3615] = {.lex_state = 5, .external_lex_state = 14}, - [3616] = {.lex_state = 5, .external_lex_state = 12}, - [3617] = {.lex_state = 5, .external_lex_state = 11}, - [3618] = {.lex_state = 5, .external_lex_state = 16}, - [3619] = {.lex_state = 5, .external_lex_state = 16}, - [3620] = {.lex_state = 5, .external_lex_state = 14}, - [3621] = {.lex_state = 5, .external_lex_state = 16}, - [3622] = {.lex_state = 5, .external_lex_state = 14}, - [3623] = {.lex_state = 5, .external_lex_state = 16}, - [3624] = {.lex_state = 5, .external_lex_state = 14}, - [3625] = {.lex_state = 5, .external_lex_state = 14}, - [3626] = {.lex_state = 5, .external_lex_state = 16}, - [3627] = {.lex_state = 5, .external_lex_state = 14}, - [3628] = {.lex_state = 66, .external_lex_state = 15}, - [3629] = {.lex_state = 5, .external_lex_state = 14}, - [3630] = {.lex_state = 5, .external_lex_state = 14}, - [3631] = {.lex_state = 5, .external_lex_state = 14}, - [3632] = {.lex_state = 5, .external_lex_state = 12}, - [3633] = {.lex_state = 5, .external_lex_state = 14}, - [3634] = {.lex_state = 5, .external_lex_state = 16}, - [3635] = {.lex_state = 5, .external_lex_state = 14}, - [3636] = {.lex_state = 5, .external_lex_state = 16}, - [3637] = {.lex_state = 5, .external_lex_state = 12}, - [3638] = {.lex_state = 5, .external_lex_state = 14}, - [3639] = {.lex_state = 18, .external_lex_state = 12}, - [3640] = {.lex_state = 5, .external_lex_state = 12}, - [3641] = {.lex_state = 5, .external_lex_state = 11}, - [3642] = {.lex_state = 5, .external_lex_state = 11}, - [3643] = {.lex_state = 5, .external_lex_state = 16}, - [3644] = {.lex_state = 5, .external_lex_state = 12}, - [3645] = {.lex_state = 5, .external_lex_state = 12}, - [3646] = {.lex_state = 5, .external_lex_state = 12}, - [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 = 11}, - [3651] = {.lex_state = 5, .external_lex_state = 11}, - [3652] = {.lex_state = 5, .external_lex_state = 11}, - [3653] = {.lex_state = 5, .external_lex_state = 11}, - [3654] = {.lex_state = 5, .external_lex_state = 11}, - [3655] = {.lex_state = 5, .external_lex_state = 11}, - [3656] = {.lex_state = 5, .external_lex_state = 11}, - [3657] = {.lex_state = 66, .external_lex_state = 15}, - [3658] = {.lex_state = 5, .external_lex_state = 11}, - [3659] = {.lex_state = 5, .external_lex_state = 11}, - [3660] = {.lex_state = 5, .external_lex_state = 14}, - [3661] = {.lex_state = 5, .external_lex_state = 11}, - [3662] = {.lex_state = 5, .external_lex_state = 11}, - [3663] = {.lex_state = 5, .external_lex_state = 14}, - [3664] = {.lex_state = 5, .external_lex_state = 11}, - [3665] = {.lex_state = 5, .external_lex_state = 14}, - [3666] = {.lex_state = 5, .external_lex_state = 16}, - [3667] = {.lex_state = 5, .external_lex_state = 11}, - [3668] = {.lex_state = 5, .external_lex_state = 14}, - [3669] = {.lex_state = 5, .external_lex_state = 16}, - [3670] = {.lex_state = 5, .external_lex_state = 14}, - [3671] = {.lex_state = 5, .external_lex_state = 16}, - [3672] = {.lex_state = 5, .external_lex_state = 14}, - [3673] = {.lex_state = 5, .external_lex_state = 14}, - [3674] = {.lex_state = 66, .external_lex_state = 15}, - [3675] = {.lex_state = 5, .external_lex_state = 14}, - [3676] = {.lex_state = 5, .external_lex_state = 16}, - [3677] = {.lex_state = 5, .external_lex_state = 16}, - [3678] = {.lex_state = 5, .external_lex_state = 14}, - [3679] = {.lex_state = 5, .external_lex_state = 14}, - [3680] = {.lex_state = 5, .external_lex_state = 14}, - [3681] = {.lex_state = 5, .external_lex_state = 14}, - [3682] = {.lex_state = 5, .external_lex_state = 11}, - [3683] = {.lex_state = 5, .external_lex_state = 11}, - [3684] = {.lex_state = 5, .external_lex_state = 16}, - [3685] = {.lex_state = 5, .external_lex_state = 16}, - [3686] = {.lex_state = 5, .external_lex_state = 16}, - [3687] = {.lex_state = 5, .external_lex_state = 11}, - [3688] = {.lex_state = 5, .external_lex_state = 14}, - [3689] = {.lex_state = 5, .external_lex_state = 16}, - [3690] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 11}, - [3695] = {.lex_state = 5, .external_lex_state = 11}, - [3696] = {.lex_state = 66, .external_lex_state = 15}, - [3697] = {.lex_state = 5, .external_lex_state = 14}, - [3698] = {.lex_state = 5, .external_lex_state = 16}, - [3699] = {.lex_state = 66, .external_lex_state = 15}, - [3700] = {.lex_state = 5, .external_lex_state = 16}, - [3701] = {.lex_state = 5, .external_lex_state = 14}, - [3702] = {.lex_state = 66, .external_lex_state = 15}, - [3703] = {.lex_state = 5, .external_lex_state = 14}, - [3704] = {.lex_state = 5, .external_lex_state = 14}, - [3705] = {.lex_state = 5, .external_lex_state = 14}, - [3706] = {.lex_state = 5, .external_lex_state = 14}, - [3707] = {.lex_state = 5, .external_lex_state = 16}, - [3708] = {.lex_state = 5, .external_lex_state = 14}, - [3709] = {.lex_state = 5, .external_lex_state = 16}, - [3710] = {.lex_state = 5, .external_lex_state = 14}, - [3711] = {.lex_state = 5, .external_lex_state = 16}, - [3712] = {.lex_state = 5, .external_lex_state = 14}, - [3713] = {.lex_state = 5, .external_lex_state = 16}, - [3714] = {.lex_state = 5, .external_lex_state = 14}, - [3715] = {.lex_state = 5, .external_lex_state = 14}, - [3716] = {.lex_state = 5, .external_lex_state = 11}, - [3717] = {.lex_state = 5, .external_lex_state = 14}, - [3718] = {.lex_state = 5, .external_lex_state = 14}, - [3719] = {.lex_state = 5, .external_lex_state = 14}, - [3720] = {.lex_state = 5, .external_lex_state = 16}, - [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 = 14}, - [3725] = {.lex_state = 5, .external_lex_state = 11}, - [3726] = {.lex_state = 66, .external_lex_state = 16}, - [3727] = {.lex_state = 66, .external_lex_state = 5}, - [3728] = {.lex_state = 5, .external_lex_state = 11}, - [3729] = {.lex_state = 0, .external_lex_state = 18}, - [3730] = {.lex_state = 0, .external_lex_state = 18}, - [3731] = {.lex_state = 5, .external_lex_state = 12}, - [3732] = {.lex_state = 0, .external_lex_state = 18}, - [3733] = {.lex_state = 0, .external_lex_state = 18}, - [3734] = {.lex_state = 0, .external_lex_state = 18}, - [3735] = {.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 = 5}, - [3739] = {.lex_state = 5, .external_lex_state = 11}, - [3740] = {.lex_state = 5, .external_lex_state = 11}, - [3741] = {.lex_state = 5, .external_lex_state = 11}, - [3742] = {.lex_state = 66, .external_lex_state = 16}, - [3743] = {.lex_state = 5, .external_lex_state = 11}, - [3744] = {.lex_state = 5, .external_lex_state = 11}, - [3745] = {.lex_state = 5, .external_lex_state = 11}, - [3746] = {.lex_state = 0, .external_lex_state = 18}, - [3747] = {.lex_state = 5, .external_lex_state = 11}, - [3748] = {.lex_state = 0, .external_lex_state = 18}, - [3749] = {.lex_state = 5, .external_lex_state = 11}, - [3750] = {.lex_state = 18, .external_lex_state = 16}, - [3751] = {.lex_state = 66, .external_lex_state = 14}, - [3752] = {.lex_state = 0, .external_lex_state = 18}, - [3753] = {.lex_state = 5, .external_lex_state = 11}, - [3754] = {.lex_state = 66, .external_lex_state = 14}, - [3755] = {.lex_state = 0, .external_lex_state = 18}, - [3756] = {.lex_state = 0, .external_lex_state = 18}, - [3757] = {.lex_state = 66, .external_lex_state = 5}, - [3758] = {.lex_state = 66, .external_lex_state = 5}, - [3759] = {.lex_state = 0, .external_lex_state = 18}, - [3760] = {.lex_state = 66, .external_lex_state = 14}, - [3761] = {.lex_state = 66, .external_lex_state = 14}, - [3762] = {.lex_state = 66, .external_lex_state = 12}, - [3763] = {.lex_state = 66, .external_lex_state = 14}, - [3764] = {.lex_state = 0, .external_lex_state = 18}, - [3765] = {.lex_state = 66, .external_lex_state = 14}, - [3766] = {.lex_state = 66, .external_lex_state = 14}, - [3767] = {.lex_state = 5, .external_lex_state = 12}, - [3768] = {.lex_state = 5, .external_lex_state = 12}, - [3769] = {.lex_state = 0, .external_lex_state = 18}, - [3770] = {.lex_state = 0, .external_lex_state = 18}, - [3771] = {.lex_state = 66, .external_lex_state = 14}, - [3772] = {.lex_state = 66, .external_lex_state = 16}, - [3773] = {.lex_state = 66, .external_lex_state = 14}, - [3774] = {.lex_state = 0, .external_lex_state = 18}, - [3775] = {.lex_state = 66, .external_lex_state = 14}, - [3776] = {.lex_state = 66, .external_lex_state = 16}, - [3777] = {.lex_state = 0, .external_lex_state = 18}, - [3778] = {.lex_state = 66, .external_lex_state = 14}, - [3779] = {.lex_state = 66, .external_lex_state = 16}, - [3780] = {.lex_state = 66, .external_lex_state = 5}, - [3781] = {.lex_state = 0, .external_lex_state = 18}, - [3782] = {.lex_state = 18, .external_lex_state = 16}, - [3783] = {.lex_state = 5, .external_lex_state = 11}, - [3784] = {.lex_state = 66, .external_lex_state = 14}, - [3785] = {.lex_state = 66, .external_lex_state = 16}, - [3786] = {.lex_state = 0, .external_lex_state = 18}, - [3787] = {.lex_state = 5, .external_lex_state = 11}, - [3788] = {.lex_state = 66, .external_lex_state = 16}, - [3789] = {.lex_state = 66, .external_lex_state = 14}, - [3790] = {.lex_state = 5, .external_lex_state = 12}, - [3791] = {.lex_state = 5, .external_lex_state = 11}, - [3792] = {.lex_state = 5, .external_lex_state = 11}, - [3793] = {.lex_state = 0, .external_lex_state = 18}, - [3794] = {.lex_state = 15, .external_lex_state = 11}, - [3795] = {.lex_state = 5, .external_lex_state = 11}, - [3796] = {.lex_state = 0, .external_lex_state = 18}, - [3797] = {.lex_state = 66, .external_lex_state = 14}, - [3798] = {.lex_state = 0, .external_lex_state = 18}, - [3799] = {.lex_state = 5, .external_lex_state = 11}, - [3800] = {.lex_state = 66, .external_lex_state = 14}, - [3801] = {.lex_state = 5, .external_lex_state = 11}, - [3802] = {.lex_state = 5, .external_lex_state = 11}, - [3803] = {.lex_state = 5, .external_lex_state = 11}, - [3804] = {.lex_state = 0, .external_lex_state = 18}, - [3805] = {.lex_state = 5, .external_lex_state = 11}, - [3806] = {.lex_state = 66, .external_lex_state = 14}, - [3807] = {.lex_state = 18, .external_lex_state = 16}, - [3808] = {.lex_state = 5, .external_lex_state = 12}, - [3809] = {.lex_state = 0, .external_lex_state = 18}, - [3810] = {.lex_state = 0, .external_lex_state = 18}, - [3811] = {.lex_state = 5, .external_lex_state = 11}, - [3812] = {.lex_state = 5, .external_lex_state = 12}, - [3813] = {.lex_state = 18, .external_lex_state = 16}, - [3814] = {.lex_state = 0, .external_lex_state = 18}, - [3815] = {.lex_state = 5, .external_lex_state = 11}, - [3816] = {.lex_state = 5, .external_lex_state = 12}, - [3817] = {.lex_state = 5, .external_lex_state = 12}, - [3818] = {.lex_state = 66, .external_lex_state = 5}, - [3819] = {.lex_state = 18, .external_lex_state = 16}, - [3820] = {.lex_state = 18, .external_lex_state = 11}, - [3821] = {.lex_state = 15, .external_lex_state = 12}, - [3822] = {.lex_state = 5, .external_lex_state = 14}, - [3823] = {.lex_state = 5, .external_lex_state = 12}, - [3824] = {.lex_state = 5, .external_lex_state = 16}, - [3825] = {.lex_state = 15, .external_lex_state = 12}, - [3826] = {.lex_state = 15, .external_lex_state = 12}, - [3827] = {.lex_state = 20, .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 = 12}, - [3832] = {.lex_state = 15, .external_lex_state = 12}, - [3833] = {.lex_state = 15, .external_lex_state = 12}, - [3834] = {.lex_state = 5, .external_lex_state = 12}, - [3835] = {.lex_state = 5, .external_lex_state = 12}, - [3836] = {.lex_state = 5, .external_lex_state = 12}, - [3837] = {.lex_state = 5, .external_lex_state = 12}, - [3838] = {.lex_state = 5, .external_lex_state = 12}, - [3839] = {.lex_state = 5, .external_lex_state = 12}, - [3840] = {.lex_state = 5, .external_lex_state = 12}, - [3841] = {.lex_state = 20, .external_lex_state = 11}, - [3842] = {.lex_state = 18, .external_lex_state = 11}, - [3843] = {.lex_state = 18, .external_lex_state = 11}, - [3844] = {.lex_state = 5, .external_lex_state = 12}, - [3845] = {.lex_state = 5, .external_lex_state = 16}, - [3846] = {.lex_state = 18, .external_lex_state = 11}, - [3847] = {.lex_state = 18, .external_lex_state = 11}, - [3848] = {.lex_state = 18, .external_lex_state = 11}, - [3849] = {.lex_state = 18, .external_lex_state = 11}, - [3850] = {.lex_state = 5, .external_lex_state = 16}, - [3851] = {.lex_state = 5, .external_lex_state = 12}, - [3852] = {.lex_state = 5, .external_lex_state = 12}, - [3853] = {.lex_state = 5, .external_lex_state = 12}, - [3854] = {.lex_state = 18, .external_lex_state = 11}, - [3855] = {.lex_state = 5, .external_lex_state = 12}, - [3856] = {.lex_state = 5, .external_lex_state = 12}, - [3857] = {.lex_state = 5, .external_lex_state = 12}, - [3858] = {.lex_state = 15, .external_lex_state = 12}, - [3859] = {.lex_state = 5, .external_lex_state = 12}, - [3860] = {.lex_state = 5, .external_lex_state = 12}, - [3861] = {.lex_state = 5, .external_lex_state = 12}, - [3862] = {.lex_state = 5, .external_lex_state = 12}, - [3863] = {.lex_state = 5, .external_lex_state = 12}, - [3864] = {.lex_state = 5, .external_lex_state = 12}, - [3865] = {.lex_state = 5, .external_lex_state = 12}, - [3866] = {.lex_state = 5, .external_lex_state = 12}, - [3867] = {.lex_state = 5, .external_lex_state = 12}, - [3868] = {.lex_state = 18, .external_lex_state = 16}, - [3869] = {.lex_state = 5, .external_lex_state = 16}, - [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 = 12}, - [3874] = {.lex_state = 66, .external_lex_state = 15}, - [3875] = {.lex_state = 5, .external_lex_state = 12}, - [3876] = {.lex_state = 5, .external_lex_state = 12}, - [3877] = {.lex_state = 15, .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 = 14}, - [3881] = {.lex_state = 18, .external_lex_state = 16}, - [3882] = {.lex_state = 5, .external_lex_state = 16}, - [3883] = {.lex_state = 18, .external_lex_state = 16}, - [3884] = {.lex_state = 18, .external_lex_state = 16}, - [3885] = {.lex_state = 5, .external_lex_state = 12}, - [3886] = {.lex_state = 5, .external_lex_state = 12}, - [3887] = {.lex_state = 5, .external_lex_state = 12}, - [3888] = {.lex_state = 66, .external_lex_state = 15}, - [3889] = {.lex_state = 18, .external_lex_state = 16}, - [3890] = {.lex_state = 5, .external_lex_state = 12}, - [3891] = {.lex_state = 5, .external_lex_state = 12}, - [3892] = {.lex_state = 5, .external_lex_state = 12}, - [3893] = {.lex_state = 5, .external_lex_state = 16}, - [3894] = {.lex_state = 5, .external_lex_state = 12}, - [3895] = {.lex_state = 15, .external_lex_state = 12}, - [3896] = {.lex_state = 5, .external_lex_state = 12}, - [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 = 18, .external_lex_state = 11}, - [3901] = {.lex_state = 18, .external_lex_state = 11}, - [3902] = {.lex_state = 5, .external_lex_state = 12}, - [3903] = {.lex_state = 66, .external_lex_state = 15}, - [3904] = {.lex_state = 15, .external_lex_state = 11}, - [3905] = {.lex_state = 5, .external_lex_state = 11}, - [3906] = {.lex_state = 5, .external_lex_state = 11}, - [3907] = {.lex_state = 15, .external_lex_state = 16}, - [3908] = {.lex_state = 5, .external_lex_state = 11}, - [3909] = {.lex_state = 15, .external_lex_state = 16}, - [3910] = {.lex_state = 15, .external_lex_state = 16}, - [3911] = {.lex_state = 15, .external_lex_state = 16}, - [3912] = {.lex_state = 15, .external_lex_state = 16}, - [3913] = {.lex_state = 5, .external_lex_state = 11}, - [3914] = {.lex_state = 15, .external_lex_state = 16}, - [3915] = {.lex_state = 15, .external_lex_state = 16}, - [3916] = {.lex_state = 66, .external_lex_state = 5}, - [3917] = {.lex_state = 66, .external_lex_state = 15}, - [3918] = {.lex_state = 66, .external_lex_state = 15}, - [3919] = {.lex_state = 5, .external_lex_state = 14}, - [3920] = {.lex_state = 5, .external_lex_state = 11}, - [3921] = {.lex_state = 66, .external_lex_state = 11}, - [3922] = {.lex_state = 5, .external_lex_state = 14}, - [3923] = {.lex_state = 66, .external_lex_state = 15}, - [3924] = {.lex_state = 5, .external_lex_state = 11}, - [3925] = {.lex_state = 18, .external_lex_state = 12}, - [3926] = {.lex_state = 66, .external_lex_state = 15}, - [3927] = {.lex_state = 66, .external_lex_state = 15}, - [3928] = {.lex_state = 66, .external_lex_state = 15}, - [3929] = {.lex_state = 66, .external_lex_state = 15}, - [3930] = {.lex_state = 66, .external_lex_state = 11}, - [3931] = {.lex_state = 66, .external_lex_state = 15}, - [3932] = {.lex_state = 66, .external_lex_state = 15}, - [3933] = {.lex_state = 66, .external_lex_state = 15}, - [3934] = {.lex_state = 66, .external_lex_state = 15}, - [3935] = {.lex_state = 5, .external_lex_state = 11}, - [3936] = {.lex_state = 66, .external_lex_state = 11}, - [3937] = {.lex_state = 5, .external_lex_state = 14}, - [3938] = {.lex_state = 5, .external_lex_state = 11}, - [3939] = {.lex_state = 66, .external_lex_state = 5}, - [3940] = {.lex_state = 5, .external_lex_state = 11}, - [3941] = {.lex_state = 66, .external_lex_state = 5}, - [3942] = {.lex_state = 5, .external_lex_state = 11}, - [3943] = {.lex_state = 66, .external_lex_state = 5}, - [3944] = {.lex_state = 66, .external_lex_state = 5}, - [3945] = {.lex_state = 5, .external_lex_state = 11}, - [3946] = {.lex_state = 66, .external_lex_state = 5}, - [3947] = {.lex_state = 5, .external_lex_state = 11}, - [3948] = {.lex_state = 66, .external_lex_state = 15}, - [3949] = {.lex_state = 66, .external_lex_state = 15}, - [3950] = {.lex_state = 66, .external_lex_state = 11}, - [3951] = {.lex_state = 66, .external_lex_state = 5}, - [3952] = {.lex_state = 66, .external_lex_state = 11}, - [3953] = {.lex_state = 66, .external_lex_state = 11}, - [3954] = {.lex_state = 66, .external_lex_state = 15}, - [3955] = {.lex_state = 5, .external_lex_state = 11}, - [3956] = {.lex_state = 66, .external_lex_state = 11}, - [3957] = {.lex_state = 66, .external_lex_state = 12}, - [3958] = {.lex_state = 66, .external_lex_state = 15}, - [3959] = {.lex_state = 66, .external_lex_state = 15}, - [3960] = {.lex_state = 5, .external_lex_state = 11}, - [3961] = {.lex_state = 5, .external_lex_state = 16}, - [3962] = {.lex_state = 5, .external_lex_state = 11}, - [3963] = {.lex_state = 66, .external_lex_state = 5}, - [3964] = {.lex_state = 66, .external_lex_state = 5}, - [3965] = {.lex_state = 5, .external_lex_state = 11}, - [3966] = {.lex_state = 5, .external_lex_state = 11}, - [3967] = {.lex_state = 66, .external_lex_state = 5}, - [3968] = {.lex_state = 66, .external_lex_state = 5}, - [3969] = {.lex_state = 66, .external_lex_state = 15}, - [3970] = {.lex_state = 66, .external_lex_state = 15}, - [3971] = {.lex_state = 66, .external_lex_state = 15}, - [3972] = {.lex_state = 66, .external_lex_state = 15}, - [3973] = {.lex_state = 66, .external_lex_state = 15}, - [3974] = {.lex_state = 5, .external_lex_state = 11}, - [3975] = {.lex_state = 5, .external_lex_state = 11}, - [3976] = {.lex_state = 66, .external_lex_state = 15}, - [3977] = {.lex_state = 5, .external_lex_state = 11}, - [3978] = {.lex_state = 5, .external_lex_state = 11}, - [3979] = {.lex_state = 66, .external_lex_state = 5}, - [3980] = {.lex_state = 66, .external_lex_state = 12}, - [3981] = {.lex_state = 66, .external_lex_state = 12}, - [3982] = {.lex_state = 14, .external_lex_state = 11}, - [3983] = {.lex_state = 18, .external_lex_state = 16}, - [3984] = {.lex_state = 66, .external_lex_state = 14}, - [3985] = {.lex_state = 18, .external_lex_state = 12}, - [3986] = {.lex_state = 18, .external_lex_state = 12}, - [3987] = {.lex_state = 18, .external_lex_state = 12}, - [3988] = {.lex_state = 18, .external_lex_state = 12}, - [3989] = {.lex_state = 68, .external_lex_state = 17}, - [3990] = {.lex_state = 14, .external_lex_state = 11}, - [3991] = {.lex_state = 66, .external_lex_state = 14}, - [3992] = {.lex_state = 18, .external_lex_state = 12}, - [3993] = {.lex_state = 18, .external_lex_state = 12}, - [3994] = {.lex_state = 66, .external_lex_state = 12}, - [3995] = {.lex_state = 66, .external_lex_state = 14}, - [3996] = {.lex_state = 66, .external_lex_state = 11}, - [3997] = {.lex_state = 66, .external_lex_state = 16}, - [3998] = {.lex_state = 66, .external_lex_state = 15}, - [3999] = {.lex_state = 68, .external_lex_state = 17}, - [4000] = {.lex_state = 66, .external_lex_state = 12}, - [4001] = {.lex_state = 14, .external_lex_state = 11}, - [4002] = {.lex_state = 66, .external_lex_state = 14}, - [4003] = {.lex_state = 68, .external_lex_state = 17}, - [4004] = {.lex_state = 66, .external_lex_state = 16}, - [4005] = {.lex_state = 68, .external_lex_state = 17}, - [4006] = {.lex_state = 16, .external_lex_state = 19}, - [4007] = {.lex_state = 66, .external_lex_state = 15}, - [4008] = {.lex_state = 18, .external_lex_state = 14}, - [4009] = {.lex_state = 66, .external_lex_state = 16}, - [4010] = {.lex_state = 66, .external_lex_state = 16}, - [4011] = {.lex_state = 66, .external_lex_state = 16}, - [4012] = {.lex_state = 66, .external_lex_state = 16}, - [4013] = {.lex_state = 14, .external_lex_state = 11}, - [4014] = {.lex_state = 66, .external_lex_state = 16}, - [4015] = {.lex_state = 66, .external_lex_state = 2}, - [4016] = {.lex_state = 0, .external_lex_state = 18}, - [4017] = {.lex_state = 66, .external_lex_state = 16}, - [4018] = {.lex_state = 16, .external_lex_state = 19}, - [4019] = {.lex_state = 14, .external_lex_state = 11}, - [4020] = {.lex_state = 66, .external_lex_state = 11}, - [4021] = {.lex_state = 66, .external_lex_state = 2}, - [4022] = {.lex_state = 66, .external_lex_state = 16}, - [4023] = {.lex_state = 14, .external_lex_state = 11}, - [4024] = {.lex_state = 66, .external_lex_state = 11}, - [4025] = {.lex_state = 66, .external_lex_state = 16}, - [4026] = {.lex_state = 66, .external_lex_state = 16}, - [4027] = {.lex_state = 66, .external_lex_state = 16}, - [4028] = {.lex_state = 68, .external_lex_state = 17}, - [4029] = {.lex_state = 14, .external_lex_state = 11}, - [4030] = {.lex_state = 66, .external_lex_state = 2}, - [4031] = {.lex_state = 66, .external_lex_state = 2}, - [4032] = {.lex_state = 66, .external_lex_state = 12}, - [4033] = {.lex_state = 66, .external_lex_state = 16}, - [4034] = {.lex_state = 14, .external_lex_state = 11}, - [4035] = {.lex_state = 68, .external_lex_state = 17}, - [4036] = {.lex_state = 66, .external_lex_state = 11}, - [4037] = {.lex_state = 66, .external_lex_state = 11}, - [4038] = {.lex_state = 68, .external_lex_state = 17}, - [4039] = {.lex_state = 66, .external_lex_state = 12}, - [4040] = {.lex_state = 16, .external_lex_state = 19}, - [4041] = {.lex_state = 66, .external_lex_state = 11}, - [4042] = {.lex_state = 66, .external_lex_state = 12}, - [4043] = {.lex_state = 5, .external_lex_state = 12}, - [4044] = {.lex_state = 66, .external_lex_state = 12}, - [4045] = {.lex_state = 66, .external_lex_state = 16}, - [4046] = {.lex_state = 66, .external_lex_state = 16}, - [4047] = {.lex_state = 66, .external_lex_state = 16}, - [4048] = {.lex_state = 66, .external_lex_state = 16}, - [4049] = {.lex_state = 68, .external_lex_state = 17}, - [4050] = {.lex_state = 68, .external_lex_state = 17}, - [4051] = {.lex_state = 14, .external_lex_state = 11}, - [4052] = {.lex_state = 66, .external_lex_state = 2}, - [4053] = {.lex_state = 66, .external_lex_state = 2}, - [4054] = {.lex_state = 0, .external_lex_state = 18}, - [4055] = {.lex_state = 14, .external_lex_state = 11}, - [4056] = {.lex_state = 66, .external_lex_state = 11}, - [4057] = {.lex_state = 66, .external_lex_state = 16}, - [4058] = {.lex_state = 66, .external_lex_state = 15}, - [4059] = {.lex_state = 66, .external_lex_state = 14}, - [4060] = {.lex_state = 66, .external_lex_state = 14}, - [4061] = {.lex_state = 14, .external_lex_state = 11}, - [4062] = {.lex_state = 68, .external_lex_state = 17}, - [4063] = {.lex_state = 66, .external_lex_state = 14}, - [4064] = {.lex_state = 66, .external_lex_state = 11}, - [4065] = {.lex_state = 68, .external_lex_state = 17}, - [4066] = {.lex_state = 66, .external_lex_state = 16}, - [4067] = {.lex_state = 66, .external_lex_state = 14}, - [4068] = {.lex_state = 66, .external_lex_state = 2}, - [4069] = {.lex_state = 68, .external_lex_state = 17}, - [4070] = {.lex_state = 66, .external_lex_state = 11}, - [4071] = {.lex_state = 66, .external_lex_state = 16}, - [4072] = {.lex_state = 18, .external_lex_state = 12}, - [4073] = {.lex_state = 66, .external_lex_state = 11}, - [4074] = {.lex_state = 66, .external_lex_state = 16}, - [4075] = {.lex_state = 66, .external_lex_state = 12}, - [4076] = {.lex_state = 18, .external_lex_state = 15}, - [4077] = {.lex_state = 66, .external_lex_state = 11}, - [4078] = {.lex_state = 14, .external_lex_state = 11}, - [4079] = {.lex_state = 16, .external_lex_state = 19}, - [4080] = {.lex_state = 18, .external_lex_state = 12}, - [4081] = {.lex_state = 18, .external_lex_state = 12}, - [4082] = {.lex_state = 18, .external_lex_state = 12}, - [4083] = {.lex_state = 18, .external_lex_state = 12}, - [4084] = {.lex_state = 18, .external_lex_state = 12}, - [4085] = {.lex_state = 18, .external_lex_state = 12}, - [4086] = {.lex_state = 66, .external_lex_state = 15}, - [4087] = {.lex_state = 66, .external_lex_state = 14}, - [4088] = {.lex_state = 66, .external_lex_state = 12}, - [4089] = {.lex_state = 66, .external_lex_state = 15}, - [4090] = {.lex_state = 66, .external_lex_state = 12}, - [4091] = {.lex_state = 66, .external_lex_state = 11}, - [4092] = {.lex_state = 66, .external_lex_state = 14}, - [4093] = {.lex_state = 66, .external_lex_state = 14}, - [4094] = {.lex_state = 15, .external_lex_state = 14}, - [4095] = {.lex_state = 66, .external_lex_state = 11}, - [4096] = {.lex_state = 66, .external_lex_state = 15}, - [4097] = {.lex_state = 66, .external_lex_state = 11}, - [4098] = {.lex_state = 66, .external_lex_state = 16}, - [4099] = {.lex_state = 66, .external_lex_state = 15}, - [4100] = {.lex_state = 66, .external_lex_state = 14}, - [4101] = {.lex_state = 66, .external_lex_state = 14}, - [4102] = {.lex_state = 15, .external_lex_state = 14}, - [4103] = {.lex_state = 66, .external_lex_state = 15}, - [4104] = {.lex_state = 66, .external_lex_state = 16}, - [4105] = {.lex_state = 66, .external_lex_state = 12}, - [4106] = {.lex_state = 15, .external_lex_state = 15}, - [4107] = {.lex_state = 66, .external_lex_state = 14}, - [4108] = {.lex_state = 66, .external_lex_state = 11}, - [4109] = {.lex_state = 66, .external_lex_state = 16}, - [4110] = {.lex_state = 66, .external_lex_state = 11}, - [4111] = {.lex_state = 66, .external_lex_state = 16}, - [4112] = {.lex_state = 66, .external_lex_state = 14}, - [4113] = {.lex_state = 66, .external_lex_state = 12}, - [4114] = {.lex_state = 66, .external_lex_state = 11}, - [4115] = {.lex_state = 66, .external_lex_state = 15}, - [4116] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 14}, - [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 = 15}, - [4125] = {.lex_state = 66, .external_lex_state = 12}, - [4126] = {.lex_state = 66, .external_lex_state = 15}, - [4127] = {.lex_state = 66, .external_lex_state = 16}, - [4128] = {.lex_state = 66, .external_lex_state = 15}, - [4129] = {.lex_state = 66, .external_lex_state = 11}, - [4130] = {.lex_state = 66, .external_lex_state = 11}, - [4131] = {.lex_state = 66, .external_lex_state = 14}, - [4132] = {.lex_state = 66, .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 = 12}, - [4136] = {.lex_state = 66, .external_lex_state = 11}, - [4137] = {.lex_state = 66, .external_lex_state = 11}, - [4138] = {.lex_state = 66, .external_lex_state = 15}, - [4139] = {.lex_state = 66, .external_lex_state = 11}, - [4140] = {.lex_state = 66, .external_lex_state = 11}, - [4141] = {.lex_state = 66, .external_lex_state = 14}, - [4142] = {.lex_state = 66, .external_lex_state = 15}, - [4143] = {.lex_state = 66, .external_lex_state = 15}, - [4144] = {.lex_state = 66, .external_lex_state = 11}, - [4145] = {.lex_state = 66, .external_lex_state = 14}, - [4146] = {.lex_state = 66, .external_lex_state = 11}, - [4147] = {.lex_state = 66, .external_lex_state = 16}, - [4148] = {.lex_state = 66, .external_lex_state = 11}, - [4149] = {.lex_state = 66, .external_lex_state = 11}, - [4150] = {.lex_state = 66, .external_lex_state = 14}, - [4151] = {.lex_state = 66, .external_lex_state = 11}, - [4152] = {.lex_state = 66, .external_lex_state = 11}, - [4153] = {.lex_state = 66, .external_lex_state = 11}, - [4154] = {.lex_state = 15, .external_lex_state = 15}, - [4155] = {.lex_state = 66, .external_lex_state = 16}, - [4156] = {.lex_state = 66, .external_lex_state = 14}, - [4157] = {.lex_state = 66, .external_lex_state = 11}, - [4158] = {.lex_state = 66, .external_lex_state = 11}, - [4159] = {.lex_state = 66, .external_lex_state = 11}, - [4160] = {.lex_state = 66, .external_lex_state = 12}, - [4161] = {.lex_state = 66, .external_lex_state = 11}, - [4162] = {.lex_state = 66, .external_lex_state = 14}, - [4163] = {.lex_state = 66, .external_lex_state = 11}, - [4164] = {.lex_state = 15, .external_lex_state = 16}, - [4165] = {.lex_state = 66, .external_lex_state = 11}, - [4166] = {.lex_state = 66, .external_lex_state = 12}, - [4167] = {.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 = 11}, - [4173] = {.lex_state = 66, .external_lex_state = 11}, - [4174] = {.lex_state = 66, .external_lex_state = 12}, - [4175] = {.lex_state = 66, .external_lex_state = 15}, - [4176] = {.lex_state = 66, .external_lex_state = 11}, - [4177] = {.lex_state = 66, .external_lex_state = 11}, - [4178] = {.lex_state = 66, .external_lex_state = 11}, - [4179] = {.lex_state = 66, .external_lex_state = 11}, - [4180] = {.lex_state = 66, .external_lex_state = 12}, - [4181] = {.lex_state = 66, .external_lex_state = 11}, - [4182] = {.lex_state = 15, .external_lex_state = 16}, - [4183] = {.lex_state = 66, .external_lex_state = 11}, - [4184] = {.lex_state = 66, .external_lex_state = 12}, - [4185] = {.lex_state = 66, .external_lex_state = 16}, - [4186] = {.lex_state = 66, .external_lex_state = 11}, - [4187] = {.lex_state = 66, .external_lex_state = 6}, - [4188] = {.lex_state = 66, .external_lex_state = 12}, - [4189] = {.lex_state = 66, .external_lex_state = 11}, - [4190] = {.lex_state = 66, .external_lex_state = 11}, - [4191] = {.lex_state = 66, .external_lex_state = 12}, - [4192] = {.lex_state = 66, .external_lex_state = 14}, - [4193] = {.lex_state = 66, .external_lex_state = 16}, - [4194] = {.lex_state = 66, .external_lex_state = 12}, - [4195] = {.lex_state = 66, .external_lex_state = 14}, - [4196] = {.lex_state = 66, .external_lex_state = 16}, - [4197] = {.lex_state = 66, .external_lex_state = 11}, - [4198] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 66, .external_lex_state = 11}, - [4203] = {.lex_state = 66, .external_lex_state = 11}, - [4204] = {.lex_state = 66, .external_lex_state = 11}, - [4205] = {.lex_state = 66, .external_lex_state = 11}, - [4206] = {.lex_state = 66, .external_lex_state = 11}, - [4207] = {.lex_state = 66, .external_lex_state = 11}, - [4208] = {.lex_state = 66, .external_lex_state = 15}, - [4209] = {.lex_state = 66, .external_lex_state = 8}, - [4210] = {.lex_state = 66, .external_lex_state = 11}, - [4211] = {.lex_state = 66, .external_lex_state = 11}, - [4212] = {.lex_state = 66, .external_lex_state = 16}, - [4213] = {.lex_state = 15, .external_lex_state = 15}, - [4214] = {.lex_state = 66, .external_lex_state = 11}, - [4215] = {.lex_state = 66, .external_lex_state = 12}, - [4216] = {.lex_state = 66, .external_lex_state = 11}, - [4217] = {.lex_state = 66, .external_lex_state = 11}, - [4218] = {.lex_state = 66, .external_lex_state = 11}, - [4219] = {.lex_state = 66, .external_lex_state = 11}, - [4220] = {.lex_state = 66, .external_lex_state = 11}, - [4221] = {.lex_state = 66, .external_lex_state = 11}, - [4222] = {.lex_state = 66, .external_lex_state = 11}, - [4223] = {.lex_state = 66, .external_lex_state = 11}, - [4224] = {.lex_state = 66, .external_lex_state = 11}, - [4225] = {.lex_state = 66, .external_lex_state = 11}, - [4226] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 66, .external_lex_state = 11}, - [4235] = {.lex_state = 66, .external_lex_state = 11}, - [4236] = {.lex_state = 12, .external_lex_state = 12}, - [4237] = {.lex_state = 66, .external_lex_state = 11}, - [4238] = {.lex_state = 66, .external_lex_state = 16}, - [4239] = {.lex_state = 66, .external_lex_state = 14}, - [4240] = {.lex_state = 66, .external_lex_state = 11}, - [4241] = {.lex_state = 66, .external_lex_state = 11}, - [4242] = {.lex_state = 66, .external_lex_state = 7}, - [4243] = {.lex_state = 66, .external_lex_state = 11}, - [4244] = {.lex_state = 66, .external_lex_state = 11}, - [4245] = {.lex_state = 66, .external_lex_state = 11}, - [4246] = {.lex_state = 66, .external_lex_state = 11}, - [4247] = {.lex_state = 66, .external_lex_state = 11}, - [4248] = {.lex_state = 66, .external_lex_state = 11}, - [4249] = {.lex_state = 66, .external_lex_state = 11}, - [4250] = {.lex_state = 66, .external_lex_state = 11}, - [4251] = {.lex_state = 66, .external_lex_state = 11}, - [4252] = {.lex_state = 66, .external_lex_state = 11}, - [4253] = {.lex_state = 66, .external_lex_state = 11}, - [4254] = {.lex_state = 66, .external_lex_state = 11}, - [4255] = {.lex_state = 66, .external_lex_state = 11}, - [4256] = {.lex_state = 66, .external_lex_state = 11}, - [4257] = {.lex_state = 66, .external_lex_state = 11}, - [4258] = {.lex_state = 66, .external_lex_state = 11}, - [4259] = {.lex_state = 15, .external_lex_state = 12}, - [4260] = {.lex_state = 66, .external_lex_state = 11}, - [4261] = {.lex_state = 66, .external_lex_state = 16}, - [4262] = {.lex_state = 66, .external_lex_state = 11}, - [4263] = {.lex_state = 66, .external_lex_state = 11}, - [4264] = {.lex_state = 66, .external_lex_state = 15}, - [4265] = {.lex_state = 66, .external_lex_state = 16}, - [4266] = {.lex_state = 66, .external_lex_state = 14}, - [4267] = {.lex_state = 66, .external_lex_state = 15}, - [4268] = {.lex_state = 68, .external_lex_state = 17}, - [4269] = {.lex_state = 18, .external_lex_state = 11}, - [4270] = {.lex_state = 66, .external_lex_state = 12}, - [4271] = {.lex_state = 66, .external_lex_state = 12}, - [4272] = {.lex_state = 66, .external_lex_state = 12}, - [4273] = {.lex_state = 66, .external_lex_state = 12}, - [4274] = {.lex_state = 66, .external_lex_state = 15}, - [4275] = {.lex_state = 66, .external_lex_state = 14}, - [4276] = {.lex_state = 66, .external_lex_state = 15}, - [4277] = {.lex_state = 15, .external_lex_state = 16}, - [4278] = {.lex_state = 18, .external_lex_state = 11}, - [4279] = {.lex_state = 66, .external_lex_state = 15}, - [4280] = {.lex_state = 66, .external_lex_state = 14}, - [4281] = {.lex_state = 66, .external_lex_state = 11}, - [4282] = {.lex_state = 66, .external_lex_state = 12}, - [4283] = {.lex_state = 66, .external_lex_state = 14}, - [4284] = {.lex_state = 66, .external_lex_state = 16}, - [4285] = {.lex_state = 66, .external_lex_state = 16}, - [4286] = {.lex_state = 66, .external_lex_state = 14}, - [4287] = {.lex_state = 66, .external_lex_state = 11}, - [4288] = {.lex_state = 66, .external_lex_state = 14}, - [4289] = {.lex_state = 66, .external_lex_state = 16}, - [4290] = {.lex_state = 66, .external_lex_state = 14}, - [4291] = {.lex_state = 66, .external_lex_state = 12}, - [4292] = {.lex_state = 66, .external_lex_state = 12}, - [4293] = {.lex_state = 66, .external_lex_state = 14}, - [4294] = {.lex_state = 66, .external_lex_state = 14}, - [4295] = {.lex_state = 66, .external_lex_state = 16}, - [4296] = {.lex_state = 66, .external_lex_state = 14}, - [4297] = {.lex_state = 66, .external_lex_state = 16}, - [4298] = {.lex_state = 66, .external_lex_state = 11}, - [4299] = {.lex_state = 66, .external_lex_state = 16}, - [4300] = {.lex_state = 66, .external_lex_state = 12}, - [4301] = {.lex_state = 66, .external_lex_state = 14}, - [4302] = {.lex_state = 66, .external_lex_state = 12}, - [4303] = {.lex_state = 5, .external_lex_state = 12}, - [4304] = {.lex_state = 66, .external_lex_state = 16}, - [4305] = {.lex_state = 15, .external_lex_state = 16}, - [4306] = {.lex_state = 66, .external_lex_state = 11}, - [4307] = {.lex_state = 0, .external_lex_state = 18}, - [4308] = {.lex_state = 66, .external_lex_state = 14}, - [4309] = {.lex_state = 66, .external_lex_state = 14}, - [4310] = {.lex_state = 66, .external_lex_state = 16}, - [4311] = {.lex_state = 18, .external_lex_state = 11}, - [4312] = {.lex_state = 66, .external_lex_state = 16}, - [4313] = {.lex_state = 12, .external_lex_state = 11}, - [4314] = {.lex_state = 66, .external_lex_state = 12}, - [4315] = {.lex_state = 66, .external_lex_state = 14}, - [4316] = {.lex_state = 66, .external_lex_state = 11}, - [4317] = {.lex_state = 66, .external_lex_state = 14}, - [4318] = {.lex_state = 66, .external_lex_state = 11}, - [4319] = {.lex_state = 66, .external_lex_state = 14}, - [4320] = {.lex_state = 66, .external_lex_state = 15}, - [4321] = {.lex_state = 66, .external_lex_state = 16}, - [4322] = {.lex_state = 66, .external_lex_state = 14}, - [4323] = {.lex_state = 15, .external_lex_state = 15}, - [4324] = {.lex_state = 68, .external_lex_state = 17}, - [4325] = {.lex_state = 66, .external_lex_state = 12}, - [4326] = {.lex_state = 66, .external_lex_state = 14}, - [4327] = {.lex_state = 66, .external_lex_state = 14}, - [4328] = {.lex_state = 5, .external_lex_state = 12}, - [4329] = {.lex_state = 66, .external_lex_state = 12}, - [4330] = {.lex_state = 15, .external_lex_state = 16}, - [4331] = {.lex_state = 66, .external_lex_state = 11}, - [4332] = {.lex_state = 66, .external_lex_state = 11}, - [4333] = {.lex_state = 66, .external_lex_state = 12}, - [4334] = {.lex_state = 66, .external_lex_state = 12}, - [4335] = {.lex_state = 66, .external_lex_state = 12}, - [4336] = {.lex_state = 66, .external_lex_state = 11}, - [4337] = {.lex_state = 66, .external_lex_state = 16}, - [4338] = {.lex_state = 66, .external_lex_state = 15}, - [4339] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 14}, - [4344] = {.lex_state = 66, .external_lex_state = 15}, - [4345] = {.lex_state = 66, .external_lex_state = 16}, - [4346] = {.lex_state = 66, .external_lex_state = 14}, - [4347] = {.lex_state = 66, .external_lex_state = 14}, - [4348] = {.lex_state = 66, .external_lex_state = 11}, - [4349] = {.lex_state = 66, .external_lex_state = 11}, - [4350] = {.lex_state = 18, .external_lex_state = 11}, - [4351] = {.lex_state = 66, .external_lex_state = 12}, - [4352] = {.lex_state = 66, .external_lex_state = 14}, - [4353] = {.lex_state = 0, .external_lex_state = 18}, - [4354] = {.lex_state = 12, .external_lex_state = 11}, - [4355] = {.lex_state = 68, .external_lex_state = 17}, - [4356] = {.lex_state = 66, .external_lex_state = 11}, - [4357] = {.lex_state = 68, .external_lex_state = 17}, - [4358] = {.lex_state = 66, .external_lex_state = 12}, - [4359] = {.lex_state = 66, .external_lex_state = 11}, - [4360] = {.lex_state = 0, .external_lex_state = 18}, - [4361] = {.lex_state = 0, .external_lex_state = 18}, - [4362] = {.lex_state = 66, .external_lex_state = 14}, - [4363] = {.lex_state = 66, .external_lex_state = 12}, - [4364] = {.lex_state = 66, .external_lex_state = 15}, - [4365] = {.lex_state = 18, .external_lex_state = 11}, - [4366] = {.lex_state = 66, .external_lex_state = 14}, - [4367] = {.lex_state = 66, .external_lex_state = 12}, - [4368] = {.lex_state = 66, .external_lex_state = 11}, - [4369] = {.lex_state = 18, .external_lex_state = 11}, - [4370] = {.lex_state = 18, .external_lex_state = 11}, - [4371] = {.lex_state = 66, .external_lex_state = 11}, - [4372] = {.lex_state = 66, .external_lex_state = 16}, - [4373] = {.lex_state = 66, .external_lex_state = 11}, - [4374] = {.lex_state = 66, .external_lex_state = 11}, - [4375] = {.lex_state = 66, .external_lex_state = 12}, - [4376] = {.lex_state = 66, .external_lex_state = 15}, - [4377] = {.lex_state = 66, .external_lex_state = 11}, - [4378] = {.lex_state = 18, .external_lex_state = 11}, - [4379] = {.lex_state = 18, .external_lex_state = 11}, - [4380] = {.lex_state = 66, .external_lex_state = 16}, - [4381] = {.lex_state = 18, .external_lex_state = 11}, - [4382] = {.lex_state = 66, .external_lex_state = 16}, - [4383] = {.lex_state = 66, .external_lex_state = 12}, - [4384] = {.lex_state = 66, .external_lex_state = 14}, - [4385] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 15}, - [4391] = {.lex_state = 66, .external_lex_state = 15}, - [4392] = {.lex_state = 66, .external_lex_state = 11}, - [4393] = {.lex_state = 66, .external_lex_state = 15}, - [4394] = {.lex_state = 66, .external_lex_state = 16}, - [4395] = {.lex_state = 0, .external_lex_state = 18}, - [4396] = {.lex_state = 66, .external_lex_state = 11}, - [4397] = {.lex_state = 0, .external_lex_state = 18}, - [4398] = {.lex_state = 0, .external_lex_state = 18}, - [4399] = {.lex_state = 66, .external_lex_state = 15}, - [4400] = {.lex_state = 66, .external_lex_state = 15}, - [4401] = {.lex_state = 0, .external_lex_state = 18}, - [4402] = {.lex_state = 66, .external_lex_state = 16}, - [4403] = {.lex_state = 66, .external_lex_state = 12}, - [4404] = {.lex_state = 66, .external_lex_state = 12}, - [4405] = {.lex_state = 66, .external_lex_state = 12}, - [4406] = {.lex_state = 15, .external_lex_state = 16}, - [4407] = {.lex_state = 66, .external_lex_state = 12}, - [4408] = {.lex_state = 66, .external_lex_state = 11}, - [4409] = {.lex_state = 66, .external_lex_state = 12}, - [4410] = {.lex_state = 66, .external_lex_state = 12}, - [4411] = {.lex_state = 66, .external_lex_state = 12}, - [4412] = {.lex_state = 66, .external_lex_state = 12}, - [4413] = {.lex_state = 18, .external_lex_state = 12}, - [4414] = {.lex_state = 66, .external_lex_state = 14}, - [4415] = {.lex_state = 66, .external_lex_state = 14}, - [4416] = {.lex_state = 66, .external_lex_state = 12}, - [4417] = {.lex_state = 66, .external_lex_state = 20}, - [4418] = {.lex_state = 66, .external_lex_state = 20}, - [4419] = {.lex_state = 66, .external_lex_state = 11}, - [4420] = {.lex_state = 66, .external_lex_state = 14}, - [4421] = {.lex_state = 15, .external_lex_state = 16}, - [4422] = {.lex_state = 66, .external_lex_state = 14}, - [4423] = {.lex_state = 66, .external_lex_state = 14}, - [4424] = {.lex_state = 66, .external_lex_state = 12}, - [4425] = {.lex_state = 66, .external_lex_state = 11}, - [4426] = {.lex_state = 66, .external_lex_state = 12}, - [4427] = {.lex_state = 66, .external_lex_state = 12}, - [4428] = {.lex_state = 66, .external_lex_state = 12}, - [4429] = {.lex_state = 66, .external_lex_state = 15}, - [4430] = {.lex_state = 66, .external_lex_state = 11}, - [4431] = {.lex_state = 66, .external_lex_state = 16}, - [4432] = {.lex_state = 66, .external_lex_state = 12}, - [4433] = {.lex_state = 15, .external_lex_state = 16}, - [4434] = {.lex_state = 66, .external_lex_state = 11}, - [4435] = {.lex_state = 66, .external_lex_state = 12}, - [4436] = {.lex_state = 66, .external_lex_state = 12}, - [4437] = {.lex_state = 66, .external_lex_state = 14}, - [4438] = {.lex_state = 66, .external_lex_state = 15}, - [4439] = {.lex_state = 66, .external_lex_state = 15}, - [4440] = {.lex_state = 3, .external_lex_state = 15}, - [4441] = {.lex_state = 66, .external_lex_state = 12}, - [4442] = {.lex_state = 66, .external_lex_state = 14}, - [4443] = {.lex_state = 66, .external_lex_state = 20}, - [4444] = {.lex_state = 66, .external_lex_state = 15}, - [4445] = {.lex_state = 66, .external_lex_state = 12}, - [4446] = {.lex_state = 66, .external_lex_state = 12}, - [4447] = {.lex_state = 66, .external_lex_state = 12}, - [4448] = {.lex_state = 66, .external_lex_state = 12}, - [4449] = {.lex_state = 66, .external_lex_state = 12}, - [4450] = {.lex_state = 66, .external_lex_state = 20}, - [4451] = {.lex_state = 66, .external_lex_state = 11}, - [4452] = {.lex_state = 66, .external_lex_state = 11}, - [4453] = {.lex_state = 66, .external_lex_state = 12}, - [4454] = {.lex_state = 66, .external_lex_state = 12}, - [4455] = {.lex_state = 66, .external_lex_state = 15}, - [4456] = {.lex_state = 15, .external_lex_state = 16}, - [4457] = {.lex_state = 66, .external_lex_state = 12}, - [4458] = {.lex_state = 66, .external_lex_state = 11}, - [4459] = {.lex_state = 66, .external_lex_state = 20}, - [4460] = {.lex_state = 66, .external_lex_state = 12}, - [4461] = {.lex_state = 66, .external_lex_state = 11}, - [4462] = {.lex_state = 66, .external_lex_state = 11}, - [4463] = {.lex_state = 66, .external_lex_state = 14}, - [4464] = {.lex_state = 66, .external_lex_state = 12}, - [4465] = {.lex_state = 66, .external_lex_state = 12}, - [4466] = {.lex_state = 66, .external_lex_state = 14}, - [4467] = {.lex_state = 66, .external_lex_state = 12}, - [4468] = {.lex_state = 66, .external_lex_state = 12}, - [4469] = {.lex_state = 66, .external_lex_state = 15}, - [4470] = {.lex_state = 66, .external_lex_state = 20}, - [4471] = {.lex_state = 66, .external_lex_state = 16}, - [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 = 66, .external_lex_state = 20}, - [4476] = {.lex_state = 66, .external_lex_state = 15}, - [4477] = {.lex_state = 66, .external_lex_state = 12}, - [4478] = {.lex_state = 66, .external_lex_state = 20}, - [4479] = {.lex_state = 66, .external_lex_state = 20}, - [4480] = {.lex_state = 15, .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 = 15}, - [4484] = {.lex_state = 66, .external_lex_state = 16}, - [4485] = {.lex_state = 66, .external_lex_state = 12}, - [4486] = {.lex_state = 66, .external_lex_state = 12}, - [4487] = {.lex_state = 66, .external_lex_state = 16}, - [4488] = {.lex_state = 66, .external_lex_state = 12}, - [4489] = {.lex_state = 66, .external_lex_state = 14}, - [4490] = {.lex_state = 66, .external_lex_state = 20}, - [4491] = {.lex_state = 66, .external_lex_state = 12}, - [4492] = {.lex_state = 12, .external_lex_state = 12}, - [4493] = {.lex_state = 66, .external_lex_state = 12}, - [4494] = {.lex_state = 66, .external_lex_state = 16}, - [4495] = {.lex_state = 66, .external_lex_state = 20}, - [4496] = {.lex_state = 66, .external_lex_state = 20}, - [4497] = {.lex_state = 3, .external_lex_state = 15}, - [4498] = {.lex_state = 66, .external_lex_state = 15}, - [4499] = {.lex_state = 66, .external_lex_state = 11}, - [4500] = {.lex_state = 66, .external_lex_state = 20}, - [4501] = {.lex_state = 66, .external_lex_state = 12}, - [4502] = {.lex_state = 66, .external_lex_state = 15}, - [4503] = {.lex_state = 66, .external_lex_state = 20}, - [4504] = {.lex_state = 66, .external_lex_state = 15}, - [4505] = {.lex_state = 66, .external_lex_state = 5}, - [4506] = {.lex_state = 66, .external_lex_state = 20}, - [4507] = {.lex_state = 66, .external_lex_state = 12}, - [4508] = {.lex_state = 66, .external_lex_state = 16}, - [4509] = {.lex_state = 66, .external_lex_state = 11}, - [4510] = {.lex_state = 66, .external_lex_state = 16}, - [4511] = {.lex_state = 66, .external_lex_state = 11}, - [4512] = {.lex_state = 66, .external_lex_state = 11}, - [4513] = {.lex_state = 66, .external_lex_state = 12}, - [4514] = {.lex_state = 66, .external_lex_state = 14}, - [4515] = {.lex_state = 15, .external_lex_state = 16}, - [4516] = {.lex_state = 66, .external_lex_state = 12}, - [4517] = {.lex_state = 15, .external_lex_state = 16}, - [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 = 11}, - [4523] = {.lex_state = 66, .external_lex_state = 12}, - [4524] = {.lex_state = 66, .external_lex_state = 20}, - [4525] = {.lex_state = 66, .external_lex_state = 20}, - [4526] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 16}, - [4531] = {.lex_state = 18, .external_lex_state = 12}, - [4532] = {.lex_state = 66, .external_lex_state = 12}, - [4533] = {.lex_state = 66, .external_lex_state = 12}, - [4534] = {.lex_state = 15, .external_lex_state = 16}, - [4535] = {.lex_state = 66, .external_lex_state = 20}, - [4536] = {.lex_state = 66, .external_lex_state = 16}, - [4537] = {.lex_state = 66, .external_lex_state = 11}, - [4538] = {.lex_state = 66, .external_lex_state = 12}, - [4539] = {.lex_state = 66, .external_lex_state = 15}, - [4540] = {.lex_state = 66, .external_lex_state = 15}, - [4541] = {.lex_state = 66, .external_lex_state = 11}, - [4542] = {.lex_state = 66, .external_lex_state = 12}, - [4543] = {.lex_state = 66, .external_lex_state = 20}, - [4544] = {.lex_state = 66, .external_lex_state = 11}, - [4545] = {.lex_state = 66, .external_lex_state = 11}, - [4546] = {.lex_state = 66, .external_lex_state = 20}, - [4547] = {.lex_state = 66, .external_lex_state = 11}, - [4548] = {.lex_state = 66, .external_lex_state = 12}, - [4549] = {.lex_state = 66, .external_lex_state = 11}, - [4550] = {.lex_state = 66, .external_lex_state = 20}, - [4551] = {.lex_state = 12, .external_lex_state = 12}, - [4552] = {.lex_state = 66, .external_lex_state = 14}, - [4553] = {.lex_state = 66, .external_lex_state = 11}, - [4554] = {.lex_state = 66, .external_lex_state = 15}, - [4555] = {.lex_state = 66, .external_lex_state = 15}, - [4556] = {.lex_state = 66, .external_lex_state = 20}, - [4557] = {.lex_state = 66, .external_lex_state = 14}, - [4558] = {.lex_state = 66, .external_lex_state = 12}, - [4559] = {.lex_state = 66, .external_lex_state = 14}, - [4560] = {.lex_state = 66, .external_lex_state = 12}, - [4561] = {.lex_state = 66, .external_lex_state = 11}, - [4562] = {.lex_state = 66, .external_lex_state = 11}, - [4563] = {.lex_state = 66, .external_lex_state = 11}, - [4564] = {.lex_state = 66, .external_lex_state = 14}, - [4565] = {.lex_state = 66, .external_lex_state = 12}, - [4566] = {.lex_state = 66, .external_lex_state = 12}, - [4567] = {.lex_state = 66, .external_lex_state = 20}, - [4568] = {.lex_state = 66, .external_lex_state = 15}, - [4569] = {.lex_state = 66, .external_lex_state = 16}, - [4570] = {.lex_state = 66, .external_lex_state = 15}, - [4571] = {.lex_state = 66, .external_lex_state = 12}, - [4572] = {.lex_state = 66, .external_lex_state = 12}, - [4573] = {.lex_state = 66, .external_lex_state = 16}, - [4574] = {.lex_state = 18, .external_lex_state = 12}, - [4575] = {.lex_state = 66, .external_lex_state = 20}, - [4576] = {.lex_state = 66, .external_lex_state = 14}, - [4577] = {.lex_state = 66, .external_lex_state = 12}, - [4578] = {.lex_state = 66, .external_lex_state = 12}, - [4579] = {.lex_state = 66, .external_lex_state = 12}, - [4580] = {.lex_state = 66, .external_lex_state = 15}, - [4581] = {.lex_state = 66, .external_lex_state = 15}, - [4582] = {.lex_state = 66, .external_lex_state = 11}, - [4583] = {.lex_state = 66, .external_lex_state = 15}, - [4584] = {.lex_state = 66, .external_lex_state = 12}, - [4585] = {.lex_state = 66, .external_lex_state = 14}, - [4586] = {.lex_state = 3, .external_lex_state = 15}, - [4587] = {.lex_state = 66, .external_lex_state = 12}, - [4588] = {.lex_state = 66, .external_lex_state = 20}, - [4589] = {.lex_state = 66, .external_lex_state = 11}, - [4590] = {.lex_state = 15, .external_lex_state = 11}, - [4591] = {.lex_state = 66, .external_lex_state = 14}, - [4592] = {.lex_state = 66, .external_lex_state = 16}, - [4593] = {.lex_state = 66, .external_lex_state = 16}, - [4594] = {.lex_state = 66, .external_lex_state = 14}, - [4595] = {.lex_state = 66, .external_lex_state = 13}, - [4596] = {.lex_state = 66, .external_lex_state = 13}, - [4597] = {.lex_state = 66, .external_lex_state = 11}, - [4598] = {.lex_state = 66, .external_lex_state = 12}, - [4599] = {.lex_state = 66, .external_lex_state = 14}, - [4600] = {.lex_state = 66, .external_lex_state = 16}, - [4601] = {.lex_state = 18, .external_lex_state = 12}, - [4602] = {.lex_state = 66, .external_lex_state = 16}, - [4603] = {.lex_state = 66, .external_lex_state = 14}, - [4604] = {.lex_state = 66, .external_lex_state = 13}, - [4605] = {.lex_state = 66, .external_lex_state = 2}, - [4606] = {.lex_state = 66, .external_lex_state = 14}, - [4607] = {.lex_state = 66, .external_lex_state = 14}, - [4608] = {.lex_state = 66, .external_lex_state = 14}, - [4609] = {.lex_state = 66, .external_lex_state = 16}, - [4610] = {.lex_state = 66, .external_lex_state = 14}, - [4611] = {.lex_state = 66, .external_lex_state = 14}, - [4612] = {.lex_state = 66, .external_lex_state = 14}, - [4613] = {.lex_state = 66, .external_lex_state = 14}, - [4614] = {.lex_state = 66, .external_lex_state = 14}, - [4615] = {.lex_state = 66, .external_lex_state = 11}, - [4616] = {.lex_state = 66, .external_lex_state = 12}, - [4617] = {.lex_state = 66, .external_lex_state = 16}, - [4618] = {.lex_state = 66, .external_lex_state = 16}, - [4619] = {.lex_state = 66, .external_lex_state = 11}, - [4620] = {.lex_state = 66, .external_lex_state = 16}, - [4621] = {.lex_state = 18, .external_lex_state = 12}, - [4622] = {.lex_state = 66, .external_lex_state = 12}, - [4623] = {.lex_state = 66, .external_lex_state = 14}, - [4624] = {.lex_state = 66, .external_lex_state = 12}, - [4625] = {.lex_state = 66, .external_lex_state = 14}, - [4626] = {.lex_state = 66, .external_lex_state = 16}, - [4627] = {.lex_state = 66, .external_lex_state = 11}, - [4628] = {.lex_state = 18, .external_lex_state = 12}, - [4629] = {.lex_state = 66, .external_lex_state = 12}, - [4630] = {.lex_state = 66, .external_lex_state = 11}, - [4631] = {.lex_state = 66, .external_lex_state = 16}, - [4632] = {.lex_state = 66, .external_lex_state = 21}, - [4633] = {.lex_state = 18, .external_lex_state = 12}, - [4634] = {.lex_state = 66, .external_lex_state = 11}, - [4635] = {.lex_state = 66, .external_lex_state = 21}, - [4636] = {.lex_state = 66, .external_lex_state = 14}, - [4637] = {.lex_state = 66, .external_lex_state = 16}, - [4638] = {.lex_state = 66, .external_lex_state = 11}, - [4639] = {.lex_state = 66, .external_lex_state = 16}, - [4640] = {.lex_state = 66, .external_lex_state = 14}, - [4641] = {.lex_state = 66, .external_lex_state = 16}, - [4642] = {.lex_state = 66, .external_lex_state = 16}, - [4643] = {.lex_state = 66, .external_lex_state = 2}, - [4644] = {.lex_state = 66, .external_lex_state = 14}, - [4645] = {.lex_state = 66, .external_lex_state = 21}, - [4646] = {.lex_state = 66, .external_lex_state = 16}, - [4647] = {.lex_state = 66, .external_lex_state = 16}, - [4648] = {.lex_state = 12, .external_lex_state = 12}, - [4649] = {.lex_state = 66, .external_lex_state = 11}, - [4650] = {.lex_state = 66, .external_lex_state = 16}, - [4651] = {.lex_state = 66, .external_lex_state = 15}, - [4652] = {.lex_state = 66, .external_lex_state = 11}, - [4653] = {.lex_state = 66, .external_lex_state = 16}, - [4654] = {.lex_state = 18, .external_lex_state = 12}, - [4655] = {.lex_state = 66, .external_lex_state = 11}, - [4656] = {.lex_state = 66, .external_lex_state = 16}, - [4657] = {.lex_state = 66, .external_lex_state = 14}, - [4658] = {.lex_state = 66, .external_lex_state = 16}, - [4659] = {.lex_state = 66, .external_lex_state = 5}, - [4660] = {.lex_state = 66, .external_lex_state = 11}, - [4661] = {.lex_state = 66, .external_lex_state = 14}, - [4662] = {.lex_state = 66, .external_lex_state = 16}, - [4663] = {.lex_state = 66, .external_lex_state = 11}, - [4664] = {.lex_state = 66, .external_lex_state = 14}, - [4665] = {.lex_state = 66, .external_lex_state = 12}, - [4666] = {.lex_state = 66, .external_lex_state = 14}, - [4667] = {.lex_state = 66, .external_lex_state = 14}, - [4668] = {.lex_state = 66, .external_lex_state = 14}, - [4669] = {.lex_state = 66, .external_lex_state = 12}, - [4670] = {.lex_state = 66, .external_lex_state = 14}, - [4671] = {.lex_state = 66, .external_lex_state = 14}, - [4672] = {.lex_state = 66, .external_lex_state = 14}, - [4673] = {.lex_state = 66, .external_lex_state = 12}, - [4674] = {.lex_state = 66, .external_lex_state = 14}, - [4675] = {.lex_state = 66, .external_lex_state = 16}, - [4676] = {.lex_state = 66, .external_lex_state = 11}, - [4677] = {.lex_state = 66, .external_lex_state = 14}, - [4678] = {.lex_state = 66, .external_lex_state = 21}, - [4679] = {.lex_state = 66, .external_lex_state = 12}, - [4680] = {.lex_state = 66, .external_lex_state = 12}, - [4681] = {.lex_state = 66, .external_lex_state = 14}, - [4682] = {.lex_state = 66, .external_lex_state = 16}, - [4683] = {.lex_state = 66, .external_lex_state = 11}, - [4684] = {.lex_state = 66, .external_lex_state = 16}, - [4685] = {.lex_state = 66, .external_lex_state = 13}, - [4686] = {.lex_state = 66, .external_lex_state = 14}, - [4687] = {.lex_state = 66, .external_lex_state = 16}, - [4688] = {.lex_state = 66, .external_lex_state = 14}, - [4689] = {.lex_state = 66, .external_lex_state = 16}, - [4690] = {.lex_state = 66, .external_lex_state = 14}, - [4691] = {.lex_state = 66, .external_lex_state = 16}, - [4692] = {.lex_state = 66, .external_lex_state = 14}, - [4693] = {.lex_state = 66, .external_lex_state = 21}, - [4694] = {.lex_state = 66, .external_lex_state = 11}, - [4695] = {.lex_state = 66, .external_lex_state = 13}, - [4696] = {.lex_state = 66, .external_lex_state = 14}, - [4697] = {.lex_state = 66, .external_lex_state = 16}, - [4698] = {.lex_state = 66, .external_lex_state = 14}, - [4699] = {.lex_state = 66, .external_lex_state = 14}, - [4700] = {.lex_state = 66, .external_lex_state = 21}, - [4701] = {.lex_state = 66, .external_lex_state = 12}, - [4702] = {.lex_state = 66, .external_lex_state = 12}, - [4703] = {.lex_state = 66, .external_lex_state = 15}, - [4704] = {.lex_state = 66, .external_lex_state = 15}, - [4705] = {.lex_state = 66, .external_lex_state = 21}, - [4706] = {.lex_state = 66, .external_lex_state = 12}, - [4707] = {.lex_state = 66, .external_lex_state = 12}, - [4708] = {.lex_state = 66, .external_lex_state = 15}, - [4709] = {.lex_state = 66, .external_lex_state = 5}, - [4710] = {.lex_state = 66, .external_lex_state = 15}, - [4711] = {.lex_state = 66, .external_lex_state = 14}, - [4712] = {.lex_state = 66, .external_lex_state = 14}, - [4713] = {.lex_state = 66, .external_lex_state = 14}, - [4714] = {.lex_state = 66, .external_lex_state = 21}, - [4715] = {.lex_state = 66, .external_lex_state = 12}, - [4716] = {.lex_state = 66, .external_lex_state = 14}, - [4717] = {.lex_state = 66, .external_lex_state = 16}, - [4718] = {.lex_state = 66, .external_lex_state = 11}, - [4719] = {.lex_state = 66, .external_lex_state = 16}, - [4720] = {.lex_state = 66, .external_lex_state = 14}, - [4721] = {.lex_state = 66, .external_lex_state = 15}, - [4722] = {.lex_state = 66, .external_lex_state = 15}, - [4723] = {.lex_state = 66, .external_lex_state = 15}, - [4724] = {.lex_state = 66, .external_lex_state = 16}, - [4725] = {.lex_state = 66, .external_lex_state = 15}, - [4726] = {.lex_state = 66, .external_lex_state = 15}, - [4727] = {.lex_state = 66, .external_lex_state = 16}, - [4728] = {.lex_state = 66, .external_lex_state = 15}, - [4729] = {.lex_state = 66, .external_lex_state = 5}, - [4730] = {.lex_state = 66, .external_lex_state = 21}, - [4731] = {.lex_state = 66, .external_lex_state = 14}, - [4732] = {.lex_state = 66, .external_lex_state = 12}, - [4733] = {.lex_state = 66, .external_lex_state = 16}, - [4734] = {.lex_state = 66, .external_lex_state = 16}, - [4735] = {.lex_state = 66, .external_lex_state = 5}, - [4736] = {.lex_state = 66, .external_lex_state = 15}, - [4737] = {.lex_state = 66, .external_lex_state = 5}, - [4738] = {.lex_state = 66, .external_lex_state = 12}, - [4739] = {.lex_state = 66, .external_lex_state = 14}, - [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 = 15}, - [4744] = {.lex_state = 66, .external_lex_state = 15}, - [4745] = {.lex_state = 66, .external_lex_state = 15}, - [4746] = {.lex_state = 66, .external_lex_state = 12}, - [4747] = {.lex_state = 66, .external_lex_state = 12}, - [4748] = {.lex_state = 66, .external_lex_state = 15}, - [4749] = {.lex_state = 66, .external_lex_state = 15}, - [4750] = {.lex_state = 18, .external_lex_state = 12}, - [4751] = {.lex_state = 66, .external_lex_state = 16}, - [4752] = {.lex_state = 18, .external_lex_state = 12}, - [4753] = {.lex_state = 66, .external_lex_state = 11}, - [4754] = {.lex_state = 66, .external_lex_state = 15}, - [4755] = {.lex_state = 66, .external_lex_state = 14}, - [4756] = {.lex_state = 66, .external_lex_state = 5}, - [4757] = {.lex_state = 66, .external_lex_state = 15}, - [4758] = {.lex_state = 66, .external_lex_state = 15}, - [4759] = {.lex_state = 66, .external_lex_state = 12}, - [4760] = {.lex_state = 66, .external_lex_state = 14}, - [4761] = {.lex_state = 66, .external_lex_state = 12}, - [4762] = {.lex_state = 66, .external_lex_state = 15}, - [4763] = {.lex_state = 66, .external_lex_state = 15}, - [4764] = {.lex_state = 66, .external_lex_state = 15}, - [4765] = {.lex_state = 66, .external_lex_state = 11}, - [4766] = {.lex_state = 66, .external_lex_state = 15}, - [4767] = {.lex_state = 66, .external_lex_state = 11}, - [4768] = {.lex_state = 66, .external_lex_state = 14}, - [4769] = {.lex_state = 66, .external_lex_state = 14}, - [4770] = {.lex_state = 66, .external_lex_state = 11}, - [4771] = {.lex_state = 66, .external_lex_state = 11}, - [4772] = {.lex_state = 66, .external_lex_state = 11}, - [4773] = {.lex_state = 66, .external_lex_state = 16}, - [4774] = {.lex_state = 66, .external_lex_state = 11}, - [4775] = {.lex_state = 66, .external_lex_state = 11}, - [4776] = {.lex_state = 66, .external_lex_state = 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}, - [4780] = {.lex_state = 66, .external_lex_state = 11}, - [4781] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 11}, - [4786] = {.lex_state = 66, .external_lex_state = 11}, - [4787] = {.lex_state = 66, .external_lex_state = 12}, - [4788] = {.lex_state = 66, .external_lex_state = 11}, - [4789] = {.lex_state = 66, .external_lex_state = 11}, - [4790] = {.lex_state = 66, .external_lex_state = 11}, - [4791] = {.lex_state = 66, .external_lex_state = 20}, - [4792] = {.lex_state = 66, .external_lex_state = 14}, - [4793] = {.lex_state = 66, .external_lex_state = 14}, - [4794] = {.lex_state = 66, .external_lex_state = 12}, - [4795] = {.lex_state = 66, .external_lex_state = 14}, - [4796] = {.lex_state = 66, .external_lex_state = 16}, - [4797] = {.lex_state = 66, .external_lex_state = 16}, - [4798] = {.lex_state = 66, .external_lex_state = 11}, - [4799] = {.lex_state = 66, .external_lex_state = 15}, - [4800] = {.lex_state = 66, .external_lex_state = 16}, - [4801] = {.lex_state = 66, .external_lex_state = 15}, - [4802] = {.lex_state = 66, .external_lex_state = 15}, - [4803] = {.lex_state = 66, .external_lex_state = 11}, - [4804] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 11}, - [4809] = {.lex_state = 66, .external_lex_state = 12}, - [4810] = {.lex_state = 66, .external_lex_state = 11}, - [4811] = {.lex_state = 66, .external_lex_state = 11}, - [4812] = {.lex_state = 66, .external_lex_state = 11}, - [4813] = {.lex_state = 66, .external_lex_state = 2}, - [4814] = {.lex_state = 66, .external_lex_state = 11}, - [4815] = {.lex_state = 66, .external_lex_state = 11}, - [4816] = {.lex_state = 3, .external_lex_state = 15}, - [4817] = {.lex_state = 66, .external_lex_state = 15}, - [4818] = {.lex_state = 66, .external_lex_state = 12}, - [4819] = {.lex_state = 66, .external_lex_state = 14}, - [4820] = {.lex_state = 66, .external_lex_state = 14}, - [4821] = {.lex_state = 66, .external_lex_state = 15}, - [4822] = {.lex_state = 66, .external_lex_state = 12}, - [4823] = {.lex_state = 66, .external_lex_state = 16}, - [4824] = {.lex_state = 66, .external_lex_state = 11}, - [4825] = {.lex_state = 66, .external_lex_state = 14}, - [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 = 11}, - [4830] = {.lex_state = 66, .external_lex_state = 11}, - [4831] = {.lex_state = 66, .external_lex_state = 11}, - [4832] = {.lex_state = 66, .external_lex_state = 11}, - [4833] = {.lex_state = 66, .external_lex_state = 16}, - [4834] = {.lex_state = 66, .external_lex_state = 11}, - [4835] = {.lex_state = 66, .external_lex_state = 12}, - [4836] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 11}, - [4841] = {.lex_state = 66, .external_lex_state = 12}, - [4842] = {.lex_state = 66, .external_lex_state = 11}, - [4843] = {.lex_state = 66, .external_lex_state = 11}, - [4844] = {.lex_state = 66, .external_lex_state = 16}, - [4845] = {.lex_state = 66, .external_lex_state = 11}, - [4846] = {.lex_state = 66, .external_lex_state = 11}, - [4847] = {.lex_state = 66, .external_lex_state = 11}, - [4848] = {.lex_state = 66, .external_lex_state = 15}, - [4849] = {.lex_state = 66, .external_lex_state = 11}, - [4850] = {.lex_state = 66, .external_lex_state = 11}, - [4851] = {.lex_state = 66, .external_lex_state = 11}, - [4852] = {.lex_state = 66, .external_lex_state = 15}, - [4853] = {.lex_state = 66, .external_lex_state = 14}, - [4854] = {.lex_state = 66, .external_lex_state = 11}, - [4855] = {.lex_state = 66, .external_lex_state = 14}, - [4856] = {.lex_state = 66, .external_lex_state = 11}, - [4857] = {.lex_state = 66, .external_lex_state = 14}, - [4858] = {.lex_state = 66, .external_lex_state = 11}, - [4859] = {.lex_state = 66, .external_lex_state = 14}, - [4860] = {.lex_state = 66, .external_lex_state = 11}, - [4861] = {.lex_state = 66, .external_lex_state = 15}, - [4862] = {.lex_state = 66, .external_lex_state = 14}, - [4863] = {.lex_state = 66, .external_lex_state = 12}, - [4864] = {.lex_state = 66, .external_lex_state = 11}, - [4865] = {.lex_state = 66, .external_lex_state = 11}, - [4866] = {.lex_state = 66, .external_lex_state = 14}, - [4867] = {.lex_state = 66, .external_lex_state = 15}, - [4868] = {.lex_state = 66, .external_lex_state = 15}, - [4869] = {.lex_state = 66, .external_lex_state = 16}, - [4870] = {.lex_state = 66, .external_lex_state = 14}, - [4871] = {.lex_state = 66, .external_lex_state = 14}, - [4872] = {.lex_state = 66, .external_lex_state = 15}, - [4873] = {.lex_state = 66, .external_lex_state = 11}, - [4874] = {.lex_state = 66, .external_lex_state = 16}, - [4875] = {.lex_state = 66, .external_lex_state = 20}, - [4876] = {.lex_state = 66, .external_lex_state = 15}, - [4877] = {.lex_state = 66, .external_lex_state = 12}, - [4878] = {.lex_state = 66, .external_lex_state = 16}, - [4879] = {.lex_state = 66, .external_lex_state = 14}, - [4880] = {.lex_state = 66, .external_lex_state = 14}, - [4881] = {.lex_state = 66, .external_lex_state = 14}, - [4882] = {.lex_state = 66, .external_lex_state = 14}, - [4883] = {.lex_state = 66, .external_lex_state = 15}, - [4884] = {.lex_state = 66, .external_lex_state = 16}, - [4885] = {.lex_state = 66, .external_lex_state = 16}, - [4886] = {.lex_state = 66, .external_lex_state = 16}, - [4887] = {.lex_state = 66, .external_lex_state = 16}, - [4888] = {.lex_state = 66, .external_lex_state = 14}, - [4889] = {.lex_state = 66, .external_lex_state = 11}, - [4890] = {.lex_state = 66, .external_lex_state = 11}, - [4891] = {.lex_state = 66, .external_lex_state = 16}, - [4892] = {.lex_state = 66, .external_lex_state = 11}, - [4893] = {.lex_state = 66, .external_lex_state = 14}, - [4894] = {.lex_state = 66, .external_lex_state = 14}, - [4895] = {.lex_state = 66, .external_lex_state = 15}, - [4896] = {.lex_state = 66, .external_lex_state = 11}, - [4897] = {.lex_state = 66, .external_lex_state = 16}, - [4898] = {.lex_state = 66, .external_lex_state = 16}, - [4899] = {.lex_state = 66, .external_lex_state = 14}, - [4900] = {.lex_state = 66, .external_lex_state = 16}, - [4901] = {.lex_state = 66, .external_lex_state = 16}, - [4902] = {.lex_state = 66, .external_lex_state = 16}, - [4903] = {.lex_state = 66, .external_lex_state = 15}, - [4904] = {.lex_state = 66, .external_lex_state = 11}, - [4905] = {.lex_state = 66, .external_lex_state = 15}, - [4906] = {.lex_state = 66, .external_lex_state = 11}, - [4907] = {.lex_state = 66, .external_lex_state = 12}, - [4908] = {.lex_state = 66, .external_lex_state = 11}, - [4909] = {.lex_state = 66, .external_lex_state = 14}, - [4910] = {.lex_state = 66, .external_lex_state = 11}, - [4911] = {.lex_state = 66, .external_lex_state = 20}, - [4912] = {.lex_state = 66, .external_lex_state = 12}, - [4913] = {.lex_state = 66, .external_lex_state = 11}, - [4914] = {.lex_state = 66, .external_lex_state = 11}, - [4915] = {.lex_state = 66, .external_lex_state = 11}, - [4916] = {.lex_state = 66, .external_lex_state = 14}, - [4917] = {.lex_state = 66, .external_lex_state = 11}, - [4918] = {.lex_state = 66, .external_lex_state = 11}, - [4919] = {.lex_state = 66, .external_lex_state = 15}, - [4920] = {.lex_state = 66, .external_lex_state = 12}, - [4921] = {.lex_state = 66, .external_lex_state = 11}, - [4922] = {.lex_state = 66, .external_lex_state = 11}, - [4923] = {.lex_state = 66, .external_lex_state = 15}, - [4924] = {.lex_state = 66, .external_lex_state = 15}, - [4925] = {.lex_state = 66, .external_lex_state = 16}, - [4926] = {.lex_state = 66, .external_lex_state = 14}, - [4927] = {.lex_state = 66, .external_lex_state = 14}, - [4928] = {.lex_state = 66, .external_lex_state = 15}, - [4929] = {.lex_state = 66, .external_lex_state = 16}, - [4930] = {.lex_state = 66, .external_lex_state = 11}, - [4931] = {.lex_state = 66, .external_lex_state = 14}, - [4932] = {.lex_state = 66, .external_lex_state = 14}, - [4933] = {.lex_state = 66, .external_lex_state = 11}, - [4934] = {.lex_state = 66, .external_lex_state = 14}, - [4935] = {.lex_state = 66, .external_lex_state = 16}, - [4936] = {.lex_state = 66, .external_lex_state = 16}, - [4937] = {.lex_state = 66, .external_lex_state = 11}, - [4938] = {.lex_state = 66, .external_lex_state = 11}, - [4939] = {.lex_state = 16, .external_lex_state = 19}, - [4940] = {.lex_state = 66, .external_lex_state = 11}, - [4941] = {.lex_state = 66, .external_lex_state = 14}, - [4942] = {.lex_state = 66, .external_lex_state = 11}, - [4943] = {.lex_state = 66, .external_lex_state = 12}, - [4944] = {.lex_state = 66, .external_lex_state = 11}, - [4945] = {.lex_state = 66, .external_lex_state = 11}, - [4946] = {.lex_state = 66, .external_lex_state = 16}, - [4947] = {.lex_state = 66, .external_lex_state = 11}, - [4948] = {.lex_state = 66, .external_lex_state = 14}, - [4949] = {.lex_state = 66, .external_lex_state = 11}, - [4950] = {.lex_state = 66, .external_lex_state = 11}, - [4951] = {.lex_state = 66, .external_lex_state = 15}, - [4952] = {.lex_state = 66, .external_lex_state = 11}, - [4953] = {.lex_state = 66, .external_lex_state = 12}, - [4954] = {.lex_state = 66, .external_lex_state = 11}, - [4955] = {.lex_state = 66, .external_lex_state = 11}, - [4956] = {.lex_state = 66, .external_lex_state = 15}, - [4957] = {.lex_state = 66, .external_lex_state = 11}, - [4958] = {.lex_state = 15, .external_lex_state = 12}, - [4959] = {.lex_state = 66, .external_lex_state = 14}, - [4960] = {.lex_state = 66, .external_lex_state = 14}, - [4961] = {.lex_state = 66, .external_lex_state = 11}, - [4962] = {.lex_state = 66, .external_lex_state = 16}, - [4963] = {.lex_state = 66, .external_lex_state = 11}, - [4964] = {.lex_state = 3, .external_lex_state = 15}, - [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 = 16}, - [4970] = {.lex_state = 66, .external_lex_state = 16}, - [4971] = {.lex_state = 66, .external_lex_state = 16}, - [4972] = {.lex_state = 66, .external_lex_state = 11}, - [4973] = {.lex_state = 66, .external_lex_state = 11}, - [4974] = {.lex_state = 66, .external_lex_state = 11}, - [4975] = {.lex_state = 66, .external_lex_state = 11}, - [4976] = {.lex_state = 66, .external_lex_state = 11}, - [4977] = {.lex_state = 66, .external_lex_state = 11}, - [4978] = {.lex_state = 66, .external_lex_state = 16}, - [4979] = {.lex_state = 66, .external_lex_state = 11}, - [4980] = {.lex_state = 66, .external_lex_state = 11}, - [4981] = {.lex_state = 66, .external_lex_state = 11}, - [4982] = {.lex_state = 66, .external_lex_state = 11}, - [4983] = {.lex_state = 66, .external_lex_state = 11}, - [4984] = {.lex_state = 66, .external_lex_state = 14}, - [4985] = {.lex_state = 15, .external_lex_state = 12}, - [4986] = {.lex_state = 66, .external_lex_state = 14}, - [4987] = {.lex_state = 66, .external_lex_state = 15}, - [4988] = {.lex_state = 66, .external_lex_state = 12}, - [4989] = {.lex_state = 66, .external_lex_state = 11}, - [4990] = {.lex_state = 66, .external_lex_state = 14}, - [4991] = {.lex_state = 66, .external_lex_state = 15}, - [4992] = {.lex_state = 66, .external_lex_state = 11}, - [4993] = {.lex_state = 66, .external_lex_state = 11}, - [4994] = {.lex_state = 66, .external_lex_state = 11}, - [4995] = {.lex_state = 66, .external_lex_state = 14}, - [4996] = {.lex_state = 66, .external_lex_state = 14}, - [4997] = {.lex_state = 66, .external_lex_state = 14}, - [4998] = {.lex_state = 66, .external_lex_state = 16}, - [4999] = {.lex_state = 66, .external_lex_state = 20}, - [5000] = {.lex_state = 66, .external_lex_state = 14}, - [5001] = {.lex_state = 66, .external_lex_state = 15}, - [5002] = {.lex_state = 66, .external_lex_state = 14}, - [5003] = {.lex_state = 66, .external_lex_state = 16}, - [5004] = {.lex_state = 66, .external_lex_state = 16}, - [5005] = {.lex_state = 66, .external_lex_state = 14}, - [5006] = {.lex_state = 66, .external_lex_state = 12}, - [5007] = {.lex_state = 66, .external_lex_state = 15}, - [5008] = {.lex_state = 66, .external_lex_state = 11}, - [5009] = {.lex_state = 66, .external_lex_state = 16}, - [5010] = {.lex_state = 66, .external_lex_state = 14}, - [5011] = {.lex_state = 66, .external_lex_state = 15}, - [5012] = {.lex_state = 66, .external_lex_state = 14}, - [5013] = {.lex_state = 66, .external_lex_state = 12}, - [5014] = {.lex_state = 66, .external_lex_state = 11}, - [5015] = {.lex_state = 66, .external_lex_state = 15}, - [5016] = {.lex_state = 66, .external_lex_state = 12}, - [5017] = {.lex_state = 66, .external_lex_state = 14}, - [5018] = {.lex_state = 66, .external_lex_state = 14}, - [5019] = {.lex_state = 66, .external_lex_state = 14}, - [5020] = {.lex_state = 66, .external_lex_state = 14}, - [5021] = {.lex_state = 66, .external_lex_state = 15}, - [5022] = {.lex_state = 66, .external_lex_state = 16}, - [5023] = {.lex_state = 66, .external_lex_state = 14}, - [5024] = {.lex_state = 66, .external_lex_state = 12}, - [5025] = {.lex_state = 66, .external_lex_state = 14}, - [5026] = {.lex_state = 66, .external_lex_state = 16}, - [5027] = {.lex_state = 66, .external_lex_state = 14}, - [5028] = {.lex_state = 66, .external_lex_state = 16}, - [5029] = {.lex_state = 66, .external_lex_state = 16}, - [5030] = {.lex_state = 66, .external_lex_state = 11}, - [5031] = {.lex_state = 66, .external_lex_state = 15}, - [5032] = {.lex_state = 66, .external_lex_state = 14}, - [5033] = {.lex_state = 66, .external_lex_state = 20}, - [5034] = {.lex_state = 66, .external_lex_state = 12}, - [5035] = {.lex_state = 66, .external_lex_state = 15}, - [5036] = {.lex_state = 66, .external_lex_state = 16}, - [5037] = {.lex_state = 66, .external_lex_state = 12}, - [5038] = {.lex_state = 66, .external_lex_state = 16}, - [5039] = {.lex_state = 66, .external_lex_state = 14}, - [5040] = {.lex_state = 66, .external_lex_state = 14}, - [5041] = {.lex_state = 66, .external_lex_state = 15}, - [5042] = {.lex_state = 66, .external_lex_state = 16}, - [5043] = {.lex_state = 66, .external_lex_state = 16}, - [5044] = {.lex_state = 66, .external_lex_state = 14}, - [5045] = {.lex_state = 66, .external_lex_state = 11}, - [5046] = {.lex_state = 66, .external_lex_state = 14}, - [5047] = {.lex_state = 66, .external_lex_state = 16}, - [5048] = {.lex_state = 66, .external_lex_state = 16}, - [5049] = {.lex_state = 66, .external_lex_state = 11}, - [5050] = {.lex_state = 66, .external_lex_state = 11}, - [5051] = {.lex_state = 66, .external_lex_state = 14}, - [5052] = {.lex_state = 66, .external_lex_state = 11}, - [5053] = {.lex_state = 66, .external_lex_state = 11}, - [5054] = {.lex_state = 66, .external_lex_state = 14}, - [5055] = {.lex_state = 66, .external_lex_state = 14}, - [5056] = {.lex_state = 66, .external_lex_state = 16}, - [5057] = {.lex_state = 66, .external_lex_state = 16}, - [5058] = {.lex_state = 66, .external_lex_state = 11}, - [5059] = {.lex_state = 66, .external_lex_state = 14}, - [5060] = {.lex_state = 66, .external_lex_state = 14}, - [5061] = {.lex_state = 66, .external_lex_state = 14}, - [5062] = {.lex_state = 66, .external_lex_state = 11}, - [5063] = {.lex_state = 66, .external_lex_state = 16}, - [5064] = {.lex_state = 66, .external_lex_state = 16}, - [5065] = {.lex_state = 66, .external_lex_state = 11}, - [5066] = {.lex_state = 66, .external_lex_state = 16}, - [5067] = {.lex_state = 66, .external_lex_state = 12}, - [5068] = {.lex_state = 66, .external_lex_state = 12}, - [5069] = {.lex_state = 66, .external_lex_state = 11}, - [5070] = {.lex_state = 66, .external_lex_state = 14}, - [5071] = {.lex_state = 66, .external_lex_state = 14}, - [5072] = {.lex_state = 66, .external_lex_state = 16}, - [5073] = {.lex_state = 66, .external_lex_state = 16}, - [5074] = {.lex_state = 12, .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 = 14}, - [5080] = {.lex_state = 66, .external_lex_state = 16}, - [5081] = {.lex_state = 66, .external_lex_state = 12}, - [5082] = {.lex_state = 66, .external_lex_state = 16}, - [5083] = {.lex_state = 66, .external_lex_state = 16}, - [5084] = {.lex_state = 66, .external_lex_state = 12}, - [5085] = {.lex_state = 66, .external_lex_state = 16}, - [5086] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 11}, - [5091] = {.lex_state = 66, .external_lex_state = 11}, - [5092] = {.lex_state = 3, .external_lex_state = 15}, - [5093] = {.lex_state = 66, .external_lex_state = 11}, - [5094] = {.lex_state = 66, .external_lex_state = 20}, - [5095] = {.lex_state = 66, .external_lex_state = 16}, - [5096] = {.lex_state = 66, .external_lex_state = 16}, - [5097] = {.lex_state = 66, .external_lex_state = 16}, - [5098] = {.lex_state = 66, .external_lex_state = 11}, - [5099] = {.lex_state = 66, .external_lex_state = 11}, - [5100] = {.lex_state = 66, .external_lex_state = 11}, - [5101] = {.lex_state = 66, .external_lex_state = 20}, - [5102] = {.lex_state = 16, .external_lex_state = 19}, - [5103] = {.lex_state = 66, .external_lex_state = 11}, - [5104] = {.lex_state = 66, .external_lex_state = 14}, - [5105] = {.lex_state = 66, .external_lex_state = 11}, - [5106] = {.lex_state = 66, .external_lex_state = 12}, - [5107] = {.lex_state = 12, .external_lex_state = 12}, - [5108] = {.lex_state = 66, .external_lex_state = 11}, - [5109] = {.lex_state = 66, .external_lex_state = 2}, - [5110] = {.lex_state = 66, .external_lex_state = 2}, - [5111] = {.lex_state = 66, .external_lex_state = 11}, - [5112] = {.lex_state = 66, .external_lex_state = 12}, - [5113] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 12}, - [5118] = {.lex_state = 66, .external_lex_state = 12}, - [5119] = {.lex_state = 15, .external_lex_state = 12}, - [5120] = {.lex_state = 15, .external_lex_state = 12}, - [5121] = {.lex_state = 66, .external_lex_state = 14}, - [5122] = {.lex_state = 66, .external_lex_state = 11}, - [5123] = {.lex_state = 66, .external_lex_state = 11}, - [5124] = {.lex_state = 66, .external_lex_state = 12}, - [5125] = {.lex_state = 15, .external_lex_state = 12}, - [5126] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 14}, - [5133] = {.lex_state = 66, .external_lex_state = 12}, - [5134] = {.lex_state = 66, .external_lex_state = 12}, - [5135] = {.lex_state = 66, .external_lex_state = 16}, - [5136] = {.lex_state = 66, .external_lex_state = 15}, - [5137] = {.lex_state = 66, .external_lex_state = 12}, - [5138] = {.lex_state = 66, .external_lex_state = 11}, - [5139] = {.lex_state = 66, .external_lex_state = 20}, - [5140] = {.lex_state = 66, .external_lex_state = 12}, - [5141] = {.lex_state = 66, .external_lex_state = 16}, - [5142] = {.lex_state = 66, .external_lex_state = 12}, - [5143] = {.lex_state = 66, .external_lex_state = 14}, - [5144] = {.lex_state = 66, .external_lex_state = 15}, - [5145] = {.lex_state = 66, .external_lex_state = 14}, - [5146] = {.lex_state = 66, .external_lex_state = 11}, - [5147] = {.lex_state = 66, .external_lex_state = 11}, - [5148] = {.lex_state = 66, .external_lex_state = 12}, - [5149] = {.lex_state = 66, .external_lex_state = 12}, - [5150] = {.lex_state = 66, .external_lex_state = 2}, - [5151] = {.lex_state = 66, .external_lex_state = 11}, - [5152] = {.lex_state = 66, .external_lex_state = 12}, - [5153] = {.lex_state = 66, .external_lex_state = 12}, - [5154] = {.lex_state = 66, .external_lex_state = 16}, - [5155] = {.lex_state = 66, .external_lex_state = 12}, - [5156] = {.lex_state = 66, .external_lex_state = 12}, - [5157] = {.lex_state = 66, .external_lex_state = 14}, - [5158] = {.lex_state = 66, .external_lex_state = 16}, - [5159] = {.lex_state = 66, .external_lex_state = 11}, - [5160] = {.lex_state = 66, .external_lex_state = 12}, - [5161] = {.lex_state = 66, .external_lex_state = 12}, - [5162] = {.lex_state = 66, .external_lex_state = 11}, - [5163] = {.lex_state = 66, .external_lex_state = 16}, - [5164] = {.lex_state = 66, .external_lex_state = 12}, - [5165] = {.lex_state = 66, .external_lex_state = 12}, - [5166] = {.lex_state = 66, .external_lex_state = 14}, - [5167] = {.lex_state = 66, .external_lex_state = 14}, - [5168] = {.lex_state = 66, .external_lex_state = 11}, - [5169] = {.lex_state = 66, .external_lex_state = 12}, - [5170] = {.lex_state = 66, .external_lex_state = 16}, - [5171] = {.lex_state = 66, .external_lex_state = 14}, - [5172] = {.lex_state = 66, .external_lex_state = 16}, - [5173] = {.lex_state = 66, .external_lex_state = 11}, - [5174] = {.lex_state = 66, .external_lex_state = 12}, - [5175] = {.lex_state = 66, .external_lex_state = 11}, - [5176] = {.lex_state = 66, .external_lex_state = 14}, - [5177] = {.lex_state = 66, .external_lex_state = 15}, - [5178] = {.lex_state = 66, .external_lex_state = 16}, - [5179] = {.lex_state = 66, .external_lex_state = 16}, - [5180] = {.lex_state = 66, .external_lex_state = 16}, - [5181] = {.lex_state = 66, .external_lex_state = 16}, - [5182] = {.lex_state = 12, .external_lex_state = 12}, - [5183] = {.lex_state = 66, .external_lex_state = 14}, - [5184] = {.lex_state = 66, .external_lex_state = 11}, - [5185] = {.lex_state = 66, .external_lex_state = 16}, - [5186] = {.lex_state = 66, .external_lex_state = 11}, - [5187] = {.lex_state = 66, .external_lex_state = 11}, - [5188] = {.lex_state = 66, .external_lex_state = 14}, - [5189] = {.lex_state = 66, .external_lex_state = 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 = 16, .external_lex_state = 19}, - [5194] = {.lex_state = 66, .external_lex_state = 11}, - [5195] = {.lex_state = 66, .external_lex_state = 11}, - [5196] = {.lex_state = 66, .external_lex_state = 11}, - [5197] = {.lex_state = 66, .external_lex_state = 14}, - [5198] = {.lex_state = 66, .external_lex_state = 16}, - [5199] = {.lex_state = 66, .external_lex_state = 14}, - [5200] = {.lex_state = 66, .external_lex_state = 14}, - [5201] = {.lex_state = 66, .external_lex_state = 16}, - [5202] = {.lex_state = 66, .external_lex_state = 16}, - [5203] = {.lex_state = 66, .external_lex_state = 14}, - [5204] = {.lex_state = 66, .external_lex_state = 16}, - [5205] = {.lex_state = 66, .external_lex_state = 16}, - [5206] = {.lex_state = 66, .external_lex_state = 14}, - [5207] = {.lex_state = 66, .external_lex_state = 11}, - [5208] = {.lex_state = 66, .external_lex_state = 11}, - [5209] = {.lex_state = 3, .external_lex_state = 15}, - [5210] = {.lex_state = 66, .external_lex_state = 11}, - [5211] = {.lex_state = 66, .external_lex_state = 11}, - [5212] = {.lex_state = 3, .external_lex_state = 15}, - [5213] = {.lex_state = 66, .external_lex_state = 11}, - [5214] = {.lex_state = 66, .external_lex_state = 16}, - [5215] = {.lex_state = 66, .external_lex_state = 16}, - [5216] = {.lex_state = 66, .external_lex_state = 11}, - [5217] = {.lex_state = 3, .external_lex_state = 15}, - [5218] = {.lex_state = 66, .external_lex_state = 14}, - [5219] = {.lex_state = 66, .external_lex_state = 11}, - [5220] = {.lex_state = 15, .external_lex_state = 12}, - [5221] = {.lex_state = 66, .external_lex_state = 11}, - [5222] = {.lex_state = 66, .external_lex_state = 11}, - [5223] = {.lex_state = 66, .external_lex_state = 16}, - [5224] = {.lex_state = 66, .external_lex_state = 14}, - [5225] = {.lex_state = 66, .external_lex_state = 11}, - [5226] = {.lex_state = 66, .external_lex_state = 14}, - [5227] = {.lex_state = 66, .external_lex_state = 11}, - [5228] = {.lex_state = 15, .external_lex_state = 12}, - [5229] = {.lex_state = 66, .external_lex_state = 12}, - [5230] = {.lex_state = 66, .external_lex_state = 15}, - [5231] = {.lex_state = 66, .external_lex_state = 11}, - [5232] = {.lex_state = 66, .external_lex_state = 11}, - [5233] = {.lex_state = 66, .external_lex_state = 11}, - [5234] = {.lex_state = 66, .external_lex_state = 11}, - [5235] = {.lex_state = 66, .external_lex_state = 11}, - [5236] = {.lex_state = 66, .external_lex_state = 11}, - [5237] = {.lex_state = 66, .external_lex_state = 11}, - [5238] = {.lex_state = 66, .external_lex_state = 11}, - [5239] = {.lex_state = 3, .external_lex_state = 15}, - [5240] = {.lex_state = 66, .external_lex_state = 11}, - [5241] = {.lex_state = 66, .external_lex_state = 15}, - [5242] = {.lex_state = 3, .external_lex_state = 15}, - [5243] = {.lex_state = 66, .external_lex_state = 16}, - [5244] = {.lex_state = 66, .external_lex_state = 11}, - [5245] = {.lex_state = 3, .external_lex_state = 15}, - [5246] = {.lex_state = 66, .external_lex_state = 12}, - [5247] = {.lex_state = 16, .external_lex_state = 19}, - [5248] = {.lex_state = 66, .external_lex_state = 11}, - [5249] = {.lex_state = 66, .external_lex_state = 11}, - [5250] = {.lex_state = 66, .external_lex_state = 14}, - [5251] = {.lex_state = 66, .external_lex_state = 16}, - [5252] = {.lex_state = 66, .external_lex_state = 16}, - [5253] = {.lex_state = 66, .external_lex_state = 14}, - [5254] = {.lex_state = 16, .external_lex_state = 19}, - [5255] = {.lex_state = 66, .external_lex_state = 16}, - [5256] = {.lex_state = 66, .external_lex_state = 11}, - [5257] = {.lex_state = 66, .external_lex_state = 14}, - [5258] = {.lex_state = 66, .external_lex_state = 15}, - [5259] = {.lex_state = 66, .external_lex_state = 11}, - [5260] = {.lex_state = 66, .external_lex_state = 14}, - [5261] = {.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 = 11}, - [5268] = {.lex_state = 66, .external_lex_state = 11}, - [5269] = {.lex_state = 66, .external_lex_state = 14}, - [5270] = {.lex_state = 66, .external_lex_state = 11}, - [5271] = {.lex_state = 66, .external_lex_state = 12}, - [5272] = {.lex_state = 66, .external_lex_state = 11}, - [5273] = {.lex_state = 66, .external_lex_state = 12}, - [5274] = {.lex_state = 66, .external_lex_state = 16}, - [5275] = {.lex_state = 66, .external_lex_state = 15}, - [5276] = {.lex_state = 66, .external_lex_state = 11}, - [5277] = {.lex_state = 66, .external_lex_state = 14}, - [5278] = {.lex_state = 66, .external_lex_state = 14}, - [5279] = {.lex_state = 66, .external_lex_state = 11}, - [5280] = {.lex_state = 66, .external_lex_state = 11}, - [5281] = {.lex_state = 66, .external_lex_state = 12}, - [5282] = {.lex_state = 66, .external_lex_state = 12}, - [5283] = {.lex_state = 66, .external_lex_state = 12}, - [5284] = {.lex_state = 66, .external_lex_state = 11}, - [5285] = {.lex_state = 66, .external_lex_state = 12}, - [5286] = {.lex_state = 66, .external_lex_state = 12}, - [5287] = {.lex_state = 66, .external_lex_state = 13}, - [5288] = {.lex_state = 66, .external_lex_state = 13}, - [5289] = {.lex_state = 66, .external_lex_state = 14}, - [5290] = {.lex_state = 66, .external_lex_state = 16}, - [5291] = {.lex_state = 66, .external_lex_state = 12}, - [5292] = {.lex_state = 66, .external_lex_state = 16}, - [5293] = {.lex_state = 66, .external_lex_state = 12}, - [5294] = {.lex_state = 66, .external_lex_state = 14}, - [5295] = {.lex_state = 66, .external_lex_state = 16}, - [5296] = {.lex_state = 66, .external_lex_state = 12}, - [5297] = {.lex_state = 66, .external_lex_state = 13}, - [5298] = {.lex_state = 66, .external_lex_state = 12}, - [5299] = {.lex_state = 66, .external_lex_state = 12}, - [5300] = {.lex_state = 66, .external_lex_state = 12}, - [5301] = {.lex_state = 66, .external_lex_state = 14}, - [5302] = {.lex_state = 66, .external_lex_state = 12}, - [5303] = {.lex_state = 66, .external_lex_state = 12}, - [5304] = {.lex_state = 66, .external_lex_state = 12}, - [5305] = {.lex_state = 66, .external_lex_state = 11}, - [5306] = {.lex_state = 66, .external_lex_state = 14}, - [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 = 13}, - [5311] = {.lex_state = 66, .external_lex_state = 11}, - [5312] = {.lex_state = 66, .external_lex_state = 13}, - [5313] = {.lex_state = 66, .external_lex_state = 13}, - [5314] = {.lex_state = 66, .external_lex_state = 14}, - [5315] = {.lex_state = 66, .external_lex_state = 15}, - [5316] = {.lex_state = 66, .external_lex_state = 12}, - [5317] = {.lex_state = 66, .external_lex_state = 12}, - [5318] = {.lex_state = 66, .external_lex_state = 15}, - [5319] = {.lex_state = 66, .external_lex_state = 15}, - [5320] = {.lex_state = 66, .external_lex_state = 14}, - [5321] = {.lex_state = 66, .external_lex_state = 12}, - [5322] = {.lex_state = 66, .external_lex_state = 16}, - [5323] = {.lex_state = 66, .external_lex_state = 14}, - [5324] = {.lex_state = 66, .external_lex_state = 11}, - [5325] = {.lex_state = 66, .external_lex_state = 16}, - [5326] = {.lex_state = 66, .external_lex_state = 12}, - [5327] = {.lex_state = 66, .external_lex_state = 16}, - [5328] = {.lex_state = 66, .external_lex_state = 14}, - [5329] = {.lex_state = 66, .external_lex_state = 2}, - [5330] = {.lex_state = 66, .external_lex_state = 14}, - [5331] = {.lex_state = 66, .external_lex_state = 11}, - [5332] = {.lex_state = 66, .external_lex_state = 13}, - [5333] = {.lex_state = 66, .external_lex_state = 12}, - [5334] = {.lex_state = 66, .external_lex_state = 14}, - [5335] = {.lex_state = 66, .external_lex_state = 11}, - [5336] = {.lex_state = 66, .external_lex_state = 12}, - [5337] = {.lex_state = 66, .external_lex_state = 12}, - [5338] = {.lex_state = 66, .external_lex_state = 11}, - [5339] = {.lex_state = 66, .external_lex_state = 11}, - [5340] = {.lex_state = 66, .external_lex_state = 14}, - [5341] = {.lex_state = 66, .external_lex_state = 12}, - [5342] = {.lex_state = 66, .external_lex_state = 12}, - [5343] = {.lex_state = 66, .external_lex_state = 14}, - [5344] = {.lex_state = 66, .external_lex_state = 11}, - [5345] = {.lex_state = 66, .external_lex_state = 14}, - [5346] = {.lex_state = 66, .external_lex_state = 12}, - [5347] = {.lex_state = 66, .external_lex_state = 12}, - [5348] = {.lex_state = 66, .external_lex_state = 12}, - [5349] = {.lex_state = 66, .external_lex_state = 12}, - [5350] = {.lex_state = 66, .external_lex_state = 12}, - [5351] = {.lex_state = 66, .external_lex_state = 16}, - [5352] = {.lex_state = 66, .external_lex_state = 14}, - [5353] = {.lex_state = 66, .external_lex_state = 12}, - [5354] = {.lex_state = 66, .external_lex_state = 14}, - [5355] = {.lex_state = 66, .external_lex_state = 14}, - [5356] = {.lex_state = 66, .external_lex_state = 14}, - [5357] = {.lex_state = 66, .external_lex_state = 14}, - [5358] = {.lex_state = 66, .external_lex_state = 12}, - [5359] = {.lex_state = 66, .external_lex_state = 13}, - [5360] = {.lex_state = 66, .external_lex_state = 12}, - [5361] = {.lex_state = 66, .external_lex_state = 11}, - [5362] = {.lex_state = 66, .external_lex_state = 12}, - [5363] = {.lex_state = 66, .external_lex_state = 12}, - [5364] = {.lex_state = 66, .external_lex_state = 14}, - [5365] = {.lex_state = 66, .external_lex_state = 11}, - [5366] = {.lex_state = 66, .external_lex_state = 2}, - [5367] = {.lex_state = 66, .external_lex_state = 14}, - [5368] = {.lex_state = 66, .external_lex_state = 14}, - [5369] = {.lex_state = 66, .external_lex_state = 14}, - [5370] = {.lex_state = 66, .external_lex_state = 14}, - [5371] = {.lex_state = 66, .external_lex_state = 14}, - [5372] = {.lex_state = 66, .external_lex_state = 12}, - [5373] = {.lex_state = 66, .external_lex_state = 14}, - [5374] = {.lex_state = 66, .external_lex_state = 14}, - [5375] = {.lex_state = 66, .external_lex_state = 14}, - [5376] = {.lex_state = 66, .external_lex_state = 11}, - [5377] = {.lex_state = 66, .external_lex_state = 14}, - [5378] = {.lex_state = 66, .external_lex_state = 14}, - [5379] = {.lex_state = 66, .external_lex_state = 12}, - [5380] = {.lex_state = 66, .external_lex_state = 12}, - [5381] = {.lex_state = 66, .external_lex_state = 12}, - [5382] = {.lex_state = 66, .external_lex_state = 12}, - [5383] = {.lex_state = 66, .external_lex_state = 12}, - [5384] = {.lex_state = 66, .external_lex_state = 12}, - [5385] = {.lex_state = 66, .external_lex_state = 12}, - [5386] = {.lex_state = 66, .external_lex_state = 12}, - [5387] = {.lex_state = 66, .external_lex_state = 11}, - [5388] = {.lex_state = 66, .external_lex_state = 12}, - [5389] = {.lex_state = 66, .external_lex_state = 11}, - [5390] = {.lex_state = 66, .external_lex_state = 11}, - [5391] = {.lex_state = 66, .external_lex_state = 14}, - [5392] = {.lex_state = 66, .external_lex_state = 14}, - [5393] = {.lex_state = 66, .external_lex_state = 14}, - [5394] = {.lex_state = 66, .external_lex_state = 14}, - [5395] = {.lex_state = 66, .external_lex_state = 12}, - [5396] = {.lex_state = 66, .external_lex_state = 12}, - [5397] = {.lex_state = 66, .external_lex_state = 14}, - [5398] = {.lex_state = 66, .external_lex_state = 12}, - [5399] = {.lex_state = 66, .external_lex_state = 14}, - [5400] = {.lex_state = 66, .external_lex_state = 12}, - [5401] = {.lex_state = 66, .external_lex_state = 11}, - [5402] = {.lex_state = 66, .external_lex_state = 14}, - [5403] = {.lex_state = 66, .external_lex_state = 14}, - [5404] = {.lex_state = 66, .external_lex_state = 2}, - [5405] = {.lex_state = 66, .external_lex_state = 14}, - [5406] = {.lex_state = 66, .external_lex_state = 14}, - [5407] = {.lex_state = 66, .external_lex_state = 11}, - [5408] = {.lex_state = 66, .external_lex_state = 11}, - [5409] = {.lex_state = 66, .external_lex_state = 11}, - [5410] = {.lex_state = 66, .external_lex_state = 14}, - [5411] = {.lex_state = 66, .external_lex_state = 13}, - [5412] = {.lex_state = 66, .external_lex_state = 14}, - [5413] = {.lex_state = 66, .external_lex_state = 14}, - [5414] = {.lex_state = 66, .external_lex_state = 2}, - [5415] = {.lex_state = 66, .external_lex_state = 11}, - [5416] = {.lex_state = 66, .external_lex_state = 11}, - [5417] = {.lex_state = 66, .external_lex_state = 12}, - [5418] = {.lex_state = 66, .external_lex_state = 14}, - [5419] = {.lex_state = 66, .external_lex_state = 15}, - [5420] = {.lex_state = 66, .external_lex_state = 11}, - [5421] = {.lex_state = 66, .external_lex_state = 11}, - [5422] = {.lex_state = 66, .external_lex_state = 12}, - [5423] = {.lex_state = 66, .external_lex_state = 11}, - [5424] = {.lex_state = 66, .external_lex_state = 12}, - [5425] = {.lex_state = 66, .external_lex_state = 14}, - [5426] = {.lex_state = 66, .external_lex_state = 14}, - [5427] = {.lex_state = 66, .external_lex_state = 16}, - [5428] = {.lex_state = 66, .external_lex_state = 11}, - [5429] = {.lex_state = 66, .external_lex_state = 14}, - [5430] = {.lex_state = 66, .external_lex_state = 14}, - [5431] = {.lex_state = 66, .external_lex_state = 11}, - [5432] = {.lex_state = 66, .external_lex_state = 12}, - [5433] = {.lex_state = 66, .external_lex_state = 12}, - [5434] = {.lex_state = 66, .external_lex_state = 11}, - [5435] = {.lex_state = 66, .external_lex_state = 12}, - [5436] = {.lex_state = 66, .external_lex_state = 11}, - [5437] = {.lex_state = 66, .external_lex_state = 12}, - [5438] = {.lex_state = 66, .external_lex_state = 14}, - [5439] = {.lex_state = 66, .external_lex_state = 11}, - [5440] = {.lex_state = 66, .external_lex_state = 12}, - [5441] = {.lex_state = 66, .external_lex_state = 11}, - [5442] = {.lex_state = 66, .external_lex_state = 14}, - [5443] = {.lex_state = 66, .external_lex_state = 11}, - [5444] = {.lex_state = 66, .external_lex_state = 11}, - [5445] = {.lex_state = 66, .external_lex_state = 11}, - [5446] = {.lex_state = 66, .external_lex_state = 11}, - [5447] = {.lex_state = 66, .external_lex_state = 12}, - [5448] = {.lex_state = 66, .external_lex_state = 11}, - [5449] = {.lex_state = 66, .external_lex_state = 11}, - [5450] = {.lex_state = 66, .external_lex_state = 16}, - [5451] = {.lex_state = 66, .external_lex_state = 12}, - [5452] = {.lex_state = 66, .external_lex_state = 11}, - [5453] = {.lex_state = 66, .external_lex_state = 12}, - [5454] = {.lex_state = 66, .external_lex_state = 14}, - [5455] = {.lex_state = 66, .external_lex_state = 11}, - [5456] = {.lex_state = 66, .external_lex_state = 14}, - [5457] = {.lex_state = 66, .external_lex_state = 14}, - [5458] = {.lex_state = 66, .external_lex_state = 12}, - [5459] = {.lex_state = 66, .external_lex_state = 14}, - [5460] = {.lex_state = 66, .external_lex_state = 12}, - [5461] = {.lex_state = 66, .external_lex_state = 11}, - [5462] = {.lex_state = 66, .external_lex_state = 12}, - [5463] = {.lex_state = 66, .external_lex_state = 14}, - [5464] = {.lex_state = 66, .external_lex_state = 12}, - [5465] = {.lex_state = 66, .external_lex_state = 12}, - [5466] = {.lex_state = 66, .external_lex_state = 11}, - [5467] = {.lex_state = 66, .external_lex_state = 14}, - [5468] = {.lex_state = 66, .external_lex_state = 14}, - [5469] = {.lex_state = 66, .external_lex_state = 11}, - [5470] = {.lex_state = 66, .external_lex_state = 11}, - [5471] = {.lex_state = 66, .external_lex_state = 13}, - [5472] = {.lex_state = 66, .external_lex_state = 13}, - [5473] = {.lex_state = 66, .external_lex_state = 12}, - [5474] = {.lex_state = 66, .external_lex_state = 12}, - [5475] = {.lex_state = 66, .external_lex_state = 15}, - [5476] = {.lex_state = 66, .external_lex_state = 12}, - [5477] = {.lex_state = 66, .external_lex_state = 16}, - [5478] = {.lex_state = 66, .external_lex_state = 16}, - [5479] = {.lex_state = 66, .external_lex_state = 12}, - [5480] = {.lex_state = 66, .external_lex_state = 12}, - [5481] = {.lex_state = 66, .external_lex_state = 11}, - [5482] = {.lex_state = 66, .external_lex_state = 14}, - [5483] = {.lex_state = 66, .external_lex_state = 12}, - [5484] = {.lex_state = 66, .external_lex_state = 13}, - [5485] = {.lex_state = 66, .external_lex_state = 12}, - [5486] = {.lex_state = 66, .external_lex_state = 13}, - [5487] = {.lex_state = 66, .external_lex_state = 12}, - [5488] = {.lex_state = 66, .external_lex_state = 12}, - [5489] = {.lex_state = 66, .external_lex_state = 12}, - [5490] = {.lex_state = 66, .external_lex_state = 11}, - [5491] = {.lex_state = 66, .external_lex_state = 12}, - [5492] = {.lex_state = 66, .external_lex_state = 14}, - [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 = 12}, - [5497] = {.lex_state = 66, .external_lex_state = 12}, - [5498] = {.lex_state = 66, .external_lex_state = 14}, - [5499] = {.lex_state = 66, .external_lex_state = 11}, - [5500] = {.lex_state = 66, .external_lex_state = 14}, - [5501] = {.lex_state = 66, .external_lex_state = 14}, - [5502] = {.lex_state = 66, .external_lex_state = 12}, - [5503] = {.lex_state = 66, .external_lex_state = 12}, - [5504] = {.lex_state = 66, .external_lex_state = 11}, - [5505] = {.lex_state = 66, .external_lex_state = 12}, - [5506] = {.lex_state = 66, .external_lex_state = 12}, - [5507] = {.lex_state = 66, .external_lex_state = 12}, - [5508] = {.lex_state = 66, .external_lex_state = 14}, - [5509] = {.lex_state = 66, .external_lex_state = 11}, - [5510] = {.lex_state = 66, .external_lex_state = 12}, - [5511] = {.lex_state = 66, .external_lex_state = 12}, - [5512] = {.lex_state = 66, .external_lex_state = 11}, - [5513] = {.lex_state = 66, .external_lex_state = 12}, - [5514] = {.lex_state = 66, .external_lex_state = 11}, - [5515] = {.lex_state = 66, .external_lex_state = 12}, - [5516] = {.lex_state = 66, .external_lex_state = 11}, - [5517] = {.lex_state = 66, .external_lex_state = 16}, - [5518] = {.lex_state = 66, .external_lex_state = 12}, - [5519] = {.lex_state = 66, .external_lex_state = 14}, - [5520] = {.lex_state = 66, .external_lex_state = 12}, - [5521] = {.lex_state = 66, .external_lex_state = 14}, - [5522] = {.lex_state = 66, .external_lex_state = 16}, - [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 = 15}, - [5527] = {.lex_state = 66, .external_lex_state = 15}, - [5528] = {.lex_state = 66, .external_lex_state = 12}, - [5529] = {.lex_state = 66, .external_lex_state = 12}, - [5530] = {.lex_state = 66, .external_lex_state = 12}, - [5531] = {.lex_state = 66, .external_lex_state = 14}, - [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 = 12}, - [5538] = {.lex_state = 66, .external_lex_state = 12}, - [5539] = {.lex_state = 6, .external_lex_state = 12}, - [5540] = {.lex_state = 66, .external_lex_state = 14}, - [5541] = {.lex_state = 66, .external_lex_state = 12}, - [5542] = {.lex_state = 66, .external_lex_state = 12}, - [5543] = {.lex_state = 66, .external_lex_state = 12}, - [5544] = {.lex_state = 66, .external_lex_state = 12}, - [5545] = {.lex_state = 66, .external_lex_state = 16}, - [5546] = {.lex_state = 66, .external_lex_state = 14}, - [5547] = {.lex_state = 66, .external_lex_state = 12}, - [5548] = {.lex_state = 66, .external_lex_state = 15}, - [5549] = {.lex_state = 66, .external_lex_state = 14}, - [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}, - [5554] = {.lex_state = 66, .external_lex_state = 12}, - [5555] = {.lex_state = 66, .external_lex_state = 12}, - [5556] = {.lex_state = 66, .external_lex_state = 14}, - [5557] = {.lex_state = 66, .external_lex_state = 12}, - [5558] = {.lex_state = 66, .external_lex_state = 12}, - [5559] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 15}, - [5564] = {.lex_state = 66, .external_lex_state = 15}, - [5565] = {.lex_state = 66, .external_lex_state = 15}, - [5566] = {.lex_state = 66, .external_lex_state = 12}, - [5567] = {.lex_state = 6, .external_lex_state = 12}, - [5568] = {.lex_state = 66, .external_lex_state = 21}, - [5569] = {.lex_state = 66, .external_lex_state = 12}, - [5570] = {.lex_state = 66, .external_lex_state = 14}, - [5571] = {.lex_state = 66, .external_lex_state = 15}, - [5572] = {.lex_state = 66, .external_lex_state = 15}, - [5573] = {.lex_state = 66, .external_lex_state = 12}, - [5574] = {.lex_state = 66, .external_lex_state = 12}, - [5575] = {.lex_state = 66, .external_lex_state = 12}, - [5576] = {.lex_state = 66, .external_lex_state = 12}, - [5577] = {.lex_state = 66, .external_lex_state = 12}, - [5578] = {.lex_state = 66, .external_lex_state = 12}, - [5579] = {.lex_state = 66, .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 = 12}, - [5584] = {.lex_state = 6, .external_lex_state = 12}, - [5585] = {.lex_state = 66, .external_lex_state = 14}, - [5586] = {.lex_state = 66, .external_lex_state = 12}, - [5587] = {.lex_state = 66, .external_lex_state = 12}, - [5588] = {.lex_state = 66, .external_lex_state = 12}, - [5589] = {.lex_state = 66, .external_lex_state = 16}, - [5590] = {.lex_state = 66, .external_lex_state = 12}, - [5591] = {.lex_state = 66, .external_lex_state = 12}, - [5592] = {.lex_state = 66, .external_lex_state = 15}, - [5593] = {.lex_state = 66, .external_lex_state = 12}, - [5594] = {.lex_state = 66, .external_lex_state = 14}, - [5595] = {.lex_state = 66, .external_lex_state = 12}, - [5596] = {.lex_state = 6, .external_lex_state = 12}, - [5597] = {.lex_state = 66, .external_lex_state = 12}, - [5598] = {.lex_state = 66, .external_lex_state = 12}, - [5599] = {.lex_state = 66, .external_lex_state = 14}, - [5600] = {.lex_state = 66, .external_lex_state = 12}, - [5601] = {.lex_state = 66, .external_lex_state = 16}, - [5602] = {.lex_state = 66, .external_lex_state = 21}, - [5603] = {.lex_state = 66, .external_lex_state = 12}, - [5604] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 14}, - [5609] = {.lex_state = 66, .external_lex_state = 12}, - [5610] = {.lex_state = 66, .external_lex_state = 12}, - [5611] = {.lex_state = 6, .external_lex_state = 12}, - [5612] = {.lex_state = 66, .external_lex_state = 12}, - [5613] = {.lex_state = 66, .external_lex_state = 14}, - [5614] = {.lex_state = 66, .external_lex_state = 12}, - [5615] = {.lex_state = 66, .external_lex_state = 12}, - [5616] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 14}, - [5621] = {.lex_state = 66, .external_lex_state = 12}, - [5622] = {.lex_state = 66, .external_lex_state = 12}, - [5623] = {.lex_state = 6, .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 = 12}, - [5627] = {.lex_state = 66, .external_lex_state = 12}, - [5628] = {.lex_state = 6, .external_lex_state = 12}, - [5629] = {.lex_state = 66, .external_lex_state = 14}, - [5630] = {.lex_state = 66, .external_lex_state = 14}, - [5631] = {.lex_state = 66, .external_lex_state = 12}, - [5632] = {.lex_state = 66, .external_lex_state = 12}, - [5633] = {.lex_state = 66, .external_lex_state = 16}, - [5634] = {.lex_state = 66, .external_lex_state = 14}, - [5635] = {.lex_state = 66, .external_lex_state = 14}, - [5636] = {.lex_state = 66, .external_lex_state = 12}, - [5637] = {.lex_state = 6, .external_lex_state = 12}, - [5638] = {.lex_state = 66, .external_lex_state = 12}, - [5639] = {.lex_state = 66, .external_lex_state = 14}, - [5640] = {.lex_state = 66, .external_lex_state = 12}, - [5641] = {.lex_state = 66, .external_lex_state = 12}, - [5642] = {.lex_state = 66, .external_lex_state = 12}, - [5643] = {.lex_state = 66, .external_lex_state = 14}, - [5644] = {.lex_state = 66, .external_lex_state = 12}, - [5645] = {.lex_state = 66, .external_lex_state = 21}, - [5646] = {.lex_state = 66, .external_lex_state = 14}, - [5647] = {.lex_state = 66, .external_lex_state = 12}, - [5648] = {.lex_state = 66, .external_lex_state = 15}, - [5649] = {.lex_state = 66, .external_lex_state = 12}, - [5650] = {.lex_state = 66, .external_lex_state = 11}, - [5651] = {.lex_state = 66, .external_lex_state = 15}, - [5652] = {.lex_state = 66, .external_lex_state = 12}, - [5653] = {.lex_state = 66, .external_lex_state = 15}, - [5654] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 16}, - [5659] = {.lex_state = 66, .external_lex_state = 12}, - [5660] = {.lex_state = 66, .external_lex_state = 16}, - [5661] = {.lex_state = 66, .external_lex_state = 12}, - [5662] = {.lex_state = 66, .external_lex_state = 13}, - [5663] = {.lex_state = 66, .external_lex_state = 12}, - [5664] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 14}, - [5669] = {.lex_state = 66, .external_lex_state = 15}, - [5670] = {.lex_state = 66, .external_lex_state = 12}, - [5671] = {.lex_state = 66, .external_lex_state = 14}, - [5672] = {.lex_state = 66, .external_lex_state = 14}, - [5673] = {.lex_state = 66, .external_lex_state = 16}, - [5674] = {.lex_state = 66, .external_lex_state = 12}, - [5675] = {.lex_state = 66, .external_lex_state = 16}, - [5676] = {.lex_state = 66, .external_lex_state = 16}, - [5677] = {.lex_state = 66, .external_lex_state = 14}, - [5678] = {.lex_state = 66, .external_lex_state = 12}, - [5679] = {.lex_state = 66, .external_lex_state = 12}, - [5680] = {.lex_state = 66, .external_lex_state = 15}, - [5681] = {.lex_state = 66, .external_lex_state = 15}, - [5682] = {.lex_state = 66, .external_lex_state = 13}, - [5683] = {.lex_state = 66, .external_lex_state = 14}, - [5684] = {.lex_state = 66, .external_lex_state = 15}, - [5685] = {.lex_state = 66, .external_lex_state = 12}, - [5686] = {.lex_state = 66, .external_lex_state = 12}, - [5687] = {.lex_state = 66, .external_lex_state = 12}, - [5688] = {.lex_state = 66, .external_lex_state = 12}, - [5689] = {.lex_state = 66, .external_lex_state = 12}, - [5690] = {.lex_state = 66, .external_lex_state = 16}, - [5691] = {.lex_state = 66, .external_lex_state = 12}, - [5692] = {.lex_state = 66, .external_lex_state = 14}, - [5693] = {.lex_state = 66, .external_lex_state = 12}, - [5694] = {.lex_state = 66, .external_lex_state = 12}, - [5695] = {.lex_state = 66, .external_lex_state = 12}, - [5696] = {.lex_state = 66, .external_lex_state = 12}, - [5697] = {.lex_state = 66, .external_lex_state = 14}, - [5698] = {.lex_state = 66, .external_lex_state = 12}, - [5699] = {.lex_state = 66, .external_lex_state = 12}, - [5700] = {.lex_state = 66, .external_lex_state = 21}, - [5701] = {.lex_state = 66, .external_lex_state = 12}, - [5702] = {.lex_state = 66, .external_lex_state = 16}, - [5703] = {.lex_state = 66, .external_lex_state = 12}, - [5704] = {.lex_state = 66, .external_lex_state = 12}, - [5705] = {.lex_state = 66, .external_lex_state = 12}, - [5706] = {.lex_state = 66, .external_lex_state = 12}, - [5707] = {.lex_state = 66, .external_lex_state = 14}, - [5708] = {.lex_state = 6, .external_lex_state = 12}, - [5709] = {.lex_state = 6, .external_lex_state = 12}, - [5710] = {.lex_state = 66, .external_lex_state = 16}, - [5711] = {.lex_state = 66, .external_lex_state = 12}, - [5712] = {.lex_state = 66, .external_lex_state = 14}, - [5713] = {.lex_state = 66, .external_lex_state = 12}, - [5714] = {.lex_state = 66, .external_lex_state = 14}, - [5715] = {.lex_state = 66, .external_lex_state = 12}, - [5716] = {.lex_state = 66, .external_lex_state = 12}, - [5717] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 15}, - [5722] = {.lex_state = 6, .external_lex_state = 12}, - [5723] = {.lex_state = 66, .external_lex_state = 12}, - [5724] = {.lex_state = 66, .external_lex_state = 12}, - [5725] = {.lex_state = 66, .external_lex_state = 12}, - [5726] = {.lex_state = 66, .external_lex_state = 14}, - [5727] = {.lex_state = 66, .external_lex_state = 12}, - [5728] = {.lex_state = 66, .external_lex_state = 12}, - [5729] = {.lex_state = 66, .external_lex_state = 12}, - [5730] = {.lex_state = 66, .external_lex_state = 13}, - [5731] = {.lex_state = 66, .external_lex_state = 13}, - [5732] = {.lex_state = 66, .external_lex_state = 12}, - [5733] = {.lex_state = 66, .external_lex_state = 21}, - [5734] = {.lex_state = 66, .external_lex_state = 14}, - [5735] = {.lex_state = 66, .external_lex_state = 12}, - [5736] = {.lex_state = 66, .external_lex_state = 12}, - [5737] = {.lex_state = 66, .external_lex_state = 12}, - [5738] = {.lex_state = 66, .external_lex_state = 12}, - [5739] = {.lex_state = 66, .external_lex_state = 12}, - [5740] = {.lex_state = 66, .external_lex_state = 15}, - [5741] = {.lex_state = 66, .external_lex_state = 14}, - [5742] = {.lex_state = 66, .external_lex_state = 14}, - [5743] = {.lex_state = 66, .external_lex_state = 15}, - [5744] = {.lex_state = 66, .external_lex_state = 12}, - [5745] = {.lex_state = 66, .external_lex_state = 12}, - [5746] = {.lex_state = 66, .external_lex_state = 21}, - [5747] = {.lex_state = 66, .external_lex_state = 12}, - [5748] = {.lex_state = 66, .external_lex_state = 21}, - [5749] = {.lex_state = 66, .external_lex_state = 12}, - [5750] = {.lex_state = 66, .external_lex_state = 21}, - [5751] = {.lex_state = 6, .external_lex_state = 12}, - [5752] = {.lex_state = 66, .external_lex_state = 16}, - [5753] = {.lex_state = 66, .external_lex_state = 12}, - [5754] = {.lex_state = 66, .external_lex_state = 12}, - [5755] = {.lex_state = 6, .external_lex_state = 12}, - [5756] = {.lex_state = 66, .external_lex_state = 15}, - [5757] = {.lex_state = 66, .external_lex_state = 16}, - [5758] = {.lex_state = 66, .external_lex_state = 12}, - [5759] = {.lex_state = 66, .external_lex_state = 21}, - [5760] = {.lex_state = 66, .external_lex_state = 21}, - [5761] = {.lex_state = 66, .external_lex_state = 12}, - [5762] = {.lex_state = 66, .external_lex_state = 15}, - [5763] = {.lex_state = 66, .external_lex_state = 14}, - [5764] = {.lex_state = 66, .external_lex_state = 12}, - [5765] = {.lex_state = 66, .external_lex_state = 12}, - [5766] = {.lex_state = 66, .external_lex_state = 12}, - [5767] = {.lex_state = 66, .external_lex_state = 16}, - [5768] = {.lex_state = 66, .external_lex_state = 16}, - [5769] = {.lex_state = 66, .external_lex_state = 15}, - [5770] = {.lex_state = 66, .external_lex_state = 21}, - [5771] = {.lex_state = 66, .external_lex_state = 16}, - [5772] = {.lex_state = 4, .external_lex_state = 12}, - [5773] = {.lex_state = 66, .external_lex_state = 12}, - [5774] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 15}, - [5780] = {.lex_state = 66, .external_lex_state = 16}, - [5781] = {.lex_state = 66, .external_lex_state = 12}, - [5782] = {.lex_state = 66, .external_lex_state = 12}, - [5783] = {.lex_state = 66, .external_lex_state = 14}, - [5784] = {.lex_state = 66, .external_lex_state = 12}, - [5785] = {.lex_state = 66, .external_lex_state = 15}, - [5786] = {.lex_state = 66, .external_lex_state = 14}, - [5787] = {.lex_state = 66, .external_lex_state = 12}, - [5788] = {.lex_state = 66, .external_lex_state = 14}, - [5789] = {.lex_state = 66, .external_lex_state = 14}, - [5790] = {.lex_state = 66, .external_lex_state = 16}, - [5791] = {.lex_state = 66, .external_lex_state = 14}, - [5792] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 15}, - [5797] = {.lex_state = 66, .external_lex_state = 15}, - [5798] = {.lex_state = 66, .external_lex_state = 15}, - [5799] = {.lex_state = 66, .external_lex_state = 15}, - [5800] = {.lex_state = 66, .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 = 15}, - [5804] = {.lex_state = 66, .external_lex_state = 12}, - [5805] = {.lex_state = 66, .external_lex_state = 14}, - [5806] = {.lex_state = 66, .external_lex_state = 12}, - [5807] = {.lex_state = 6, .external_lex_state = 12}, - [5808] = {.lex_state = 66, .external_lex_state = 12}, - [5809] = {.lex_state = 66, .external_lex_state = 12}, - [5810] = {.lex_state = 66, .external_lex_state = 14}, - [5811] = {.lex_state = 66, .external_lex_state = 16}, - [5812] = {.lex_state = 66, .external_lex_state = 21}, - [5813] = {.lex_state = 6, .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 = 6, .external_lex_state = 12}, - [5818] = {.lex_state = 66, .external_lex_state = 12}, - [5819] = {.lex_state = 66, .external_lex_state = 13}, - [5820] = {.lex_state = 66, .external_lex_state = 14}, - [5821] = {.lex_state = 66, .external_lex_state = 12}, - [5822] = {.lex_state = 66, .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 = 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 = 16}, - [5831] = {.lex_state = 66, .external_lex_state = 12}, - [5832] = {.lex_state = 66, .external_lex_state = 14}, - [5833] = {.lex_state = 66, .external_lex_state = 12}, - [5834] = {.lex_state = 66, .external_lex_state = 12}, - [5835] = {.lex_state = 66, .external_lex_state = 12}, - [5836] = {.lex_state = 66, .external_lex_state = 12}, - [5837] = {.lex_state = 66, .external_lex_state = 14}, - [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 = 12}, - [5842] = {.lex_state = 66, .external_lex_state = 13}, - [5843] = {.lex_state = 66, .external_lex_state = 16}, - [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 = 15}, - [5850] = {.lex_state = 66, .external_lex_state = 12}, - [5851] = {.lex_state = 66, .external_lex_state = 12}, - [5852] = {.lex_state = 66, .external_lex_state = 12}, - [5853] = {.lex_state = 66, .external_lex_state = 12}, - [5854] = {.lex_state = 66, .external_lex_state = 12}, - [5855] = {.lex_state = 66, .external_lex_state = 12}, - [5856] = {.lex_state = 66, .external_lex_state = 12}, - [5857] = {.lex_state = 66, .external_lex_state = 12}, - [5858] = {.lex_state = 66, .external_lex_state = 15}, - [5859] = {.lex_state = 66, .external_lex_state = 12}, - [5860] = {.lex_state = 66, .external_lex_state = 12}, - [5861] = {.lex_state = 66, .external_lex_state = 12}, - [5862] = {.lex_state = 66, .external_lex_state = 12}, - [5863] = {.lex_state = 6, .external_lex_state = 12}, - [5864] = {.lex_state = 66, .external_lex_state = 12}, - [5865] = {.lex_state = 66, .external_lex_state = 15}, - [5866] = {.lex_state = 66, .external_lex_state = 12}, - [5867] = {.lex_state = 66, .external_lex_state = 14}, - [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 = 16}, - [5872] = {.lex_state = 66, .external_lex_state = 14}, - [5873] = {.lex_state = 66, .external_lex_state = 12}, - [5874] = {.lex_state = 66, .external_lex_state = 12}, - [5875] = {.lex_state = 66, .external_lex_state = 12}, - [5876] = {.lex_state = 66, .external_lex_state = 15}, - [5877] = {.lex_state = 66, .external_lex_state = 14}, - [5878] = {.lex_state = 6, .external_lex_state = 12}, - [5879] = {.lex_state = 66, .external_lex_state = 12}, - [5880] = {.lex_state = 66, .external_lex_state = 12}, - [5881] = {.lex_state = 66, .external_lex_state = 12}, - [5882] = {.lex_state = 66, .external_lex_state = 21}, + [911] = {.lex_state = 9, .external_lex_state = 7}, + [912] = {.lex_state = 8, .external_lex_state = 8}, + [913] = {.lex_state = 156, .external_lex_state = 2}, + [914] = {.lex_state = 156, .external_lex_state = 3}, + [915] = {.lex_state = 156, .external_lex_state = 3}, + [916] = {.lex_state = 156, .external_lex_state = 3}, + [917] = {.lex_state = 156, .external_lex_state = 2}, + [918] = {.lex_state = 156, .external_lex_state = 3}, + [919] = {.lex_state = 156, .external_lex_state = 3}, + [920] = {.lex_state = 156, .external_lex_state = 2}, + [921] = {.lex_state = 8, .external_lex_state = 8}, + [922] = {.lex_state = 8, .external_lex_state = 8}, + [923] = {.lex_state = 8, .external_lex_state = 8}, + [924] = {.lex_state = 8, .external_lex_state = 8}, + [925] = {.lex_state = 8, .external_lex_state = 8}, + [926] = {.lex_state = 156, .external_lex_state = 2}, + [927] = {.lex_state = 8, .external_lex_state = 8}, + [928] = {.lex_state = 9, .external_lex_state = 2}, + [929] = {.lex_state = 8, .external_lex_state = 8}, + [930] = {.lex_state = 8, .external_lex_state = 8}, + [931] = {.lex_state = 8, .external_lex_state = 8}, + [932] = {.lex_state = 8, .external_lex_state = 8}, + [933] = {.lex_state = 8, .external_lex_state = 8}, + [934] = {.lex_state = 158, .external_lex_state = 2}, + [935] = {.lex_state = 5, .external_lex_state = 5}, + [936] = {.lex_state = 5, .external_lex_state = 5}, + [937] = {.lex_state = 8, .external_lex_state = 8}, + [938] = {.lex_state = 8, .external_lex_state = 8}, + [939] = {.lex_state = 8, .external_lex_state = 8}, + [940] = {.lex_state = 156, .external_lex_state = 2}, + [941] = {.lex_state = 158, .external_lex_state = 3}, + [942] = {.lex_state = 156, .external_lex_state = 3}, + [943] = {.lex_state = 156, .external_lex_state = 2}, + [944] = {.lex_state = 8, .external_lex_state = 8}, + [945] = {.lex_state = 8, .external_lex_state = 8}, + [946] = {.lex_state = 8, .external_lex_state = 8}, + [947] = {.lex_state = 8, .external_lex_state = 8}, + [948] = {.lex_state = 8, .external_lex_state = 8}, + [949] = {.lex_state = 8, .external_lex_state = 8}, + [950] = {.lex_state = 8, .external_lex_state = 8}, + [951] = {.lex_state = 8, .external_lex_state = 8}, + [952] = {.lex_state = 8, .external_lex_state = 8}, + [953] = {.lex_state = 8, .external_lex_state = 8}, + [954] = {.lex_state = 8, .external_lex_state = 8}, + [955] = {.lex_state = 8, .external_lex_state = 8}, + [956] = {.lex_state = 8, .external_lex_state = 8}, + [957] = {.lex_state = 8, .external_lex_state = 8}, + [958] = {.lex_state = 8, .external_lex_state = 8}, + [959] = {.lex_state = 8, .external_lex_state = 8}, + [960] = {.lex_state = 8, .external_lex_state = 8}, + [961] = {.lex_state = 8, .external_lex_state = 8}, + [962] = {.lex_state = 8, .external_lex_state = 8}, + [963] = {.lex_state = 8, .external_lex_state = 8}, + [964] = {.lex_state = 8, .external_lex_state = 8}, + [965] = {.lex_state = 8, .external_lex_state = 8}, + [966] = {.lex_state = 8, .external_lex_state = 8}, + [967] = {.lex_state = 8, .external_lex_state = 8}, + [968] = {.lex_state = 8, .external_lex_state = 5}, + [969] = {.lex_state = 157, .external_lex_state = 2}, + [970] = {.lex_state = 159, .external_lex_state = 9}, + [971] = {.lex_state = 159, .external_lex_state = 9}, + [972] = {.lex_state = 157, .external_lex_state = 2}, + [973] = {.lex_state = 8, .external_lex_state = 5}, + [974] = {.lex_state = 8, .external_lex_state = 2}, + [975] = {.lex_state = 159, .external_lex_state = 9}, + [976] = {.lex_state = 8, .external_lex_state = 2}, + [977] = {.lex_state = 8, .external_lex_state = 6}, + [978] = {.lex_state = 159, .external_lex_state = 9}, + [979] = {.lex_state = 8, .external_lex_state = 2}, + [980] = {.lex_state = 8, .external_lex_state = 2}, + [981] = {.lex_state = 8, .external_lex_state = 6}, + [982] = {.lex_state = 8, .external_lex_state = 2}, + [983] = {.lex_state = 8, .external_lex_state = 5}, + [984] = {.lex_state = 8, .external_lex_state = 2}, + [985] = {.lex_state = 8, .external_lex_state = 6}, + [986] = {.lex_state = 159, .external_lex_state = 9}, + [987] = {.lex_state = 8, .external_lex_state = 2}, + [988] = {.lex_state = 157, .external_lex_state = 2}, + [989] = {.lex_state = 159, .external_lex_state = 9}, + [990] = {.lex_state = 8, .external_lex_state = 2}, + [991] = {.lex_state = 8, .external_lex_state = 5}, + [992] = {.lex_state = 8, .external_lex_state = 5}, + [993] = {.lex_state = 8, .external_lex_state = 5}, + [994] = {.lex_state = 8, .external_lex_state = 2}, + [995] = {.lex_state = 8, .external_lex_state = 8}, + [996] = {.lex_state = 8, .external_lex_state = 2}, + [997] = {.lex_state = 8, .external_lex_state = 2}, + [998] = {.lex_state = 8, .external_lex_state = 5}, + [999] = {.lex_state = 159, .external_lex_state = 9}, + [1000] = {.lex_state = 157, .external_lex_state = 2}, + [1001] = {.lex_state = 8, .external_lex_state = 5}, + [1002] = {.lex_state = 8, .external_lex_state = 8}, + [1003] = {.lex_state = 8, .external_lex_state = 2}, + [1004] = {.lex_state = 8, .external_lex_state = 5}, + [1005] = {.lex_state = 159, .external_lex_state = 9}, + [1006] = {.lex_state = 157, .external_lex_state = 2}, + [1007] = {.lex_state = 23, .external_lex_state = 7}, + [1008] = {.lex_state = 8, .external_lex_state = 8}, + [1009] = {.lex_state = 8, .external_lex_state = 2}, + [1010] = {.lex_state = 8, .external_lex_state = 2}, + [1011] = {.lex_state = 8, .external_lex_state = 8}, + [1012] = {.lex_state = 157, .external_lex_state = 2}, + [1013] = {.lex_state = 157, .external_lex_state = 2}, + [1014] = {.lex_state = 8, .external_lex_state = 2}, + [1015] = {.lex_state = 8, .external_lex_state = 2}, + [1016] = {.lex_state = 8, .external_lex_state = 6}, + [1017] = {.lex_state = 8, .external_lex_state = 2}, + [1018] = {.lex_state = 8, .external_lex_state = 2}, + [1019] = {.lex_state = 157, .external_lex_state = 2}, + [1020] = {.lex_state = 157, .external_lex_state = 2}, + [1021] = {.lex_state = 159, .external_lex_state = 9}, + [1022] = {.lex_state = 159, .external_lex_state = 9}, + [1023] = {.lex_state = 159, .external_lex_state = 10}, + [1024] = {.lex_state = 159, .external_lex_state = 10}, + [1025] = {.lex_state = 159, .external_lex_state = 10}, + [1026] = {.lex_state = 157, .external_lex_state = 3}, + [1027] = {.lex_state = 159, .external_lex_state = 10}, + [1028] = {.lex_state = 157, .external_lex_state = 3}, + [1029] = {.lex_state = 159, .external_lex_state = 9}, + [1030] = {.lex_state = 159, .external_lex_state = 10}, + [1031] = {.lex_state = 159, .external_lex_state = 10}, + [1032] = {.lex_state = 159, .external_lex_state = 10}, + [1033] = {.lex_state = 159, .external_lex_state = 10}, + [1034] = {.lex_state = 159, .external_lex_state = 10}, + [1035] = {.lex_state = 157, .external_lex_state = 3}, + [1036] = {.lex_state = 159, .external_lex_state = 10}, + [1037] = {.lex_state = 8, .external_lex_state = 8}, + [1038] = {.lex_state = 157, .external_lex_state = 3}, + [1039] = {.lex_state = 159, .external_lex_state = 10}, + [1040] = {.lex_state = 157, .external_lex_state = 3}, + [1041] = {.lex_state = 157, .external_lex_state = 3}, + [1042] = {.lex_state = 157, .external_lex_state = 3}, + [1043] = {.lex_state = 157, .external_lex_state = 3}, + [1044] = {.lex_state = 157, .external_lex_state = 3}, + [1045] = {.lex_state = 8, .external_lex_state = 2}, + [1046] = {.lex_state = 23, .external_lex_state = 7}, + [1047] = {.lex_state = 8, .external_lex_state = 2}, + [1048] = {.lex_state = 8, .external_lex_state = 8}, + [1049] = {.lex_state = 8, .external_lex_state = 2}, + [1050] = {.lex_state = 8, .external_lex_state = 2}, + [1051] = {.lex_state = 24, .external_lex_state = 2}, + [1052] = {.lex_state = 8, .external_lex_state = 2}, + [1053] = {.lex_state = 8, .external_lex_state = 2}, + [1054] = {.lex_state = 8, .external_lex_state = 2}, + [1055] = {.lex_state = 8, .external_lex_state = 2}, + [1056] = {.lex_state = 8, .external_lex_state = 2}, + [1057] = {.lex_state = 8, .external_lex_state = 2}, + [1058] = {.lex_state = 8, .external_lex_state = 2}, + [1059] = {.lex_state = 8, .external_lex_state = 2}, + [1060] = {.lex_state = 8, .external_lex_state = 2}, + [1061] = {.lex_state = 8, .external_lex_state = 2}, + [1062] = {.lex_state = 8, .external_lex_state = 2}, + [1063] = {.lex_state = 24, .external_lex_state = 2}, + [1064] = {.lex_state = 8, .external_lex_state = 8}, + [1065] = {.lex_state = 8, .external_lex_state = 7}, + [1066] = {.lex_state = 8, .external_lex_state = 7}, + [1067] = {.lex_state = 8, .external_lex_state = 2}, + [1068] = {.lex_state = 158, .external_lex_state = 3}, + [1069] = {.lex_state = 158, .external_lex_state = 2}, + [1070] = {.lex_state = 156, .external_lex_state = 3}, + [1071] = {.lex_state = 156, .external_lex_state = 3}, + [1072] = {.lex_state = 158, .external_lex_state = 3}, + [1073] = {.lex_state = 8, .external_lex_state = 2}, + [1074] = {.lex_state = 8, .external_lex_state = 2}, + [1075] = {.lex_state = 158, .external_lex_state = 3}, + [1076] = {.lex_state = 158, .external_lex_state = 3}, + [1077] = {.lex_state = 158, .external_lex_state = 3}, + [1078] = {.lex_state = 156, .external_lex_state = 3}, + [1079] = {.lex_state = 158, .external_lex_state = 2}, + [1080] = {.lex_state = 156, .external_lex_state = 3}, + [1081] = {.lex_state = 158, .external_lex_state = 3}, + [1082] = {.lex_state = 25, .external_lex_state = 6}, + [1083] = {.lex_state = 156, .external_lex_state = 2}, + [1084] = {.lex_state = 158, .external_lex_state = 3}, + [1085] = {.lex_state = 156, .external_lex_state = 3}, + [1086] = {.lex_state = 158, .external_lex_state = 3}, + [1087] = {.lex_state = 156, .external_lex_state = 2}, + [1088] = {.lex_state = 158, .external_lex_state = 3}, + [1089] = {.lex_state = 158, .external_lex_state = 3}, + [1090] = {.lex_state = 158, .external_lex_state = 3}, + [1091] = {.lex_state = 8, .external_lex_state = 2}, + [1092] = {.lex_state = 156, .external_lex_state = 3}, + [1093] = {.lex_state = 156, .external_lex_state = 3}, + [1094] = {.lex_state = 156, .external_lex_state = 3}, + [1095] = {.lex_state = 158, .external_lex_state = 3}, + [1096] = {.lex_state = 158, .external_lex_state = 3}, + [1097] = {.lex_state = 158, .external_lex_state = 3}, + [1098] = {.lex_state = 158, .external_lex_state = 3}, + [1099] = {.lex_state = 158, .external_lex_state = 2}, + [1100] = {.lex_state = 158, .external_lex_state = 2}, + [1101] = {.lex_state = 158, .external_lex_state = 2}, + [1102] = {.lex_state = 156, .external_lex_state = 3}, + [1103] = {.lex_state = 156, .external_lex_state = 3}, + [1104] = {.lex_state = 156, .external_lex_state = 3}, + [1105] = {.lex_state = 158, .external_lex_state = 3}, + [1106] = {.lex_state = 158, .external_lex_state = 3}, + [1107] = {.lex_state = 158, .external_lex_state = 3}, + [1108] = {.lex_state = 158, .external_lex_state = 3}, + [1109] = {.lex_state = 8, .external_lex_state = 2}, + [1110] = {.lex_state = 8, .external_lex_state = 2}, + [1111] = {.lex_state = 156, .external_lex_state = 3}, + [1112] = {.lex_state = 158, .external_lex_state = 3}, + [1113] = {.lex_state = 158, .external_lex_state = 2}, + [1114] = {.lex_state = 156, .external_lex_state = 2}, + [1115] = {.lex_state = 156, .external_lex_state = 3}, + [1116] = {.lex_state = 158, .external_lex_state = 2}, + [1117] = {.lex_state = 158, .external_lex_state = 3}, + [1118] = {.lex_state = 158, .external_lex_state = 3}, + [1119] = {.lex_state = 8, .external_lex_state = 2}, + [1120] = {.lex_state = 8, .external_lex_state = 2}, + [1121] = {.lex_state = 158, .external_lex_state = 3}, + [1122] = {.lex_state = 158, .external_lex_state = 2}, + [1123] = {.lex_state = 156, .external_lex_state = 2}, + [1124] = {.lex_state = 158, .external_lex_state = 2}, + [1125] = {.lex_state = 158, .external_lex_state = 2}, + [1126] = {.lex_state = 156, .external_lex_state = 2}, + [1127] = {.lex_state = 156, .external_lex_state = 2}, + [1128] = {.lex_state = 158, .external_lex_state = 3}, + [1129] = {.lex_state = 158, .external_lex_state = 2}, + [1130] = {.lex_state = 8, .external_lex_state = 2}, + [1131] = {.lex_state = 158, .external_lex_state = 2}, + [1132] = {.lex_state = 8, .external_lex_state = 2}, + [1133] = {.lex_state = 156, .external_lex_state = 2}, + [1134] = {.lex_state = 158, .external_lex_state = 2}, + [1135] = {.lex_state = 158, .external_lex_state = 2}, + [1136] = {.lex_state = 25, .external_lex_state = 2}, + [1137] = {.lex_state = 8, .external_lex_state = 2}, + [1138] = {.lex_state = 156, .external_lex_state = 2}, + [1139] = {.lex_state = 25, .external_lex_state = 6}, + [1140] = {.lex_state = 8, .external_lex_state = 2}, + [1141] = {.lex_state = 8, .external_lex_state = 2}, + [1142] = {.lex_state = 158, .external_lex_state = 2}, + [1143] = {.lex_state = 158, .external_lex_state = 2}, + [1144] = {.lex_state = 158, .external_lex_state = 2}, + [1145] = {.lex_state = 158, .external_lex_state = 2}, + [1146] = {.lex_state = 156, .external_lex_state = 2}, + [1147] = {.lex_state = 156, .external_lex_state = 2}, + [1148] = {.lex_state = 158, .external_lex_state = 2}, + [1149] = {.lex_state = 156, .external_lex_state = 2}, + [1150] = {.lex_state = 8, .external_lex_state = 2}, + [1151] = {.lex_state = 8, .external_lex_state = 2}, + [1152] = {.lex_state = 156, .external_lex_state = 2}, + [1153] = {.lex_state = 156, .external_lex_state = 2}, + [1154] = {.lex_state = 156, .external_lex_state = 2}, + [1155] = {.lex_state = 158, .external_lex_state = 2}, + [1156] = {.lex_state = 158, .external_lex_state = 2}, + [1157] = {.lex_state = 8, .external_lex_state = 2}, + [1158] = {.lex_state = 158, .external_lex_state = 2}, + [1159] = {.lex_state = 8, .external_lex_state = 2}, + [1160] = {.lex_state = 8, .external_lex_state = 2}, + [1161] = {.lex_state = 156, .external_lex_state = 3}, + [1162] = {.lex_state = 8, .external_lex_state = 2}, + [1163] = {.lex_state = 25, .external_lex_state = 2}, + [1164] = {.lex_state = 158, .external_lex_state = 2}, + [1165] = {.lex_state = 8, .external_lex_state = 2}, + [1166] = {.lex_state = 8, .external_lex_state = 2}, + [1167] = {.lex_state = 158, .external_lex_state = 2}, + [1168] = {.lex_state = 158, .external_lex_state = 2}, + [1169] = {.lex_state = 8, .external_lex_state = 2}, + [1170] = {.lex_state = 8, .external_lex_state = 2}, + [1171] = {.lex_state = 158, .external_lex_state = 3}, + [1172] = {.lex_state = 8, .external_lex_state = 2}, + [1173] = {.lex_state = 8, .external_lex_state = 2}, + [1174] = {.lex_state = 158, .external_lex_state = 3}, + [1175] = {.lex_state = 156, .external_lex_state = 2}, + [1176] = {.lex_state = 158, .external_lex_state = 2}, + [1177] = {.lex_state = 156, .external_lex_state = 3}, + [1178] = {.lex_state = 156, .external_lex_state = 3}, + [1179] = {.lex_state = 8, .external_lex_state = 2}, + [1180] = {.lex_state = 156, .external_lex_state = 2}, + [1181] = {.lex_state = 156, .external_lex_state = 2}, + [1182] = {.lex_state = 8, .external_lex_state = 2}, + [1183] = {.lex_state = 156, .external_lex_state = 2}, + [1184] = {.lex_state = 156, .external_lex_state = 2}, + [1185] = {.lex_state = 156, .external_lex_state = 3}, + [1186] = {.lex_state = 156, .external_lex_state = 2}, + [1187] = {.lex_state = 8, .external_lex_state = 2}, + [1188] = {.lex_state = 156, .external_lex_state = 2}, + [1189] = {.lex_state = 156, .external_lex_state = 2}, + [1190] = {.lex_state = 156, .external_lex_state = 2}, + [1191] = {.lex_state = 156, .external_lex_state = 2}, + [1192] = {.lex_state = 8, .external_lex_state = 2}, + [1193] = {.lex_state = 156, .external_lex_state = 2}, + [1194] = {.lex_state = 156, .external_lex_state = 2}, + [1195] = {.lex_state = 156, .external_lex_state = 2}, + [1196] = {.lex_state = 156, .external_lex_state = 3}, + [1197] = {.lex_state = 8, .external_lex_state = 2}, + [1198] = {.lex_state = 156, .external_lex_state = 2}, + [1199] = {.lex_state = 156, .external_lex_state = 2}, + [1200] = {.lex_state = 8, .external_lex_state = 2}, + [1201] = {.lex_state = 156, .external_lex_state = 2}, + [1202] = {.lex_state = 156, .external_lex_state = 2}, + [1203] = {.lex_state = 156, .external_lex_state = 2}, + [1204] = {.lex_state = 156, .external_lex_state = 2}, + [1205] = {.lex_state = 156, .external_lex_state = 2}, + [1206] = {.lex_state = 8, .external_lex_state = 2}, + [1207] = {.lex_state = 8, .external_lex_state = 2}, + [1208] = {.lex_state = 156, .external_lex_state = 2}, + [1209] = {.lex_state = 156, .external_lex_state = 2}, + [1210] = {.lex_state = 156, .external_lex_state = 2}, + [1211] = {.lex_state = 8, .external_lex_state = 2}, + [1212] = {.lex_state = 8, .external_lex_state = 2}, + [1213] = {.lex_state = 156, .external_lex_state = 2}, + [1214] = {.lex_state = 8, .external_lex_state = 2}, + [1215] = {.lex_state = 156, .external_lex_state = 3}, + [1216] = {.lex_state = 156, .external_lex_state = 2}, + [1217] = {.lex_state = 8, .external_lex_state = 2}, + [1218] = {.lex_state = 8, .external_lex_state = 2}, + [1219] = {.lex_state = 156, .external_lex_state = 2}, + [1220] = {.lex_state = 8, .external_lex_state = 2}, + [1221] = {.lex_state = 156, .external_lex_state = 2}, + [1222] = {.lex_state = 8, .external_lex_state = 2}, + [1223] = {.lex_state = 156, .external_lex_state = 3}, + [1224] = {.lex_state = 156, .external_lex_state = 2}, + [1225] = {.lex_state = 156, .external_lex_state = 2}, + [1226] = {.lex_state = 8, .external_lex_state = 2}, + [1227] = {.lex_state = 156, .external_lex_state = 2}, + [1228] = {.lex_state = 156, .external_lex_state = 2}, + [1229] = {.lex_state = 156, .external_lex_state = 2}, + [1230] = {.lex_state = 156, .external_lex_state = 2}, + [1231] = {.lex_state = 8, .external_lex_state = 2}, + [1232] = {.lex_state = 156, .external_lex_state = 2}, + [1233] = {.lex_state = 156, .external_lex_state = 2}, + [1234] = {.lex_state = 156, .external_lex_state = 3}, + [1235] = {.lex_state = 156, .external_lex_state = 2}, + [1236] = {.lex_state = 8, .external_lex_state = 2}, + [1237] = {.lex_state = 8, .external_lex_state = 2}, + [1238] = {.lex_state = 8, .external_lex_state = 2}, + [1239] = {.lex_state = 156, .external_lex_state = 2}, + [1240] = {.lex_state = 156, .external_lex_state = 3}, + [1241] = {.lex_state = 8, .external_lex_state = 2}, + [1242] = {.lex_state = 8, .external_lex_state = 2}, + [1243] = {.lex_state = 8, .external_lex_state = 2}, + [1244] = {.lex_state = 8, .external_lex_state = 2}, + [1245] = {.lex_state = 8, .external_lex_state = 2}, + [1246] = {.lex_state = 156, .external_lex_state = 2}, + [1247] = {.lex_state = 8, .external_lex_state = 2}, + [1248] = {.lex_state = 156, .external_lex_state = 3}, + [1249] = {.lex_state = 8, .external_lex_state = 2}, + [1250] = {.lex_state = 8, .external_lex_state = 2}, + [1251] = {.lex_state = 156, .external_lex_state = 3}, + [1252] = {.lex_state = 156, .external_lex_state = 3}, + [1253] = {.lex_state = 8, .external_lex_state = 2}, + [1254] = {.lex_state = 156, .external_lex_state = 3}, + [1255] = {.lex_state = 156, .external_lex_state = 2}, + [1256] = {.lex_state = 156, .external_lex_state = 2}, + [1257] = {.lex_state = 156, .external_lex_state = 2}, + [1258] = {.lex_state = 8, .external_lex_state = 2}, + [1259] = {.lex_state = 156, .external_lex_state = 2}, + [1260] = {.lex_state = 8, .external_lex_state = 2}, + [1261] = {.lex_state = 156, .external_lex_state = 2}, + [1262] = {.lex_state = 156, .external_lex_state = 2}, + [1263] = {.lex_state = 156, .external_lex_state = 2}, + [1264] = {.lex_state = 156, .external_lex_state = 2}, + [1265] = {.lex_state = 156, .external_lex_state = 2}, + [1266] = {.lex_state = 156, .external_lex_state = 2}, + [1267] = {.lex_state = 156, .external_lex_state = 2}, + [1268] = {.lex_state = 156, .external_lex_state = 2}, + [1269] = {.lex_state = 156, .external_lex_state = 2}, + [1270] = {.lex_state = 156, .external_lex_state = 2}, + [1271] = {.lex_state = 156, .external_lex_state = 2}, + [1272] = {.lex_state = 8, .external_lex_state = 2}, + [1273] = {.lex_state = 156, .external_lex_state = 2}, + [1274] = {.lex_state = 156, .external_lex_state = 2}, + [1275] = {.lex_state = 156, .external_lex_state = 2}, + [1276] = {.lex_state = 8, .external_lex_state = 2}, + [1277] = {.lex_state = 8, .external_lex_state = 2}, + [1278] = {.lex_state = 156, .external_lex_state = 2}, + [1279] = {.lex_state = 156, .external_lex_state = 2}, + [1280] = {.lex_state = 156, .external_lex_state = 2}, + [1281] = {.lex_state = 8, .external_lex_state = 2}, + [1282] = {.lex_state = 156, .external_lex_state = 2}, + [1283] = {.lex_state = 156, .external_lex_state = 2}, + [1284] = {.lex_state = 156, .external_lex_state = 2}, + [1285] = {.lex_state = 156, .external_lex_state = 2}, + [1286] = {.lex_state = 156, .external_lex_state = 2}, + [1287] = {.lex_state = 8, .external_lex_state = 2}, + [1288] = {.lex_state = 156, .external_lex_state = 2}, + [1289] = {.lex_state = 156, .external_lex_state = 2}, + [1290] = {.lex_state = 156, .external_lex_state = 2}, + [1291] = {.lex_state = 8, .external_lex_state = 2}, + [1292] = {.lex_state = 156, .external_lex_state = 2}, + [1293] = {.lex_state = 156, .external_lex_state = 2}, + [1294] = {.lex_state = 156, .external_lex_state = 2}, + [1295] = {.lex_state = 8, .external_lex_state = 2}, + [1296] = {.lex_state = 8, .external_lex_state = 2}, + [1297] = {.lex_state = 156, .external_lex_state = 2}, + [1298] = {.lex_state = 156, .external_lex_state = 2}, + [1299] = {.lex_state = 8, .external_lex_state = 2}, + [1300] = {.lex_state = 8, .external_lex_state = 2}, + [1301] = {.lex_state = 8, .external_lex_state = 2}, + [1302] = {.lex_state = 156, .external_lex_state = 2}, + [1303] = {.lex_state = 156, .external_lex_state = 2}, + [1304] = {.lex_state = 8, .external_lex_state = 2}, + [1305] = {.lex_state = 8, .external_lex_state = 2}, + [1306] = {.lex_state = 156, .external_lex_state = 2}, + [1307] = {.lex_state = 156, .external_lex_state = 2}, + [1308] = {.lex_state = 156, .external_lex_state = 2}, + [1309] = {.lex_state = 8, .external_lex_state = 2}, + [1310] = {.lex_state = 156, .external_lex_state = 2}, + [1311] = {.lex_state = 8, .external_lex_state = 2}, + [1312] = {.lex_state = 156, .external_lex_state = 3}, + [1313] = {.lex_state = 8, .external_lex_state = 2}, + [1314] = {.lex_state = 156, .external_lex_state = 3}, + [1315] = {.lex_state = 8, .external_lex_state = 2}, + [1316] = {.lex_state = 156, .external_lex_state = 3}, + [1317] = {.lex_state = 156, .external_lex_state = 2}, + [1318] = {.lex_state = 156, .external_lex_state = 3}, + [1319] = {.lex_state = 156, .external_lex_state = 2}, + [1320] = {.lex_state = 156, .external_lex_state = 2}, + [1321] = {.lex_state = 8, .external_lex_state = 2}, + [1322] = {.lex_state = 8, .external_lex_state = 2}, + [1323] = {.lex_state = 156, .external_lex_state = 2}, + [1324] = {.lex_state = 156, .external_lex_state = 3}, + [1325] = {.lex_state = 156, .external_lex_state = 2}, + [1326] = {.lex_state = 156, .external_lex_state = 2}, + [1327] = {.lex_state = 156, .external_lex_state = 2}, + [1328] = {.lex_state = 156, .external_lex_state = 2}, + [1329] = {.lex_state = 156, .external_lex_state = 2}, + [1330] = {.lex_state = 156, .external_lex_state = 2}, + [1331] = {.lex_state = 156, .external_lex_state = 2}, + [1332] = {.lex_state = 156, .external_lex_state = 2}, + [1333] = {.lex_state = 156, .external_lex_state = 2}, + [1334] = {.lex_state = 156, .external_lex_state = 2}, + [1335] = {.lex_state = 8, .external_lex_state = 2}, + [1336] = {.lex_state = 8, .external_lex_state = 2}, + [1337] = {.lex_state = 8, .external_lex_state = 2}, + [1338] = {.lex_state = 8, .external_lex_state = 2}, + [1339] = {.lex_state = 8, .external_lex_state = 2}, + [1340] = {.lex_state = 8, .external_lex_state = 2}, + [1341] = {.lex_state = 8, .external_lex_state = 2}, + [1342] = {.lex_state = 8, .external_lex_state = 2}, + [1343] = {.lex_state = 8, .external_lex_state = 2}, + [1344] = {.lex_state = 8, .external_lex_state = 2}, + [1345] = {.lex_state = 8, .external_lex_state = 2}, + [1346] = {.lex_state = 8, .external_lex_state = 2}, + [1347] = {.lex_state = 8, .external_lex_state = 2}, + [1348] = {.lex_state = 8, .external_lex_state = 2}, + [1349] = {.lex_state = 8, .external_lex_state = 2}, + [1350] = {.lex_state = 8, .external_lex_state = 2}, + [1351] = {.lex_state = 8, .external_lex_state = 2}, + [1352] = {.lex_state = 8, .external_lex_state = 2}, + [1353] = {.lex_state = 8, .external_lex_state = 2}, + [1354] = {.lex_state = 8, .external_lex_state = 2}, + [1355] = {.lex_state = 8, .external_lex_state = 2}, + [1356] = {.lex_state = 8, .external_lex_state = 2}, + [1357] = {.lex_state = 8, .external_lex_state = 2}, + [1358] = {.lex_state = 8, .external_lex_state = 2}, + [1359] = {.lex_state = 8, .external_lex_state = 2}, + [1360] = {.lex_state = 8, .external_lex_state = 2}, + [1361] = {.lex_state = 8, .external_lex_state = 2}, + [1362] = {.lex_state = 8, .external_lex_state = 2}, + [1363] = {.lex_state = 8, .external_lex_state = 2}, + [1364] = {.lex_state = 8, .external_lex_state = 2}, + [1365] = {.lex_state = 8, .external_lex_state = 2}, + [1366] = {.lex_state = 8, .external_lex_state = 2}, + [1367] = {.lex_state = 8, .external_lex_state = 2}, + [1368] = {.lex_state = 8, .external_lex_state = 2}, + [1369] = {.lex_state = 8, .external_lex_state = 2}, + [1370] = {.lex_state = 8, .external_lex_state = 2}, + [1371] = {.lex_state = 8, .external_lex_state = 2}, + [1372] = {.lex_state = 8, .external_lex_state = 2}, + [1373] = {.lex_state = 8, .external_lex_state = 2}, + [1374] = {.lex_state = 8, .external_lex_state = 2}, + [1375] = {.lex_state = 8, .external_lex_state = 2}, + [1376] = {.lex_state = 8, .external_lex_state = 2}, + [1377] = {.lex_state = 8, .external_lex_state = 2}, + [1378] = {.lex_state = 8, .external_lex_state = 2}, + [1379] = {.lex_state = 8, .external_lex_state = 2}, + [1380] = {.lex_state = 8, .external_lex_state = 2}, + [1381] = {.lex_state = 8, .external_lex_state = 2}, + [1382] = {.lex_state = 8, .external_lex_state = 2}, + [1383] = {.lex_state = 8, .external_lex_state = 2}, + [1384] = {.lex_state = 8, .external_lex_state = 2}, + [1385] = {.lex_state = 8, .external_lex_state = 2}, + [1386] = {.lex_state = 8, .external_lex_state = 2}, + [1387] = {.lex_state = 8, .external_lex_state = 2}, + [1388] = {.lex_state = 8, .external_lex_state = 2}, + [1389] = {.lex_state = 8, .external_lex_state = 2}, + [1390] = {.lex_state = 8, .external_lex_state = 2}, + [1391] = {.lex_state = 8, .external_lex_state = 2}, + [1392] = {.lex_state = 8, .external_lex_state = 2}, + [1393] = {.lex_state = 8, .external_lex_state = 2}, + [1394] = {.lex_state = 8, .external_lex_state = 2}, + [1395] = {.lex_state = 8, .external_lex_state = 2}, + [1396] = {.lex_state = 8, .external_lex_state = 2}, + [1397] = {.lex_state = 8, .external_lex_state = 2}, + [1398] = {.lex_state = 8, .external_lex_state = 2}, + [1399] = {.lex_state = 8, .external_lex_state = 2}, + [1400] = {.lex_state = 8, .external_lex_state = 2}, + [1401] = {.lex_state = 8, .external_lex_state = 2}, + [1402] = {.lex_state = 8, .external_lex_state = 2}, + [1403] = {.lex_state = 8, .external_lex_state = 2}, + [1404] = {.lex_state = 8, .external_lex_state = 2}, + [1405] = {.lex_state = 8, .external_lex_state = 2}, + [1406] = {.lex_state = 8, .external_lex_state = 2}, + [1407] = {.lex_state = 8, .external_lex_state = 2}, + [1408] = {.lex_state = 8, .external_lex_state = 2}, + [1409] = {.lex_state = 8, .external_lex_state = 2}, + [1410] = {.lex_state = 8, .external_lex_state = 2}, + [1411] = {.lex_state = 8, .external_lex_state = 2}, + [1412] = {.lex_state = 8, .external_lex_state = 2}, + [1413] = {.lex_state = 156, .external_lex_state = 2}, + [1414] = {.lex_state = 156, .external_lex_state = 2}, + [1415] = {.lex_state = 8, .external_lex_state = 2}, + [1416] = {.lex_state = 8, .external_lex_state = 2}, + [1417] = {.lex_state = 156, .external_lex_state = 3}, + [1418] = {.lex_state = 156, .external_lex_state = 2}, + [1419] = {.lex_state = 8, .external_lex_state = 2}, + [1420] = {.lex_state = 156, .external_lex_state = 2}, + [1421] = {.lex_state = 156, .external_lex_state = 2}, + [1422] = {.lex_state = 8, .external_lex_state = 2}, + [1423] = {.lex_state = 156, .external_lex_state = 2}, + [1424] = {.lex_state = 156, .external_lex_state = 2}, + [1425] = {.lex_state = 156, .external_lex_state = 2}, + [1426] = {.lex_state = 156, .external_lex_state = 2}, + [1427] = {.lex_state = 8, .external_lex_state = 2}, + [1428] = {.lex_state = 156, .external_lex_state = 2}, + [1429] = {.lex_state = 156, .external_lex_state = 2}, + [1430] = {.lex_state = 156, .external_lex_state = 2}, + [1431] = {.lex_state = 156, .external_lex_state = 2}, + [1432] = {.lex_state = 156, .external_lex_state = 2}, + [1433] = {.lex_state = 156, .external_lex_state = 2}, + [1434] = {.lex_state = 156, .external_lex_state = 2}, + [1435] = {.lex_state = 156, .external_lex_state = 2}, + [1436] = {.lex_state = 8, .external_lex_state = 2}, + [1437] = {.lex_state = 156, .external_lex_state = 2}, + [1438] = {.lex_state = 156, .external_lex_state = 2}, + [1439] = {.lex_state = 156, .external_lex_state = 2}, + [1440] = {.lex_state = 8, .external_lex_state = 2}, + [1441] = {.lex_state = 156, .external_lex_state = 2}, + [1442] = {.lex_state = 156, .external_lex_state = 2}, + [1443] = {.lex_state = 8, .external_lex_state = 2}, + [1444] = {.lex_state = 8, .external_lex_state = 2}, + [1445] = {.lex_state = 156, .external_lex_state = 2}, + [1446] = {.lex_state = 156, .external_lex_state = 2}, + [1447] = {.lex_state = 156, .external_lex_state = 2}, + [1448] = {.lex_state = 8, .external_lex_state = 2}, + [1449] = {.lex_state = 8, .external_lex_state = 2}, + [1450] = {.lex_state = 8, .external_lex_state = 2}, + [1451] = {.lex_state = 156, .external_lex_state = 2}, + [1452] = {.lex_state = 156, .external_lex_state = 2}, + [1453] = {.lex_state = 8, .external_lex_state = 2}, + [1454] = {.lex_state = 156, .external_lex_state = 2}, + [1455] = {.lex_state = 156, .external_lex_state = 3}, + [1456] = {.lex_state = 8, .external_lex_state = 2}, + [1457] = {.lex_state = 8, .external_lex_state = 2}, + [1458] = {.lex_state = 8, .external_lex_state = 2}, + [1459] = {.lex_state = 156, .external_lex_state = 3}, + [1460] = {.lex_state = 156, .external_lex_state = 2}, + [1461] = {.lex_state = 156, .external_lex_state = 2}, + [1462] = {.lex_state = 156, .external_lex_state = 2}, + [1463] = {.lex_state = 8, .external_lex_state = 2}, + [1464] = {.lex_state = 156, .external_lex_state = 3}, + [1465] = {.lex_state = 156, .external_lex_state = 2}, + [1466] = {.lex_state = 156, .external_lex_state = 2}, + [1467] = {.lex_state = 156, .external_lex_state = 2}, + [1468] = {.lex_state = 156, .external_lex_state = 2}, + [1469] = {.lex_state = 156, .external_lex_state = 3}, + [1470] = {.lex_state = 156, .external_lex_state = 2}, + [1471] = {.lex_state = 156, .external_lex_state = 2}, + [1472] = {.lex_state = 156, .external_lex_state = 2}, + [1473] = {.lex_state = 156, .external_lex_state = 2}, + [1474] = {.lex_state = 156, .external_lex_state = 2}, + [1475] = {.lex_state = 156, .external_lex_state = 2}, + [1476] = {.lex_state = 156, .external_lex_state = 2}, + [1477] = {.lex_state = 156, .external_lex_state = 2}, + [1478] = {.lex_state = 156, .external_lex_state = 2}, + [1479] = {.lex_state = 156, .external_lex_state = 2}, + [1480] = {.lex_state = 156, .external_lex_state = 2}, + [1481] = {.lex_state = 156, .external_lex_state = 2}, + [1482] = {.lex_state = 8, .external_lex_state = 2}, + [1483] = {.lex_state = 156, .external_lex_state = 2}, + [1484] = {.lex_state = 8, .external_lex_state = 2}, + [1485] = {.lex_state = 156, .external_lex_state = 2}, + [1486] = {.lex_state = 156, .external_lex_state = 2}, + [1487] = {.lex_state = 156, .external_lex_state = 2}, + [1488] = {.lex_state = 156, .external_lex_state = 2}, + [1489] = {.lex_state = 8, .external_lex_state = 2}, + [1490] = {.lex_state = 156, .external_lex_state = 2}, + [1491] = {.lex_state = 156, .external_lex_state = 2}, + [1492] = {.lex_state = 156, .external_lex_state = 2}, + [1493] = {.lex_state = 156, .external_lex_state = 2}, + [1494] = {.lex_state = 156, .external_lex_state = 2}, + [1495] = {.lex_state = 8, .external_lex_state = 2}, + [1496] = {.lex_state = 156, .external_lex_state = 2}, + [1497] = {.lex_state = 8, .external_lex_state = 2}, + [1498] = {.lex_state = 156, .external_lex_state = 2}, + [1499] = {.lex_state = 156, .external_lex_state = 2}, + [1500] = {.lex_state = 156, .external_lex_state = 2}, + [1501] = {.lex_state = 156, .external_lex_state = 2}, + [1502] = {.lex_state = 156, .external_lex_state = 2}, + [1503] = {.lex_state = 156, .external_lex_state = 2}, + [1504] = {.lex_state = 156, .external_lex_state = 2}, + [1505] = {.lex_state = 156, .external_lex_state = 2}, + [1506] = {.lex_state = 156, .external_lex_state = 2}, + [1507] = {.lex_state = 156, .external_lex_state = 2}, + [1508] = {.lex_state = 156, .external_lex_state = 2}, + [1509] = {.lex_state = 156, .external_lex_state = 2}, + [1510] = {.lex_state = 156, .external_lex_state = 2}, + [1511] = {.lex_state = 156, .external_lex_state = 2}, + [1512] = {.lex_state = 156, .external_lex_state = 2}, + [1513] = {.lex_state = 156, .external_lex_state = 2}, + [1514] = {.lex_state = 156, .external_lex_state = 2}, + [1515] = {.lex_state = 8, .external_lex_state = 2}, + [1516] = {.lex_state = 8, .external_lex_state = 2}, + [1517] = {.lex_state = 156, .external_lex_state = 2}, + [1518] = {.lex_state = 8, .external_lex_state = 2}, + [1519] = {.lex_state = 156, .external_lex_state = 3}, + [1520] = {.lex_state = 8, .external_lex_state = 2}, + [1521] = {.lex_state = 8, .external_lex_state = 2}, + [1522] = {.lex_state = 8, .external_lex_state = 2}, + [1523] = {.lex_state = 8, .external_lex_state = 2}, + [1524] = {.lex_state = 156, .external_lex_state = 3}, + [1525] = {.lex_state = 8, .external_lex_state = 2}, + [1526] = {.lex_state = 8, .external_lex_state = 2}, + [1527] = {.lex_state = 8, .external_lex_state = 2}, + [1528] = {.lex_state = 8, .external_lex_state = 2}, + [1529] = {.lex_state = 8, .external_lex_state = 2}, + [1530] = {.lex_state = 8, .external_lex_state = 2}, + [1531] = {.lex_state = 8, .external_lex_state = 2}, + [1532] = {.lex_state = 8, .external_lex_state = 2}, + [1533] = {.lex_state = 8, .external_lex_state = 2}, + [1534] = {.lex_state = 156, .external_lex_state = 3}, + [1535] = {.lex_state = 8, .external_lex_state = 2}, + [1536] = {.lex_state = 156, .external_lex_state = 3}, + [1537] = {.lex_state = 156, .external_lex_state = 3}, + [1538] = {.lex_state = 8, .external_lex_state = 2}, + [1539] = {.lex_state = 8, .external_lex_state = 2}, + [1540] = {.lex_state = 156, .external_lex_state = 2}, + [1541] = {.lex_state = 8, .external_lex_state = 2}, + [1542] = {.lex_state = 8, .external_lex_state = 2}, + [1543] = {.lex_state = 8, .external_lex_state = 2}, + [1544] = {.lex_state = 8, .external_lex_state = 2}, + [1545] = {.lex_state = 8, .external_lex_state = 2}, + [1546] = {.lex_state = 8, .external_lex_state = 2}, + [1547] = {.lex_state = 8, .external_lex_state = 2}, + [1548] = {.lex_state = 8, .external_lex_state = 2}, + [1549] = {.lex_state = 8, .external_lex_state = 2}, + [1550] = {.lex_state = 8, .external_lex_state = 2}, + [1551] = {.lex_state = 8, .external_lex_state = 2}, + [1552] = {.lex_state = 8, .external_lex_state = 2}, + [1553] = {.lex_state = 8, .external_lex_state = 2}, + [1554] = {.lex_state = 8, .external_lex_state = 2}, + [1555] = {.lex_state = 8, .external_lex_state = 2}, + [1556] = {.lex_state = 8, .external_lex_state = 2}, + [1557] = {.lex_state = 156, .external_lex_state = 3}, + [1558] = {.lex_state = 8, .external_lex_state = 2}, + [1559] = {.lex_state = 156, .external_lex_state = 3}, + [1560] = {.lex_state = 8, .external_lex_state = 2}, + [1561] = {.lex_state = 8, .external_lex_state = 2}, + [1562] = {.lex_state = 8, .external_lex_state = 2}, + [1563] = {.lex_state = 156, .external_lex_state = 3}, + [1564] = {.lex_state = 8, .external_lex_state = 2}, + [1565] = {.lex_state = 8, .external_lex_state = 2}, + [1566] = {.lex_state = 156, .external_lex_state = 3}, + [1567] = {.lex_state = 156, .external_lex_state = 2}, + [1568] = {.lex_state = 156, .external_lex_state = 2}, + [1569] = {.lex_state = 156, .external_lex_state = 2}, + [1570] = {.lex_state = 8, .external_lex_state = 2}, + [1571] = {.lex_state = 8, .external_lex_state = 2}, + [1572] = {.lex_state = 8, .external_lex_state = 2}, + [1573] = {.lex_state = 156, .external_lex_state = 3}, + [1574] = {.lex_state = 156, .external_lex_state = 3}, + [1575] = {.lex_state = 8, .external_lex_state = 2}, + [1576] = {.lex_state = 8, .external_lex_state = 2}, + [1577] = {.lex_state = 156, .external_lex_state = 2}, + [1578] = {.lex_state = 156, .external_lex_state = 3}, + [1579] = {.lex_state = 8, .external_lex_state = 2}, + [1580] = {.lex_state = 156, .external_lex_state = 3}, + [1581] = {.lex_state = 8, .external_lex_state = 2}, + [1582] = {.lex_state = 8, .external_lex_state = 2}, + [1583] = {.lex_state = 8, .external_lex_state = 2}, + [1584] = {.lex_state = 156, .external_lex_state = 2}, + [1585] = {.lex_state = 8, .external_lex_state = 2}, + [1586] = {.lex_state = 8, .external_lex_state = 2}, + [1587] = {.lex_state = 8, .external_lex_state = 2}, + [1588] = {.lex_state = 8, .external_lex_state = 2}, + [1589] = {.lex_state = 8, .external_lex_state = 2}, + [1590] = {.lex_state = 8, .external_lex_state = 2}, + [1591] = {.lex_state = 8, .external_lex_state = 2}, + [1592] = {.lex_state = 8, .external_lex_state = 2}, + [1593] = {.lex_state = 8, .external_lex_state = 2}, + [1594] = {.lex_state = 156, .external_lex_state = 2}, + [1595] = {.lex_state = 156, .external_lex_state = 3}, + [1596] = {.lex_state = 156, .external_lex_state = 3}, + [1597] = {.lex_state = 156, .external_lex_state = 3}, + [1598] = {.lex_state = 156, .external_lex_state = 3}, + [1599] = {.lex_state = 8, .external_lex_state = 2}, + [1600] = {.lex_state = 156, .external_lex_state = 3}, + [1601] = {.lex_state = 8, .external_lex_state = 2}, + [1602] = {.lex_state = 8, .external_lex_state = 2}, + [1603] = {.lex_state = 8, .external_lex_state = 2}, + [1604] = {.lex_state = 156, .external_lex_state = 3}, + [1605] = {.lex_state = 156, .external_lex_state = 3}, + [1606] = {.lex_state = 156, .external_lex_state = 3}, + [1607] = {.lex_state = 156, .external_lex_state = 3}, + [1608] = {.lex_state = 156, .external_lex_state = 3}, + [1609] = {.lex_state = 8, .external_lex_state = 2}, + [1610] = {.lex_state = 8, .external_lex_state = 2}, + [1611] = {.lex_state = 8, .external_lex_state = 2}, + [1612] = {.lex_state = 156, .external_lex_state = 2}, + [1613] = {.lex_state = 156, .external_lex_state = 3}, + [1614] = {.lex_state = 8, .external_lex_state = 2}, + [1615] = {.lex_state = 156, .external_lex_state = 3}, + [1616] = {.lex_state = 8, .external_lex_state = 2}, + [1617] = {.lex_state = 156, .external_lex_state = 3}, + [1618] = {.lex_state = 156, .external_lex_state = 3}, + [1619] = {.lex_state = 156, .external_lex_state = 3}, + [1620] = {.lex_state = 156, .external_lex_state = 3}, + [1621] = {.lex_state = 156, .external_lex_state = 3}, + [1622] = {.lex_state = 156, .external_lex_state = 3}, + [1623] = {.lex_state = 156, .external_lex_state = 3}, + [1624] = {.lex_state = 156, .external_lex_state = 3}, + [1625] = {.lex_state = 156, .external_lex_state = 2}, + [1626] = {.lex_state = 8, .external_lex_state = 2}, + [1627] = {.lex_state = 156, .external_lex_state = 3}, + [1628] = {.lex_state = 156, .external_lex_state = 3}, + [1629] = {.lex_state = 156, .external_lex_state = 3}, + [1630] = {.lex_state = 156, .external_lex_state = 3}, + [1631] = {.lex_state = 156, .external_lex_state = 3}, + [1632] = {.lex_state = 156, .external_lex_state = 3}, + [1633] = {.lex_state = 156, .external_lex_state = 3}, + [1634] = {.lex_state = 156, .external_lex_state = 3}, + [1635] = {.lex_state = 156, .external_lex_state = 3}, + [1636] = {.lex_state = 156, .external_lex_state = 3}, + [1637] = {.lex_state = 156, .external_lex_state = 3}, + [1638] = {.lex_state = 8, .external_lex_state = 2}, + [1639] = {.lex_state = 156, .external_lex_state = 3}, + [1640] = {.lex_state = 156, .external_lex_state = 2}, + [1641] = {.lex_state = 156, .external_lex_state = 3}, + [1642] = {.lex_state = 8, .external_lex_state = 2}, + [1643] = {.lex_state = 156, .external_lex_state = 3}, + [1644] = {.lex_state = 8, .external_lex_state = 2}, + [1645] = {.lex_state = 8, .external_lex_state = 2}, + [1646] = {.lex_state = 8, .external_lex_state = 2}, + [1647] = {.lex_state = 156, .external_lex_state = 3}, + [1648] = {.lex_state = 156, .external_lex_state = 3}, + [1649] = {.lex_state = 156, .external_lex_state = 3}, + [1650] = {.lex_state = 156, .external_lex_state = 3}, + [1651] = {.lex_state = 156, .external_lex_state = 3}, + [1652] = {.lex_state = 156, .external_lex_state = 3}, + [1653] = {.lex_state = 156, .external_lex_state = 3}, + [1654] = {.lex_state = 156, .external_lex_state = 3}, + [1655] = {.lex_state = 156, .external_lex_state = 3}, + [1656] = {.lex_state = 156, .external_lex_state = 3}, + [1657] = {.lex_state = 156, .external_lex_state = 3}, + [1658] = {.lex_state = 156, .external_lex_state = 3}, + [1659] = {.lex_state = 156, .external_lex_state = 3}, + [1660] = {.lex_state = 156, .external_lex_state = 3}, + [1661] = {.lex_state = 156, .external_lex_state = 3}, + [1662] = {.lex_state = 156, .external_lex_state = 3}, + [1663] = {.lex_state = 156, .external_lex_state = 3}, + [1664] = {.lex_state = 156, .external_lex_state = 3}, + [1665] = {.lex_state = 156, .external_lex_state = 3}, + [1666] = {.lex_state = 8, .external_lex_state = 2}, + [1667] = {.lex_state = 156, .external_lex_state = 3}, + [1668] = {.lex_state = 156, .external_lex_state = 3}, + [1669] = {.lex_state = 156, .external_lex_state = 3}, + [1670] = {.lex_state = 156, .external_lex_state = 3}, + [1671] = {.lex_state = 156, .external_lex_state = 3}, + [1672] = {.lex_state = 156, .external_lex_state = 3}, + [1673] = {.lex_state = 8, .external_lex_state = 2}, + [1674] = {.lex_state = 156, .external_lex_state = 2}, + [1675] = {.lex_state = 156, .external_lex_state = 3}, + [1676] = {.lex_state = 156, .external_lex_state = 3}, + [1677] = {.lex_state = 156, .external_lex_state = 3}, + [1678] = {.lex_state = 8, .external_lex_state = 2}, + [1679] = {.lex_state = 8, .external_lex_state = 2}, + [1680] = {.lex_state = 8, .external_lex_state = 2}, + [1681] = {.lex_state = 8, .external_lex_state = 2}, + [1682] = {.lex_state = 8, .external_lex_state = 2}, + [1683] = {.lex_state = 8, .external_lex_state = 2}, + [1684] = {.lex_state = 8, .external_lex_state = 2}, + [1685] = {.lex_state = 8, .external_lex_state = 2}, + [1686] = {.lex_state = 156, .external_lex_state = 3}, + [1687] = {.lex_state = 8, .external_lex_state = 2}, + [1688] = {.lex_state = 8, .external_lex_state = 2}, + [1689] = {.lex_state = 8, .external_lex_state = 2}, + [1690] = {.lex_state = 156, .external_lex_state = 3}, + [1691] = {.lex_state = 156, .external_lex_state = 3}, + [1692] = {.lex_state = 156, .external_lex_state = 3}, + [1693] = {.lex_state = 156, .external_lex_state = 3}, + [1694] = {.lex_state = 156, .external_lex_state = 3}, + [1695] = {.lex_state = 156, .external_lex_state = 3}, + [1696] = {.lex_state = 156, .external_lex_state = 3}, + [1697] = {.lex_state = 156, .external_lex_state = 3}, + [1698] = {.lex_state = 156, .external_lex_state = 3}, + [1699] = {.lex_state = 156, .external_lex_state = 3}, + [1700] = {.lex_state = 156, .external_lex_state = 3}, + [1701] = {.lex_state = 156, .external_lex_state = 3}, + [1702] = {.lex_state = 156, .external_lex_state = 2}, + [1703] = {.lex_state = 156, .external_lex_state = 3}, + [1704] = {.lex_state = 156, .external_lex_state = 3}, + [1705] = {.lex_state = 156, .external_lex_state = 2}, + [1706] = {.lex_state = 156, .external_lex_state = 2}, + [1707] = {.lex_state = 156, .external_lex_state = 3}, + [1708] = {.lex_state = 156, .external_lex_state = 3}, + [1709] = {.lex_state = 156, .external_lex_state = 3}, + [1710] = {.lex_state = 8, .external_lex_state = 2}, + [1711] = {.lex_state = 8, .external_lex_state = 2}, + [1712] = {.lex_state = 156, .external_lex_state = 3}, + [1713] = {.lex_state = 156, .external_lex_state = 3}, + [1714] = {.lex_state = 156, .external_lex_state = 3}, + [1715] = {.lex_state = 156, .external_lex_state = 3}, + [1716] = {.lex_state = 156, .external_lex_state = 3}, + [1717] = {.lex_state = 156, .external_lex_state = 3}, + [1718] = {.lex_state = 156, .external_lex_state = 3}, + [1719] = {.lex_state = 8, .external_lex_state = 2}, + [1720] = {.lex_state = 156, .external_lex_state = 3}, + [1721] = {.lex_state = 156, .external_lex_state = 3}, + [1722] = {.lex_state = 156, .external_lex_state = 3}, + [1723] = {.lex_state = 8, .external_lex_state = 2}, + [1724] = {.lex_state = 156, .external_lex_state = 2}, + [1725] = {.lex_state = 156, .external_lex_state = 3}, + [1726] = {.lex_state = 156, .external_lex_state = 3}, + [1727] = {.lex_state = 156, .external_lex_state = 2}, + [1728] = {.lex_state = 26, .external_lex_state = 2}, + [1729] = {.lex_state = 23, .external_lex_state = 6}, + [1730] = {.lex_state = 156, .external_lex_state = 3}, + [1731] = {.lex_state = 156, .external_lex_state = 3}, + [1732] = {.lex_state = 8, .external_lex_state = 2}, + [1733] = {.lex_state = 156, .external_lex_state = 3}, + [1734] = {.lex_state = 156, .external_lex_state = 3}, + [1735] = {.lex_state = 156, .external_lex_state = 3}, + [1736] = {.lex_state = 156, .external_lex_state = 3}, + [1737] = {.lex_state = 156, .external_lex_state = 3}, + [1738] = {.lex_state = 156, .external_lex_state = 3}, + [1739] = {.lex_state = 8, .external_lex_state = 2}, + [1740] = {.lex_state = 156, .external_lex_state = 3}, + [1741] = {.lex_state = 156, .external_lex_state = 3}, + [1742] = {.lex_state = 156, .external_lex_state = 3}, + [1743] = {.lex_state = 156, .external_lex_state = 3}, + [1744] = {.lex_state = 156, .external_lex_state = 2}, + [1745] = {.lex_state = 156, .external_lex_state = 3}, + [1746] = {.lex_state = 156, .external_lex_state = 3}, + [1747] = {.lex_state = 8, .external_lex_state = 2}, + [1748] = {.lex_state = 156, .external_lex_state = 3}, + [1749] = {.lex_state = 156, .external_lex_state = 3}, + [1750] = {.lex_state = 156, .external_lex_state = 3}, + [1751] = {.lex_state = 156, .external_lex_state = 3}, + [1752] = {.lex_state = 8, .external_lex_state = 2}, + [1753] = {.lex_state = 156, .external_lex_state = 3}, + [1754] = {.lex_state = 156, .external_lex_state = 3}, + [1755] = {.lex_state = 156, .external_lex_state = 3}, + [1756] = {.lex_state = 156, .external_lex_state = 3}, + [1757] = {.lex_state = 156, .external_lex_state = 3}, + [1758] = {.lex_state = 156, .external_lex_state = 3}, + [1759] = {.lex_state = 156, .external_lex_state = 3}, + [1760] = {.lex_state = 156, .external_lex_state = 3}, + [1761] = {.lex_state = 156, .external_lex_state = 3}, + [1762] = {.lex_state = 156, .external_lex_state = 2}, + [1763] = {.lex_state = 8, .external_lex_state = 2}, + [1764] = {.lex_state = 8, .external_lex_state = 2}, + [1765] = {.lex_state = 8, .external_lex_state = 2}, + [1766] = {.lex_state = 156, .external_lex_state = 3}, + [1767] = {.lex_state = 156, .external_lex_state = 2}, + [1768] = {.lex_state = 8, .external_lex_state = 2}, + [1769] = {.lex_state = 156, .external_lex_state = 3}, + [1770] = {.lex_state = 156, .external_lex_state = 3}, + [1771] = {.lex_state = 8, .external_lex_state = 2}, + [1772] = {.lex_state = 156, .external_lex_state = 3}, + [1773] = {.lex_state = 156, .external_lex_state = 3}, + [1774] = {.lex_state = 156, .external_lex_state = 3}, + [1775] = {.lex_state = 156, .external_lex_state = 3}, + [1776] = {.lex_state = 156, .external_lex_state = 3}, + [1777] = {.lex_state = 156, .external_lex_state = 3}, + [1778] = {.lex_state = 8, .external_lex_state = 2}, + [1779] = {.lex_state = 156, .external_lex_state = 3}, + [1780] = {.lex_state = 156, .external_lex_state = 3}, + [1781] = {.lex_state = 8, .external_lex_state = 2}, + [1782] = {.lex_state = 156, .external_lex_state = 3}, + [1783] = {.lex_state = 156, .external_lex_state = 3}, + [1784] = {.lex_state = 156, .external_lex_state = 3}, + [1785] = {.lex_state = 8, .external_lex_state = 2}, + [1786] = {.lex_state = 156, .external_lex_state = 3}, + [1787] = {.lex_state = 156, .external_lex_state = 3}, + [1788] = {.lex_state = 156, .external_lex_state = 3}, + [1789] = {.lex_state = 156, .external_lex_state = 3}, + [1790] = {.lex_state = 156, .external_lex_state = 3}, + [1791] = {.lex_state = 156, .external_lex_state = 3}, + [1792] = {.lex_state = 8, .external_lex_state = 2}, + [1793] = {.lex_state = 156, .external_lex_state = 3}, + [1794] = {.lex_state = 156, .external_lex_state = 3}, + [1795] = {.lex_state = 8, .external_lex_state = 2}, + [1796] = {.lex_state = 8, .external_lex_state = 2}, + [1797] = {.lex_state = 156, .external_lex_state = 3}, + [1798] = {.lex_state = 8, .external_lex_state = 2}, + [1799] = {.lex_state = 156, .external_lex_state = 3}, + [1800] = {.lex_state = 156, .external_lex_state = 3}, + [1801] = {.lex_state = 156, .external_lex_state = 3}, + [1802] = {.lex_state = 156, .external_lex_state = 3}, + [1803] = {.lex_state = 156, .external_lex_state = 3}, + [1804] = {.lex_state = 156, .external_lex_state = 3}, + [1805] = {.lex_state = 8, .external_lex_state = 2}, + [1806] = {.lex_state = 156, .external_lex_state = 3}, + [1807] = {.lex_state = 156, .external_lex_state = 3}, + [1808] = {.lex_state = 8, .external_lex_state = 2}, + [1809] = {.lex_state = 8, .external_lex_state = 2}, + [1810] = {.lex_state = 156, .external_lex_state = 3}, + [1811] = {.lex_state = 8, .external_lex_state = 2}, + [1812] = {.lex_state = 156, .external_lex_state = 3}, + [1813] = {.lex_state = 156, .external_lex_state = 2}, + [1814] = {.lex_state = 8, .external_lex_state = 2}, + [1815] = {.lex_state = 8, .external_lex_state = 2}, + [1816] = {.lex_state = 8, .external_lex_state = 2}, + [1817] = {.lex_state = 8, .external_lex_state = 2}, + [1818] = {.lex_state = 8, .external_lex_state = 2}, + [1819] = {.lex_state = 8, .external_lex_state = 2}, + [1820] = {.lex_state = 8, .external_lex_state = 2}, + [1821] = {.lex_state = 156, .external_lex_state = 2}, + [1822] = {.lex_state = 8, .external_lex_state = 2}, + [1823] = {.lex_state = 156, .external_lex_state = 2}, + [1824] = {.lex_state = 8, .external_lex_state = 2}, + [1825] = {.lex_state = 8, .external_lex_state = 2}, + [1826] = {.lex_state = 8, .external_lex_state = 2}, + [1827] = {.lex_state = 8, .external_lex_state = 2}, + [1828] = {.lex_state = 8, .external_lex_state = 2}, + [1829] = {.lex_state = 8, .external_lex_state = 2}, + [1830] = {.lex_state = 8, .external_lex_state = 2}, + [1831] = {.lex_state = 8, .external_lex_state = 2}, + [1832] = {.lex_state = 8, .external_lex_state = 2}, + [1833] = {.lex_state = 8, .external_lex_state = 2}, + [1834] = {.lex_state = 8, .external_lex_state = 2}, + [1835] = {.lex_state = 8, .external_lex_state = 2}, + [1836] = {.lex_state = 8, .external_lex_state = 2}, + [1837] = {.lex_state = 8, .external_lex_state = 2}, + [1838] = {.lex_state = 8, .external_lex_state = 2}, + [1839] = {.lex_state = 156, .external_lex_state = 3}, + [1840] = {.lex_state = 8, .external_lex_state = 2}, + [1841] = {.lex_state = 8, .external_lex_state = 2}, + [1842] = {.lex_state = 156, .external_lex_state = 2}, + [1843] = {.lex_state = 8, .external_lex_state = 2}, + [1844] = {.lex_state = 8, .external_lex_state = 2}, + [1845] = {.lex_state = 156, .external_lex_state = 2}, + [1846] = {.lex_state = 8, .external_lex_state = 2}, + [1847] = {.lex_state = 8, .external_lex_state = 2}, + [1848] = {.lex_state = 8, .external_lex_state = 2}, + [1849] = {.lex_state = 8, .external_lex_state = 2}, + [1850] = {.lex_state = 8, .external_lex_state = 2}, + [1851] = {.lex_state = 8, .external_lex_state = 2}, + [1852] = {.lex_state = 8, .external_lex_state = 2}, + [1853] = {.lex_state = 8, .external_lex_state = 2}, + [1854] = {.lex_state = 8, .external_lex_state = 2}, + [1855] = {.lex_state = 8, .external_lex_state = 2}, + [1856] = {.lex_state = 8, .external_lex_state = 2}, + [1857] = {.lex_state = 8, .external_lex_state = 2}, + [1858] = {.lex_state = 8, .external_lex_state = 2}, + [1859] = {.lex_state = 8, .external_lex_state = 2}, + [1860] = {.lex_state = 8, .external_lex_state = 2}, + [1861] = {.lex_state = 8, .external_lex_state = 2}, + [1862] = {.lex_state = 8, .external_lex_state = 2}, + [1863] = {.lex_state = 8, .external_lex_state = 2}, + [1864] = {.lex_state = 8, .external_lex_state = 2}, + [1865] = {.lex_state = 8, .external_lex_state = 2}, + [1866] = {.lex_state = 8, .external_lex_state = 2}, + [1867] = {.lex_state = 8, .external_lex_state = 2}, + [1868] = {.lex_state = 8, .external_lex_state = 2}, + [1869] = {.lex_state = 8, .external_lex_state = 2}, + [1870] = {.lex_state = 8, .external_lex_state = 2}, + [1871] = {.lex_state = 8, .external_lex_state = 2}, + [1872] = {.lex_state = 8, .external_lex_state = 2}, + [1873] = {.lex_state = 8, .external_lex_state = 2}, + [1874] = {.lex_state = 8, .external_lex_state = 2}, + [1875] = {.lex_state = 8, .external_lex_state = 2}, + [1876] = {.lex_state = 8, .external_lex_state = 2}, + [1877] = {.lex_state = 8, .external_lex_state = 2}, + [1878] = {.lex_state = 8, .external_lex_state = 2}, + [1879] = {.lex_state = 8, .external_lex_state = 2}, + [1880] = {.lex_state = 8, .external_lex_state = 2}, + [1881] = {.lex_state = 8, .external_lex_state = 2}, + [1882] = {.lex_state = 8, .external_lex_state = 2}, + [1883] = {.lex_state = 8, .external_lex_state = 2}, + [1884] = {.lex_state = 8, .external_lex_state = 2}, + [1885] = {.lex_state = 8, .external_lex_state = 2}, + [1886] = {.lex_state = 8, .external_lex_state = 2}, + [1887] = {.lex_state = 8, .external_lex_state = 2}, + [1888] = {.lex_state = 156, .external_lex_state = 2}, + [1889] = {.lex_state = 8, .external_lex_state = 2}, + [1890] = {.lex_state = 156, .external_lex_state = 2}, + [1891] = {.lex_state = 8, .external_lex_state = 2}, + [1892] = {.lex_state = 8, .external_lex_state = 2}, + [1893] = {.lex_state = 8, .external_lex_state = 2}, + [1894] = {.lex_state = 8, .external_lex_state = 2}, + [1895] = {.lex_state = 8, .external_lex_state = 2}, + [1896] = {.lex_state = 8, .external_lex_state = 2}, + [1897] = {.lex_state = 8, .external_lex_state = 2}, + [1898] = {.lex_state = 8, .external_lex_state = 2}, + [1899] = {.lex_state = 8, .external_lex_state = 2}, + [1900] = {.lex_state = 8, .external_lex_state = 2}, + [1901] = {.lex_state = 8, .external_lex_state = 2}, + [1902] = {.lex_state = 8, .external_lex_state = 2}, + [1903] = {.lex_state = 8, .external_lex_state = 2}, + [1904] = {.lex_state = 8, .external_lex_state = 2}, + [1905] = {.lex_state = 8, .external_lex_state = 2}, + [1906] = {.lex_state = 8, .external_lex_state = 2}, + [1907] = {.lex_state = 8, .external_lex_state = 2}, + [1908] = {.lex_state = 8, .external_lex_state = 2}, + [1909] = {.lex_state = 8, .external_lex_state = 2}, + [1910] = {.lex_state = 156, .external_lex_state = 2}, + [1911] = {.lex_state = 8, .external_lex_state = 2}, + [1912] = {.lex_state = 8, .external_lex_state = 2}, + [1913] = {.lex_state = 8, .external_lex_state = 2}, + [1914] = {.lex_state = 8, .external_lex_state = 2}, + [1915] = {.lex_state = 8, .external_lex_state = 2}, + [1916] = {.lex_state = 8, .external_lex_state = 2}, + [1917] = {.lex_state = 8, .external_lex_state = 2}, + [1918] = {.lex_state = 23, .external_lex_state = 6}, + [1919] = {.lex_state = 8, .external_lex_state = 2}, + [1920] = {.lex_state = 8, .external_lex_state = 2}, + [1921] = {.lex_state = 8, .external_lex_state = 2}, + [1922] = {.lex_state = 8, .external_lex_state = 2}, + [1923] = {.lex_state = 8, .external_lex_state = 2}, + [1924] = {.lex_state = 8, .external_lex_state = 2}, + [1925] = {.lex_state = 156, .external_lex_state = 2}, + [1926] = {.lex_state = 8, .external_lex_state = 2}, + [1927] = {.lex_state = 156, .external_lex_state = 2}, + [1928] = {.lex_state = 8, .external_lex_state = 2}, + [1929] = {.lex_state = 8, .external_lex_state = 2}, + [1930] = {.lex_state = 8, .external_lex_state = 2}, + [1931] = {.lex_state = 8, .external_lex_state = 2}, + [1932] = {.lex_state = 8, .external_lex_state = 2}, + [1933] = {.lex_state = 8, .external_lex_state = 2}, + [1934] = {.lex_state = 8, .external_lex_state = 2}, + [1935] = {.lex_state = 8, .external_lex_state = 2}, + [1936] = {.lex_state = 8, .external_lex_state = 2}, + [1937] = {.lex_state = 8, .external_lex_state = 2}, + [1938] = {.lex_state = 8, .external_lex_state = 2}, + [1939] = {.lex_state = 8, .external_lex_state = 2}, + [1940] = {.lex_state = 8, .external_lex_state = 2}, + [1941] = {.lex_state = 8, .external_lex_state = 2}, + [1942] = {.lex_state = 8, .external_lex_state = 2}, + [1943] = {.lex_state = 8, .external_lex_state = 2}, + [1944] = {.lex_state = 8, .external_lex_state = 2}, + [1945] = {.lex_state = 156, .external_lex_state = 3}, + [1946] = {.lex_state = 156, .external_lex_state = 3}, + [1947] = {.lex_state = 8, .external_lex_state = 2}, + [1948] = {.lex_state = 156, .external_lex_state = 2}, + [1949] = {.lex_state = 8, .external_lex_state = 2}, + [1950] = {.lex_state = 156, .external_lex_state = 3}, + [1951] = {.lex_state = 8, .external_lex_state = 2}, + [1952] = {.lex_state = 8, .external_lex_state = 2}, + [1953] = {.lex_state = 156, .external_lex_state = 2}, + [1954] = {.lex_state = 8, .external_lex_state = 2}, + [1955] = {.lex_state = 26, .external_lex_state = 2}, + [1956] = {.lex_state = 156, .external_lex_state = 2}, + [1957] = {.lex_state = 156, .external_lex_state = 2}, + [1958] = {.lex_state = 156, .external_lex_state = 2}, + [1959] = {.lex_state = 8, .external_lex_state = 2}, + [1960] = {.lex_state = 8, .external_lex_state = 2}, + [1961] = {.lex_state = 156, .external_lex_state = 3}, + [1962] = {.lex_state = 8, .external_lex_state = 2}, + [1963] = {.lex_state = 156, .external_lex_state = 3}, + [1964] = {.lex_state = 8, .external_lex_state = 2}, + [1965] = {.lex_state = 156, .external_lex_state = 3}, + [1966] = {.lex_state = 156, .external_lex_state = 2}, + [1967] = {.lex_state = 156, .external_lex_state = 3}, + [1968] = {.lex_state = 8, .external_lex_state = 2}, + [1969] = {.lex_state = 156, .external_lex_state = 3}, + [1970] = {.lex_state = 156, .external_lex_state = 2}, + [1971] = {.lex_state = 156, .external_lex_state = 3}, + [1972] = {.lex_state = 8, .external_lex_state = 2}, + [1973] = {.lex_state = 156, .external_lex_state = 3}, + [1974] = {.lex_state = 8, .external_lex_state = 2}, + [1975] = {.lex_state = 8, .external_lex_state = 2}, + [1976] = {.lex_state = 8, .external_lex_state = 2}, + [1977] = {.lex_state = 8, .external_lex_state = 2}, + [1978] = {.lex_state = 8, .external_lex_state = 2}, + [1979] = {.lex_state = 8, .external_lex_state = 2}, + [1980] = {.lex_state = 8, .external_lex_state = 2}, + [1981] = {.lex_state = 8, .external_lex_state = 2}, + [1982] = {.lex_state = 8, .external_lex_state = 2}, + [1983] = {.lex_state = 8, .external_lex_state = 2}, + [1984] = {.lex_state = 8, .external_lex_state = 2}, + [1985] = {.lex_state = 8, .external_lex_state = 2}, + [1986] = {.lex_state = 8, .external_lex_state = 2}, + [1987] = {.lex_state = 8, .external_lex_state = 2}, + [1988] = {.lex_state = 8, .external_lex_state = 2}, + [1989] = {.lex_state = 8, .external_lex_state = 2}, + [1990] = {.lex_state = 8, .external_lex_state = 2}, + [1991] = {.lex_state = 8, .external_lex_state = 2}, + [1992] = {.lex_state = 8, .external_lex_state = 2}, + [1993] = {.lex_state = 8, .external_lex_state = 2}, + [1994] = {.lex_state = 8, .external_lex_state = 2}, + [1995] = {.lex_state = 8, .external_lex_state = 2}, + [1996] = {.lex_state = 156, .external_lex_state = 3}, + [1997] = {.lex_state = 156, .external_lex_state = 3}, + [1998] = {.lex_state = 156, .external_lex_state = 2}, + [1999] = {.lex_state = 8, .external_lex_state = 2}, + [2000] = {.lex_state = 8, .external_lex_state = 2}, + [2001] = {.lex_state = 156, .external_lex_state = 3}, + [2002] = {.lex_state = 156, .external_lex_state = 3}, + [2003] = {.lex_state = 156, .external_lex_state = 3}, + [2004] = {.lex_state = 8, .external_lex_state = 2}, + [2005] = {.lex_state = 8, .external_lex_state = 2}, + [2006] = {.lex_state = 8, .external_lex_state = 2}, + [2007] = {.lex_state = 8, .external_lex_state = 2}, + [2008] = {.lex_state = 8, .external_lex_state = 2}, + [2009] = {.lex_state = 8, .external_lex_state = 2}, + [2010] = {.lex_state = 8, .external_lex_state = 2}, + [2011] = {.lex_state = 156, .external_lex_state = 3}, + [2012] = {.lex_state = 156, .external_lex_state = 3}, + [2013] = {.lex_state = 8, .external_lex_state = 2}, + [2014] = {.lex_state = 8, .external_lex_state = 2}, + [2015] = {.lex_state = 156, .external_lex_state = 2}, + [2016] = {.lex_state = 156, .external_lex_state = 2}, + [2017] = {.lex_state = 156, .external_lex_state = 2}, + [2018] = {.lex_state = 156, .external_lex_state = 2}, + [2019] = {.lex_state = 156, .external_lex_state = 2}, + [2020] = {.lex_state = 156, .external_lex_state = 2}, + [2021] = {.lex_state = 156, .external_lex_state = 2}, + [2022] = {.lex_state = 156, .external_lex_state = 2}, + [2023] = {.lex_state = 156, .external_lex_state = 2}, + [2024] = {.lex_state = 156, .external_lex_state = 2}, + [2025] = {.lex_state = 156, .external_lex_state = 2}, + [2026] = {.lex_state = 156, .external_lex_state = 2}, + [2027] = {.lex_state = 156, .external_lex_state = 2}, + [2028] = {.lex_state = 156, .external_lex_state = 2}, + [2029] = {.lex_state = 23, .external_lex_state = 8}, + [2030] = {.lex_state = 23, .external_lex_state = 2}, + [2031] = {.lex_state = 156, .external_lex_state = 2}, + [2032] = {.lex_state = 156, .external_lex_state = 2}, + [2033] = {.lex_state = 156, .external_lex_state = 2}, + [2034] = {.lex_state = 156, .external_lex_state = 2}, + [2035] = {.lex_state = 156, .external_lex_state = 2}, + [2036] = {.lex_state = 156, .external_lex_state = 2}, + [2037] = {.lex_state = 156, .external_lex_state = 2}, + [2038] = {.lex_state = 156, .external_lex_state = 2}, + [2039] = {.lex_state = 156, .external_lex_state = 2}, + [2040] = {.lex_state = 156, .external_lex_state = 2}, + [2041] = {.lex_state = 156, .external_lex_state = 2}, + [2042] = {.lex_state = 156, .external_lex_state = 2}, + [2043] = {.lex_state = 156, .external_lex_state = 2}, + [2044] = {.lex_state = 156, .external_lex_state = 2}, + [2045] = {.lex_state = 156, .external_lex_state = 2}, + [2046] = {.lex_state = 156, .external_lex_state = 2}, + [2047] = {.lex_state = 23, .external_lex_state = 6}, + [2048] = {.lex_state = 27, .external_lex_state = 2}, + [2049] = {.lex_state = 23, .external_lex_state = 8}, + [2050] = {.lex_state = 156, .external_lex_state = 2}, + [2051] = {.lex_state = 156, .external_lex_state = 2}, + [2052] = {.lex_state = 156, .external_lex_state = 3}, + [2053] = {.lex_state = 156, .external_lex_state = 2}, + [2054] = {.lex_state = 156, .external_lex_state = 2}, + [2055] = {.lex_state = 156, .external_lex_state = 2}, + [2056] = {.lex_state = 156, .external_lex_state = 3}, + [2057] = {.lex_state = 156, .external_lex_state = 2}, + [2058] = {.lex_state = 156, .external_lex_state = 3}, + [2059] = {.lex_state = 156, .external_lex_state = 3}, + [2060] = {.lex_state = 156, .external_lex_state = 3}, + [2061] = {.lex_state = 156, .external_lex_state = 3}, + [2062] = {.lex_state = 156, .external_lex_state = 2}, + [2063] = {.lex_state = 156, .external_lex_state = 3}, + [2064] = {.lex_state = 156, .external_lex_state = 2}, + [2065] = {.lex_state = 156, .external_lex_state = 2}, + [2066] = {.lex_state = 156, .external_lex_state = 2}, + [2067] = {.lex_state = 156, .external_lex_state = 3}, + [2068] = {.lex_state = 156, .external_lex_state = 2}, + [2069] = {.lex_state = 156, .external_lex_state = 2}, + [2070] = {.lex_state = 156, .external_lex_state = 3}, + [2071] = {.lex_state = 156, .external_lex_state = 3}, + [2072] = {.lex_state = 156, .external_lex_state = 3}, + [2073] = {.lex_state = 156, .external_lex_state = 3}, + [2074] = {.lex_state = 156, .external_lex_state = 3}, + [2075] = {.lex_state = 156, .external_lex_state = 3}, + [2076] = {.lex_state = 156, .external_lex_state = 3}, + [2077] = {.lex_state = 156, .external_lex_state = 3}, + [2078] = {.lex_state = 156, .external_lex_state = 3}, + [2079] = {.lex_state = 156, .external_lex_state = 3}, + [2080] = {.lex_state = 156, .external_lex_state = 3}, + [2081] = {.lex_state = 156, .external_lex_state = 3}, + [2082] = {.lex_state = 156, .external_lex_state = 3}, + [2083] = {.lex_state = 156, .external_lex_state = 3}, + [2084] = {.lex_state = 156, .external_lex_state = 3}, + [2085] = {.lex_state = 156, .external_lex_state = 2}, + [2086] = {.lex_state = 156, .external_lex_state = 3}, + [2087] = {.lex_state = 156, .external_lex_state = 2}, + [2088] = {.lex_state = 156, .external_lex_state = 3}, + [2089] = {.lex_state = 156, .external_lex_state = 3}, + [2090] = {.lex_state = 156, .external_lex_state = 3}, + [2091] = {.lex_state = 156, .external_lex_state = 3}, + [2092] = {.lex_state = 156, .external_lex_state = 3}, + [2093] = {.lex_state = 156, .external_lex_state = 3}, + [2094] = {.lex_state = 156, .external_lex_state = 3}, + [2095] = {.lex_state = 156, .external_lex_state = 3}, + [2096] = {.lex_state = 156, .external_lex_state = 3}, + [2097] = {.lex_state = 156, .external_lex_state = 3}, + [2098] = {.lex_state = 156, .external_lex_state = 3}, + [2099] = {.lex_state = 156, .external_lex_state = 3}, + [2100] = {.lex_state = 156, .external_lex_state = 3}, + [2101] = {.lex_state = 156, .external_lex_state = 3}, + [2102] = {.lex_state = 156, .external_lex_state = 2}, + [2103] = {.lex_state = 156, .external_lex_state = 3}, + [2104] = {.lex_state = 156, .external_lex_state = 3}, + [2105] = {.lex_state = 156, .external_lex_state = 3}, + [2106] = {.lex_state = 156, .external_lex_state = 3}, + [2107] = {.lex_state = 156, .external_lex_state = 2}, + [2108] = {.lex_state = 156, .external_lex_state = 3}, + [2109] = {.lex_state = 156, .external_lex_state = 3}, + [2110] = {.lex_state = 23, .external_lex_state = 2}, + [2111] = {.lex_state = 156, .external_lex_state = 3}, + [2112] = {.lex_state = 156, .external_lex_state = 3}, + [2113] = {.lex_state = 156, .external_lex_state = 3}, + [2114] = {.lex_state = 156, .external_lex_state = 3}, + [2115] = {.lex_state = 156, .external_lex_state = 3}, + [2116] = {.lex_state = 156, .external_lex_state = 3}, + [2117] = {.lex_state = 156, .external_lex_state = 3}, + [2118] = {.lex_state = 156, .external_lex_state = 3}, + [2119] = {.lex_state = 156, .external_lex_state = 3}, + [2120] = {.lex_state = 156, .external_lex_state = 3}, + [2121] = {.lex_state = 156, .external_lex_state = 3}, + [2122] = {.lex_state = 156, .external_lex_state = 2}, + [2123] = {.lex_state = 156, .external_lex_state = 2}, + [2124] = {.lex_state = 156, .external_lex_state = 2}, + [2125] = {.lex_state = 156, .external_lex_state = 3}, + [2126] = {.lex_state = 156, .external_lex_state = 3}, + [2127] = {.lex_state = 156, .external_lex_state = 2}, + [2128] = {.lex_state = 156, .external_lex_state = 3}, + [2129] = {.lex_state = 156, .external_lex_state = 3}, + [2130] = {.lex_state = 156, .external_lex_state = 3}, + [2131] = {.lex_state = 156, .external_lex_state = 3}, + [2132] = {.lex_state = 156, .external_lex_state = 2}, + [2133] = {.lex_state = 156, .external_lex_state = 2}, + [2134] = {.lex_state = 156, .external_lex_state = 3}, + [2135] = {.lex_state = 156, .external_lex_state = 3}, + [2136] = {.lex_state = 156, .external_lex_state = 2}, + [2137] = {.lex_state = 156, .external_lex_state = 2}, + [2138] = {.lex_state = 156, .external_lex_state = 3}, + [2139] = {.lex_state = 156, .external_lex_state = 2}, + [2140] = {.lex_state = 156, .external_lex_state = 2}, + [2141] = {.lex_state = 156, .external_lex_state = 2}, + [2142] = {.lex_state = 156, .external_lex_state = 2}, + [2143] = {.lex_state = 156, .external_lex_state = 3}, + [2144] = {.lex_state = 156, .external_lex_state = 3}, + [2145] = {.lex_state = 156, .external_lex_state = 3}, + [2146] = {.lex_state = 156, .external_lex_state = 3}, + [2147] = {.lex_state = 156, .external_lex_state = 3}, + [2148] = {.lex_state = 156, .external_lex_state = 3}, + [2149] = {.lex_state = 156, .external_lex_state = 2}, + [2150] = {.lex_state = 156, .external_lex_state = 2}, + [2151] = {.lex_state = 156, .external_lex_state = 2}, + [2152] = {.lex_state = 156, .external_lex_state = 2}, + [2153] = {.lex_state = 156, .external_lex_state = 3}, + [2154] = {.lex_state = 156, .external_lex_state = 3}, + [2155] = {.lex_state = 156, .external_lex_state = 3}, + [2156] = {.lex_state = 156, .external_lex_state = 2}, + [2157] = {.lex_state = 156, .external_lex_state = 2}, + [2158] = {.lex_state = 156, .external_lex_state = 2}, + [2159] = {.lex_state = 156, .external_lex_state = 3}, + [2160] = {.lex_state = 156, .external_lex_state = 3}, + [2161] = {.lex_state = 156, .external_lex_state = 3}, + [2162] = {.lex_state = 156, .external_lex_state = 2}, + [2163] = {.lex_state = 23, .external_lex_state = 6}, + [2164] = {.lex_state = 27, .external_lex_state = 2}, + [2165] = {.lex_state = 156, .external_lex_state = 2}, + [2166] = {.lex_state = 156, .external_lex_state = 2}, + [2167] = {.lex_state = 156, .external_lex_state = 2}, + [2168] = {.lex_state = 156, .external_lex_state = 2}, + [2169] = {.lex_state = 156, .external_lex_state = 2}, + [2170] = {.lex_state = 156, .external_lex_state = 2}, + [2171] = {.lex_state = 156, .external_lex_state = 2}, + [2172] = {.lex_state = 156, .external_lex_state = 3}, + [2173] = {.lex_state = 156, .external_lex_state = 2}, + [2174] = {.lex_state = 156, .external_lex_state = 2}, + [2175] = {.lex_state = 156, .external_lex_state = 2}, + [2176] = {.lex_state = 156, .external_lex_state = 2}, + [2177] = {.lex_state = 156, .external_lex_state = 2}, + [2178] = {.lex_state = 156, .external_lex_state = 2}, + [2179] = {.lex_state = 156, .external_lex_state = 3}, + [2180] = {.lex_state = 156, .external_lex_state = 2}, + [2181] = {.lex_state = 156, .external_lex_state = 2}, + [2182] = {.lex_state = 156, .external_lex_state = 3}, + [2183] = {.lex_state = 156, .external_lex_state = 3}, + [2184] = {.lex_state = 156, .external_lex_state = 2}, + [2185] = {.lex_state = 156, .external_lex_state = 2}, + [2186] = {.lex_state = 156, .external_lex_state = 2}, + [2187] = {.lex_state = 156, .external_lex_state = 3}, + [2188] = {.lex_state = 156, .external_lex_state = 3}, + [2189] = {.lex_state = 156, .external_lex_state = 3}, + [2190] = {.lex_state = 23, .external_lex_state = 2}, + [2191] = {.lex_state = 23, .external_lex_state = 2}, + [2192] = {.lex_state = 21, .external_lex_state = 7}, + [2193] = {.lex_state = 21, .external_lex_state = 7}, + [2194] = {.lex_state = 28, .external_lex_state = 2}, + [2195] = {.lex_state = 28, .external_lex_state = 2}, + [2196] = {.lex_state = 21, .external_lex_state = 6}, + [2197] = {.lex_state = 21, .external_lex_state = 2}, + [2198] = {.lex_state = 21, .external_lex_state = 6}, + [2199] = {.lex_state = 29, .external_lex_state = 2}, + [2200] = {.lex_state = 21, .external_lex_state = 8}, + [2201] = {.lex_state = 29, .external_lex_state = 2}, + [2202] = {.lex_state = 30, .external_lex_state = 5}, + [2203] = {.lex_state = 21, .external_lex_state = 2}, + [2204] = {.lex_state = 21, .external_lex_state = 2}, + [2205] = {.lex_state = 21, .external_lex_state = 2}, + [2206] = {.lex_state = 30, .external_lex_state = 5}, + [2207] = {.lex_state = 21, .external_lex_state = 2}, + [2208] = {.lex_state = 21, .external_lex_state = 2}, + [2209] = {.lex_state = 21, .external_lex_state = 8}, + [2210] = {.lex_state = 21, .external_lex_state = 2}, + [2211] = {.lex_state = 21, .external_lex_state = 2}, + [2212] = {.lex_state = 21, .external_lex_state = 2}, + [2213] = {.lex_state = 21, .external_lex_state = 2}, + [2214] = {.lex_state = 21, .external_lex_state = 2}, + [2215] = {.lex_state = 21, .external_lex_state = 2}, + [2216] = {.lex_state = 21, .external_lex_state = 2}, + [2217] = {.lex_state = 21, .external_lex_state = 2}, + [2218] = {.lex_state = 21, .external_lex_state = 6}, + [2219] = {.lex_state = 21, .external_lex_state = 6}, + [2220] = {.lex_state = 21, .external_lex_state = 6}, + [2221] = {.lex_state = 8, .external_lex_state = 2}, + [2222] = {.lex_state = 8, .external_lex_state = 2}, + [2223] = {.lex_state = 8, .external_lex_state = 2}, + [2224] = {.lex_state = 8, .external_lex_state = 2}, + [2225] = {.lex_state = 8, .external_lex_state = 2}, + [2226] = {.lex_state = 8, .external_lex_state = 2}, + [2227] = {.lex_state = 8, .external_lex_state = 2}, + [2228] = {.lex_state = 8, .external_lex_state = 2}, + [2229] = {.lex_state = 8, .external_lex_state = 2}, + [2230] = {.lex_state = 8, .external_lex_state = 2}, + [2231] = {.lex_state = 8, .external_lex_state = 2}, + [2232] = {.lex_state = 31, .external_lex_state = 11}, + [2233] = {.lex_state = 8, .external_lex_state = 2}, + [2234] = {.lex_state = 21, .external_lex_state = 2}, + [2235] = {.lex_state = 21, .external_lex_state = 2}, + [2236] = {.lex_state = 21, .external_lex_state = 2}, + [2237] = {.lex_state = 21, .external_lex_state = 2}, + [2238] = {.lex_state = 21, .external_lex_state = 2}, + [2239] = {.lex_state = 21, .external_lex_state = 2}, + [2240] = {.lex_state = 21, .external_lex_state = 2}, + [2241] = {.lex_state = 21, .external_lex_state = 2}, + [2242] = {.lex_state = 21, .external_lex_state = 2}, + [2243] = {.lex_state = 21, .external_lex_state = 2}, + [2244] = {.lex_state = 21, .external_lex_state = 2}, + [2245] = {.lex_state = 21, .external_lex_state = 2}, + [2246] = {.lex_state = 21, .external_lex_state = 2}, + [2247] = {.lex_state = 21, .external_lex_state = 2}, + [2248] = {.lex_state = 21, .external_lex_state = 2}, + [2249] = {.lex_state = 21, .external_lex_state = 2}, + [2250] = {.lex_state = 21, .external_lex_state = 2}, + [2251] = {.lex_state = 21, .external_lex_state = 2}, + [2252] = {.lex_state = 21, .external_lex_state = 2}, + [2253] = {.lex_state = 21, .external_lex_state = 2}, + [2254] = {.lex_state = 21, .external_lex_state = 2}, + [2255] = {.lex_state = 21, .external_lex_state = 2}, + [2256] = {.lex_state = 21, .external_lex_state = 2}, + [2257] = {.lex_state = 21, .external_lex_state = 2}, + [2258] = {.lex_state = 21, .external_lex_state = 2}, + [2259] = {.lex_state = 21, .external_lex_state = 2}, + [2260] = {.lex_state = 21, .external_lex_state = 2}, + [2261] = {.lex_state = 21, .external_lex_state = 2}, + [2262] = {.lex_state = 21, .external_lex_state = 2}, + [2263] = {.lex_state = 21, .external_lex_state = 2}, + [2264] = {.lex_state = 21, .external_lex_state = 2}, + [2265] = {.lex_state = 21, .external_lex_state = 2}, + [2266] = {.lex_state = 21, .external_lex_state = 2}, + [2267] = {.lex_state = 21, .external_lex_state = 2}, + [2268] = {.lex_state = 21, .external_lex_state = 2}, + [2269] = {.lex_state = 21, .external_lex_state = 2}, + [2270] = {.lex_state = 21, .external_lex_state = 2}, + [2271] = {.lex_state = 21, .external_lex_state = 2}, + [2272] = {.lex_state = 21, .external_lex_state = 2}, + [2273] = {.lex_state = 21, .external_lex_state = 2}, + [2274] = {.lex_state = 21, .external_lex_state = 2}, + [2275] = {.lex_state = 21, .external_lex_state = 2}, + [2276] = {.lex_state = 21, .external_lex_state = 2}, + [2277] = {.lex_state = 21, .external_lex_state = 2}, + [2278] = {.lex_state = 21, .external_lex_state = 2}, + [2279] = {.lex_state = 21, .external_lex_state = 2}, + [2280] = {.lex_state = 21, .external_lex_state = 2}, + [2281] = {.lex_state = 21, .external_lex_state = 2}, + [2282] = {.lex_state = 21, .external_lex_state = 2}, + [2283] = {.lex_state = 21, .external_lex_state = 2}, + [2284] = {.lex_state = 21, .external_lex_state = 2}, + [2285] = {.lex_state = 21, .external_lex_state = 2}, + [2286] = {.lex_state = 21, .external_lex_state = 2}, + [2287] = {.lex_state = 21, .external_lex_state = 2}, + [2288] = {.lex_state = 21, .external_lex_state = 2}, + [2289] = {.lex_state = 21, .external_lex_state = 2}, + [2290] = {.lex_state = 21, .external_lex_state = 2}, + [2291] = {.lex_state = 21, .external_lex_state = 2}, + [2292] = {.lex_state = 21, .external_lex_state = 2}, + [2293] = {.lex_state = 21, .external_lex_state = 2}, + [2294] = {.lex_state = 21, .external_lex_state = 2}, + [2295] = {.lex_state = 21, .external_lex_state = 2}, + [2296] = {.lex_state = 21, .external_lex_state = 2}, + [2297] = {.lex_state = 21, .external_lex_state = 2}, + [2298] = {.lex_state = 21, .external_lex_state = 2}, + [2299] = {.lex_state = 21, .external_lex_state = 2}, + [2300] = {.lex_state = 21, .external_lex_state = 2}, + [2301] = {.lex_state = 21, .external_lex_state = 2}, + [2302] = {.lex_state = 21, .external_lex_state = 2}, + [2303] = {.lex_state = 21, .external_lex_state = 2}, + [2304] = {.lex_state = 21, .external_lex_state = 2}, + [2305] = {.lex_state = 21, .external_lex_state = 2}, + [2306] = {.lex_state = 21, .external_lex_state = 2}, + [2307] = {.lex_state = 21, .external_lex_state = 2}, + [2308] = {.lex_state = 21, .external_lex_state = 2}, + [2309] = {.lex_state = 21, .external_lex_state = 2}, + [2310] = {.lex_state = 21, .external_lex_state = 2}, + [2311] = {.lex_state = 21, .external_lex_state = 2}, + [2312] = {.lex_state = 21, .external_lex_state = 2}, + [2313] = {.lex_state = 21, .external_lex_state = 2}, + [2314] = {.lex_state = 21, .external_lex_state = 2}, + [2315] = {.lex_state = 21, .external_lex_state = 2}, + [2316] = {.lex_state = 21, .external_lex_state = 2}, + [2317] = {.lex_state = 21, .external_lex_state = 2}, + [2318] = {.lex_state = 21, .external_lex_state = 2}, + [2319] = {.lex_state = 21, .external_lex_state = 2}, + [2320] = {.lex_state = 21, .external_lex_state = 2}, + [2321] = {.lex_state = 21, .external_lex_state = 2}, + [2322] = {.lex_state = 21, .external_lex_state = 2}, + [2323] = {.lex_state = 21, .external_lex_state = 2}, + [2324] = {.lex_state = 21, .external_lex_state = 2}, + [2325] = {.lex_state = 21, .external_lex_state = 2}, + [2326] = {.lex_state = 21, .external_lex_state = 2}, + [2327] = {.lex_state = 21, .external_lex_state = 2}, + [2328] = {.lex_state = 21, .external_lex_state = 2}, + [2329] = {.lex_state = 21, .external_lex_state = 2}, + [2330] = {.lex_state = 21, .external_lex_state = 2}, + [2331] = {.lex_state = 21, .external_lex_state = 2}, + [2332] = {.lex_state = 21, .external_lex_state = 2}, + [2333] = {.lex_state = 21, .external_lex_state = 2}, + [2334] = {.lex_state = 21, .external_lex_state = 2}, + [2335] = {.lex_state = 21, .external_lex_state = 2}, + [2336] = {.lex_state = 21, .external_lex_state = 2}, + [2337] = {.lex_state = 21, .external_lex_state = 2}, + [2338] = {.lex_state = 21, .external_lex_state = 2}, + [2339] = {.lex_state = 21, .external_lex_state = 2}, + [2340] = {.lex_state = 21, .external_lex_state = 2}, + [2341] = {.lex_state = 21, .external_lex_state = 2}, + [2342] = {.lex_state = 21, .external_lex_state = 2}, + [2343] = {.lex_state = 21, .external_lex_state = 2}, + [2344] = {.lex_state = 21, .external_lex_state = 2}, + [2345] = {.lex_state = 21, .external_lex_state = 2}, + [2346] = {.lex_state = 21, .external_lex_state = 2}, + [2347] = {.lex_state = 21, .external_lex_state = 2}, + [2348] = {.lex_state = 21, .external_lex_state = 2}, + [2349] = {.lex_state = 21, .external_lex_state = 2}, + [2350] = {.lex_state = 21, .external_lex_state = 2}, + [2351] = {.lex_state = 21, .external_lex_state = 2}, + [2352] = {.lex_state = 21, .external_lex_state = 2}, + [2353] = {.lex_state = 21, .external_lex_state = 2}, + [2354] = {.lex_state = 21, .external_lex_state = 2}, + [2355] = {.lex_state = 21, .external_lex_state = 2}, + [2356] = {.lex_state = 21, .external_lex_state = 2}, + [2357] = {.lex_state = 21, .external_lex_state = 2}, + [2358] = {.lex_state = 21, .external_lex_state = 2}, + [2359] = {.lex_state = 21, .external_lex_state = 2}, + [2360] = {.lex_state = 21, .external_lex_state = 2}, + [2361] = {.lex_state = 21, .external_lex_state = 2}, + [2362] = {.lex_state = 21, .external_lex_state = 2}, + [2363] = {.lex_state = 21, .external_lex_state = 2}, + [2364] = {.lex_state = 21, .external_lex_state = 2}, + [2365] = {.lex_state = 31, .external_lex_state = 11}, + [2366] = {.lex_state = 21, .external_lex_state = 2}, + [2367] = {.lex_state = 21, .external_lex_state = 2}, + [2368] = {.lex_state = 21, .external_lex_state = 2}, + [2369] = {.lex_state = 21, .external_lex_state = 2}, + [2370] = {.lex_state = 21, .external_lex_state = 2}, + [2371] = {.lex_state = 21, .external_lex_state = 2}, + [2372] = {.lex_state = 21, .external_lex_state = 2}, + [2373] = {.lex_state = 21, .external_lex_state = 2}, + [2374] = {.lex_state = 21, .external_lex_state = 2}, + [2375] = {.lex_state = 21, .external_lex_state = 2}, + [2376] = {.lex_state = 21, .external_lex_state = 2}, + [2377] = {.lex_state = 21, .external_lex_state = 2}, + [2378] = {.lex_state = 21, .external_lex_state = 2}, + [2379] = {.lex_state = 21, .external_lex_state = 2}, + [2380] = {.lex_state = 21, .external_lex_state = 2}, + [2381] = {.lex_state = 21, .external_lex_state = 2}, + [2382] = {.lex_state = 21, .external_lex_state = 2}, + [2383] = {.lex_state = 32, .external_lex_state = 12}, + [2384] = {.lex_state = 32, .external_lex_state = 12}, + [2385] = {.lex_state = 33, .external_lex_state = 11}, + [2386] = {.lex_state = 31, .external_lex_state = 5}, + [2387] = {.lex_state = 31, .external_lex_state = 5}, + [2388] = {.lex_state = 33, .external_lex_state = 11}, + [2389] = {.lex_state = 34, .external_lex_state = 11}, + [2390] = {.lex_state = 34, .external_lex_state = 11}, + [2391] = {.lex_state = 34, .external_lex_state = 11}, + [2392] = {.lex_state = 34, .external_lex_state = 11}, + [2393] = {.lex_state = 35, .external_lex_state = 11}, + [2394] = {.lex_state = 35, .external_lex_state = 11}, + [2395] = {.lex_state = 35, .external_lex_state = 11}, + [2396] = {.lex_state = 35, .external_lex_state = 11}, + [2397] = {.lex_state = 35, .external_lex_state = 11}, + [2398] = {.lex_state = 35, .external_lex_state = 11}, + [2399] = {.lex_state = 35, .external_lex_state = 11}, + [2400] = {.lex_state = 35, .external_lex_state = 11}, + [2401] = {.lex_state = 35, .external_lex_state = 11}, + [2402] = {.lex_state = 35, .external_lex_state = 11}, + [2403] = {.lex_state = 35, .external_lex_state = 11}, + [2404] = {.lex_state = 35, .external_lex_state = 11}, + [2405] = {.lex_state = 35, .external_lex_state = 11}, + [2406] = {.lex_state = 35, .external_lex_state = 11}, + [2407] = {.lex_state = 35, .external_lex_state = 11}, + [2408] = {.lex_state = 35, .external_lex_state = 11}, + [2409] = {.lex_state = 35, .external_lex_state = 11}, + [2410] = {.lex_state = 35, .external_lex_state = 11}, + [2411] = {.lex_state = 36, .external_lex_state = 2}, + [2412] = {.lex_state = 11, .external_lex_state = 12}, + [2413] = {.lex_state = 36, .external_lex_state = 2}, + [2414] = {.lex_state = 36, .external_lex_state = 2}, + [2415] = {.lex_state = 11, .external_lex_state = 12}, + [2416] = {.lex_state = 36, .external_lex_state = 2}, + [2417] = {.lex_state = 36, .external_lex_state = 3}, + [2418] = {.lex_state = 36, .external_lex_state = 3}, + [2419] = {.lex_state = 36, .external_lex_state = 3}, + [2420] = {.lex_state = 36, .external_lex_state = 3}, + [2421] = {.lex_state = 36, .external_lex_state = 3}, + [2422] = {.lex_state = 36, .external_lex_state = 13}, + [2423] = {.lex_state = 36, .external_lex_state = 13}, + [2424] = {.lex_state = 36, .external_lex_state = 13}, + [2425] = {.lex_state = 36, .external_lex_state = 13}, + [2426] = {.lex_state = 36, .external_lex_state = 13}, + [2427] = {.lex_state = 36, .external_lex_state = 13}, + [2428] = {.lex_state = 37, .external_lex_state = 11}, + [2429] = {.lex_state = 36, .external_lex_state = 13}, + [2430] = {.lex_state = 36, .external_lex_state = 13}, + [2431] = {.lex_state = 36, .external_lex_state = 13}, + [2432] = {.lex_state = 36, .external_lex_state = 13}, + [2433] = {.lex_state = 36, .external_lex_state = 13}, + [2434] = {.lex_state = 36, .external_lex_state = 12}, + [2435] = {.lex_state = 36, .external_lex_state = 12}, + [2436] = {.lex_state = 38, .external_lex_state = 11}, + [2437] = {.lex_state = 36, .external_lex_state = 12}, + [2438] = {.lex_state = 39, .external_lex_state = 11}, + [2439] = {.lex_state = 36, .external_lex_state = 12}, + [2440] = {.lex_state = 40, .external_lex_state = 11}, + [2441] = {.lex_state = 37, .external_lex_state = 11}, + [2442] = {.lex_state = 36, .external_lex_state = 12}, + [2443] = {.lex_state = 36, .external_lex_state = 12}, + [2444] = {.lex_state = 36, .external_lex_state = 12}, + [2445] = {.lex_state = 36, .external_lex_state = 12}, + [2446] = {.lex_state = 36, .external_lex_state = 12}, + [2447] = {.lex_state = 36, .external_lex_state = 12}, + [2448] = {.lex_state = 38, .external_lex_state = 11}, + [2449] = {.lex_state = 39, .external_lex_state = 11}, + [2450] = {.lex_state = 40, .external_lex_state = 11}, + [2451] = {.lex_state = 41, .external_lex_state = 14}, + [2452] = {.lex_state = 37, .external_lex_state = 12}, + [2453] = {.lex_state = 41, .external_lex_state = 14}, + [2454] = {.lex_state = 37, .external_lex_state = 5}, + [2455] = {.lex_state = 42, .external_lex_state = 15}, + [2456] = {.lex_state = 37, .external_lex_state = 15}, + [2457] = {.lex_state = 37, .external_lex_state = 5}, + [2458] = {.lex_state = 37, .external_lex_state = 5}, + [2459] = {.lex_state = 42, .external_lex_state = 16}, + [2460] = {.lex_state = 43, .external_lex_state = 2}, + [2461] = {.lex_state = 42, .external_lex_state = 14}, + [2462] = {.lex_state = 37, .external_lex_state = 15}, + [2463] = {.lex_state = 44, .external_lex_state = 15}, + [2464] = {.lex_state = 38, .external_lex_state = 15}, + [2465] = {.lex_state = 40, .external_lex_state = 15}, + [2466] = {.lex_state = 37, .external_lex_state = 15}, + [2467] = {.lex_state = 45, .external_lex_state = 14}, + [2468] = {.lex_state = 42, .external_lex_state = 15}, + [2469] = {.lex_state = 37, .external_lex_state = 15}, + [2470] = {.lex_state = 37, .external_lex_state = 11}, + [2471] = {.lex_state = 39, .external_lex_state = 15}, + [2472] = {.lex_state = 45, .external_lex_state = 14}, + [2473] = {.lex_state = 43, .external_lex_state = 2}, + [2474] = {.lex_state = 42, .external_lex_state = 15}, + [2475] = {.lex_state = 46, .external_lex_state = 15}, + [2476] = {.lex_state = 47, .external_lex_state = 15}, + [2477] = {.lex_state = 76, .external_lex_state = 11}, + [2478] = {.lex_state = 38, .external_lex_state = 12}, + [2479] = {.lex_state = 40, .external_lex_state = 12}, + [2480] = {.lex_state = 37, .external_lex_state = 12}, + [2481] = {.lex_state = 42, .external_lex_state = 15}, + [2482] = {.lex_state = 37, .external_lex_state = 11}, + [2483] = {.lex_state = 47, .external_lex_state = 16}, + [2484] = {.lex_state = 37, .external_lex_state = 11}, + [2485] = {.lex_state = 42, .external_lex_state = 16}, + [2486] = {.lex_state = 39, .external_lex_state = 15}, + [2487] = {.lex_state = 37, .external_lex_state = 11}, + [2488] = {.lex_state = 37, .external_lex_state = 16}, + [2489] = {.lex_state = 37, .external_lex_state = 11}, + [2490] = {.lex_state = 37, .external_lex_state = 11}, + [2491] = {.lex_state = 44, .external_lex_state = 14}, + [2492] = {.lex_state = 37, .external_lex_state = 11}, + [2493] = {.lex_state = 37, .external_lex_state = 11}, + [2494] = {.lex_state = 37, .external_lex_state = 5}, + [2495] = {.lex_state = 37, .external_lex_state = 11}, + [2496] = {.lex_state = 44, .external_lex_state = 16}, + [2497] = {.lex_state = 44, .external_lex_state = 15}, + [2498] = {.lex_state = 38, .external_lex_state = 15}, + [2499] = {.lex_state = 42, .external_lex_state = 14}, + [2500] = {.lex_state = 48, .external_lex_state = 11}, + [2501] = {.lex_state = 48, .external_lex_state = 11}, + [2502] = {.lex_state = 40, .external_lex_state = 15}, + [2503] = {.lex_state = 42, .external_lex_state = 16}, + [2504] = {.lex_state = 42, .external_lex_state = 14}, + [2505] = {.lex_state = 42, .external_lex_state = 16}, + [2506] = {.lex_state = 39, .external_lex_state = 12}, + [2507] = {.lex_state = 46, .external_lex_state = 16}, + [2508] = {.lex_state = 47, .external_lex_state = 15}, + [2509] = {.lex_state = 46, .external_lex_state = 14}, + [2510] = {.lex_state = 37, .external_lex_state = 5}, + [2511] = {.lex_state = 38, .external_lex_state = 12}, + [2512] = {.lex_state = 40, .external_lex_state = 12}, + [2513] = {.lex_state = 47, .external_lex_state = 14}, + [2514] = {.lex_state = 46, .external_lex_state = 15}, + [2515] = {.lex_state = 42, .external_lex_state = 14}, + [2516] = {.lex_state = 37, .external_lex_state = 11}, + [2517] = {.lex_state = 40, .external_lex_state = 16}, + [2518] = {.lex_state = 36, .external_lex_state = 6}, + [2519] = {.lex_state = 37, .external_lex_state = 12}, + [2520] = {.lex_state = 37, .external_lex_state = 7}, + [2521] = {.lex_state = 42, .external_lex_state = 15}, + [2522] = {.lex_state = 37, .external_lex_state = 16}, + [2523] = {.lex_state = 37, .external_lex_state = 11}, + [2524] = {.lex_state = 37, .external_lex_state = 14}, + [2525] = {.lex_state = 36, .external_lex_state = 6}, + [2526] = {.lex_state = 36, .external_lex_state = 8}, + [2527] = {.lex_state = 42, .external_lex_state = 15}, + [2528] = {.lex_state = 37, .external_lex_state = 11}, + [2529] = {.lex_state = 37, .external_lex_state = 11}, + [2530] = {.lex_state = 36, .external_lex_state = 6}, + [2531] = {.lex_state = 36, .external_lex_state = 8}, + [2532] = {.lex_state = 36, .external_lex_state = 6}, + [2533] = {.lex_state = 36, .external_lex_state = 6}, + [2534] = {.lex_state = 36, .external_lex_state = 8}, + [2535] = {.lex_state = 37, .external_lex_state = 15}, + [2536] = {.lex_state = 36, .external_lex_state = 6}, + [2537] = {.lex_state = 36, .external_lex_state = 8}, + [2538] = {.lex_state = 36, .external_lex_state = 6}, + [2539] = {.lex_state = 37, .external_lex_state = 11}, + [2540] = {.lex_state = 36, .external_lex_state = 6}, + [2541] = {.lex_state = 37, .external_lex_state = 11}, + [2542] = {.lex_state = 37, .external_lex_state = 11}, + [2543] = {.lex_state = 36, .external_lex_state = 6}, + [2544] = {.lex_state = 37, .external_lex_state = 11}, + [2545] = {.lex_state = 37, .external_lex_state = 11}, + [2546] = {.lex_state = 37, .external_lex_state = 11}, + [2547] = {.lex_state = 37, .external_lex_state = 11}, + [2548] = {.lex_state = 37, .external_lex_state = 11}, + [2549] = {.lex_state = 37, .external_lex_state = 15}, + [2550] = {.lex_state = 36, .external_lex_state = 6}, + [2551] = {.lex_state = 42, .external_lex_state = 7}, + [2552] = {.lex_state = 38, .external_lex_state = 16}, + [2553] = {.lex_state = 37, .external_lex_state = 11}, + [2554] = {.lex_state = 37, .external_lex_state = 11}, + [2555] = {.lex_state = 37, .external_lex_state = 11}, + [2556] = {.lex_state = 37, .external_lex_state = 11}, + [2557] = {.lex_state = 42, .external_lex_state = 7}, + [2558] = {.lex_state = 37, .external_lex_state = 11}, + [2559] = {.lex_state = 36, .external_lex_state = 6}, + [2560] = {.lex_state = 36, .external_lex_state = 8}, + [2561] = {.lex_state = 37, .external_lex_state = 16}, + [2562] = {.lex_state = 37, .external_lex_state = 11}, + [2563] = {.lex_state = 37, .external_lex_state = 11}, + [2564] = {.lex_state = 37, .external_lex_state = 11}, + [2565] = {.lex_state = 36, .external_lex_state = 6}, + [2566] = {.lex_state = 36, .external_lex_state = 6}, + [2567] = {.lex_state = 36, .external_lex_state = 8}, + [2568] = {.lex_state = 37, .external_lex_state = 11}, + [2569] = {.lex_state = 36, .external_lex_state = 6}, + [2570] = {.lex_state = 36, .external_lex_state = 8}, + [2571] = {.lex_state = 36, .external_lex_state = 6}, + [2572] = {.lex_state = 36, .external_lex_state = 6}, + [2573] = {.lex_state = 39, .external_lex_state = 16}, + [2574] = {.lex_state = 45, .external_lex_state = 14}, + [2575] = {.lex_state = 37, .external_lex_state = 11}, + [2576] = {.lex_state = 36, .external_lex_state = 6}, + [2577] = {.lex_state = 36, .external_lex_state = 8}, + [2578] = {.lex_state = 37, .external_lex_state = 11}, + [2579] = {.lex_state = 37, .external_lex_state = 11}, + [2580] = {.lex_state = 37, .external_lex_state = 12}, + [2581] = {.lex_state = 37, .external_lex_state = 11}, + [2582] = {.lex_state = 37, .external_lex_state = 11}, + [2583] = {.lex_state = 44, .external_lex_state = 14}, + [2584] = {.lex_state = 46, .external_lex_state = 14}, + [2585] = {.lex_state = 37, .external_lex_state = 11}, + [2586] = {.lex_state = 37, .external_lex_state = 11}, + [2587] = {.lex_state = 37, .external_lex_state = 12}, + [2588] = {.lex_state = 37, .external_lex_state = 12}, + [2589] = {.lex_state = 37, .external_lex_state = 2}, + [2590] = {.lex_state = 37, .external_lex_state = 11}, + [2591] = {.lex_state = 47, .external_lex_state = 14}, + [2592] = {.lex_state = 37, .external_lex_state = 7}, + [2593] = {.lex_state = 37, .external_lex_state = 11}, + [2594] = {.lex_state = 36, .external_lex_state = 6}, + [2595] = {.lex_state = 37, .external_lex_state = 11}, + [2596] = {.lex_state = 36, .external_lex_state = 6}, + [2597] = {.lex_state = 36, .external_lex_state = 8}, + [2598] = {.lex_state = 36, .external_lex_state = 6}, + [2599] = {.lex_state = 37, .external_lex_state = 11}, + [2600] = {.lex_state = 37, .external_lex_state = 11}, + [2601] = {.lex_state = 42, .external_lex_state = 7}, + [2602] = {.lex_state = 37, .external_lex_state = 11}, + [2603] = {.lex_state = 37, .external_lex_state = 2}, + [2604] = {.lex_state = 36, .external_lex_state = 6}, + [2605] = {.lex_state = 37, .external_lex_state = 11}, + [2606] = {.lex_state = 37, .external_lex_state = 11}, + [2607] = {.lex_state = 37, .external_lex_state = 11}, + [2608] = {.lex_state = 36, .external_lex_state = 6}, + [2609] = {.lex_state = 36, .external_lex_state = 8}, + [2610] = {.lex_state = 37, .external_lex_state = 11}, + [2611] = {.lex_state = 37, .external_lex_state = 11}, + [2612] = {.lex_state = 36, .external_lex_state = 8}, + [2613] = {.lex_state = 37, .external_lex_state = 11}, + [2614] = {.lex_state = 36, .external_lex_state = 12}, + [2615] = {.lex_state = 39, .external_lex_state = 12}, + [2616] = {.lex_state = 46, .external_lex_state = 16}, + [2617] = {.lex_state = 37, .external_lex_state = 11}, + [2618] = {.lex_state = 44, .external_lex_state = 16}, + [2619] = {.lex_state = 36, .external_lex_state = 6}, + [2620] = {.lex_state = 37, .external_lex_state = 2}, + [2621] = {.lex_state = 36, .external_lex_state = 8}, + [2622] = {.lex_state = 37, .external_lex_state = 16}, + [2623] = {.lex_state = 37, .external_lex_state = 11}, + [2624] = {.lex_state = 37, .external_lex_state = 11}, + [2625] = {.lex_state = 36, .external_lex_state = 6}, + [2626] = {.lex_state = 37, .external_lex_state = 11}, + [2627] = {.lex_state = 47, .external_lex_state = 16}, + [2628] = {.lex_state = 37, .external_lex_state = 11}, + [2629] = {.lex_state = 37, .external_lex_state = 11}, + [2630] = {.lex_state = 37, .external_lex_state = 11}, + [2631] = {.lex_state = 37, .external_lex_state = 11}, + [2632] = {.lex_state = 37, .external_lex_state = 11}, + [2633] = {.lex_state = 37, .external_lex_state = 11}, + [2634] = {.lex_state = 37, .external_lex_state = 7}, + [2635] = {.lex_state = 36, .external_lex_state = 2}, + [2636] = {.lex_state = 42, .external_lex_state = 15}, + [2637] = {.lex_state = 37, .external_lex_state = 16}, + [2638] = {.lex_state = 42, .external_lex_state = 16}, + [2639] = {.lex_state = 42, .external_lex_state = 15}, + [2640] = {.lex_state = 42, .external_lex_state = 6}, + [2641] = {.lex_state = 36, .external_lex_state = 2}, + [2642] = {.lex_state = 42, .external_lex_state = 15}, + [2643] = {.lex_state = 42, .external_lex_state = 15}, + [2644] = {.lex_state = 37, .external_lex_state = 11}, + [2645] = {.lex_state = 37, .external_lex_state = 11}, + [2646] = {.lex_state = 36, .external_lex_state = 2}, + [2647] = {.lex_state = 42, .external_lex_state = 15}, + [2648] = {.lex_state = 42, .external_lex_state = 15}, + [2649] = {.lex_state = 37, .external_lex_state = 15}, + [2650] = {.lex_state = 37, .external_lex_state = 11}, + [2651] = {.lex_state = 37, .external_lex_state = 15}, + [2652] = {.lex_state = 39, .external_lex_state = 14}, + [2653] = {.lex_state = 42, .external_lex_state = 8}, + [2654] = {.lex_state = 37, .external_lex_state = 11}, + [2655] = {.lex_state = 37, .external_lex_state = 15}, + [2656] = {.lex_state = 38, .external_lex_state = 14}, + [2657] = {.lex_state = 42, .external_lex_state = 15}, + [2658] = {.lex_state = 42, .external_lex_state = 8}, + [2659] = {.lex_state = 40, .external_lex_state = 14}, + [2660] = {.lex_state = 37, .external_lex_state = 11}, + [2661] = {.lex_state = 37, .external_lex_state = 14}, + [2662] = {.lex_state = 36, .external_lex_state = 2}, + [2663] = {.lex_state = 42, .external_lex_state = 15}, + [2664] = {.lex_state = 49, .external_lex_state = 15}, + [2665] = {.lex_state = 37, .external_lex_state = 11}, + [2666] = {.lex_state = 42, .external_lex_state = 16}, + [2667] = {.lex_state = 37, .external_lex_state = 11}, + [2668] = {.lex_state = 42, .external_lex_state = 15}, + [2669] = {.lex_state = 42, .external_lex_state = 15}, + [2670] = {.lex_state = 37, .external_lex_state = 15}, + [2671] = {.lex_state = 39, .external_lex_state = 16}, + [2672] = {.lex_state = 37, .external_lex_state = 11}, + [2673] = {.lex_state = 42, .external_lex_state = 14}, + [2674] = {.lex_state = 37, .external_lex_state = 11}, + [2675] = {.lex_state = 37, .external_lex_state = 11}, + [2676] = {.lex_state = 37, .external_lex_state = 14}, + [2677] = {.lex_state = 37, .external_lex_state = 11}, + [2678] = {.lex_state = 37, .external_lex_state = 15}, + [2679] = {.lex_state = 37, .external_lex_state = 14}, + [2680] = {.lex_state = 50, .external_lex_state = 15}, + [2681] = {.lex_state = 37, .external_lex_state = 11}, + [2682] = {.lex_state = 37, .external_lex_state = 15}, + [2683] = {.lex_state = 36, .external_lex_state = 2}, + [2684] = {.lex_state = 42, .external_lex_state = 14}, + [2685] = {.lex_state = 37, .external_lex_state = 11}, + [2686] = {.lex_state = 37, .external_lex_state = 15}, + [2687] = {.lex_state = 42, .external_lex_state = 6}, + [2688] = {.lex_state = 51, .external_lex_state = 12}, + [2689] = {.lex_state = 37, .external_lex_state = 15}, + [2690] = {.lex_state = 37, .external_lex_state = 11}, + [2691] = {.lex_state = 37, .external_lex_state = 15}, + [2692] = {.lex_state = 42, .external_lex_state = 6}, + [2693] = {.lex_state = 37, .external_lex_state = 14}, + [2694] = {.lex_state = 37, .external_lex_state = 15}, + [2695] = {.lex_state = 37, .external_lex_state = 15}, + [2696] = {.lex_state = 38, .external_lex_state = 16}, + [2697] = {.lex_state = 40, .external_lex_state = 16}, + [2698] = {.lex_state = 42, .external_lex_state = 8}, + [2699] = {.lex_state = 36, .external_lex_state = 7}, + [2700] = {.lex_state = 37, .external_lex_state = 11}, + [2701] = {.lex_state = 37, .external_lex_state = 12}, + [2702] = {.lex_state = 37, .external_lex_state = 12}, + [2703] = {.lex_state = 37, .external_lex_state = 7}, + [2704] = {.lex_state = 37, .external_lex_state = 12}, + [2705] = {.lex_state = 37, .external_lex_state = 11}, + [2706] = {.lex_state = 36, .external_lex_state = 7}, + [2707] = {.lex_state = 37, .external_lex_state = 12}, + [2708] = {.lex_state = 38, .external_lex_state = 14}, + [2709] = {.lex_state = 40, .external_lex_state = 14}, + [2710] = {.lex_state = 36, .external_lex_state = 7}, + [2711] = {.lex_state = 36, .external_lex_state = 7}, + [2712] = {.lex_state = 37, .external_lex_state = 12}, + [2713] = {.lex_state = 42, .external_lex_state = 16}, + [2714] = {.lex_state = 42, .external_lex_state = 16}, + [2715] = {.lex_state = 41, .external_lex_state = 16}, + [2716] = {.lex_state = 42, .external_lex_state = 16}, + [2717] = {.lex_state = 42, .external_lex_state = 16}, + [2718] = {.lex_state = 42, .external_lex_state = 16}, + [2719] = {.lex_state = 42, .external_lex_state = 15}, + [2720] = {.lex_state = 36, .external_lex_state = 7}, + [2721] = {.lex_state = 36, .external_lex_state = 7}, + [2722] = {.lex_state = 42, .external_lex_state = 16}, + [2723] = {.lex_state = 42, .external_lex_state = 16}, + [2724] = {.lex_state = 37, .external_lex_state = 11}, + [2725] = {.lex_state = 37, .external_lex_state = 12}, + [2726] = {.lex_state = 37, .external_lex_state = 11}, + [2727] = {.lex_state = 37, .external_lex_state = 8}, + [2728] = {.lex_state = 37, .external_lex_state = 11}, + [2729] = {.lex_state = 37, .external_lex_state = 11}, + [2730] = {.lex_state = 36, .external_lex_state = 12}, + [2731] = {.lex_state = 37, .external_lex_state = 11}, + [2732] = {.lex_state = 48, .external_lex_state = 15}, + [2733] = {.lex_state = 48, .external_lex_state = 15}, + [2734] = {.lex_state = 36, .external_lex_state = 12}, + [2735] = {.lex_state = 36, .external_lex_state = 12}, + [2736] = {.lex_state = 48, .external_lex_state = 15}, + [2737] = {.lex_state = 48, .external_lex_state = 15}, + [2738] = {.lex_state = 36, .external_lex_state = 7}, + [2739] = {.lex_state = 37, .external_lex_state = 16}, + [2740] = {.lex_state = 37, .external_lex_state = 16}, + [2741] = {.lex_state = 37, .external_lex_state = 12}, + [2742] = {.lex_state = 36, .external_lex_state = 7}, + [2743] = {.lex_state = 37, .external_lex_state = 8}, + [2744] = {.lex_state = 37, .external_lex_state = 15}, + [2745] = {.lex_state = 37, .external_lex_state = 15}, + [2746] = {.lex_state = 42, .external_lex_state = 14}, + [2747] = {.lex_state = 42, .external_lex_state = 14}, + [2748] = {.lex_state = 39, .external_lex_state = 14}, + [2749] = {.lex_state = 42, .external_lex_state = 14}, + [2750] = {.lex_state = 42, .external_lex_state = 14}, + [2751] = {.lex_state = 42, .external_lex_state = 14}, + [2752] = {.lex_state = 42, .external_lex_state = 14}, + [2753] = {.lex_state = 42, .external_lex_state = 14}, + [2754] = {.lex_state = 36, .external_lex_state = 7}, + [2755] = {.lex_state = 42, .external_lex_state = 14}, + [2756] = {.lex_state = 42, .external_lex_state = 7}, + [2757] = {.lex_state = 37, .external_lex_state = 8}, + [2758] = {.lex_state = 42, .external_lex_state = 16}, + [2759] = {.lex_state = 37, .external_lex_state = 12}, + [2760] = {.lex_state = 36, .external_lex_state = 7}, + [2761] = {.lex_state = 36, .external_lex_state = 7}, + [2762] = {.lex_state = 36, .external_lex_state = 7}, + [2763] = {.lex_state = 37, .external_lex_state = 12}, + [2764] = {.lex_state = 48, .external_lex_state = 12}, + [2765] = {.lex_state = 36, .external_lex_state = 12}, + [2766] = {.lex_state = 36, .external_lex_state = 7}, + [2767] = {.lex_state = 36, .external_lex_state = 7}, + [2768] = {.lex_state = 48, .external_lex_state = 12}, + [2769] = {.lex_state = 48, .external_lex_state = 11}, + [2770] = {.lex_state = 36, .external_lex_state = 12}, + [2771] = {.lex_state = 37, .external_lex_state = 2}, + [2772] = {.lex_state = 37, .external_lex_state = 11}, + [2773] = {.lex_state = 37, .external_lex_state = 12}, + [2774] = {.lex_state = 37, .external_lex_state = 15}, + [2775] = {.lex_state = 52, .external_lex_state = 15}, + [2776] = {.lex_state = 52, .external_lex_state = 15}, + [2777] = {.lex_state = 37, .external_lex_state = 12}, + [2778] = {.lex_state = 36, .external_lex_state = 7}, + [2779] = {.lex_state = 37, .external_lex_state = 11}, + [2780] = {.lex_state = 36, .external_lex_state = 7}, + [2781] = {.lex_state = 48, .external_lex_state = 12}, + [2782] = {.lex_state = 36, .external_lex_state = 7}, + [2783] = {.lex_state = 42, .external_lex_state = 16}, + [2784] = {.lex_state = 37, .external_lex_state = 11}, + [2785] = {.lex_state = 42, .external_lex_state = 15}, + [2786] = {.lex_state = 42, .external_lex_state = 15}, + [2787] = {.lex_state = 37, .external_lex_state = 12}, + [2788] = {.lex_state = 37, .external_lex_state = 12}, + [2789] = {.lex_state = 42, .external_lex_state = 14}, + [2790] = {.lex_state = 37, .external_lex_state = 2}, + [2791] = {.lex_state = 52, .external_lex_state = 15}, + [2792] = {.lex_state = 52, .external_lex_state = 15}, + [2793] = {.lex_state = 36, .external_lex_state = 12}, + [2794] = {.lex_state = 41, .external_lex_state = 14}, + [2795] = {.lex_state = 52, .external_lex_state = 14}, + [2796] = {.lex_state = 52, .external_lex_state = 14}, + [2797] = {.lex_state = 36, .external_lex_state = 7}, + [2798] = {.lex_state = 36, .external_lex_state = 7}, + [2799] = {.lex_state = 37, .external_lex_state = 12}, + [2800] = {.lex_state = 37, .external_lex_state = 12}, + [2801] = {.lex_state = 37, .external_lex_state = 11}, + [2802] = {.lex_state = 37, .external_lex_state = 11}, + [2803] = {.lex_state = 36, .external_lex_state = 12}, + [2804] = {.lex_state = 37, .external_lex_state = 11}, + [2805] = {.lex_state = 37, .external_lex_state = 12}, + [2806] = {.lex_state = 37, .external_lex_state = 11}, + [2807] = {.lex_state = 37, .external_lex_state = 11}, + [2808] = {.lex_state = 36, .external_lex_state = 12}, + [2809] = {.lex_state = 37, .external_lex_state = 11}, + [2810] = {.lex_state = 37, .external_lex_state = 11}, + [2811] = {.lex_state = 37, .external_lex_state = 7}, + [2812] = {.lex_state = 42, .external_lex_state = 14}, + [2813] = {.lex_state = 37, .external_lex_state = 11}, + [2814] = {.lex_state = 37, .external_lex_state = 11}, + [2815] = {.lex_state = 37, .external_lex_state = 11}, + [2816] = {.lex_state = 42, .external_lex_state = 16}, + [2817] = {.lex_state = 37, .external_lex_state = 12}, + [2818] = {.lex_state = 42, .external_lex_state = 7}, + [2819] = {.lex_state = 37, .external_lex_state = 12}, + [2820] = {.lex_state = 36, .external_lex_state = 7}, + [2821] = {.lex_state = 37, .external_lex_state = 12}, + [2822] = {.lex_state = 37, .external_lex_state = 15}, + [2823] = {.lex_state = 37, .external_lex_state = 15}, + [2824] = {.lex_state = 42, .external_lex_state = 6}, + [2825] = {.lex_state = 42, .external_lex_state = 14}, + [2826] = {.lex_state = 48, .external_lex_state = 12}, + [2827] = {.lex_state = 37, .external_lex_state = 15}, + [2828] = {.lex_state = 37, .external_lex_state = 15}, + [2829] = {.lex_state = 37, .external_lex_state = 15}, + [2830] = {.lex_state = 42, .external_lex_state = 15}, + [2831] = {.lex_state = 42, .external_lex_state = 15}, + [2832] = {.lex_state = 37, .external_lex_state = 15}, + [2833] = {.lex_state = 37, .external_lex_state = 15}, + [2834] = {.lex_state = 37, .external_lex_state = 15}, + [2835] = {.lex_state = 42, .external_lex_state = 15}, + [2836] = {.lex_state = 42, .external_lex_state = 15}, + [2837] = {.lex_state = 37, .external_lex_state = 15}, + [2838] = {.lex_state = 42, .external_lex_state = 15}, + [2839] = {.lex_state = 42, .external_lex_state = 15}, + [2840] = {.lex_state = 52, .external_lex_state = 14}, + [2841] = {.lex_state = 52, .external_lex_state = 14}, + [2842] = {.lex_state = 37, .external_lex_state = 15}, + [2843] = {.lex_state = 37, .external_lex_state = 12}, + [2844] = {.lex_state = 37, .external_lex_state = 15}, + [2845] = {.lex_state = 37, .external_lex_state = 15}, + [2846] = {.lex_state = 37, .external_lex_state = 12}, + [2847] = {.lex_state = 37, .external_lex_state = 15}, + [2848] = {.lex_state = 42, .external_lex_state = 15}, + [2849] = {.lex_state = 42, .external_lex_state = 15}, + [2850] = {.lex_state = 37, .external_lex_state = 15}, + [2851] = {.lex_state = 42, .external_lex_state = 15}, + [2852] = {.lex_state = 42, .external_lex_state = 15}, + [2853] = {.lex_state = 37, .external_lex_state = 12}, + [2854] = {.lex_state = 37, .external_lex_state = 11}, + [2855] = {.lex_state = 37, .external_lex_state = 12}, + [2856] = {.lex_state = 42, .external_lex_state = 15}, + [2857] = {.lex_state = 42, .external_lex_state = 15}, + [2858] = {.lex_state = 37, .external_lex_state = 12}, + [2859] = {.lex_state = 42, .external_lex_state = 16}, + [2860] = {.lex_state = 37, .external_lex_state = 11}, + [2861] = {.lex_state = 37, .external_lex_state = 12}, + [2862] = {.lex_state = 37, .external_lex_state = 12}, + [2863] = {.lex_state = 42, .external_lex_state = 14}, + [2864] = {.lex_state = 42, .external_lex_state = 16}, + [2865] = {.lex_state = 42, .external_lex_state = 14}, + [2866] = {.lex_state = 37, .external_lex_state = 15}, + [2867] = {.lex_state = 37, .external_lex_state = 6}, + [2868] = {.lex_state = 37, .external_lex_state = 15}, + [2869] = {.lex_state = 42, .external_lex_state = 15}, + [2870] = {.lex_state = 37, .external_lex_state = 15}, + [2871] = {.lex_state = 37, .external_lex_state = 12}, + [2872] = {.lex_state = 37, .external_lex_state = 12}, + [2873] = {.lex_state = 42, .external_lex_state = 14}, + [2874] = {.lex_state = 42, .external_lex_state = 15}, + [2875] = {.lex_state = 37, .external_lex_state = 16}, + [2876] = {.lex_state = 37, .external_lex_state = 15}, + [2877] = {.lex_state = 37, .external_lex_state = 12}, + [2878] = {.lex_state = 37, .external_lex_state = 12}, + [2879] = {.lex_state = 37, .external_lex_state = 15}, + [2880] = {.lex_state = 42, .external_lex_state = 15}, + [2881] = {.lex_state = 37, .external_lex_state = 12}, + [2882] = {.lex_state = 37, .external_lex_state = 12}, + [2883] = {.lex_state = 37, .external_lex_state = 12}, + [2884] = {.lex_state = 37, .external_lex_state = 12}, + [2885] = {.lex_state = 37, .external_lex_state = 12}, + [2886] = {.lex_state = 48, .external_lex_state = 12}, + [2887] = {.lex_state = 37, .external_lex_state = 12}, + [2888] = {.lex_state = 37, .external_lex_state = 12}, + [2889] = {.lex_state = 37, .external_lex_state = 12}, + [2890] = {.lex_state = 37, .external_lex_state = 15}, + [2891] = {.lex_state = 52, .external_lex_state = 16}, + [2892] = {.lex_state = 37, .external_lex_state = 11}, + [2893] = {.lex_state = 37, .external_lex_state = 15}, + [2894] = {.lex_state = 52, .external_lex_state = 16}, + [2895] = {.lex_state = 42, .external_lex_state = 15}, + [2896] = {.lex_state = 52, .external_lex_state = 14}, + [2897] = {.lex_state = 42, .external_lex_state = 15}, + [2898] = {.lex_state = 42, .external_lex_state = 15}, + [2899] = {.lex_state = 37, .external_lex_state = 15}, + [2900] = {.lex_state = 48, .external_lex_state = 16}, + [2901] = {.lex_state = 37, .external_lex_state = 15}, + [2902] = {.lex_state = 37, .external_lex_state = 12}, + [2903] = {.lex_state = 42, .external_lex_state = 15}, + [2904] = {.lex_state = 37, .external_lex_state = 12}, + [2905] = {.lex_state = 42, .external_lex_state = 14}, + [2906] = {.lex_state = 37, .external_lex_state = 15}, + [2907] = {.lex_state = 37, .external_lex_state = 11}, + [2908] = {.lex_state = 50, .external_lex_state = 16}, + [2909] = {.lex_state = 42, .external_lex_state = 15}, + [2910] = {.lex_state = 37, .external_lex_state = 15}, + [2911] = {.lex_state = 42, .external_lex_state = 15}, + [2912] = {.lex_state = 37, .external_lex_state = 15}, + [2913] = {.lex_state = 37, .external_lex_state = 16}, + [2914] = {.lex_state = 37, .external_lex_state = 15}, + [2915] = {.lex_state = 42, .external_lex_state = 15}, + [2916] = {.lex_state = 37, .external_lex_state = 15}, + [2917] = {.lex_state = 37, .external_lex_state = 12}, + [2918] = {.lex_state = 42, .external_lex_state = 15}, + [2919] = {.lex_state = 37, .external_lex_state = 15}, + [2920] = {.lex_state = 42, .external_lex_state = 15}, + [2921] = {.lex_state = 42, .external_lex_state = 16}, + [2922] = {.lex_state = 42, .external_lex_state = 15}, + [2923] = {.lex_state = 37, .external_lex_state = 15}, + [2924] = {.lex_state = 37, .external_lex_state = 14}, + [2925] = {.lex_state = 37, .external_lex_state = 14}, + [2926] = {.lex_state = 37, .external_lex_state = 12}, + [2927] = {.lex_state = 37, .external_lex_state = 15}, + [2928] = {.lex_state = 37, .external_lex_state = 12}, + [2929] = {.lex_state = 42, .external_lex_state = 14}, + [2930] = {.lex_state = 37, .external_lex_state = 16}, + [2931] = {.lex_state = 42, .external_lex_state = 15}, + [2932] = {.lex_state = 52, .external_lex_state = 16}, + [2933] = {.lex_state = 37, .external_lex_state = 15}, + [2934] = {.lex_state = 48, .external_lex_state = 12}, + [2935] = {.lex_state = 37, .external_lex_state = 15}, + [2936] = {.lex_state = 37, .external_lex_state = 15}, + [2937] = {.lex_state = 42, .external_lex_state = 15}, + [2938] = {.lex_state = 37, .external_lex_state = 15}, + [2939] = {.lex_state = 37, .external_lex_state = 12}, + [2940] = {.lex_state = 37, .external_lex_state = 12}, + [2941] = {.lex_state = 42, .external_lex_state = 15}, + [2942] = {.lex_state = 42, .external_lex_state = 15}, + [2943] = {.lex_state = 42, .external_lex_state = 15}, + [2944] = {.lex_state = 37, .external_lex_state = 15}, + [2945] = {.lex_state = 37, .external_lex_state = 15}, + [2946] = {.lex_state = 42, .external_lex_state = 15}, + [2947] = {.lex_state = 37, .external_lex_state = 12}, + [2948] = {.lex_state = 37, .external_lex_state = 12}, + [2949] = {.lex_state = 37, .external_lex_state = 12}, + [2950] = {.lex_state = 42, .external_lex_state = 15}, + [2951] = {.lex_state = 42, .external_lex_state = 15}, + [2952] = {.lex_state = 42, .external_lex_state = 8}, + [2953] = {.lex_state = 37, .external_lex_state = 12}, + [2954] = {.lex_state = 42, .external_lex_state = 15}, + [2955] = {.lex_state = 42, .external_lex_state = 15}, + [2956] = {.lex_state = 37, .external_lex_state = 12}, + [2957] = {.lex_state = 42, .external_lex_state = 15}, + [2958] = {.lex_state = 42, .external_lex_state = 15}, + [2959] = {.lex_state = 42, .external_lex_state = 8}, + [2960] = {.lex_state = 42, .external_lex_state = 15}, + [2961] = {.lex_state = 42, .external_lex_state = 15}, + [2962] = {.lex_state = 37, .external_lex_state = 15}, + [2963] = {.lex_state = 42, .external_lex_state = 15}, + [2964] = {.lex_state = 37, .external_lex_state = 12}, + [2965] = {.lex_state = 42, .external_lex_state = 15}, + [2966] = {.lex_state = 42, .external_lex_state = 15}, + [2967] = {.lex_state = 37, .external_lex_state = 15}, + [2968] = {.lex_state = 37, .external_lex_state = 15}, + [2969] = {.lex_state = 37, .external_lex_state = 15}, + [2970] = {.lex_state = 52, .external_lex_state = 14}, + [2971] = {.lex_state = 37, .external_lex_state = 15}, + [2972] = {.lex_state = 37, .external_lex_state = 15}, + [2973] = {.lex_state = 37, .external_lex_state = 15}, + [2974] = {.lex_state = 42, .external_lex_state = 15}, + [2975] = {.lex_state = 37, .external_lex_state = 11}, + [2976] = {.lex_state = 37, .external_lex_state = 12}, + [2977] = {.lex_state = 42, .external_lex_state = 15}, + [2978] = {.lex_state = 42, .external_lex_state = 15}, + [2979] = {.lex_state = 42, .external_lex_state = 15}, + [2980] = {.lex_state = 37, .external_lex_state = 6}, + [2981] = {.lex_state = 36, .external_lex_state = 2}, + [2982] = {.lex_state = 37, .external_lex_state = 15}, + [2983] = {.lex_state = 37, .external_lex_state = 15}, + [2984] = {.lex_state = 42, .external_lex_state = 6}, + [2985] = {.lex_state = 37, .external_lex_state = 12}, + [2986] = {.lex_state = 37, .external_lex_state = 15}, + [2987] = {.lex_state = 37, .external_lex_state = 12}, + [2988] = {.lex_state = 37, .external_lex_state = 12}, + [2989] = {.lex_state = 52, .external_lex_state = 16}, + [2990] = {.lex_state = 42, .external_lex_state = 14}, + [2991] = {.lex_state = 42, .external_lex_state = 15}, + [2992] = {.lex_state = 37, .external_lex_state = 12}, + [2993] = {.lex_state = 37, .external_lex_state = 12}, + [2994] = {.lex_state = 37, .external_lex_state = 15}, + [2995] = {.lex_state = 37, .external_lex_state = 12}, + [2996] = {.lex_state = 37, .external_lex_state = 12}, + [2997] = {.lex_state = 37, .external_lex_state = 12}, + [2998] = {.lex_state = 42, .external_lex_state = 14}, + [2999] = {.lex_state = 37, .external_lex_state = 16}, + [3000] = {.lex_state = 37, .external_lex_state = 16}, + [3001] = {.lex_state = 37, .external_lex_state = 16}, + [3002] = {.lex_state = 37, .external_lex_state = 16}, + [3003] = {.lex_state = 37, .external_lex_state = 16}, + [3004] = {.lex_state = 42, .external_lex_state = 14}, + [3005] = {.lex_state = 37, .external_lex_state = 16}, + [3006] = {.lex_state = 37, .external_lex_state = 16}, + [3007] = {.lex_state = 37, .external_lex_state = 15}, + [3008] = {.lex_state = 37, .external_lex_state = 12}, + [3009] = {.lex_state = 42, .external_lex_state = 15}, + [3010] = {.lex_state = 37, .external_lex_state = 12}, + [3011] = {.lex_state = 37, .external_lex_state = 12}, + [3012] = {.lex_state = 42, .external_lex_state = 14}, + [3013] = {.lex_state = 37, .external_lex_state = 12}, + [3014] = {.lex_state = 37, .external_lex_state = 12}, + [3015] = {.lex_state = 37, .external_lex_state = 6}, + [3016] = {.lex_state = 37, .external_lex_state = 15}, + [3017] = {.lex_state = 42, .external_lex_state = 15}, + [3018] = {.lex_state = 52, .external_lex_state = 16}, + [3019] = {.lex_state = 52, .external_lex_state = 14}, + [3020] = {.lex_state = 42, .external_lex_state = 15}, + [3021] = {.lex_state = 37, .external_lex_state = 15}, + [3022] = {.lex_state = 37, .external_lex_state = 12}, + [3023] = {.lex_state = 37, .external_lex_state = 12}, + [3024] = {.lex_state = 42, .external_lex_state = 15}, + [3025] = {.lex_state = 37, .external_lex_state = 12}, + [3026] = {.lex_state = 37, .external_lex_state = 15}, + [3027] = {.lex_state = 42, .external_lex_state = 15}, + [3028] = {.lex_state = 42, .external_lex_state = 15}, + [3029] = {.lex_state = 52, .external_lex_state = 16}, + [3030] = {.lex_state = 37, .external_lex_state = 12}, + [3031] = {.lex_state = 52, .external_lex_state = 14}, + [3032] = {.lex_state = 37, .external_lex_state = 12}, + [3033] = {.lex_state = 37, .external_lex_state = 15}, + [3034] = {.lex_state = 37, .external_lex_state = 12}, + [3035] = {.lex_state = 37, .external_lex_state = 11}, + [3036] = {.lex_state = 37, .external_lex_state = 12}, + [3037] = {.lex_state = 37, .external_lex_state = 12}, + [3038] = {.lex_state = 37, .external_lex_state = 15}, + [3039] = {.lex_state = 37, .external_lex_state = 12}, + [3040] = {.lex_state = 37, .external_lex_state = 12}, + [3041] = {.lex_state = 37, .external_lex_state = 12}, + [3042] = {.lex_state = 37, .external_lex_state = 12}, + [3043] = {.lex_state = 37, .external_lex_state = 15}, + [3044] = {.lex_state = 37, .external_lex_state = 15}, + [3045] = {.lex_state = 37, .external_lex_state = 15}, + [3046] = {.lex_state = 42, .external_lex_state = 15}, + [3047] = {.lex_state = 42, .external_lex_state = 16}, + [3048] = {.lex_state = 42, .external_lex_state = 16}, + [3049] = {.lex_state = 42, .external_lex_state = 16}, + [3050] = {.lex_state = 42, .external_lex_state = 16}, + [3051] = {.lex_state = 42, .external_lex_state = 16}, + [3052] = {.lex_state = 42, .external_lex_state = 16}, + [3053] = {.lex_state = 42, .external_lex_state = 16}, + [3054] = {.lex_state = 42, .external_lex_state = 16}, + [3055] = {.lex_state = 42, .external_lex_state = 14}, + [3056] = {.lex_state = 42, .external_lex_state = 14}, + [3057] = {.lex_state = 42, .external_lex_state = 16}, + [3058] = {.lex_state = 42, .external_lex_state = 16}, + [3059] = {.lex_state = 42, .external_lex_state = 16}, + [3060] = {.lex_state = 42, .external_lex_state = 14}, + [3061] = {.lex_state = 42, .external_lex_state = 14}, + [3062] = {.lex_state = 42, .external_lex_state = 16}, + [3063] = {.lex_state = 42, .external_lex_state = 16}, + [3064] = {.lex_state = 42, .external_lex_state = 16}, + [3065] = {.lex_state = 42, .external_lex_state = 16}, + [3066] = {.lex_state = 42, .external_lex_state = 16}, + [3067] = {.lex_state = 42, .external_lex_state = 16}, + [3068] = {.lex_state = 42, .external_lex_state = 16}, + [3069] = {.lex_state = 42, .external_lex_state = 14}, + [3070] = {.lex_state = 42, .external_lex_state = 16}, + [3071] = {.lex_state = 42, .external_lex_state = 14}, + [3072] = {.lex_state = 42, .external_lex_state = 16}, + [3073] = {.lex_state = 42, .external_lex_state = 16}, + [3074] = {.lex_state = 42, .external_lex_state = 14}, + [3075] = {.lex_state = 42, .external_lex_state = 14}, + [3076] = {.lex_state = 37, .external_lex_state = 11}, + [3077] = {.lex_state = 42, .external_lex_state = 16}, + [3078] = {.lex_state = 42, .external_lex_state = 14}, + [3079] = {.lex_state = 42, .external_lex_state = 14}, + [3080] = {.lex_state = 42, .external_lex_state = 14}, + [3081] = {.lex_state = 42, .external_lex_state = 16}, + [3082] = {.lex_state = 53, .external_lex_state = 11}, + [3083] = {.lex_state = 11, .external_lex_state = 12}, + [3084] = {.lex_state = 42, .external_lex_state = 14}, + [3085] = {.lex_state = 42, .external_lex_state = 14}, + [3086] = {.lex_state = 42, .external_lex_state = 16}, + [3087] = {.lex_state = 42, .external_lex_state = 16}, + [3088] = {.lex_state = 42, .external_lex_state = 14}, + [3089] = {.lex_state = 42, .external_lex_state = 14}, + [3090] = {.lex_state = 48, .external_lex_state = 14}, + [3091] = {.lex_state = 48, .external_lex_state = 14}, + [3092] = {.lex_state = 42, .external_lex_state = 14}, + [3093] = {.lex_state = 42, .external_lex_state = 14}, + [3094] = {.lex_state = 42, .external_lex_state = 14}, + [3095] = {.lex_state = 42, .external_lex_state = 14}, + [3096] = {.lex_state = 42, .external_lex_state = 14}, + [3097] = {.lex_state = 42, .external_lex_state = 14}, + [3098] = {.lex_state = 42, .external_lex_state = 14}, + [3099] = {.lex_state = 42, .external_lex_state = 14}, + [3100] = {.lex_state = 42, .external_lex_state = 14}, + [3101] = {.lex_state = 42, .external_lex_state = 14}, + [3102] = {.lex_state = 42, .external_lex_state = 14}, + [3103] = {.lex_state = 42, .external_lex_state = 16}, + [3104] = {.lex_state = 42, .external_lex_state = 14}, + [3105] = {.lex_state = 42, .external_lex_state = 14}, + [3106] = {.lex_state = 42, .external_lex_state = 14}, + [3107] = {.lex_state = 42, .external_lex_state = 14}, + [3108] = {.lex_state = 42, .external_lex_state = 14}, + [3109] = {.lex_state = 42, .external_lex_state = 14}, + [3110] = {.lex_state = 48, .external_lex_state = 16}, + [3111] = {.lex_state = 42, .external_lex_state = 14}, + [3112] = {.lex_state = 48, .external_lex_state = 16}, + [3113] = {.lex_state = 37, .external_lex_state = 14}, + [3114] = {.lex_state = 42, .external_lex_state = 16}, + [3115] = {.lex_state = 37, .external_lex_state = 14}, + [3116] = {.lex_state = 37, .external_lex_state = 11}, + [3117] = {.lex_state = 37, .external_lex_state = 11}, + [3118] = {.lex_state = 37, .external_lex_state = 11}, + [3119] = {.lex_state = 37, .external_lex_state = 11}, + [3120] = {.lex_state = 37, .external_lex_state = 11}, + [3121] = {.lex_state = 37, .external_lex_state = 11}, + [3122] = {.lex_state = 36, .external_lex_state = 2}, + [3123] = {.lex_state = 36, .external_lex_state = 2}, + [3124] = {.lex_state = 42, .external_lex_state = 14}, + [3125] = {.lex_state = 42, .external_lex_state = 16}, + [3126] = {.lex_state = 42, .external_lex_state = 16}, + [3127] = {.lex_state = 42, .external_lex_state = 16}, + [3128] = {.lex_state = 42, .external_lex_state = 16}, + [3129] = {.lex_state = 42, .external_lex_state = 16}, + [3130] = {.lex_state = 42, .external_lex_state = 16}, + [3131] = {.lex_state = 42, .external_lex_state = 14}, + [3132] = {.lex_state = 37, .external_lex_state = 11}, + [3133] = {.lex_state = 37, .external_lex_state = 11}, + [3134] = {.lex_state = 37, .external_lex_state = 11}, + [3135] = {.lex_state = 37, .external_lex_state = 11}, + [3136] = {.lex_state = 37, .external_lex_state = 11}, + [3137] = {.lex_state = 37, .external_lex_state = 11}, + [3138] = {.lex_state = 42, .external_lex_state = 14}, + [3139] = {.lex_state = 42, .external_lex_state = 14}, + [3140] = {.lex_state = 37, .external_lex_state = 11}, + [3141] = {.lex_state = 42, .external_lex_state = 14}, + [3142] = {.lex_state = 42, .external_lex_state = 14}, + [3143] = {.lex_state = 36, .external_lex_state = 2}, + [3144] = {.lex_state = 36, .external_lex_state = 2}, + [3145] = {.lex_state = 37, .external_lex_state = 16}, + [3146] = {.lex_state = 37, .external_lex_state = 16}, + [3147] = {.lex_state = 37, .external_lex_state = 12}, + [3148] = {.lex_state = 37, .external_lex_state = 12}, + [3149] = {.lex_state = 37, .external_lex_state = 14}, + [3150] = {.lex_state = 37, .external_lex_state = 16}, + [3151] = {.lex_state = 36, .external_lex_state = 2}, + [3152] = {.lex_state = 36, .external_lex_state = 2}, + [3153] = {.lex_state = 37, .external_lex_state = 8}, + [3154] = {.lex_state = 42, .external_lex_state = 16}, + [3155] = {.lex_state = 37, .external_lex_state = 8}, + [3156] = {.lex_state = 42, .external_lex_state = 14}, + [3157] = {.lex_state = 37, .external_lex_state = 14}, + [3158] = {.lex_state = 37, .external_lex_state = 14}, + [3159] = {.lex_state = 37, .external_lex_state = 14}, + [3160] = {.lex_state = 37, .external_lex_state = 14}, + [3161] = {.lex_state = 37, .external_lex_state = 12}, + [3162] = {.lex_state = 37, .external_lex_state = 14}, + [3163] = {.lex_state = 37, .external_lex_state = 12}, + [3164] = {.lex_state = 37, .external_lex_state = 14}, + [3165] = {.lex_state = 37, .external_lex_state = 14}, + [3166] = {.lex_state = 37, .external_lex_state = 12}, + [3167] = {.lex_state = 48, .external_lex_state = 12}, + [3168] = {.lex_state = 53, .external_lex_state = 11}, + [3169] = {.lex_state = 37, .external_lex_state = 12}, + [3170] = {.lex_state = 53, .external_lex_state = 11}, + [3171] = {.lex_state = 53, .external_lex_state = 11}, + [3172] = {.lex_state = 53, .external_lex_state = 11}, + [3173] = {.lex_state = 42, .external_lex_state = 16}, + [3174] = {.lex_state = 42, .external_lex_state = 16}, + [3175] = {.lex_state = 42, .external_lex_state = 16}, + [3176] = {.lex_state = 42, .external_lex_state = 16}, + [3177] = {.lex_state = 42, .external_lex_state = 16}, + [3178] = {.lex_state = 42, .external_lex_state = 14}, + [3179] = {.lex_state = 42, .external_lex_state = 14}, + [3180] = {.lex_state = 42, .external_lex_state = 16}, + [3181] = {.lex_state = 42, .external_lex_state = 16}, + [3182] = {.lex_state = 42, .external_lex_state = 14}, + [3183] = {.lex_state = 42, .external_lex_state = 14}, + [3184] = {.lex_state = 42, .external_lex_state = 16}, + [3185] = {.lex_state = 42, .external_lex_state = 16}, + [3186] = {.lex_state = 42, .external_lex_state = 16}, + [3187] = {.lex_state = 53, .external_lex_state = 11}, + [3188] = {.lex_state = 11, .external_lex_state = 12}, + [3189] = {.lex_state = 53, .external_lex_state = 11}, + [3190] = {.lex_state = 53, .external_lex_state = 11}, + [3191] = {.lex_state = 53, .external_lex_state = 11}, + [3192] = {.lex_state = 53, .external_lex_state = 11}, + [3193] = {.lex_state = 53, .external_lex_state = 11}, + [3194] = {.lex_state = 53, .external_lex_state = 11}, + [3195] = {.lex_state = 42, .external_lex_state = 14}, + [3196] = {.lex_state = 42, .external_lex_state = 14}, + [3197] = {.lex_state = 42, .external_lex_state = 16}, + [3198] = {.lex_state = 42, .external_lex_state = 16}, + [3199] = {.lex_state = 42, .external_lex_state = 16}, + [3200] = {.lex_state = 42, .external_lex_state = 16}, + [3201] = {.lex_state = 42, .external_lex_state = 16}, + [3202] = {.lex_state = 42, .external_lex_state = 16}, + [3203] = {.lex_state = 53, .external_lex_state = 11}, + [3204] = {.lex_state = 42, .external_lex_state = 14}, + [3205] = {.lex_state = 42, .external_lex_state = 16}, + [3206] = {.lex_state = 42, .external_lex_state = 16}, + [3207] = {.lex_state = 45, .external_lex_state = 14}, + [3208] = {.lex_state = 42, .external_lex_state = 14}, + [3209] = {.lex_state = 36, .external_lex_state = 2}, + [3210] = {.lex_state = 42, .external_lex_state = 14}, + [3211] = {.lex_state = 42, .external_lex_state = 16}, + [3212] = {.lex_state = 53, .external_lex_state = 11}, + [3213] = {.lex_state = 42, .external_lex_state = 16}, + [3214] = {.lex_state = 36, .external_lex_state = 2}, + [3215] = {.lex_state = 36, .external_lex_state = 2}, + [3216] = {.lex_state = 42, .external_lex_state = 16}, + [3217] = {.lex_state = 42, .external_lex_state = 16}, + [3218] = {.lex_state = 42, .external_lex_state = 14}, + [3219] = {.lex_state = 42, .external_lex_state = 14}, + [3220] = {.lex_state = 42, .external_lex_state = 16}, + [3221] = {.lex_state = 42, .external_lex_state = 16}, + [3222] = {.lex_state = 37, .external_lex_state = 12}, + [3223] = {.lex_state = 37, .external_lex_state = 16}, + [3224] = {.lex_state = 37, .external_lex_state = 16}, + [3225] = {.lex_state = 37, .external_lex_state = 16}, + [3226] = {.lex_state = 37, .external_lex_state = 16}, + [3227] = {.lex_state = 37, .external_lex_state = 6}, + [3228] = {.lex_state = 37, .external_lex_state = 16}, + [3229] = {.lex_state = 37, .external_lex_state = 16}, + [3230] = {.lex_state = 37, .external_lex_state = 16}, + [3231] = {.lex_state = 37, .external_lex_state = 16}, + [3232] = {.lex_state = 37, .external_lex_state = 16}, + [3233] = {.lex_state = 37, .external_lex_state = 16}, + [3234] = {.lex_state = 37, .external_lex_state = 16}, + [3235] = {.lex_state = 37, .external_lex_state = 16}, + [3236] = {.lex_state = 37, .external_lex_state = 16}, + [3237] = {.lex_state = 37, .external_lex_state = 16}, + [3238] = {.lex_state = 37, .external_lex_state = 14}, + [3239] = {.lex_state = 37, .external_lex_state = 16}, + [3240] = {.lex_state = 37, .external_lex_state = 16}, + [3241] = {.lex_state = 37, .external_lex_state = 6}, + [3242] = {.lex_state = 37, .external_lex_state = 16}, + [3243] = {.lex_state = 37, .external_lex_state = 16}, + [3244] = {.lex_state = 37, .external_lex_state = 16}, + [3245] = {.lex_state = 37, .external_lex_state = 16}, + [3246] = {.lex_state = 37, .external_lex_state = 16}, + [3247] = {.lex_state = 37, .external_lex_state = 16}, + [3248] = {.lex_state = 48, .external_lex_state = 14}, + [3249] = {.lex_state = 48, .external_lex_state = 14}, + [3250] = {.lex_state = 37, .external_lex_state = 16}, + [3251] = {.lex_state = 37, .external_lex_state = 16}, + [3252] = {.lex_state = 37, .external_lex_state = 16}, + [3253] = {.lex_state = 37, .external_lex_state = 12}, + [3254] = {.lex_state = 37, .external_lex_state = 12}, + [3255] = {.lex_state = 37, .external_lex_state = 12}, + [3256] = {.lex_state = 37, .external_lex_state = 12}, + [3257] = {.lex_state = 48, .external_lex_state = 14}, + [3258] = {.lex_state = 48, .external_lex_state = 14}, + [3259] = {.lex_state = 37, .external_lex_state = 12}, + [3260] = {.lex_state = 37, .external_lex_state = 12}, + [3261] = {.lex_state = 37, .external_lex_state = 12}, + [3262] = {.lex_state = 37, .external_lex_state = 12}, + [3263] = {.lex_state = 37, .external_lex_state = 12}, + [3264] = {.lex_state = 37, .external_lex_state = 12}, + [3265] = {.lex_state = 37, .external_lex_state = 12}, + [3266] = {.lex_state = 37, .external_lex_state = 12}, + [3267] = {.lex_state = 37, .external_lex_state = 12}, + [3268] = {.lex_state = 37, .external_lex_state = 12}, + [3269] = {.lex_state = 37, .external_lex_state = 16}, + [3270] = {.lex_state = 37, .external_lex_state = 16}, + [3271] = {.lex_state = 48, .external_lex_state = 16}, + [3272] = {.lex_state = 48, .external_lex_state = 15}, + [3273] = {.lex_state = 48, .external_lex_state = 16}, + [3274] = {.lex_state = 37, .external_lex_state = 14}, + [3275] = {.lex_state = 48, .external_lex_state = 15}, + [3276] = {.lex_state = 37, .external_lex_state = 16}, + [3277] = {.lex_state = 37, .external_lex_state = 16}, + [3278] = {.lex_state = 37, .external_lex_state = 16}, + [3279] = {.lex_state = 37, .external_lex_state = 16}, + [3280] = {.lex_state = 37, .external_lex_state = 16}, + [3281] = {.lex_state = 37, .external_lex_state = 16}, + [3282] = {.lex_state = 37, .external_lex_state = 16}, + [3283] = {.lex_state = 37, .external_lex_state = 16}, + [3284] = {.lex_state = 37, .external_lex_state = 16}, + [3285] = {.lex_state = 37, .external_lex_state = 16}, + [3286] = {.lex_state = 37, .external_lex_state = 16}, + [3287] = {.lex_state = 37, .external_lex_state = 16}, + [3288] = {.lex_state = 37, .external_lex_state = 16}, + [3289] = {.lex_state = 37, .external_lex_state = 16}, + [3290] = {.lex_state = 37, .external_lex_state = 12}, + [3291] = {.lex_state = 37, .external_lex_state = 12}, + [3292] = {.lex_state = 37, .external_lex_state = 12}, + [3293] = {.lex_state = 37, .external_lex_state = 12}, + [3294] = {.lex_state = 37, .external_lex_state = 12}, + [3295] = {.lex_state = 37, .external_lex_state = 16}, + [3296] = {.lex_state = 37, .external_lex_state = 12}, + [3297] = {.lex_state = 37, .external_lex_state = 16}, + [3298] = {.lex_state = 37, .external_lex_state = 16}, + [3299] = {.lex_state = 37, .external_lex_state = 16}, + [3300] = {.lex_state = 37, .external_lex_state = 14}, + [3301] = {.lex_state = 37, .external_lex_state = 16}, + [3302] = {.lex_state = 37, .external_lex_state = 16}, + [3303] = {.lex_state = 37, .external_lex_state = 16}, + [3304] = {.lex_state = 37, .external_lex_state = 16}, + [3305] = {.lex_state = 37, .external_lex_state = 12}, + [3306] = {.lex_state = 37, .external_lex_state = 12}, + [3307] = {.lex_state = 37, .external_lex_state = 16}, + [3308] = {.lex_state = 37, .external_lex_state = 16}, + [3309] = {.lex_state = 37, .external_lex_state = 16}, + [3310] = {.lex_state = 37, .external_lex_state = 16}, + [3311] = {.lex_state = 37, .external_lex_state = 16}, + [3312] = {.lex_state = 36, .external_lex_state = 12}, + [3313] = {.lex_state = 36, .external_lex_state = 12}, + [3314] = {.lex_state = 37, .external_lex_state = 14}, + [3315] = {.lex_state = 37, .external_lex_state = 14}, + [3316] = {.lex_state = 37, .external_lex_state = 14}, + [3317] = {.lex_state = 37, .external_lex_state = 14}, + [3318] = {.lex_state = 37, .external_lex_state = 14}, + [3319] = {.lex_state = 37, .external_lex_state = 14}, + [3320] = {.lex_state = 37, .external_lex_state = 14}, + [3321] = {.lex_state = 37, .external_lex_state = 14}, + [3322] = {.lex_state = 37, .external_lex_state = 14}, + [3323] = {.lex_state = 37, .external_lex_state = 14}, + [3324] = {.lex_state = 37, .external_lex_state = 14}, + [3325] = {.lex_state = 37, .external_lex_state = 14}, + [3326] = {.lex_state = 37, .external_lex_state = 14}, + [3327] = {.lex_state = 37, .external_lex_state = 14}, + [3328] = {.lex_state = 37, .external_lex_state = 14}, + [3329] = {.lex_state = 37, .external_lex_state = 14}, + [3330] = {.lex_state = 36, .external_lex_state = 12}, + [3331] = {.lex_state = 37, .external_lex_state = 14}, + [3332] = {.lex_state = 37, .external_lex_state = 14}, + [3333] = {.lex_state = 37, .external_lex_state = 14}, + [3334] = {.lex_state = 37, .external_lex_state = 14}, + [3335] = {.lex_state = 53, .external_lex_state = 12}, + [3336] = {.lex_state = 53, .external_lex_state = 12}, + [3337] = {.lex_state = 37, .external_lex_state = 14}, + [3338] = {.lex_state = 36, .external_lex_state = 14}, + [3339] = {.lex_state = 36, .external_lex_state = 12}, + [3340] = {.lex_state = 37, .external_lex_state = 14}, + [3341] = {.lex_state = 37, .external_lex_state = 14}, + [3342] = {.lex_state = 53, .external_lex_state = 12}, + [3343] = {.lex_state = 37, .external_lex_state = 14}, + [3344] = {.lex_state = 37, .external_lex_state = 14}, + [3345] = {.lex_state = 37, .external_lex_state = 14}, + [3346] = {.lex_state = 37, .external_lex_state = 14}, + [3347] = {.lex_state = 37, .external_lex_state = 14}, + [3348] = {.lex_state = 37, .external_lex_state = 14}, + [3349] = {.lex_state = 36, .external_lex_state = 12}, + [3350] = {.lex_state = 37, .external_lex_state = 14}, + [3351] = {.lex_state = 36, .external_lex_state = 12}, + [3352] = {.lex_state = 53, .external_lex_state = 12}, + [3353] = {.lex_state = 37, .external_lex_state = 14}, + [3354] = {.lex_state = 36, .external_lex_state = 12}, + [3355] = {.lex_state = 53, .external_lex_state = 12}, + [3356] = {.lex_state = 37, .external_lex_state = 14}, + [3357] = {.lex_state = 37, .external_lex_state = 14}, + [3358] = {.lex_state = 36, .external_lex_state = 12}, + [3359] = {.lex_state = 37, .external_lex_state = 14}, + [3360] = {.lex_state = 53, .external_lex_state = 12}, + [3361] = {.lex_state = 36, .external_lex_state = 12}, + [3362] = {.lex_state = 53, .external_lex_state = 12}, + [3363] = {.lex_state = 53, .external_lex_state = 12}, + [3364] = {.lex_state = 53, .external_lex_state = 12}, + [3365] = {.lex_state = 53, .external_lex_state = 12}, + [3366] = {.lex_state = 36, .external_lex_state = 12}, + [3367] = {.lex_state = 53, .external_lex_state = 12}, + [3368] = {.lex_state = 36, .external_lex_state = 12}, + [3369] = {.lex_state = 36, .external_lex_state = 12}, + [3370] = {.lex_state = 37, .external_lex_state = 14}, + [3371] = {.lex_state = 37, .external_lex_state = 14}, + [3372] = {.lex_state = 36, .external_lex_state = 12}, + [3373] = {.lex_state = 37, .external_lex_state = 12}, + [3374] = {.lex_state = 36, .external_lex_state = 12}, + [3375] = {.lex_state = 36, .external_lex_state = 12}, + [3376] = {.lex_state = 53, .external_lex_state = 12}, + [3377] = {.lex_state = 36, .external_lex_state = 12}, + [3378] = {.lex_state = 36, .external_lex_state = 12}, + [3379] = {.lex_state = 36, .external_lex_state = 12}, + [3380] = {.lex_state = 36, .external_lex_state = 12}, + [3381] = {.lex_state = 36, .external_lex_state = 12}, + [3382] = {.lex_state = 36, .external_lex_state = 12}, + [3383] = {.lex_state = 36, .external_lex_state = 12}, + [3384] = {.lex_state = 36, .external_lex_state = 12}, + [3385] = {.lex_state = 37, .external_lex_state = 14}, + [3386] = {.lex_state = 37, .external_lex_state = 14}, + [3387] = {.lex_state = 36, .external_lex_state = 12}, + [3388] = {.lex_state = 36, .external_lex_state = 12}, + [3389] = {.lex_state = 36, .external_lex_state = 12}, + [3390] = {.lex_state = 37, .external_lex_state = 14}, + [3391] = {.lex_state = 37, .external_lex_state = 14}, + [3392] = {.lex_state = 36, .external_lex_state = 12}, + [3393] = {.lex_state = 36, .external_lex_state = 12}, + [3394] = {.lex_state = 37, .external_lex_state = 14}, + [3395] = {.lex_state = 37, .external_lex_state = 14}, + [3396] = {.lex_state = 37, .external_lex_state = 14}, + [3397] = {.lex_state = 37, .external_lex_state = 14}, + [3398] = {.lex_state = 37, .external_lex_state = 14}, + [3399] = {.lex_state = 37, .external_lex_state = 14}, + [3400] = {.lex_state = 37, .external_lex_state = 14}, + [3401] = {.lex_state = 37, .external_lex_state = 14}, + [3402] = {.lex_state = 36, .external_lex_state = 12}, + [3403] = {.lex_state = 37, .external_lex_state = 14}, + [3404] = {.lex_state = 37, .external_lex_state = 14}, + [3405] = {.lex_state = 36, .external_lex_state = 12}, + [3406] = {.lex_state = 53, .external_lex_state = 12}, + [3407] = {.lex_state = 37, .external_lex_state = 14}, + [3408] = {.lex_state = 37, .external_lex_state = 14}, + [3409] = {.lex_state = 37, .external_lex_state = 14}, + [3410] = {.lex_state = 37, .external_lex_state = 16}, + [3411] = {.lex_state = 37, .external_lex_state = 15}, + [3412] = {.lex_state = 37, .external_lex_state = 14}, + [3413] = {.lex_state = 36, .external_lex_state = 12}, + [3414] = {.lex_state = 53, .external_lex_state = 12}, + [3415] = {.lex_state = 37, .external_lex_state = 12}, + [3416] = {.lex_state = 36, .external_lex_state = 13}, + [3417] = {.lex_state = 36, .external_lex_state = 13}, + [3418] = {.lex_state = 36, .external_lex_state = 13}, + [3419] = {.lex_state = 36, .external_lex_state = 13}, + [3420] = {.lex_state = 36, .external_lex_state = 13}, + [3421] = {.lex_state = 36, .external_lex_state = 14}, + [3422] = {.lex_state = 37, .external_lex_state = 12}, + [3423] = {.lex_state = 37, .external_lex_state = 12}, + [3424] = {.lex_state = 37, .external_lex_state = 12}, + [3425] = {.lex_state = 37, .external_lex_state = 12}, + [3426] = {.lex_state = 36, .external_lex_state = 13}, + [3427] = {.lex_state = 37, .external_lex_state = 12}, + [3428] = {.lex_state = 36, .external_lex_state = 13}, + [3429] = {.lex_state = 36, .external_lex_state = 13}, + [3430] = {.lex_state = 36, .external_lex_state = 13}, + [3431] = {.lex_state = 36, .external_lex_state = 3}, + [3432] = {.lex_state = 36, .external_lex_state = 3}, + [3433] = {.lex_state = 36, .external_lex_state = 3}, + [3434] = {.lex_state = 53, .external_lex_state = 16}, + [3435] = {.lex_state = 36, .external_lex_state = 14}, + [3436] = {.lex_state = 36, .external_lex_state = 3}, + [3437] = {.lex_state = 54, .external_lex_state = 12}, + [3438] = {.lex_state = 36, .external_lex_state = 3}, + [3439] = {.lex_state = 54, .external_lex_state = 12}, + [3440] = {.lex_state = 54, .external_lex_state = 12}, + [3441] = {.lex_state = 36, .external_lex_state = 3}, + [3442] = {.lex_state = 36, .external_lex_state = 3}, + [3443] = {.lex_state = 36, .external_lex_state = 3}, + [3444] = {.lex_state = 11, .external_lex_state = 12}, + [3445] = {.lex_state = 54, .external_lex_state = 12}, + [3446] = {.lex_state = 36, .external_lex_state = 14}, + [3447] = {.lex_state = 21, .external_lex_state = 2}, + [3448] = {.lex_state = 36, .external_lex_state = 12}, + [3449] = {.lex_state = 36, .external_lex_state = 12}, + [3450] = {.lex_state = 21, .external_lex_state = 2}, + [3451] = {.lex_state = 36, .external_lex_state = 3}, + [3452] = {.lex_state = 36, .external_lex_state = 3}, + [3453] = {.lex_state = 36, .external_lex_state = 3}, + [3454] = {.lex_state = 36, .external_lex_state = 3}, + [3455] = {.lex_state = 36, .external_lex_state = 3}, + [3456] = {.lex_state = 36, .external_lex_state = 3}, + [3457] = {.lex_state = 36, .external_lex_state = 3}, + [3458] = {.lex_state = 36, .external_lex_state = 3}, + [3459] = {.lex_state = 36, .external_lex_state = 3}, + [3460] = {.lex_state = 54, .external_lex_state = 12}, + [3461] = {.lex_state = 36, .external_lex_state = 3}, + [3462] = {.lex_state = 36, .external_lex_state = 3}, + [3463] = {.lex_state = 36, .external_lex_state = 3}, + [3464] = {.lex_state = 36, .external_lex_state = 3}, + [3465] = {.lex_state = 36, .external_lex_state = 3}, + [3466] = {.lex_state = 36, .external_lex_state = 3}, + [3467] = {.lex_state = 36, .external_lex_state = 3}, + [3468] = {.lex_state = 36, .external_lex_state = 3}, + [3469] = {.lex_state = 36, .external_lex_state = 3}, + [3470] = {.lex_state = 36, .external_lex_state = 3}, + [3471] = {.lex_state = 36, .external_lex_state = 3}, + [3472] = {.lex_state = 36, .external_lex_state = 12}, + [3473] = {.lex_state = 36, .external_lex_state = 3}, + [3474] = {.lex_state = 36, .external_lex_state = 3}, + [3475] = {.lex_state = 36, .external_lex_state = 3}, + [3476] = {.lex_state = 36, .external_lex_state = 3}, + [3477] = {.lex_state = 55, .external_lex_state = 12}, + [3478] = {.lex_state = 36, .external_lex_state = 3}, + [3479] = {.lex_state = 36, .external_lex_state = 3}, + [3480] = {.lex_state = 36, .external_lex_state = 3}, + [3481] = {.lex_state = 36, .external_lex_state = 3}, + [3482] = {.lex_state = 36, .external_lex_state = 3}, + [3483] = {.lex_state = 36, .external_lex_state = 3}, + [3484] = {.lex_state = 36, .external_lex_state = 3}, + [3485] = {.lex_state = 36, .external_lex_state = 3}, + [3486] = {.lex_state = 36, .external_lex_state = 3}, + [3487] = {.lex_state = 54, .external_lex_state = 12}, + [3488] = {.lex_state = 36, .external_lex_state = 3}, + [3489] = {.lex_state = 36, .external_lex_state = 3}, + [3490] = {.lex_state = 36, .external_lex_state = 3}, + [3491] = {.lex_state = 36, .external_lex_state = 3}, + [3492] = {.lex_state = 36, .external_lex_state = 3}, + [3493] = {.lex_state = 36, .external_lex_state = 3}, + [3494] = {.lex_state = 36, .external_lex_state = 3}, + [3495] = {.lex_state = 36, .external_lex_state = 3}, + [3496] = {.lex_state = 36, .external_lex_state = 3}, + [3497] = {.lex_state = 36, .external_lex_state = 3}, + [3498] = {.lex_state = 36, .external_lex_state = 3}, + [3499] = {.lex_state = 36, .external_lex_state = 3}, + [3500] = {.lex_state = 36, .external_lex_state = 3}, + [3501] = {.lex_state = 36, .external_lex_state = 3}, + [3502] = {.lex_state = 36, .external_lex_state = 3}, + [3503] = {.lex_state = 36, .external_lex_state = 3}, + [3504] = {.lex_state = 36, .external_lex_state = 3}, + [3505] = {.lex_state = 36, .external_lex_state = 3}, + [3506] = {.lex_state = 36, .external_lex_state = 3}, + [3507] = {.lex_state = 36, .external_lex_state = 3}, + [3508] = {.lex_state = 36, .external_lex_state = 3}, + [3509] = {.lex_state = 36, .external_lex_state = 3}, + [3510] = {.lex_state = 53, .external_lex_state = 16}, + [3511] = {.lex_state = 36, .external_lex_state = 3}, + [3512] = {.lex_state = 36, .external_lex_state = 3}, + [3513] = {.lex_state = 36, .external_lex_state = 3}, + [3514] = {.lex_state = 36, .external_lex_state = 3}, + [3515] = {.lex_state = 36, .external_lex_state = 3}, + [3516] = {.lex_state = 36, .external_lex_state = 3}, + [3517] = {.lex_state = 36, .external_lex_state = 3}, + [3518] = {.lex_state = 36, .external_lex_state = 3}, + [3519] = {.lex_state = 36, .external_lex_state = 3}, + [3520] = {.lex_state = 36, .external_lex_state = 3}, + [3521] = {.lex_state = 36, .external_lex_state = 3}, + [3522] = {.lex_state = 53, .external_lex_state = 16}, + [3523] = {.lex_state = 36, .external_lex_state = 3}, + [3524] = {.lex_state = 36, .external_lex_state = 3}, + [3525] = {.lex_state = 36, .external_lex_state = 3}, + [3526] = {.lex_state = 36, .external_lex_state = 3}, + [3527] = {.lex_state = 36, .external_lex_state = 3}, + [3528] = {.lex_state = 36, .external_lex_state = 3}, + [3529] = {.lex_state = 36, .external_lex_state = 3}, + [3530] = {.lex_state = 36, .external_lex_state = 3}, + [3531] = {.lex_state = 36, .external_lex_state = 3}, + [3532] = {.lex_state = 36, .external_lex_state = 3}, + [3533] = {.lex_state = 36, .external_lex_state = 3}, + [3534] = {.lex_state = 36, .external_lex_state = 3}, + [3535] = {.lex_state = 36, .external_lex_state = 3}, + [3536] = {.lex_state = 36, .external_lex_state = 3}, + [3537] = {.lex_state = 36, .external_lex_state = 3}, + [3538] = {.lex_state = 36, .external_lex_state = 3}, + [3539] = {.lex_state = 36, .external_lex_state = 3}, + [3540] = {.lex_state = 36, .external_lex_state = 3}, + [3541] = {.lex_state = 36, .external_lex_state = 3}, + [3542] = {.lex_state = 53, .external_lex_state = 16}, + [3543] = {.lex_state = 36, .external_lex_state = 3}, + [3544] = {.lex_state = 36, .external_lex_state = 3}, + [3545] = {.lex_state = 36, .external_lex_state = 3}, + [3546] = {.lex_state = 36, .external_lex_state = 3}, + [3547] = {.lex_state = 36, .external_lex_state = 3}, + [3548] = {.lex_state = 36, .external_lex_state = 3}, + [3549] = {.lex_state = 36, .external_lex_state = 3}, + [3550] = {.lex_state = 36, .external_lex_state = 3}, + [3551] = {.lex_state = 36, .external_lex_state = 3}, + [3552] = {.lex_state = 36, .external_lex_state = 3}, + [3553] = {.lex_state = 36, .external_lex_state = 3}, + [3554] = {.lex_state = 36, .external_lex_state = 3}, + [3555] = {.lex_state = 36, .external_lex_state = 3}, + [3556] = {.lex_state = 36, .external_lex_state = 3}, + [3557] = {.lex_state = 36, .external_lex_state = 3}, + [3558] = {.lex_state = 36, .external_lex_state = 3}, + [3559] = {.lex_state = 36, .external_lex_state = 3}, + [3560] = {.lex_state = 36, .external_lex_state = 3}, + [3561] = {.lex_state = 36, .external_lex_state = 3}, + [3562] = {.lex_state = 36, .external_lex_state = 3}, + [3563] = {.lex_state = 36, .external_lex_state = 3}, + [3564] = {.lex_state = 36, .external_lex_state = 3}, + [3565] = {.lex_state = 36, .external_lex_state = 3}, + [3566] = {.lex_state = 36, .external_lex_state = 3}, + [3567] = {.lex_state = 36, .external_lex_state = 3}, + [3568] = {.lex_state = 36, .external_lex_state = 13}, + [3569] = {.lex_state = 36, .external_lex_state = 3}, + [3570] = {.lex_state = 36, .external_lex_state = 3}, + [3571] = {.lex_state = 36, .external_lex_state = 3}, + [3572] = {.lex_state = 36, .external_lex_state = 3}, + [3573] = {.lex_state = 36, .external_lex_state = 3}, + [3574] = {.lex_state = 36, .external_lex_state = 3}, + [3575] = {.lex_state = 36, .external_lex_state = 3}, + [3576] = {.lex_state = 36, .external_lex_state = 3}, + [3577] = {.lex_state = 36, .external_lex_state = 3}, + [3578] = {.lex_state = 36, .external_lex_state = 3}, + [3579] = {.lex_state = 36, .external_lex_state = 3}, + [3580] = {.lex_state = 36, .external_lex_state = 3}, + [3581] = {.lex_state = 36, .external_lex_state = 3}, + [3582] = {.lex_state = 36, .external_lex_state = 3}, + [3583] = {.lex_state = 36, .external_lex_state = 3}, + [3584] = {.lex_state = 36, .external_lex_state = 13}, + [3585] = {.lex_state = 36, .external_lex_state = 3}, + [3586] = {.lex_state = 36, .external_lex_state = 3}, + [3587] = {.lex_state = 36, .external_lex_state = 3}, + [3588] = {.lex_state = 36, .external_lex_state = 3}, + [3589] = {.lex_state = 36, .external_lex_state = 3}, + [3590] = {.lex_state = 36, .external_lex_state = 3}, + [3591] = {.lex_state = 36, .external_lex_state = 12}, + [3592] = {.lex_state = 36, .external_lex_state = 3}, + [3593] = {.lex_state = 36, .external_lex_state = 3}, + [3594] = {.lex_state = 36, .external_lex_state = 3}, + [3595] = {.lex_state = 36, .external_lex_state = 3}, + [3596] = {.lex_state = 36, .external_lex_state = 3}, + [3597] = {.lex_state = 36, .external_lex_state = 3}, + [3598] = {.lex_state = 36, .external_lex_state = 3}, + [3599] = {.lex_state = 36, .external_lex_state = 3}, + [3600] = {.lex_state = 36, .external_lex_state = 3}, + [3601] = {.lex_state = 36, .external_lex_state = 3}, + [3602] = {.lex_state = 36, .external_lex_state = 3}, + [3603] = {.lex_state = 36, .external_lex_state = 3}, + [3604] = {.lex_state = 36, .external_lex_state = 3}, + [3605] = {.lex_state = 36, .external_lex_state = 3}, + [3606] = {.lex_state = 36, .external_lex_state = 3}, + [3607] = {.lex_state = 36, .external_lex_state = 3}, + [3608] = {.lex_state = 36, .external_lex_state = 3}, + [3609] = {.lex_state = 36, .external_lex_state = 3}, + [3610] = {.lex_state = 36, .external_lex_state = 3}, + [3611] = {.lex_state = 36, .external_lex_state = 13}, + [3612] = {.lex_state = 36, .external_lex_state = 3}, + [3613] = {.lex_state = 36, .external_lex_state = 3}, + [3614] = {.lex_state = 36, .external_lex_state = 3}, + [3615] = {.lex_state = 36, .external_lex_state = 12}, + [3616] = {.lex_state = 36, .external_lex_state = 3}, + [3617] = {.lex_state = 36, .external_lex_state = 3}, + [3618] = {.lex_state = 36, .external_lex_state = 3}, + [3619] = {.lex_state = 36, .external_lex_state = 3}, + [3620] = {.lex_state = 36, .external_lex_state = 3}, + [3621] = {.lex_state = 36, .external_lex_state = 3}, + [3622] = {.lex_state = 36, .external_lex_state = 3}, + [3623] = {.lex_state = 36, .external_lex_state = 3}, + [3624] = {.lex_state = 36, .external_lex_state = 3}, + [3625] = {.lex_state = 36, .external_lex_state = 3}, + [3626] = {.lex_state = 55, .external_lex_state = 12}, + [3627] = {.lex_state = 36, .external_lex_state = 3}, + [3628] = {.lex_state = 36, .external_lex_state = 3}, + [3629] = {.lex_state = 36, .external_lex_state = 3}, + [3630] = {.lex_state = 53, .external_lex_state = 16}, + [3631] = {.lex_state = 36, .external_lex_state = 3}, + [3632] = {.lex_state = 53, .external_lex_state = 16}, + [3633] = {.lex_state = 36, .external_lex_state = 3}, + [3634] = {.lex_state = 36, .external_lex_state = 3}, + [3635] = {.lex_state = 36, .external_lex_state = 3}, + [3636] = {.lex_state = 36, .external_lex_state = 3}, + [3637] = {.lex_state = 55, .external_lex_state = 12}, + [3638] = {.lex_state = 36, .external_lex_state = 3}, + [3639] = {.lex_state = 36, .external_lex_state = 3}, + [3640] = {.lex_state = 36, .external_lex_state = 3}, + [3641] = {.lex_state = 36, .external_lex_state = 3}, + [3642] = {.lex_state = 36, .external_lex_state = 3}, + [3643] = {.lex_state = 36, .external_lex_state = 3}, + [3644] = {.lex_state = 36, .external_lex_state = 3}, + [3645] = {.lex_state = 36, .external_lex_state = 3}, + [3646] = {.lex_state = 36, .external_lex_state = 3}, + [3647] = {.lex_state = 36, .external_lex_state = 12}, + [3648] = {.lex_state = 36, .external_lex_state = 13}, + [3649] = {.lex_state = 36, .external_lex_state = 3}, + [3650] = {.lex_state = 36, .external_lex_state = 3}, + [3651] = {.lex_state = 36, .external_lex_state = 3}, + [3652] = {.lex_state = 36, .external_lex_state = 3}, + [3653] = {.lex_state = 36, .external_lex_state = 3}, + [3654] = {.lex_state = 36, .external_lex_state = 13}, + [3655] = {.lex_state = 36, .external_lex_state = 3}, + [3656] = {.lex_state = 54, .external_lex_state = 12}, + [3657] = {.lex_state = 36, .external_lex_state = 3}, + [3658] = {.lex_state = 36, .external_lex_state = 3}, + [3659] = {.lex_state = 55, .external_lex_state = 12}, + [3660] = {.lex_state = 36, .external_lex_state = 13}, + [3661] = {.lex_state = 36, .external_lex_state = 3}, + [3662] = {.lex_state = 36, .external_lex_state = 3}, + [3663] = {.lex_state = 36, .external_lex_state = 3}, + [3664] = {.lex_state = 36, .external_lex_state = 13}, + [3665] = {.lex_state = 36, .external_lex_state = 3}, + [3666] = {.lex_state = 36, .external_lex_state = 13}, + [3667] = {.lex_state = 36, .external_lex_state = 3}, + [3668] = {.lex_state = 36, .external_lex_state = 3}, + [3669] = {.lex_state = 53, .external_lex_state = 16}, + [3670] = {.lex_state = 54, .external_lex_state = 12}, + [3671] = {.lex_state = 36, .external_lex_state = 3}, + [3672] = {.lex_state = 36, .external_lex_state = 3}, + [3673] = {.lex_state = 36, .external_lex_state = 3}, + [3674] = {.lex_state = 36, .external_lex_state = 3}, + [3675] = {.lex_state = 36, .external_lex_state = 3}, + [3676] = {.lex_state = 36, .external_lex_state = 3}, + [3677] = {.lex_state = 36, .external_lex_state = 3}, + [3678] = {.lex_state = 36, .external_lex_state = 3}, + [3679] = {.lex_state = 36, .external_lex_state = 3}, + [3680] = {.lex_state = 36, .external_lex_state = 3}, + [3681] = {.lex_state = 36, .external_lex_state = 3}, + [3682] = {.lex_state = 36, .external_lex_state = 13}, + [3683] = {.lex_state = 36, .external_lex_state = 3}, + [3684] = {.lex_state = 36, .external_lex_state = 3}, + [3685] = {.lex_state = 36, .external_lex_state = 3}, + [3686] = {.lex_state = 36, .external_lex_state = 3}, + [3687] = {.lex_state = 36, .external_lex_state = 13}, + [3688] = {.lex_state = 36, .external_lex_state = 3}, + [3689] = {.lex_state = 36, .external_lex_state = 13}, + [3690] = {.lex_state = 36, .external_lex_state = 12}, + [3691] = {.lex_state = 36, .external_lex_state = 3}, + [3692] = {.lex_state = 36, .external_lex_state = 13}, + [3693] = {.lex_state = 36, .external_lex_state = 12}, + [3694] = {.lex_state = 36, .external_lex_state = 13}, + [3695] = {.lex_state = 36, .external_lex_state = 13}, + [3696] = {.lex_state = 36, .external_lex_state = 12}, + [3697] = {.lex_state = 36, .external_lex_state = 13}, + [3698] = {.lex_state = 36, .external_lex_state = 13}, + [3699] = {.lex_state = 36, .external_lex_state = 13}, + [3700] = {.lex_state = 36, .external_lex_state = 13}, + [3701] = {.lex_state = 36, .external_lex_state = 13}, + [3702] = {.lex_state = 36, .external_lex_state = 13}, + [3703] = {.lex_state = 36, .external_lex_state = 13}, + [3704] = {.lex_state = 36, .external_lex_state = 13}, + [3705] = {.lex_state = 36, .external_lex_state = 13}, + [3706] = {.lex_state = 36, .external_lex_state = 13}, + [3707] = {.lex_state = 36, .external_lex_state = 13}, + [3708] = {.lex_state = 36, .external_lex_state = 13}, + [3709] = {.lex_state = 36, .external_lex_state = 3}, + [3710] = {.lex_state = 36, .external_lex_state = 13}, + [3711] = {.lex_state = 36, .external_lex_state = 13}, + [3712] = {.lex_state = 36, .external_lex_state = 13}, + [3713] = {.lex_state = 36, .external_lex_state = 13}, + [3714] = {.lex_state = 36, .external_lex_state = 13}, + [3715] = {.lex_state = 36, .external_lex_state = 3}, + [3716] = {.lex_state = 36, .external_lex_state = 3}, + [3717] = {.lex_state = 36, .external_lex_state = 13}, + [3718] = {.lex_state = 36, .external_lex_state = 13}, + [3719] = {.lex_state = 36, .external_lex_state = 12}, + [3720] = {.lex_state = 36, .external_lex_state = 13}, + [3721] = {.lex_state = 36, .external_lex_state = 13}, + [3722] = {.lex_state = 36, .external_lex_state = 13}, + [3723] = {.lex_state = 36, .external_lex_state = 13}, + [3724] = {.lex_state = 36, .external_lex_state = 13}, + [3725] = {.lex_state = 36, .external_lex_state = 13}, + [3726] = {.lex_state = 36, .external_lex_state = 13}, + [3727] = {.lex_state = 36, .external_lex_state = 13}, + [3728] = {.lex_state = 36, .external_lex_state = 12}, + [3729] = {.lex_state = 36, .external_lex_state = 13}, + [3730] = {.lex_state = 36, .external_lex_state = 12}, + [3731] = {.lex_state = 36, .external_lex_state = 13}, + [3732] = {.lex_state = 36, .external_lex_state = 13}, + [3733] = {.lex_state = 36, .external_lex_state = 3}, + [3734] = {.lex_state = 36, .external_lex_state = 3}, + [3735] = {.lex_state = 36, .external_lex_state = 3}, + [3736] = {.lex_state = 36, .external_lex_state = 13}, + [3737] = {.lex_state = 36, .external_lex_state = 13}, + [3738] = {.lex_state = 36, .external_lex_state = 12}, + [3739] = {.lex_state = 36, .external_lex_state = 13}, + [3740] = {.lex_state = 36, .external_lex_state = 13}, + [3741] = {.lex_state = 36, .external_lex_state = 13}, + [3742] = {.lex_state = 36, .external_lex_state = 12}, + [3743] = {.lex_state = 36, .external_lex_state = 13}, + [3744] = {.lex_state = 36, .external_lex_state = 12}, + [3745] = {.lex_state = 36, .external_lex_state = 13}, + [3746] = {.lex_state = 36, .external_lex_state = 13}, + [3747] = {.lex_state = 36, .external_lex_state = 3}, + [3748] = {.lex_state = 36, .external_lex_state = 13}, + [3749] = {.lex_state = 36, .external_lex_state = 13}, + [3750] = {.lex_state = 36, .external_lex_state = 13}, + [3751] = {.lex_state = 36, .external_lex_state = 3}, + [3752] = {.lex_state = 36, .external_lex_state = 13}, + [3753] = {.lex_state = 36, .external_lex_state = 13}, + [3754] = {.lex_state = 36, .external_lex_state = 13}, + [3755] = {.lex_state = 36, .external_lex_state = 13}, + [3756] = {.lex_state = 36, .external_lex_state = 13}, + [3757] = {.lex_state = 36, .external_lex_state = 13}, + [3758] = {.lex_state = 36, .external_lex_state = 13}, + [3759] = {.lex_state = 36, .external_lex_state = 13}, + [3760] = {.lex_state = 36, .external_lex_state = 12}, + [3761] = {.lex_state = 36, .external_lex_state = 13}, + [3762] = {.lex_state = 36, .external_lex_state = 13}, + [3763] = {.lex_state = 36, .external_lex_state = 13}, + [3764] = {.lex_state = 36, .external_lex_state = 13}, + [3765] = {.lex_state = 36, .external_lex_state = 13}, + [3766] = {.lex_state = 36, .external_lex_state = 13}, + [3767] = {.lex_state = 36, .external_lex_state = 13}, + [3768] = {.lex_state = 36, .external_lex_state = 13}, + [3769] = {.lex_state = 11, .external_lex_state = 12}, + [3770] = {.lex_state = 36, .external_lex_state = 13}, + [3771] = {.lex_state = 36, .external_lex_state = 12}, + [3772] = {.lex_state = 36, .external_lex_state = 13}, + [3773] = {.lex_state = 36, .external_lex_state = 3}, + [3774] = {.lex_state = 36, .external_lex_state = 13}, + [3775] = {.lex_state = 36, .external_lex_state = 13}, + [3776] = {.lex_state = 36, .external_lex_state = 13}, + [3777] = {.lex_state = 36, .external_lex_state = 13}, + [3778] = {.lex_state = 36, .external_lex_state = 13}, + [3779] = {.lex_state = 36, .external_lex_state = 13}, + [3780] = {.lex_state = 36, .external_lex_state = 13}, + [3781] = {.lex_state = 36, .external_lex_state = 13}, + [3782] = {.lex_state = 36, .external_lex_state = 13}, + [3783] = {.lex_state = 36, .external_lex_state = 13}, + [3784] = {.lex_state = 36, .external_lex_state = 13}, + [3785] = {.lex_state = 36, .external_lex_state = 13}, + [3786] = {.lex_state = 36, .external_lex_state = 13}, + [3787] = {.lex_state = 36, .external_lex_state = 13}, + [3788] = {.lex_state = 36, .external_lex_state = 12}, + [3789] = {.lex_state = 36, .external_lex_state = 3}, + [3790] = {.lex_state = 36, .external_lex_state = 13}, + [3791] = {.lex_state = 36, .external_lex_state = 13}, + [3792] = {.lex_state = 36, .external_lex_state = 13}, + [3793] = {.lex_state = 36, .external_lex_state = 13}, + [3794] = {.lex_state = 36, .external_lex_state = 13}, + [3795] = {.lex_state = 36, .external_lex_state = 13}, + [3796] = {.lex_state = 36, .external_lex_state = 13}, + [3797] = {.lex_state = 36, .external_lex_state = 13}, + [3798] = {.lex_state = 36, .external_lex_state = 13}, + [3799] = {.lex_state = 36, .external_lex_state = 13}, + [3800] = {.lex_state = 36, .external_lex_state = 3}, + [3801] = {.lex_state = 36, .external_lex_state = 13}, + [3802] = {.lex_state = 11, .external_lex_state = 12}, + [3803] = {.lex_state = 36, .external_lex_state = 13}, + [3804] = {.lex_state = 36, .external_lex_state = 13}, + [3805] = {.lex_state = 36, .external_lex_state = 13}, + [3806] = {.lex_state = 36, .external_lex_state = 13}, + [3807] = {.lex_state = 36, .external_lex_state = 13}, + [3808] = {.lex_state = 36, .external_lex_state = 13}, + [3809] = {.lex_state = 36, .external_lex_state = 13}, + [3810] = {.lex_state = 36, .external_lex_state = 13}, + [3811] = {.lex_state = 36, .external_lex_state = 13}, + [3812] = {.lex_state = 36, .external_lex_state = 13}, + [3813] = {.lex_state = 36, .external_lex_state = 13}, + [3814] = {.lex_state = 36, .external_lex_state = 13}, + [3815] = {.lex_state = 36, .external_lex_state = 13}, + [3816] = {.lex_state = 36, .external_lex_state = 13}, + [3817] = {.lex_state = 36, .external_lex_state = 13}, + [3818] = {.lex_state = 36, .external_lex_state = 13}, + [3819] = {.lex_state = 36, .external_lex_state = 13}, + [3820] = {.lex_state = 36, .external_lex_state = 13}, + [3821] = {.lex_state = 36, .external_lex_state = 13}, + [3822] = {.lex_state = 36, .external_lex_state = 13}, + [3823] = {.lex_state = 36, .external_lex_state = 13}, + [3824] = {.lex_state = 36, .external_lex_state = 13}, + [3825] = {.lex_state = 36, .external_lex_state = 13}, + [3826] = {.lex_state = 36, .external_lex_state = 13}, + [3827] = {.lex_state = 36, .external_lex_state = 13}, + [3828] = {.lex_state = 36, .external_lex_state = 13}, + [3829] = {.lex_state = 36, .external_lex_state = 13}, + [3830] = {.lex_state = 36, .external_lex_state = 13}, + [3831] = {.lex_state = 36, .external_lex_state = 13}, + [3832] = {.lex_state = 36, .external_lex_state = 13}, + [3833] = {.lex_state = 36, .external_lex_state = 13}, + [3834] = {.lex_state = 36, .external_lex_state = 13}, + [3835] = {.lex_state = 36, .external_lex_state = 13}, + [3836] = {.lex_state = 36, .external_lex_state = 13}, + [3837] = {.lex_state = 36, .external_lex_state = 13}, + [3838] = {.lex_state = 36, .external_lex_state = 13}, + [3839] = {.lex_state = 36, .external_lex_state = 13}, + [3840] = {.lex_state = 36, .external_lex_state = 13}, + [3841] = {.lex_state = 36, .external_lex_state = 13}, + [3842] = {.lex_state = 36, .external_lex_state = 13}, + [3843] = {.lex_state = 36, .external_lex_state = 13}, + [3844] = {.lex_state = 36, .external_lex_state = 13}, + [3845] = {.lex_state = 36, .external_lex_state = 13}, + [3846] = {.lex_state = 36, .external_lex_state = 13}, + [3847] = {.lex_state = 36, .external_lex_state = 13}, + [3848] = {.lex_state = 36, .external_lex_state = 13}, + [3849] = {.lex_state = 36, .external_lex_state = 13}, + [3850] = {.lex_state = 36, .external_lex_state = 13}, + [3851] = {.lex_state = 36, .external_lex_state = 13}, + [3852] = {.lex_state = 36, .external_lex_state = 13}, + [3853] = {.lex_state = 36, .external_lex_state = 13}, + [3854] = {.lex_state = 36, .external_lex_state = 13}, + [3855] = {.lex_state = 36, .external_lex_state = 13}, + [3856] = {.lex_state = 36, .external_lex_state = 13}, + [3857] = {.lex_state = 36, .external_lex_state = 13}, + [3858] = {.lex_state = 36, .external_lex_state = 13}, + [3859] = {.lex_state = 36, .external_lex_state = 13}, + [3860] = {.lex_state = 36, .external_lex_state = 13}, + [3861] = {.lex_state = 36, .external_lex_state = 13}, + [3862] = {.lex_state = 36, .external_lex_state = 13}, + [3863] = {.lex_state = 36, .external_lex_state = 13}, + [3864] = {.lex_state = 36, .external_lex_state = 13}, + [3865] = {.lex_state = 36, .external_lex_state = 13}, + [3866] = {.lex_state = 36, .external_lex_state = 13}, + [3867] = {.lex_state = 36, .external_lex_state = 13}, + [3868] = {.lex_state = 36, .external_lex_state = 13}, + [3869] = {.lex_state = 36, .external_lex_state = 13}, + [3870] = {.lex_state = 36, .external_lex_state = 13}, + [3871] = {.lex_state = 36, .external_lex_state = 13}, + [3872] = {.lex_state = 36, .external_lex_state = 13}, + [3873] = {.lex_state = 36, .external_lex_state = 13}, + [3874] = {.lex_state = 36, .external_lex_state = 13}, + [3875] = {.lex_state = 36, .external_lex_state = 13}, + [3876] = {.lex_state = 36, .external_lex_state = 13}, + [3877] = {.lex_state = 36, .external_lex_state = 13}, + [3878] = {.lex_state = 11, .external_lex_state = 12}, + [3879] = {.lex_state = 36, .external_lex_state = 13}, + [3880] = {.lex_state = 36, .external_lex_state = 13}, + [3881] = {.lex_state = 36, .external_lex_state = 13}, + [3882] = {.lex_state = 36, .external_lex_state = 13}, + [3883] = {.lex_state = 36, .external_lex_state = 13}, + [3884] = {.lex_state = 36, .external_lex_state = 13}, + [3885] = {.lex_state = 36, .external_lex_state = 13}, + [3886] = {.lex_state = 36, .external_lex_state = 13}, + [3887] = {.lex_state = 36, .external_lex_state = 13}, + [3888] = {.lex_state = 36, .external_lex_state = 13}, + [3889] = {.lex_state = 36, .external_lex_state = 13}, + [3890] = {.lex_state = 36, .external_lex_state = 13}, + [3891] = {.lex_state = 36, .external_lex_state = 13}, + [3892] = {.lex_state = 36, .external_lex_state = 13}, + [3893] = {.lex_state = 36, .external_lex_state = 13}, + [3894] = {.lex_state = 36, .external_lex_state = 13}, + [3895] = {.lex_state = 36, .external_lex_state = 13}, + [3896] = {.lex_state = 36, .external_lex_state = 13}, + [3897] = {.lex_state = 36, .external_lex_state = 13}, + [3898] = {.lex_state = 36, .external_lex_state = 13}, + [3899] = {.lex_state = 36, .external_lex_state = 13}, + [3900] = {.lex_state = 36, .external_lex_state = 13}, + [3901] = {.lex_state = 36, .external_lex_state = 13}, + [3902] = {.lex_state = 36, .external_lex_state = 13}, + [3903] = {.lex_state = 36, .external_lex_state = 13}, + [3904] = {.lex_state = 36, .external_lex_state = 13}, + [3905] = {.lex_state = 36, .external_lex_state = 13}, + [3906] = {.lex_state = 36, .external_lex_state = 13}, + [3907] = {.lex_state = 36, .external_lex_state = 13}, + [3908] = {.lex_state = 36, .external_lex_state = 13}, + [3909] = {.lex_state = 36, .external_lex_state = 13}, + [3910] = {.lex_state = 36, .external_lex_state = 13}, + [3911] = {.lex_state = 36, .external_lex_state = 13}, + [3912] = {.lex_state = 36, .external_lex_state = 13}, + [3913] = {.lex_state = 36, .external_lex_state = 13}, + [3914] = {.lex_state = 36, .external_lex_state = 13}, + [3915] = {.lex_state = 36, .external_lex_state = 13}, + [3916] = {.lex_state = 36, .external_lex_state = 13}, + [3917] = {.lex_state = 36, .external_lex_state = 13}, + [3918] = {.lex_state = 36, .external_lex_state = 13}, + [3919] = {.lex_state = 36, .external_lex_state = 13}, + [3920] = {.lex_state = 36, .external_lex_state = 13}, + [3921] = {.lex_state = 36, .external_lex_state = 13}, + [3922] = {.lex_state = 36, .external_lex_state = 13}, + [3923] = {.lex_state = 36, .external_lex_state = 13}, + [3924] = {.lex_state = 36, .external_lex_state = 13}, + [3925] = {.lex_state = 36, .external_lex_state = 13}, + [3926] = {.lex_state = 36, .external_lex_state = 13}, + [3927] = {.lex_state = 36, .external_lex_state = 13}, + [3928] = {.lex_state = 36, .external_lex_state = 13}, + [3929] = {.lex_state = 36, .external_lex_state = 13}, + [3930] = {.lex_state = 36, .external_lex_state = 13}, + [3931] = {.lex_state = 36, .external_lex_state = 13}, + [3932] = {.lex_state = 36, .external_lex_state = 13}, + [3933] = {.lex_state = 36, .external_lex_state = 13}, + [3934] = {.lex_state = 36, .external_lex_state = 13}, + [3935] = {.lex_state = 36, .external_lex_state = 13}, + [3936] = {.lex_state = 36, .external_lex_state = 13}, + [3937] = {.lex_state = 36, .external_lex_state = 13}, + [3938] = {.lex_state = 36, .external_lex_state = 13}, + [3939] = {.lex_state = 36, .external_lex_state = 13}, + [3940] = {.lex_state = 36, .external_lex_state = 13}, + [3941] = {.lex_state = 36, .external_lex_state = 13}, + [3942] = {.lex_state = 36, .external_lex_state = 12}, + [3943] = {.lex_state = 56, .external_lex_state = 12}, + [3944] = {.lex_state = 36, .external_lex_state = 12}, + [3945] = {.lex_state = 36, .external_lex_state = 12}, + [3946] = {.lex_state = 57, .external_lex_state = 12}, + [3947] = {.lex_state = 36, .external_lex_state = 12}, + [3948] = {.lex_state = 36, .external_lex_state = 14}, + [3949] = {.lex_state = 36, .external_lex_state = 12}, + [3950] = {.lex_state = 36, .external_lex_state = 14}, + [3951] = {.lex_state = 57, .external_lex_state = 12}, + [3952] = {.lex_state = 57, .external_lex_state = 12}, + [3953] = {.lex_state = 57, .external_lex_state = 12}, + [3954] = {.lex_state = 36, .external_lex_state = 12}, + [3955] = {.lex_state = 36, .external_lex_state = 14}, + [3956] = {.lex_state = 36, .external_lex_state = 14}, + [3957] = {.lex_state = 56, .external_lex_state = 12}, + [3958] = {.lex_state = 36, .external_lex_state = 12}, + [3959] = {.lex_state = 58, .external_lex_state = 11}, + [3960] = {.lex_state = 58, .external_lex_state = 11}, + [3961] = {.lex_state = 59, .external_lex_state = 14}, + [3962] = {.lex_state = 54, .external_lex_state = 12}, + [3963] = {.lex_state = 54, .external_lex_state = 12}, + [3964] = {.lex_state = 36, .external_lex_state = 12}, + [3965] = {.lex_state = 36, .external_lex_state = 12}, + [3966] = {.lex_state = 58, .external_lex_state = 16}, + [3967] = {.lex_state = 58, .external_lex_state = 12}, + [3968] = {.lex_state = 58, .external_lex_state = 12}, + [3969] = {.lex_state = 58, .external_lex_state = 15}, + [3970] = {.lex_state = 58, .external_lex_state = 16}, + [3971] = {.lex_state = 60, .external_lex_state = 15}, + [3972] = {.lex_state = 60, .external_lex_state = 15}, + [3973] = {.lex_state = 58, .external_lex_state = 15}, + [3974] = {.lex_state = 43, .external_lex_state = 15}, + [3975] = {.lex_state = 60, .external_lex_state = 14}, + [3976] = {.lex_state = 61, .external_lex_state = 11}, + [3977] = {.lex_state = 43, .external_lex_state = 15}, + [3978] = {.lex_state = 43, .external_lex_state = 15}, + [3979] = {.lex_state = 60, .external_lex_state = 14}, + [3980] = {.lex_state = 43, .external_lex_state = 15}, + [3981] = {.lex_state = 43, .external_lex_state = 15}, + [3982] = {.lex_state = 43, .external_lex_state = 15}, + [3983] = {.lex_state = 43, .external_lex_state = 15}, + [3984] = {.lex_state = 43, .external_lex_state = 15}, + [3985] = {.lex_state = 43, .external_lex_state = 15}, + [3986] = {.lex_state = 43, .external_lex_state = 15}, + [3987] = {.lex_state = 37, .external_lex_state = 14}, + [3988] = {.lex_state = 43, .external_lex_state = 15}, + [3989] = {.lex_state = 58, .external_lex_state = 11}, + [3990] = {.lex_state = 58, .external_lex_state = 11}, + [3991] = {.lex_state = 58, .external_lex_state = 11}, + [3992] = {.lex_state = 43, .external_lex_state = 15}, + [3993] = {.lex_state = 60, .external_lex_state = 16}, + [3994] = {.lex_state = 58, .external_lex_state = 11}, + [3995] = {.lex_state = 37, .external_lex_state = 14}, + [3996] = {.lex_state = 37, .external_lex_state = 14}, + [3997] = {.lex_state = 60, .external_lex_state = 16}, + [3998] = {.lex_state = 37, .external_lex_state = 14}, + [3999] = {.lex_state = 43, .external_lex_state = 15}, + [4000] = {.lex_state = 43, .external_lex_state = 15}, + [4001] = {.lex_state = 37, .external_lex_state = 12}, + [4002] = {.lex_state = 59, .external_lex_state = 11}, + [4003] = {.lex_state = 59, .external_lex_state = 14}, + [4004] = {.lex_state = 59, .external_lex_state = 14}, + [4005] = {.lex_state = 59, .external_lex_state = 14}, + [4006] = {.lex_state = 37, .external_lex_state = 12}, + [4007] = {.lex_state = 59, .external_lex_state = 11}, + [4008] = {.lex_state = 59, .external_lex_state = 14}, + [4009] = {.lex_state = 59, .external_lex_state = 14}, + [4010] = {.lex_state = 58, .external_lex_state = 12}, + [4011] = {.lex_state = 37, .external_lex_state = 12}, + [4012] = {.lex_state = 59, .external_lex_state = 14}, + [4013] = {.lex_state = 37, .external_lex_state = 12}, + [4014] = {.lex_state = 37, .external_lex_state = 12}, + [4015] = {.lex_state = 59, .external_lex_state = 14}, + [4016] = {.lex_state = 58, .external_lex_state = 12}, + [4017] = {.lex_state = 59, .external_lex_state = 11}, + [4018] = {.lex_state = 37, .external_lex_state = 12}, + [4019] = {.lex_state = 59, .external_lex_state = 14}, + [4020] = {.lex_state = 37, .external_lex_state = 12}, + [4021] = {.lex_state = 59, .external_lex_state = 14}, + [4022] = {.lex_state = 59, .external_lex_state = 14}, + [4023] = {.lex_state = 37, .external_lex_state = 12}, + [4024] = {.lex_state = 37, .external_lex_state = 12}, + [4025] = {.lex_state = 59, .external_lex_state = 11}, + [4026] = {.lex_state = 59, .external_lex_state = 14}, + [4027] = {.lex_state = 59, .external_lex_state = 14}, + [4028] = {.lex_state = 59, .external_lex_state = 14}, + [4029] = {.lex_state = 59, .external_lex_state = 14}, + [4030] = {.lex_state = 59, .external_lex_state = 14}, + [4031] = {.lex_state = 37, .external_lex_state = 12}, + [4032] = {.lex_state = 37, .external_lex_state = 12}, + [4033] = {.lex_state = 59, .external_lex_state = 11}, + [4034] = {.lex_state = 37, .external_lex_state = 12}, + [4035] = {.lex_state = 37, .external_lex_state = 12}, + [4036] = {.lex_state = 59, .external_lex_state = 11}, + [4037] = {.lex_state = 36, .external_lex_state = 13}, + [4038] = {.lex_state = 59, .external_lex_state = 11}, + [4039] = {.lex_state = 58, .external_lex_state = 14}, + [4040] = {.lex_state = 11, .external_lex_state = 11}, + [4041] = {.lex_state = 36, .external_lex_state = 2}, + [4042] = {.lex_state = 59, .external_lex_state = 11}, + [4043] = {.lex_state = 37, .external_lex_state = 12}, + [4044] = {.lex_state = 37, .external_lex_state = 12}, + [4045] = {.lex_state = 36, .external_lex_state = 13}, + [4046] = {.lex_state = 58, .external_lex_state = 14}, + [4047] = {.lex_state = 36, .external_lex_state = 13}, + [4048] = {.lex_state = 36, .external_lex_state = 13}, + [4049] = {.lex_state = 36, .external_lex_state = 13}, + [4050] = {.lex_state = 11, .external_lex_state = 11}, + [4051] = {.lex_state = 62, .external_lex_state = 14}, + [4052] = {.lex_state = 36, .external_lex_state = 13}, + [4053] = {.lex_state = 62, .external_lex_state = 14}, + [4054] = {.lex_state = 36, .external_lex_state = 13}, + [4055] = {.lex_state = 59, .external_lex_state = 11}, + [4056] = {.lex_state = 37, .external_lex_state = 12}, + [4057] = {.lex_state = 36, .external_lex_state = 12}, + [4058] = {.lex_state = 36, .external_lex_state = 13}, + [4059] = {.lex_state = 59, .external_lex_state = 11}, + [4060] = {.lex_state = 59, .external_lex_state = 11}, + [4061] = {.lex_state = 37, .external_lex_state = 12}, + [4062] = {.lex_state = 36, .external_lex_state = 13}, + [4063] = {.lex_state = 36, .external_lex_state = 12}, + [4064] = {.lex_state = 63, .external_lex_state = 12}, + [4065] = {.lex_state = 11, .external_lex_state = 11}, + [4066] = {.lex_state = 58, .external_lex_state = 12}, + [4067] = {.lex_state = 37, .external_lex_state = 14}, + [4068] = {.lex_state = 36, .external_lex_state = 14}, + [4069] = {.lex_state = 58, .external_lex_state = 12}, + [4070] = {.lex_state = 37, .external_lex_state = 12}, + [4071] = {.lex_state = 36, .external_lex_state = 12}, + [4072] = {.lex_state = 37, .external_lex_state = 12}, + [4073] = {.lex_state = 64, .external_lex_state = 12}, + [4074] = {.lex_state = 11, .external_lex_state = 11}, + [4075] = {.lex_state = 37, .external_lex_state = 12}, + [4076] = {.lex_state = 37, .external_lex_state = 14}, + [4077] = {.lex_state = 36, .external_lex_state = 14}, + [4078] = {.lex_state = 37, .external_lex_state = 12}, + [4079] = {.lex_state = 37, .external_lex_state = 12}, + [4080] = {.lex_state = 11, .external_lex_state = 11}, + [4081] = {.lex_state = 37, .external_lex_state = 12}, + [4082] = {.lex_state = 37, .external_lex_state = 12}, + [4083] = {.lex_state = 37, .external_lex_state = 12}, + [4084] = {.lex_state = 37, .external_lex_state = 12}, + [4085] = {.lex_state = 37, .external_lex_state = 12}, + [4086] = {.lex_state = 37, .external_lex_state = 12}, + [4087] = {.lex_state = 37, .external_lex_state = 12}, + [4088] = {.lex_state = 37, .external_lex_state = 14}, + [4089] = {.lex_state = 63, .external_lex_state = 12}, + [4090] = {.lex_state = 37, .external_lex_state = 12}, + [4091] = {.lex_state = 11, .external_lex_state = 11}, + [4092] = {.lex_state = 36, .external_lex_state = 14}, + [4093] = {.lex_state = 37, .external_lex_state = 12}, + [4094] = {.lex_state = 37, .external_lex_state = 12}, + [4095] = {.lex_state = 37, .external_lex_state = 12}, + [4096] = {.lex_state = 37, .external_lex_state = 16}, + [4097] = {.lex_state = 37, .external_lex_state = 16}, + [4098] = {.lex_state = 37, .external_lex_state = 16}, + [4099] = {.lex_state = 37, .external_lex_state = 12}, + [4100] = {.lex_state = 37, .external_lex_state = 12}, + [4101] = {.lex_state = 37, .external_lex_state = 14}, + [4102] = {.lex_state = 37, .external_lex_state = 14}, + [4103] = {.lex_state = 37, .external_lex_state = 16}, + [4104] = {.lex_state = 36, .external_lex_state = 14}, + [4105] = {.lex_state = 63, .external_lex_state = 12}, + [4106] = {.lex_state = 63, .external_lex_state = 12}, + [4107] = {.lex_state = 11, .external_lex_state = 12}, + [4108] = {.lex_state = 37, .external_lex_state = 12}, + [4109] = {.lex_state = 37, .external_lex_state = 12}, + [4110] = {.lex_state = 37, .external_lex_state = 16}, + [4111] = {.lex_state = 11, .external_lex_state = 12}, + [4112] = {.lex_state = 37, .external_lex_state = 12}, + [4113] = {.lex_state = 36, .external_lex_state = 14}, + [4114] = {.lex_state = 11, .external_lex_state = 11}, + [4115] = {.lex_state = 36, .external_lex_state = 12}, + [4116] = {.lex_state = 11, .external_lex_state = 12}, + [4117] = {.lex_state = 36, .external_lex_state = 12}, + [4118] = {.lex_state = 36, .external_lex_state = 12}, + [4119] = {.lex_state = 36, .external_lex_state = 12}, + [4120] = {.lex_state = 36, .external_lex_state = 12}, + [4121] = {.lex_state = 11, .external_lex_state = 12}, + [4122] = {.lex_state = 36, .external_lex_state = 14}, + [4123] = {.lex_state = 36, .external_lex_state = 12}, + [4124] = {.lex_state = 11, .external_lex_state = 12}, + [4125] = {.lex_state = 36, .external_lex_state = 12}, + [4126] = {.lex_state = 36, .external_lex_state = 14}, + [4127] = {.lex_state = 59, .external_lex_state = 14}, + [4128] = {.lex_state = 36, .external_lex_state = 12}, + [4129] = {.lex_state = 36, .external_lex_state = 14}, + [4130] = {.lex_state = 36, .external_lex_state = 14}, + [4131] = {.lex_state = 36, .external_lex_state = 14}, + [4132] = {.lex_state = 36, .external_lex_state = 14}, + [4133] = {.lex_state = 36, .external_lex_state = 12}, + [4134] = {.lex_state = 36, .external_lex_state = 12}, + [4135] = {.lex_state = 36, .external_lex_state = 12}, + [4136] = {.lex_state = 36, .external_lex_state = 12}, + [4137] = {.lex_state = 36, .external_lex_state = 12}, + [4138] = {.lex_state = 36, .external_lex_state = 12}, + [4139] = {.lex_state = 36, .external_lex_state = 12}, + [4140] = {.lex_state = 36, .external_lex_state = 12}, + [4141] = {.lex_state = 36, .external_lex_state = 12}, + [4142] = {.lex_state = 36, .external_lex_state = 12}, + [4143] = {.lex_state = 36, .external_lex_state = 14}, + [4144] = {.lex_state = 36, .external_lex_state = 14}, + [4145] = {.lex_state = 36, .external_lex_state = 14}, + [4146] = {.lex_state = 36, .external_lex_state = 12}, + [4147] = {.lex_state = 36, .external_lex_state = 12}, + [4148] = {.lex_state = 59, .external_lex_state = 12}, + [4149] = {.lex_state = 36, .external_lex_state = 12}, + [4150] = {.lex_state = 36, .external_lex_state = 12}, + [4151] = {.lex_state = 36, .external_lex_state = 14}, + [4152] = {.lex_state = 36, .external_lex_state = 12}, + [4153] = {.lex_state = 36, .external_lex_state = 12}, + [4154] = {.lex_state = 36, .external_lex_state = 14}, + [4155] = {.lex_state = 36, .external_lex_state = 14}, + [4156] = {.lex_state = 36, .external_lex_state = 12}, + [4157] = {.lex_state = 36, .external_lex_state = 12}, + [4158] = {.lex_state = 36, .external_lex_state = 14}, + [4159] = {.lex_state = 36, .external_lex_state = 14}, + [4160] = {.lex_state = 36, .external_lex_state = 14}, + [4161] = {.lex_state = 36, .external_lex_state = 14}, + [4162] = {.lex_state = 36, .external_lex_state = 14}, + [4163] = {.lex_state = 36, .external_lex_state = 12}, + [4164] = {.lex_state = 36, .external_lex_state = 12}, + [4165] = {.lex_state = 36, .external_lex_state = 14}, + [4166] = {.lex_state = 36, .external_lex_state = 12}, + [4167] = {.lex_state = 59, .external_lex_state = 14}, + [4168] = {.lex_state = 36, .external_lex_state = 12}, + [4169] = {.lex_state = 36, .external_lex_state = 12}, + [4170] = {.lex_state = 36, .external_lex_state = 12}, + [4171] = {.lex_state = 36, .external_lex_state = 14}, + [4172] = {.lex_state = 36, .external_lex_state = 12}, + [4173] = {.lex_state = 36, .external_lex_state = 12}, + [4174] = {.lex_state = 36, .external_lex_state = 12}, + [4175] = {.lex_state = 36, .external_lex_state = 12}, + [4176] = {.lex_state = 36, .external_lex_state = 14}, + [4177] = {.lex_state = 36, .external_lex_state = 12}, + [4178] = {.lex_state = 36, .external_lex_state = 12}, + [4179] = {.lex_state = 36, .external_lex_state = 14}, + [4180] = {.lex_state = 36, .external_lex_state = 14}, + [4181] = {.lex_state = 36, .external_lex_state = 12}, + [4182] = {.lex_state = 36, .external_lex_state = 12}, + [4183] = {.lex_state = 36, .external_lex_state = 14}, + [4184] = {.lex_state = 36, .external_lex_state = 12}, + [4185] = {.lex_state = 36, .external_lex_state = 12}, + [4186] = {.lex_state = 36, .external_lex_state = 12}, + [4187] = {.lex_state = 36, .external_lex_state = 14}, + [4188] = {.lex_state = 36, .external_lex_state = 12}, + [4189] = {.lex_state = 36, .external_lex_state = 12}, + [4190] = {.lex_state = 36, .external_lex_state = 14}, + [4191] = {.lex_state = 36, .external_lex_state = 14}, + [4192] = {.lex_state = 36, .external_lex_state = 12}, + [4193] = {.lex_state = 36, .external_lex_state = 12}, + [4194] = {.lex_state = 36, .external_lex_state = 12}, + [4195] = {.lex_state = 36, .external_lex_state = 12}, + [4196] = {.lex_state = 36, .external_lex_state = 14}, + [4197] = {.lex_state = 36, .external_lex_state = 12}, + [4198] = {.lex_state = 36, .external_lex_state = 12}, + [4199] = {.lex_state = 36, .external_lex_state = 12}, + [4200] = {.lex_state = 36, .external_lex_state = 12}, + [4201] = {.lex_state = 59, .external_lex_state = 11}, + [4202] = {.lex_state = 36, .external_lex_state = 12}, + [4203] = {.lex_state = 36, .external_lex_state = 14}, + [4204] = {.lex_state = 36, .external_lex_state = 12}, + [4205] = {.lex_state = 36, .external_lex_state = 12}, + [4206] = {.lex_state = 36, .external_lex_state = 12}, + [4207] = {.lex_state = 36, .external_lex_state = 12}, + [4208] = {.lex_state = 36, .external_lex_state = 12}, + [4209] = {.lex_state = 36, .external_lex_state = 12}, + [4210] = {.lex_state = 36, .external_lex_state = 12}, + [4211] = {.lex_state = 36, .external_lex_state = 14}, + [4212] = {.lex_state = 36, .external_lex_state = 14}, + [4213] = {.lex_state = 36, .external_lex_state = 14}, + [4214] = {.lex_state = 36, .external_lex_state = 14}, + [4215] = {.lex_state = 36, .external_lex_state = 14}, + [4216] = {.lex_state = 11, .external_lex_state = 12}, + [4217] = {.lex_state = 36, .external_lex_state = 12}, + [4218] = {.lex_state = 36, .external_lex_state = 12}, + [4219] = {.lex_state = 36, .external_lex_state = 12}, + [4220] = {.lex_state = 36, .external_lex_state = 12}, + [4221] = {.lex_state = 36, .external_lex_state = 14}, + [4222] = {.lex_state = 36, .external_lex_state = 12}, + [4223] = {.lex_state = 36, .external_lex_state = 12}, + [4224] = {.lex_state = 36, .external_lex_state = 12}, + [4225] = {.lex_state = 36, .external_lex_state = 12}, + [4226] = {.lex_state = 36, .external_lex_state = 12}, + [4227] = {.lex_state = 36, .external_lex_state = 14}, + [4228] = {.lex_state = 36, .external_lex_state = 14}, + [4229] = {.lex_state = 36, .external_lex_state = 14}, + [4230] = {.lex_state = 36, .external_lex_state = 12}, + [4231] = {.lex_state = 65, .external_lex_state = 16}, + [4232] = {.lex_state = 36, .external_lex_state = 11}, + [4233] = {.lex_state = 59, .external_lex_state = 14}, + [4234] = {.lex_state = 36, .external_lex_state = 11}, + [4235] = {.lex_state = 36, .external_lex_state = 11}, + [4236] = {.lex_state = 36, .external_lex_state = 11}, + [4237] = {.lex_state = 59, .external_lex_state = 12}, + [4238] = {.lex_state = 59, .external_lex_state = 11}, + [4239] = {.lex_state = 59, .external_lex_state = 12}, + [4240] = {.lex_state = 59, .external_lex_state = 12}, + [4241] = {.lex_state = 59, .external_lex_state = 11}, + [4242] = {.lex_state = 36, .external_lex_state = 16}, + [4243] = {.lex_state = 65, .external_lex_state = 15}, + [4244] = {.lex_state = 36, .external_lex_state = 11}, + [4245] = {.lex_state = 59, .external_lex_state = 11}, + [4246] = {.lex_state = 59, .external_lex_state = 12}, + [4247] = {.lex_state = 36, .external_lex_state = 11}, + [4248] = {.lex_state = 36, .external_lex_state = 11}, + [4249] = {.lex_state = 66, .external_lex_state = 15}, + [4250] = {.lex_state = 36, .external_lex_state = 11}, + [4251] = {.lex_state = 36, .external_lex_state = 11}, + [4252] = {.lex_state = 59, .external_lex_state = 14}, + [4253] = {.lex_state = 36, .external_lex_state = 11}, + [4254] = {.lex_state = 36, .external_lex_state = 11}, + [4255] = {.lex_state = 59, .external_lex_state = 12}, + [4256] = {.lex_state = 59, .external_lex_state = 16}, + [4257] = {.lex_state = 59, .external_lex_state = 14}, + [4258] = {.lex_state = 36, .external_lex_state = 11}, + [4259] = {.lex_state = 59, .external_lex_state = 12}, + [4260] = {.lex_state = 59, .external_lex_state = 12}, + [4261] = {.lex_state = 36, .external_lex_state = 14}, + [4262] = {.lex_state = 11, .external_lex_state = 12}, + [4263] = {.lex_state = 36, .external_lex_state = 14}, + [4264] = {.lex_state = 59, .external_lex_state = 16}, + [4265] = {.lex_state = 59, .external_lex_state = 14}, + [4266] = {.lex_state = 59, .external_lex_state = 16}, + [4267] = {.lex_state = 36, .external_lex_state = 12}, + [4268] = {.lex_state = 36, .external_lex_state = 14}, + [4269] = {.lex_state = 36, .external_lex_state = 11}, + [4270] = {.lex_state = 66, .external_lex_state = 16}, + [4271] = {.lex_state = 36, .external_lex_state = 14}, + [4272] = {.lex_state = 36, .external_lex_state = 14}, + [4273] = {.lex_state = 59, .external_lex_state = 14}, + [4274] = {.lex_state = 59, .external_lex_state = 16}, + [4275] = {.lex_state = 36, .external_lex_state = 14}, + [4276] = {.lex_state = 36, .external_lex_state = 14}, + [4277] = {.lex_state = 59, .external_lex_state = 14}, + [4278] = {.lex_state = 66, .external_lex_state = 14}, + [4279] = {.lex_state = 59, .external_lex_state = 14}, + [4280] = {.lex_state = 59, .external_lex_state = 14}, + [4281] = {.lex_state = 59, .external_lex_state = 16}, + [4282] = {.lex_state = 36, .external_lex_state = 12}, + [4283] = {.lex_state = 59, .external_lex_state = 11}, + [4284] = {.lex_state = 67, .external_lex_state = 11}, + [4285] = {.lex_state = 57, .external_lex_state = 11}, + [4286] = {.lex_state = 67, .external_lex_state = 16}, + [4287] = {.lex_state = 36, .external_lex_state = 11}, + [4288] = {.lex_state = 59, .external_lex_state = 11}, + [4289] = {.lex_state = 59, .external_lex_state = 11}, + [4290] = {.lex_state = 59, .external_lex_state = 14}, + [4291] = {.lex_state = 59, .external_lex_state = 11}, + [4292] = {.lex_state = 59, .external_lex_state = 14}, + [4293] = {.lex_state = 68, .external_lex_state = 17}, + [4294] = {.lex_state = 36, .external_lex_state = 12}, + [4295] = {.lex_state = 36, .external_lex_state = 12}, + [4296] = {.lex_state = 36, .external_lex_state = 12}, + [4297] = {.lex_state = 59, .external_lex_state = 14}, + [4298] = {.lex_state = 36, .external_lex_state = 11}, + [4299] = {.lex_state = 59, .external_lex_state = 11}, + [4300] = {.lex_state = 59, .external_lex_state = 14}, + [4301] = {.lex_state = 36, .external_lex_state = 12}, + [4302] = {.lex_state = 57, .external_lex_state = 11}, + [4303] = {.lex_state = 57, .external_lex_state = 11}, + [4304] = {.lex_state = 57, .external_lex_state = 11}, + [4305] = {.lex_state = 36, .external_lex_state = 12}, + [4306] = {.lex_state = 59, .external_lex_state = 11}, + [4307] = {.lex_state = 59, .external_lex_state = 11}, + [4308] = {.lex_state = 59, .external_lex_state = 11}, + [4309] = {.lex_state = 36, .external_lex_state = 11}, + [4310] = {.lex_state = 59, .external_lex_state = 14}, + [4311] = {.lex_state = 59, .external_lex_state = 11}, + [4312] = {.lex_state = 36, .external_lex_state = 12}, + [4313] = {.lex_state = 36, .external_lex_state = 12}, + [4314] = {.lex_state = 59, .external_lex_state = 14}, + [4315] = {.lex_state = 59, .external_lex_state = 11}, + [4316] = {.lex_state = 59, .external_lex_state = 14}, + [4317] = {.lex_state = 36, .external_lex_state = 11}, + [4318] = {.lex_state = 59, .external_lex_state = 11}, + [4319] = {.lex_state = 36, .external_lex_state = 11}, + [4320] = {.lex_state = 59, .external_lex_state = 14}, + [4321] = {.lex_state = 36, .external_lex_state = 11}, + [4322] = {.lex_state = 36, .external_lex_state = 12}, + [4323] = {.lex_state = 36, .external_lex_state = 12}, + [4324] = {.lex_state = 36, .external_lex_state = 12}, + [4325] = {.lex_state = 36, .external_lex_state = 12}, + [4326] = {.lex_state = 36, .external_lex_state = 16}, + [4327] = {.lex_state = 36, .external_lex_state = 12}, + [4328] = {.lex_state = 36, .external_lex_state = 14}, + [4329] = {.lex_state = 36, .external_lex_state = 12}, + [4330] = {.lex_state = 36, .external_lex_state = 12}, + [4331] = {.lex_state = 59, .external_lex_state = 11}, + [4332] = {.lex_state = 65, .external_lex_state = 14}, + [4333] = {.lex_state = 36, .external_lex_state = 14}, + [4334] = {.lex_state = 36, .external_lex_state = 12}, + [4335] = {.lex_state = 59, .external_lex_state = 12}, + [4336] = {.lex_state = 59, .external_lex_state = 12}, + [4337] = {.lex_state = 36, .external_lex_state = 13}, + [4338] = {.lex_state = 36, .external_lex_state = 12}, + [4339] = {.lex_state = 36, .external_lex_state = 12}, + [4340] = {.lex_state = 36, .external_lex_state = 12}, + [4341] = {.lex_state = 36, .external_lex_state = 12}, + [4342] = {.lex_state = 36, .external_lex_state = 12}, + [4343] = {.lex_state = 59, .external_lex_state = 11}, + [4344] = {.lex_state = 36, .external_lex_state = 12}, + [4345] = {.lex_state = 67, .external_lex_state = 11}, + [4346] = {.lex_state = 36, .external_lex_state = 16}, + [4347] = {.lex_state = 59, .external_lex_state = 14}, + [4348] = {.lex_state = 36, .external_lex_state = 12}, + [4349] = {.lex_state = 36, .external_lex_state = 12}, + [4350] = {.lex_state = 36, .external_lex_state = 14}, + [4351] = {.lex_state = 59, .external_lex_state = 11}, + [4352] = {.lex_state = 59, .external_lex_state = 12}, + [4353] = {.lex_state = 36, .external_lex_state = 12}, + [4354] = {.lex_state = 36, .external_lex_state = 12}, + [4355] = {.lex_state = 36, .external_lex_state = 12}, + [4356] = {.lex_state = 36, .external_lex_state = 12}, + [4357] = {.lex_state = 36, .external_lex_state = 12}, + [4358] = {.lex_state = 36, .external_lex_state = 12}, + [4359] = {.lex_state = 36, .external_lex_state = 12}, + [4360] = {.lex_state = 36, .external_lex_state = 12}, + [4361] = {.lex_state = 36, .external_lex_state = 16}, + [4362] = {.lex_state = 36, .external_lex_state = 12}, + [4363] = {.lex_state = 59, .external_lex_state = 12}, + [4364] = {.lex_state = 67, .external_lex_state = 16}, + [4365] = {.lex_state = 36, .external_lex_state = 14}, + [4366] = {.lex_state = 36, .external_lex_state = 12}, + [4367] = {.lex_state = 36, .external_lex_state = 12}, + [4368] = {.lex_state = 59, .external_lex_state = 12}, + [4369] = {.lex_state = 59, .external_lex_state = 12}, + [4370] = {.lex_state = 59, .external_lex_state = 12}, + [4371] = {.lex_state = 36, .external_lex_state = 12}, + [4372] = {.lex_state = 59, .external_lex_state = 11}, + [4373] = {.lex_state = 11, .external_lex_state = 12}, + [4374] = {.lex_state = 59, .external_lex_state = 11}, + [4375] = {.lex_state = 36, .external_lex_state = 16}, + [4376] = {.lex_state = 59, .external_lex_state = 14}, + [4377] = {.lex_state = 59, .external_lex_state = 14}, + [4378] = {.lex_state = 36, .external_lex_state = 12}, + [4379] = {.lex_state = 59, .external_lex_state = 12}, + [4380] = {.lex_state = 36, .external_lex_state = 12}, + [4381] = {.lex_state = 59, .external_lex_state = 12}, + [4382] = {.lex_state = 59, .external_lex_state = 12}, + [4383] = {.lex_state = 59, .external_lex_state = 12}, + [4384] = {.lex_state = 59, .external_lex_state = 11}, + [4385] = {.lex_state = 59, .external_lex_state = 11}, + [4386] = {.lex_state = 59, .external_lex_state = 11}, + [4387] = {.lex_state = 59, .external_lex_state = 14}, + [4388] = {.lex_state = 36, .external_lex_state = 12}, + [4389] = {.lex_state = 59, .external_lex_state = 14}, + [4390] = {.lex_state = 36, .external_lex_state = 16}, + [4391] = {.lex_state = 59, .external_lex_state = 14}, + [4392] = {.lex_state = 36, .external_lex_state = 14}, + [4393] = {.lex_state = 36, .external_lex_state = 14}, + [4394] = {.lex_state = 36, .external_lex_state = 14}, + [4395] = {.lex_state = 36, .external_lex_state = 16}, + [4396] = {.lex_state = 36, .external_lex_state = 14}, + [4397] = {.lex_state = 36, .external_lex_state = 11}, + [4398] = {.lex_state = 36, .external_lex_state = 11}, + [4399] = {.lex_state = 36, .external_lex_state = 14}, + [4400] = {.lex_state = 36, .external_lex_state = 14}, + [4401] = {.lex_state = 42, .external_lex_state = 15}, + [4402] = {.lex_state = 36, .external_lex_state = 14}, + [4403] = {.lex_state = 36, .external_lex_state = 11}, + [4404] = {.lex_state = 36, .external_lex_state = 11}, + [4405] = {.lex_state = 36, .external_lex_state = 11}, + [4406] = {.lex_state = 36, .external_lex_state = 11}, + [4407] = {.lex_state = 36, .external_lex_state = 14}, + [4408] = {.lex_state = 36, .external_lex_state = 11}, + [4409] = {.lex_state = 36, .external_lex_state = 14}, + [4410] = {.lex_state = 59, .external_lex_state = 12}, + [4411] = {.lex_state = 59, .external_lex_state = 12}, + [4412] = {.lex_state = 36, .external_lex_state = 14}, + [4413] = {.lex_state = 36, .external_lex_state = 11}, + [4414] = {.lex_state = 36, .external_lex_state = 14}, + [4415] = {.lex_state = 36, .external_lex_state = 14}, + [4416] = {.lex_state = 36, .external_lex_state = 14}, + [4417] = {.lex_state = 36, .external_lex_state = 14}, + [4418] = {.lex_state = 36, .external_lex_state = 12}, + [4419] = {.lex_state = 36, .external_lex_state = 11}, + [4420] = {.lex_state = 36, .external_lex_state = 14}, + [4421] = {.lex_state = 36, .external_lex_state = 16}, + [4422] = {.lex_state = 36, .external_lex_state = 14}, + [4423] = {.lex_state = 36, .external_lex_state = 14}, + [4424] = {.lex_state = 36, .external_lex_state = 14}, + [4425] = {.lex_state = 42, .external_lex_state = 15}, + [4426] = {.lex_state = 36, .external_lex_state = 11}, + [4427] = {.lex_state = 36, .external_lex_state = 11}, + [4428] = {.lex_state = 36, .external_lex_state = 14}, + [4429] = {.lex_state = 36, .external_lex_state = 14}, + [4430] = {.lex_state = 36, .external_lex_state = 11}, + [4431] = {.lex_state = 36, .external_lex_state = 16}, + [4432] = {.lex_state = 36, .external_lex_state = 14}, + [4433] = {.lex_state = 36, .external_lex_state = 16}, + [4434] = {.lex_state = 36, .external_lex_state = 16}, + [4435] = {.lex_state = 36, .external_lex_state = 14}, + [4436] = {.lex_state = 36, .external_lex_state = 12}, + [4437] = {.lex_state = 36, .external_lex_state = 16}, + [4438] = {.lex_state = 42, .external_lex_state = 15}, + [4439] = {.lex_state = 59, .external_lex_state = 12}, + [4440] = {.lex_state = 36, .external_lex_state = 14}, + [4441] = {.lex_state = 36, .external_lex_state = 16}, + [4442] = {.lex_state = 36, .external_lex_state = 14}, + [4443] = {.lex_state = 36, .external_lex_state = 14}, + [4444] = {.lex_state = 36, .external_lex_state = 14}, + [4445] = {.lex_state = 36, .external_lex_state = 16}, + [4446] = {.lex_state = 42, .external_lex_state = 15}, + [4447] = {.lex_state = 36, .external_lex_state = 14}, + [4448] = {.lex_state = 36, .external_lex_state = 16}, + [4449] = {.lex_state = 36, .external_lex_state = 14}, + [4450] = {.lex_state = 42, .external_lex_state = 15}, + [4451] = {.lex_state = 36, .external_lex_state = 16}, + [4452] = {.lex_state = 36, .external_lex_state = 11}, + [4453] = {.lex_state = 36, .external_lex_state = 14}, + [4454] = {.lex_state = 42, .external_lex_state = 15}, + [4455] = {.lex_state = 36, .external_lex_state = 16}, + [4456] = {.lex_state = 36, .external_lex_state = 16}, + [4457] = {.lex_state = 42, .external_lex_state = 15}, + [4458] = {.lex_state = 36, .external_lex_state = 16}, + [4459] = {.lex_state = 36, .external_lex_state = 16}, + [4460] = {.lex_state = 36, .external_lex_state = 14}, + [4461] = {.lex_state = 42, .external_lex_state = 15}, + [4462] = {.lex_state = 36, .external_lex_state = 16}, + [4463] = {.lex_state = 36, .external_lex_state = 12}, + [4464] = {.lex_state = 36, .external_lex_state = 12}, + [4465] = {.lex_state = 36, .external_lex_state = 16}, + [4466] = {.lex_state = 36, .external_lex_state = 12}, + [4467] = {.lex_state = 36, .external_lex_state = 14}, + [4468] = {.lex_state = 36, .external_lex_state = 14}, + [4469] = {.lex_state = 36, .external_lex_state = 14}, + [4470] = {.lex_state = 36, .external_lex_state = 11}, + [4471] = {.lex_state = 36, .external_lex_state = 11}, + [4472] = {.lex_state = 36, .external_lex_state = 14}, + [4473] = {.lex_state = 59, .external_lex_state = 12}, + [4474] = {.lex_state = 36, .external_lex_state = 11}, + [4475] = {.lex_state = 36, .external_lex_state = 11}, + [4476] = {.lex_state = 36, .external_lex_state = 11}, + [4477] = {.lex_state = 36, .external_lex_state = 14}, + [4478] = {.lex_state = 36, .external_lex_state = 16}, + [4479] = {.lex_state = 36, .external_lex_state = 16}, + [4480] = {.lex_state = 36, .external_lex_state = 12}, + [4481] = {.lex_state = 36, .external_lex_state = 11}, + [4482] = {.lex_state = 36, .external_lex_state = 16}, + [4483] = {.lex_state = 36, .external_lex_state = 16}, + [4484] = {.lex_state = 36, .external_lex_state = 16}, + [4485] = {.lex_state = 36, .external_lex_state = 11}, + [4486] = {.lex_state = 59, .external_lex_state = 12}, + [4487] = {.lex_state = 36, .external_lex_state = 16}, + [4488] = {.lex_state = 36, .external_lex_state = 16}, + [4489] = {.lex_state = 36, .external_lex_state = 16}, + [4490] = {.lex_state = 36, .external_lex_state = 11}, + [4491] = {.lex_state = 36, .external_lex_state = 11}, + [4492] = {.lex_state = 36, .external_lex_state = 16}, + [4493] = {.lex_state = 36, .external_lex_state = 11}, + [4494] = {.lex_state = 36, .external_lex_state = 14}, + [4495] = {.lex_state = 36, .external_lex_state = 16}, + [4496] = {.lex_state = 36, .external_lex_state = 14}, + [4497] = {.lex_state = 36, .external_lex_state = 14}, + [4498] = {.lex_state = 36, .external_lex_state = 11}, + [4499] = {.lex_state = 36, .external_lex_state = 14}, + [4500] = {.lex_state = 36, .external_lex_state = 11}, + [4501] = {.lex_state = 36, .external_lex_state = 14}, + [4502] = {.lex_state = 36, .external_lex_state = 14}, + [4503] = {.lex_state = 36, .external_lex_state = 14}, + [4504] = {.lex_state = 59, .external_lex_state = 12}, + [4505] = {.lex_state = 36, .external_lex_state = 14}, + [4506] = {.lex_state = 36, .external_lex_state = 5}, + [4507] = {.lex_state = 56, .external_lex_state = 15}, + [4508] = {.lex_state = 59, .external_lex_state = 16}, + [4509] = {.lex_state = 36, .external_lex_state = 11}, + [4510] = {.lex_state = 36, .external_lex_state = 5}, + [4511] = {.lex_state = 36, .external_lex_state = 11}, + [4512] = {.lex_state = 0, .external_lex_state = 18}, + [4513] = {.lex_state = 42, .external_lex_state = 14}, + [4514] = {.lex_state = 36, .external_lex_state = 5}, + [4515] = {.lex_state = 42, .external_lex_state = 14}, + [4516] = {.lex_state = 42, .external_lex_state = 14}, + [4517] = {.lex_state = 0, .external_lex_state = 18}, + [4518] = {.lex_state = 42, .external_lex_state = 16}, + [4519] = {.lex_state = 0, .external_lex_state = 18}, + [4520] = {.lex_state = 36, .external_lex_state = 12}, + [4521] = {.lex_state = 42, .external_lex_state = 16}, + [4522] = {.lex_state = 36, .external_lex_state = 11}, + [4523] = {.lex_state = 42, .external_lex_state = 14}, + [4524] = {.lex_state = 0, .external_lex_state = 18}, + [4525] = {.lex_state = 0, .external_lex_state = 18}, + [4526] = {.lex_state = 0, .external_lex_state = 18}, + [4527] = {.lex_state = 42, .external_lex_state = 16}, + [4528] = {.lex_state = 0, .external_lex_state = 18}, + [4529] = {.lex_state = 36, .external_lex_state = 5}, + [4530] = {.lex_state = 36, .external_lex_state = 5}, + [4531] = {.lex_state = 42, .external_lex_state = 16}, + [4532] = {.lex_state = 36, .external_lex_state = 12}, + [4533] = {.lex_state = 42, .external_lex_state = 16}, + [4534] = {.lex_state = 0, .external_lex_state = 18}, + [4535] = {.lex_state = 0, .external_lex_state = 18}, + [4536] = {.lex_state = 0, .external_lex_state = 18}, + [4537] = {.lex_state = 42, .external_lex_state = 14}, + [4538] = {.lex_state = 42, .external_lex_state = 14}, + [4539] = {.lex_state = 42, .external_lex_state = 14}, + [4540] = {.lex_state = 36, .external_lex_state = 12}, + [4541] = {.lex_state = 42, .external_lex_state = 14}, + [4542] = {.lex_state = 42, .external_lex_state = 16}, + [4543] = {.lex_state = 42, .external_lex_state = 14}, + [4544] = {.lex_state = 36, .external_lex_state = 11}, + [4545] = {.lex_state = 42, .external_lex_state = 14}, + [4546] = {.lex_state = 36, .external_lex_state = 11}, + [4547] = {.lex_state = 11, .external_lex_state = 12}, + [4548] = {.lex_state = 36, .external_lex_state = 11}, + [4549] = {.lex_state = 36, .external_lex_state = 11}, + [4550] = {.lex_state = 0, .external_lex_state = 18}, + [4551] = {.lex_state = 36, .external_lex_state = 5}, + [4552] = {.lex_state = 59, .external_lex_state = 16}, + [4553] = {.lex_state = 36, .external_lex_state = 11}, + [4554] = {.lex_state = 36, .external_lex_state = 11}, + [4555] = {.lex_state = 0, .external_lex_state = 18}, + [4556] = {.lex_state = 0, .external_lex_state = 18}, + [4557] = {.lex_state = 36, .external_lex_state = 11}, + [4558] = {.lex_state = 36, .external_lex_state = 11}, + [4559] = {.lex_state = 36, .external_lex_state = 11}, + [4560] = {.lex_state = 36, .external_lex_state = 11}, + [4561] = {.lex_state = 0, .external_lex_state = 18}, + [4562] = {.lex_state = 42, .external_lex_state = 14}, + [4563] = {.lex_state = 0, .external_lex_state = 18}, + [4564] = {.lex_state = 59, .external_lex_state = 16}, + [4565] = {.lex_state = 0, .external_lex_state = 18}, + [4566] = {.lex_state = 42, .external_lex_state = 14}, + [4567] = {.lex_state = 59, .external_lex_state = 16}, + [4568] = {.lex_state = 36, .external_lex_state = 11}, + [4569] = {.lex_state = 0, .external_lex_state = 18}, + [4570] = {.lex_state = 42, .external_lex_state = 14}, + [4571] = {.lex_state = 42, .external_lex_state = 14}, + [4572] = {.lex_state = 36, .external_lex_state = 12}, + [4573] = {.lex_state = 36, .external_lex_state = 11}, + [4574] = {.lex_state = 0, .external_lex_state = 18}, + [4575] = {.lex_state = 36, .external_lex_state = 11}, + [4576] = {.lex_state = 36, .external_lex_state = 11}, + [4577] = {.lex_state = 36, .external_lex_state = 12}, + [4578] = {.lex_state = 36, .external_lex_state = 12}, + [4579] = {.lex_state = 0, .external_lex_state = 18}, + [4580] = {.lex_state = 36, .external_lex_state = 11}, + [4581] = {.lex_state = 36, .external_lex_state = 12}, + [4582] = {.lex_state = 36, .external_lex_state = 11}, + [4583] = {.lex_state = 42, .external_lex_state = 16}, + [4584] = {.lex_state = 36, .external_lex_state = 11}, + [4585] = {.lex_state = 0, .external_lex_state = 18}, + [4586] = {.lex_state = 42, .external_lex_state = 14}, + [4587] = {.lex_state = 42, .external_lex_state = 14}, + [4588] = {.lex_state = 56, .external_lex_state = 16}, + [4589] = {.lex_state = 36, .external_lex_state = 12}, + [4590] = {.lex_state = 42, .external_lex_state = 16}, + [4591] = {.lex_state = 36, .external_lex_state = 5}, + [4592] = {.lex_state = 36, .external_lex_state = 12}, + [4593] = {.lex_state = 56, .external_lex_state = 14}, + [4594] = {.lex_state = 36, .external_lex_state = 5}, + [4595] = {.lex_state = 0, .external_lex_state = 18}, + [4596] = {.lex_state = 36, .external_lex_state = 11}, + [4597] = {.lex_state = 0, .external_lex_state = 18}, + [4598] = {.lex_state = 0, .external_lex_state = 18}, + [4599] = {.lex_state = 0, .external_lex_state = 18}, + [4600] = {.lex_state = 36, .external_lex_state = 11}, + [4601] = {.lex_state = 0, .external_lex_state = 18}, + [4602] = {.lex_state = 37, .external_lex_state = 11}, + [4603] = {.lex_state = 42, .external_lex_state = 14}, + [4604] = {.lex_state = 0, .external_lex_state = 18}, + [4605] = {.lex_state = 0, .external_lex_state = 18}, + [4606] = {.lex_state = 59, .external_lex_state = 16}, + [4607] = {.lex_state = 59, .external_lex_state = 16}, + [4608] = {.lex_state = 37, .external_lex_state = 11}, + [4609] = {.lex_state = 36, .external_lex_state = 16}, + [4610] = {.lex_state = 36, .external_lex_state = 12}, + [4611] = {.lex_state = 156, .external_lex_state = 12}, + [4612] = {.lex_state = 36, .external_lex_state = 12}, + [4613] = {.lex_state = 156, .external_lex_state = 12}, + [4614] = {.lex_state = 36, .external_lex_state = 12}, + [4615] = {.lex_state = 36, .external_lex_state = 12}, + [4616] = {.lex_state = 36, .external_lex_state = 12}, + [4617] = {.lex_state = 36, .external_lex_state = 12}, + [4618] = {.lex_state = 37, .external_lex_state = 11}, + [4619] = {.lex_state = 36, .external_lex_state = 12}, + [4620] = {.lex_state = 36, .external_lex_state = 12}, + [4621] = {.lex_state = 36, .external_lex_state = 12}, + [4622] = {.lex_state = 36, .external_lex_state = 12}, + [4623] = {.lex_state = 156, .external_lex_state = 12}, + [4624] = {.lex_state = 36, .external_lex_state = 16}, + [4625] = {.lex_state = 36, .external_lex_state = 12}, + [4626] = {.lex_state = 36, .external_lex_state = 12}, + [4627] = {.lex_state = 36, .external_lex_state = 12}, + [4628] = {.lex_state = 57, .external_lex_state = 11}, + [4629] = {.lex_state = 36, .external_lex_state = 12}, + [4630] = {.lex_state = 36, .external_lex_state = 12}, + [4631] = {.lex_state = 36, .external_lex_state = 12}, + [4632] = {.lex_state = 36, .external_lex_state = 12}, + [4633] = {.lex_state = 36, .external_lex_state = 12}, + [4634] = {.lex_state = 156, .external_lex_state = 12}, + [4635] = {.lex_state = 36, .external_lex_state = 14}, + [4636] = {.lex_state = 36, .external_lex_state = 12}, + [4637] = {.lex_state = 59, .external_lex_state = 16}, + [4638] = {.lex_state = 36, .external_lex_state = 14}, + [4639] = {.lex_state = 36, .external_lex_state = 16}, + [4640] = {.lex_state = 56, .external_lex_state = 16}, + [4641] = {.lex_state = 36, .external_lex_state = 16}, + [4642] = {.lex_state = 59, .external_lex_state = 16}, + [4643] = {.lex_state = 37, .external_lex_state = 11}, + [4644] = {.lex_state = 57, .external_lex_state = 11}, + [4645] = {.lex_state = 156, .external_lex_state = 12}, + [4646] = {.lex_state = 156, .external_lex_state = 12}, + [4647] = {.lex_state = 36, .external_lex_state = 12}, + [4648] = {.lex_state = 36, .external_lex_state = 12}, + [4649] = {.lex_state = 59, .external_lex_state = 16}, + [4650] = {.lex_state = 36, .external_lex_state = 12}, + [4651] = {.lex_state = 36, .external_lex_state = 12}, + [4652] = {.lex_state = 36, .external_lex_state = 12}, + [4653] = {.lex_state = 36, .external_lex_state = 12}, + [4654] = {.lex_state = 36, .external_lex_state = 14}, + [4655] = {.lex_state = 59, .external_lex_state = 16}, + [4656] = {.lex_state = 36, .external_lex_state = 12}, + [4657] = {.lex_state = 36, .external_lex_state = 16}, + [4658] = {.lex_state = 57, .external_lex_state = 11}, + [4659] = {.lex_state = 36, .external_lex_state = 12}, + [4660] = {.lex_state = 36, .external_lex_state = 12}, + [4661] = {.lex_state = 36, .external_lex_state = 12}, + [4662] = {.lex_state = 156, .external_lex_state = 12}, + [4663] = {.lex_state = 37, .external_lex_state = 11}, + [4664] = {.lex_state = 36, .external_lex_state = 12}, + [4665] = {.lex_state = 57, .external_lex_state = 11}, + [4666] = {.lex_state = 36, .external_lex_state = 12}, + [4667] = {.lex_state = 36, .external_lex_state = 12}, + [4668] = {.lex_state = 156, .external_lex_state = 12}, + [4669] = {.lex_state = 37, .external_lex_state = 11}, + [4670] = {.lex_state = 57, .external_lex_state = 11}, + [4671] = {.lex_state = 36, .external_lex_state = 12}, + [4672] = {.lex_state = 56, .external_lex_state = 15}, + [4673] = {.lex_state = 36, .external_lex_state = 12}, + [4674] = {.lex_state = 156, .external_lex_state = 12}, + [4675] = {.lex_state = 156, .external_lex_state = 12}, + [4676] = {.lex_state = 36, .external_lex_state = 12}, + [4677] = {.lex_state = 69, .external_lex_state = 14}, + [4678] = {.lex_state = 156, .external_lex_state = 12}, + [4679] = {.lex_state = 36, .external_lex_state = 12}, + [4680] = {.lex_state = 37, .external_lex_state = 11}, + [4681] = {.lex_state = 36, .external_lex_state = 12}, + [4682] = {.lex_state = 57, .external_lex_state = 11}, + [4683] = {.lex_state = 36, .external_lex_state = 12}, + [4684] = {.lex_state = 36, .external_lex_state = 12}, + [4685] = {.lex_state = 57, .external_lex_state = 15}, + [4686] = {.lex_state = 36, .external_lex_state = 16}, + [4687] = {.lex_state = 57, .external_lex_state = 11}, + [4688] = {.lex_state = 36, .external_lex_state = 12}, + [4689] = {.lex_state = 36, .external_lex_state = 12}, + [4690] = {.lex_state = 57, .external_lex_state = 11}, + [4691] = {.lex_state = 57, .external_lex_state = 11}, + [4692] = {.lex_state = 57, .external_lex_state = 11}, + [4693] = {.lex_state = 57, .external_lex_state = 11}, + [4694] = {.lex_state = 36, .external_lex_state = 12}, + [4695] = {.lex_state = 57, .external_lex_state = 11}, + [4696] = {.lex_state = 56, .external_lex_state = 14}, + [4697] = {.lex_state = 57, .external_lex_state = 11}, + [4698] = {.lex_state = 57, .external_lex_state = 15}, + [4699] = {.lex_state = 36, .external_lex_state = 12}, + [4700] = {.lex_state = 156, .external_lex_state = 12}, + [4701] = {.lex_state = 36, .external_lex_state = 12}, + [4702] = {.lex_state = 69, .external_lex_state = 11}, + [4703] = {.lex_state = 36, .external_lex_state = 11}, + [4704] = {.lex_state = 156, .external_lex_state = 5}, + [4705] = {.lex_state = 156, .external_lex_state = 5}, + [4706] = {.lex_state = 36, .external_lex_state = 11}, + [4707] = {.lex_state = 156, .external_lex_state = 5}, + [4708] = {.lex_state = 156, .external_lex_state = 5}, + [4709] = {.lex_state = 156, .external_lex_state = 5}, + [4710] = {.lex_state = 36, .external_lex_state = 11}, + [4711] = {.lex_state = 56, .external_lex_state = 12}, + [4712] = {.lex_state = 37, .external_lex_state = 16}, + [4713] = {.lex_state = 156, .external_lex_state = 11}, + [4714] = {.lex_state = 57, .external_lex_state = 15}, + [4715] = {.lex_state = 34, .external_lex_state = 11}, + [4716] = {.lex_state = 57, .external_lex_state = 15}, + [4717] = {.lex_state = 36, .external_lex_state = 12}, + [4718] = {.lex_state = 156, .external_lex_state = 11}, + [4719] = {.lex_state = 36, .external_lex_state = 11}, + [4720] = {.lex_state = 36, .external_lex_state = 11}, + [4721] = {.lex_state = 156, .external_lex_state = 11}, + [4722] = {.lex_state = 57, .external_lex_state = 15}, + [4723] = {.lex_state = 57, .external_lex_state = 15}, + [4724] = {.lex_state = 36, .external_lex_state = 11}, + [4725] = {.lex_state = 36, .external_lex_state = 11}, + [4726] = {.lex_state = 156, .external_lex_state = 5}, + [4727] = {.lex_state = 36, .external_lex_state = 11}, + [4728] = {.lex_state = 156, .external_lex_state = 5}, + [4729] = {.lex_state = 156, .external_lex_state = 5}, + [4730] = {.lex_state = 36, .external_lex_state = 11}, + [4731] = {.lex_state = 156, .external_lex_state = 5}, + [4732] = {.lex_state = 36, .external_lex_state = 11}, + [4733] = {.lex_state = 36, .external_lex_state = 11}, + [4734] = {.lex_state = 36, .external_lex_state = 14}, + [4735] = {.lex_state = 36, .external_lex_state = 11}, + [4736] = {.lex_state = 42, .external_lex_state = 15}, + [4737] = {.lex_state = 42, .external_lex_state = 15}, + [4738] = {.lex_state = 42, .external_lex_state = 15}, + [4739] = {.lex_state = 42, .external_lex_state = 15}, + [4740] = {.lex_state = 42, .external_lex_state = 15}, + [4741] = {.lex_state = 156, .external_lex_state = 5}, + [4742] = {.lex_state = 42, .external_lex_state = 15}, + [4743] = {.lex_state = 36, .external_lex_state = 11}, + [4744] = {.lex_state = 156, .external_lex_state = 11}, + [4745] = {.lex_state = 156, .external_lex_state = 5}, + [4746] = {.lex_state = 36, .external_lex_state = 11}, + [4747] = {.lex_state = 156, .external_lex_state = 11}, + [4748] = {.lex_state = 36, .external_lex_state = 11}, + [4749] = {.lex_state = 156, .external_lex_state = 5}, + [4750] = {.lex_state = 36, .external_lex_state = 11}, + [4751] = {.lex_state = 57, .external_lex_state = 15}, + [4752] = {.lex_state = 156, .external_lex_state = 5}, + [4753] = {.lex_state = 156, .external_lex_state = 5}, + [4754] = {.lex_state = 57, .external_lex_state = 15}, + [4755] = {.lex_state = 57, .external_lex_state = 15}, + [4756] = {.lex_state = 57, .external_lex_state = 15}, + [4757] = {.lex_state = 36, .external_lex_state = 11}, + [4758] = {.lex_state = 57, .external_lex_state = 15}, + [4759] = {.lex_state = 36, .external_lex_state = 14}, + [4760] = {.lex_state = 36, .external_lex_state = 11}, + [4761] = {.lex_state = 57, .external_lex_state = 15}, + [4762] = {.lex_state = 156, .external_lex_state = 11}, + [4763] = {.lex_state = 57, .external_lex_state = 15}, + [4764] = {.lex_state = 57, .external_lex_state = 15}, + [4765] = {.lex_state = 57, .external_lex_state = 15}, + [4766] = {.lex_state = 57, .external_lex_state = 15}, + [4767] = {.lex_state = 57, .external_lex_state = 15}, + [4768] = {.lex_state = 57, .external_lex_state = 15}, + [4769] = {.lex_state = 37, .external_lex_state = 16}, + [4770] = {.lex_state = 37, .external_lex_state = 16}, + [4771] = {.lex_state = 37, .external_lex_state = 16}, + [4772] = {.lex_state = 37, .external_lex_state = 16}, + [4773] = {.lex_state = 37, .external_lex_state = 16}, + [4774] = {.lex_state = 37, .external_lex_state = 16}, + [4775] = {.lex_state = 36, .external_lex_state = 11}, + [4776] = {.lex_state = 36, .external_lex_state = 16}, + [4777] = {.lex_state = 57, .external_lex_state = 15}, + [4778] = {.lex_state = 36, .external_lex_state = 14}, + [4779] = {.lex_state = 36, .external_lex_state = 11}, + [4780] = {.lex_state = 36, .external_lex_state = 11}, + [4781] = {.lex_state = 36, .external_lex_state = 12}, + [4782] = {.lex_state = 36, .external_lex_state = 11}, + [4783] = {.lex_state = 156, .external_lex_state = 11}, + [4784] = {.lex_state = 36, .external_lex_state = 11}, + [4785] = {.lex_state = 156, .external_lex_state = 11}, + [4786] = {.lex_state = 36, .external_lex_state = 11}, + [4787] = {.lex_state = 156, .external_lex_state = 5}, + [4788] = {.lex_state = 36, .external_lex_state = 11}, + [4789] = {.lex_state = 36, .external_lex_state = 11}, + [4790] = {.lex_state = 37, .external_lex_state = 11}, + [4791] = {.lex_state = 156, .external_lex_state = 5}, + [4792] = {.lex_state = 57, .external_lex_state = 12}, + [4793] = {.lex_state = 37, .external_lex_state = 12}, + [4794] = {.lex_state = 42, .external_lex_state = 16}, + [4795] = {.lex_state = 35, .external_lex_state = 11}, + [4796] = {.lex_state = 35, .external_lex_state = 12}, + [4797] = {.lex_state = 35, .external_lex_state = 11}, + [4798] = {.lex_state = 34, .external_lex_state = 11}, + [4799] = {.lex_state = 68, .external_lex_state = 17}, + [4800] = {.lex_state = 35, .external_lex_state = 11}, + [4801] = {.lex_state = 35, .external_lex_state = 11}, + [4802] = {.lex_state = 68, .external_lex_state = 17}, + [4803] = {.lex_state = 36, .external_lex_state = 2}, + [4804] = {.lex_state = 36, .external_lex_state = 2}, + [4805] = {.lex_state = 42, .external_lex_state = 15}, + [4806] = {.lex_state = 35, .external_lex_state = 16}, + [4807] = {.lex_state = 35, .external_lex_state = 11}, + [4808] = {.lex_state = 68, .external_lex_state = 17}, + [4809] = {.lex_state = 68, .external_lex_state = 17}, + [4810] = {.lex_state = 37, .external_lex_state = 2}, + [4811] = {.lex_state = 35, .external_lex_state = 16}, + [4812] = {.lex_state = 36, .external_lex_state = 2}, + [4813] = {.lex_state = 36, .external_lex_state = 2}, + [4814] = {.lex_state = 0, .external_lex_state = 18}, + [4815] = {.lex_state = 35, .external_lex_state = 11}, + [4816] = {.lex_state = 35, .external_lex_state = 11}, + [4817] = {.lex_state = 68, .external_lex_state = 17}, + [4818] = {.lex_state = 42, .external_lex_state = 16}, + [4819] = {.lex_state = 42, .external_lex_state = 16}, + [4820] = {.lex_state = 35, .external_lex_state = 11}, + [4821] = {.lex_state = 42, .external_lex_state = 16}, + [4822] = {.lex_state = 42, .external_lex_state = 15}, + [4823] = {.lex_state = 68, .external_lex_state = 17}, + [4824] = {.lex_state = 42, .external_lex_state = 14}, + [4825] = {.lex_state = 42, .external_lex_state = 15}, + [4826] = {.lex_state = 68, .external_lex_state = 17}, + [4827] = {.lex_state = 57, .external_lex_state = 15}, + [4828] = {.lex_state = 34, .external_lex_state = 11}, + [4829] = {.lex_state = 34, .external_lex_state = 11}, + [4830] = {.lex_state = 36, .external_lex_state = 12}, + [4831] = {.lex_state = 36, .external_lex_state = 2}, + [4832] = {.lex_state = 34, .external_lex_state = 11}, + [4833] = {.lex_state = 68, .external_lex_state = 17}, + [4834] = {.lex_state = 35, .external_lex_state = 11}, + [4835] = {.lex_state = 35, .external_lex_state = 11}, + [4836] = {.lex_state = 42, .external_lex_state = 16}, + [4837] = {.lex_state = 34, .external_lex_state = 11}, + [4838] = {.lex_state = 36, .external_lex_state = 2}, + [4839] = {.lex_state = 68, .external_lex_state = 17}, + [4840] = {.lex_state = 70, .external_lex_state = 19}, + [4841] = {.lex_state = 34, .external_lex_state = 11}, + [4842] = {.lex_state = 42, .external_lex_state = 16}, + [4843] = {.lex_state = 0, .external_lex_state = 18}, + [4844] = {.lex_state = 35, .external_lex_state = 16}, + [4845] = {.lex_state = 35, .external_lex_state = 12}, + [4846] = {.lex_state = 34, .external_lex_state = 11}, + [4847] = {.lex_state = 42, .external_lex_state = 16}, + [4848] = {.lex_state = 34, .external_lex_state = 11}, + [4849] = {.lex_state = 36, .external_lex_state = 12}, + [4850] = {.lex_state = 34, .external_lex_state = 11}, + [4851] = {.lex_state = 35, .external_lex_state = 16}, + [4852] = {.lex_state = 42, .external_lex_state = 14}, + [4853] = {.lex_state = 34, .external_lex_state = 11}, + [4854] = {.lex_state = 42, .external_lex_state = 14}, + [4855] = {.lex_state = 42, .external_lex_state = 15}, + [4856] = {.lex_state = 35, .external_lex_state = 16}, + [4857] = {.lex_state = 42, .external_lex_state = 16}, + [4858] = {.lex_state = 56, .external_lex_state = 14}, + [4859] = {.lex_state = 56, .external_lex_state = 16}, + [4860] = {.lex_state = 35, .external_lex_state = 11}, + [4861] = {.lex_state = 35, .external_lex_state = 11}, + [4862] = {.lex_state = 35, .external_lex_state = 16}, + [4863] = {.lex_state = 35, .external_lex_state = 11}, + [4864] = {.lex_state = 35, .external_lex_state = 11}, + [4865] = {.lex_state = 37, .external_lex_state = 12}, + [4866] = {.lex_state = 35, .external_lex_state = 11}, + [4867] = {.lex_state = 37, .external_lex_state = 12}, + [4868] = {.lex_state = 35, .external_lex_state = 11}, + [4869] = {.lex_state = 35, .external_lex_state = 16}, + [4870] = {.lex_state = 35, .external_lex_state = 11}, + [4871] = {.lex_state = 57, .external_lex_state = 12}, + [4872] = {.lex_state = 57, .external_lex_state = 12}, + [4873] = {.lex_state = 57, .external_lex_state = 12}, + [4874] = {.lex_state = 57, .external_lex_state = 12}, + [4875] = {.lex_state = 37, .external_lex_state = 12}, + [4876] = {.lex_state = 68, .external_lex_state = 17}, + [4877] = {.lex_state = 37, .external_lex_state = 12}, + [4878] = {.lex_state = 37, .external_lex_state = 12}, + [4879] = {.lex_state = 35, .external_lex_state = 16}, + [4880] = {.lex_state = 35, .external_lex_state = 16}, + [4881] = {.lex_state = 35, .external_lex_state = 16}, + [4882] = {.lex_state = 35, .external_lex_state = 11}, + [4883] = {.lex_state = 42, .external_lex_state = 14}, + [4884] = {.lex_state = 35, .external_lex_state = 16}, + [4885] = {.lex_state = 35, .external_lex_state = 11}, + [4886] = {.lex_state = 57, .external_lex_state = 12}, + [4887] = {.lex_state = 37, .external_lex_state = 12}, + [4888] = {.lex_state = 34, .external_lex_state = 11}, + [4889] = {.lex_state = 68, .external_lex_state = 17}, + [4890] = {.lex_state = 35, .external_lex_state = 12}, + [4891] = {.lex_state = 36, .external_lex_state = 12}, + [4892] = {.lex_state = 35, .external_lex_state = 12}, + [4893] = {.lex_state = 37, .external_lex_state = 12}, + [4894] = {.lex_state = 35, .external_lex_state = 12}, + [4895] = {.lex_state = 35, .external_lex_state = 12}, + [4896] = {.lex_state = 56, .external_lex_state = 15}, + [4897] = {.lex_state = 37, .external_lex_state = 12}, + [4898] = {.lex_state = 35, .external_lex_state = 11}, + [4899] = {.lex_state = 34, .external_lex_state = 11}, + [4900] = {.lex_state = 42, .external_lex_state = 14}, + [4901] = {.lex_state = 35, .external_lex_state = 12}, + [4902] = {.lex_state = 70, .external_lex_state = 19}, + [4903] = {.lex_state = 35, .external_lex_state = 11}, + [4904] = {.lex_state = 34, .external_lex_state = 11}, + [4905] = {.lex_state = 68, .external_lex_state = 17}, + [4906] = {.lex_state = 34, .external_lex_state = 11}, + [4907] = {.lex_state = 36, .external_lex_state = 2}, + [4908] = {.lex_state = 35, .external_lex_state = 16}, + [4909] = {.lex_state = 35, .external_lex_state = 11}, + [4910] = {.lex_state = 70, .external_lex_state = 19}, + [4911] = {.lex_state = 42, .external_lex_state = 16}, + [4912] = {.lex_state = 70, .external_lex_state = 19}, + [4913] = {.lex_state = 68, .external_lex_state = 17}, + [4914] = {.lex_state = 68, .external_lex_state = 17}, + [4915] = {.lex_state = 42, .external_lex_state = 14}, + [4916] = {.lex_state = 34, .external_lex_state = 11}, + [4917] = {.lex_state = 36, .external_lex_state = 2}, + [4918] = {.lex_state = 35, .external_lex_state = 11}, + [4919] = {.lex_state = 57, .external_lex_state = 12}, + [4920] = {.lex_state = 35, .external_lex_state = 11}, + [4921] = {.lex_state = 57, .external_lex_state = 12}, + [4922] = {.lex_state = 57, .external_lex_state = 12}, + [4923] = {.lex_state = 57, .external_lex_state = 12}, + [4924] = {.lex_state = 57, .external_lex_state = 12}, + [4925] = {.lex_state = 57, .external_lex_state = 12}, + [4926] = {.lex_state = 35, .external_lex_state = 12}, + [4927] = {.lex_state = 42, .external_lex_state = 14}, + [4928] = {.lex_state = 68, .external_lex_state = 17}, + [4929] = {.lex_state = 42, .external_lex_state = 14}, + [4930] = {.lex_state = 68, .external_lex_state = 17}, + [4931] = {.lex_state = 42, .external_lex_state = 14}, + [4932] = {.lex_state = 57, .external_lex_state = 12}, + [4933] = {.lex_state = 156, .external_lex_state = 11}, + [4934] = {.lex_state = 34, .external_lex_state = 11}, + [4935] = {.lex_state = 34, .external_lex_state = 14}, + [4936] = {.lex_state = 34, .external_lex_state = 11}, + [4937] = {.lex_state = 34, .external_lex_state = 11}, + [4938] = {.lex_state = 34, .external_lex_state = 11}, + [4939] = {.lex_state = 34, .external_lex_state = 11}, + [4940] = {.lex_state = 56, .external_lex_state = 12}, + [4941] = {.lex_state = 34, .external_lex_state = 11}, + [4942] = {.lex_state = 34, .external_lex_state = 11}, + [4943] = {.lex_state = 156, .external_lex_state = 11}, + [4944] = {.lex_state = 156, .external_lex_state = 11}, + [4945] = {.lex_state = 156, .external_lex_state = 11}, + [4946] = {.lex_state = 34, .external_lex_state = 11}, + [4947] = {.lex_state = 156, .external_lex_state = 11}, + [4948] = {.lex_state = 37, .external_lex_state = 12}, + [4949] = {.lex_state = 34, .external_lex_state = 14}, + [4950] = {.lex_state = 37, .external_lex_state = 14}, + [4951] = {.lex_state = 156, .external_lex_state = 11}, + [4952] = {.lex_state = 156, .external_lex_state = 11}, + [4953] = {.lex_state = 34, .external_lex_state = 16}, + [4954] = {.lex_state = 37, .external_lex_state = 15}, + [4955] = {.lex_state = 156, .external_lex_state = 11}, + [4956] = {.lex_state = 37, .external_lex_state = 14}, + [4957] = {.lex_state = 34, .external_lex_state = 11}, + [4958] = {.lex_state = 34, .external_lex_state = 11}, + [4959] = {.lex_state = 156, .external_lex_state = 11}, + [4960] = {.lex_state = 156, .external_lex_state = 11}, + [4961] = {.lex_state = 156, .external_lex_state = 11}, + [4962] = {.lex_state = 156, .external_lex_state = 11}, + [4963] = {.lex_state = 156, .external_lex_state = 11}, + [4964] = {.lex_state = 37, .external_lex_state = 12}, + [4965] = {.lex_state = 37, .external_lex_state = 15}, + [4966] = {.lex_state = 156, .external_lex_state = 11}, + [4967] = {.lex_state = 59, .external_lex_state = 12}, + [4968] = {.lex_state = 35, .external_lex_state = 16}, + [4969] = {.lex_state = 34, .external_lex_state = 16}, + [4970] = {.lex_state = 34, .external_lex_state = 11}, + [4971] = {.lex_state = 34, .external_lex_state = 11}, + [4972] = {.lex_state = 34, .external_lex_state = 11}, + [4973] = {.lex_state = 156, .external_lex_state = 11}, + [4974] = {.lex_state = 156, .external_lex_state = 11}, + [4975] = {.lex_state = 156, .external_lex_state = 11}, + [4976] = {.lex_state = 156, .external_lex_state = 11}, + [4977] = {.lex_state = 34, .external_lex_state = 11}, + [4978] = {.lex_state = 35, .external_lex_state = 12}, + [4979] = {.lex_state = 42, .external_lex_state = 16}, + [4980] = {.lex_state = 34, .external_lex_state = 11}, + [4981] = {.lex_state = 34, .external_lex_state = 11}, + [4982] = {.lex_state = 34, .external_lex_state = 11}, + [4983] = {.lex_state = 34, .external_lex_state = 11}, + [4984] = {.lex_state = 34, .external_lex_state = 11}, + [4985] = {.lex_state = 34, .external_lex_state = 11}, + [4986] = {.lex_state = 156, .external_lex_state = 11}, + [4987] = {.lex_state = 42, .external_lex_state = 16}, + [4988] = {.lex_state = 42, .external_lex_state = 16}, + [4989] = {.lex_state = 34, .external_lex_state = 11}, + [4990] = {.lex_state = 34, .external_lex_state = 11}, + [4991] = {.lex_state = 34, .external_lex_state = 11}, + [4992] = {.lex_state = 34, .external_lex_state = 11}, + [4993] = {.lex_state = 156, .external_lex_state = 11}, + [4994] = {.lex_state = 34, .external_lex_state = 11}, + [4995] = {.lex_state = 42, .external_lex_state = 15}, + [4996] = {.lex_state = 42, .external_lex_state = 14}, + [4997] = {.lex_state = 42, .external_lex_state = 14}, + [4998] = {.lex_state = 34, .external_lex_state = 11}, + [4999] = {.lex_state = 34, .external_lex_state = 11}, + [5000] = {.lex_state = 42, .external_lex_state = 15}, + [5001] = {.lex_state = 156, .external_lex_state = 11}, + [5002] = {.lex_state = 156, .external_lex_state = 11}, + [5003] = {.lex_state = 156, .external_lex_state = 11}, + [5004] = {.lex_state = 35, .external_lex_state = 12}, + [5005] = {.lex_state = 34, .external_lex_state = 16}, + [5006] = {.lex_state = 42, .external_lex_state = 15}, + [5007] = {.lex_state = 42, .external_lex_state = 15}, + [5008] = {.lex_state = 56, .external_lex_state = 11}, + [5009] = {.lex_state = 37, .external_lex_state = 16}, + [5010] = {.lex_state = 35, .external_lex_state = 12}, + [5011] = {.lex_state = 34, .external_lex_state = 14}, + [5012] = {.lex_state = 35, .external_lex_state = 12}, + [5013] = {.lex_state = 34, .external_lex_state = 16}, + [5014] = {.lex_state = 34, .external_lex_state = 16}, + [5015] = {.lex_state = 34, .external_lex_state = 11}, + [5016] = {.lex_state = 34, .external_lex_state = 11}, + [5017] = {.lex_state = 34, .external_lex_state = 11}, + [5018] = {.lex_state = 156, .external_lex_state = 11}, + [5019] = {.lex_state = 34, .external_lex_state = 15}, + [5020] = {.lex_state = 156, .external_lex_state = 11}, + [5021] = {.lex_state = 42, .external_lex_state = 15}, + [5022] = {.lex_state = 62, .external_lex_state = 12}, + [5023] = {.lex_state = 156, .external_lex_state = 11}, + [5024] = {.lex_state = 34, .external_lex_state = 11}, + [5025] = {.lex_state = 34, .external_lex_state = 14}, + [5026] = {.lex_state = 156, .external_lex_state = 11}, + [5027] = {.lex_state = 34, .external_lex_state = 16}, + [5028] = {.lex_state = 156, .external_lex_state = 11}, + [5029] = {.lex_state = 35, .external_lex_state = 12}, + [5030] = {.lex_state = 35, .external_lex_state = 12}, + [5031] = {.lex_state = 42, .external_lex_state = 15}, + [5032] = {.lex_state = 56, .external_lex_state = 11}, + [5033] = {.lex_state = 37, .external_lex_state = 16}, + [5034] = {.lex_state = 34, .external_lex_state = 11}, + [5035] = {.lex_state = 156, .external_lex_state = 11}, + [5036] = {.lex_state = 34, .external_lex_state = 14}, + [5037] = {.lex_state = 53, .external_lex_state = 12}, + [5038] = {.lex_state = 34, .external_lex_state = 11}, + [5039] = {.lex_state = 34, .external_lex_state = 11}, + [5040] = {.lex_state = 35, .external_lex_state = 12}, + [5041] = {.lex_state = 37, .external_lex_state = 6}, + [5042] = {.lex_state = 42, .external_lex_state = 15}, + [5043] = {.lex_state = 34, .external_lex_state = 11}, + [5044] = {.lex_state = 34, .external_lex_state = 11}, + [5045] = {.lex_state = 34, .external_lex_state = 11}, + [5046] = {.lex_state = 34, .external_lex_state = 11}, + [5047] = {.lex_state = 156, .external_lex_state = 11}, + [5048] = {.lex_state = 34, .external_lex_state = 14}, + [5049] = {.lex_state = 156, .external_lex_state = 11}, + [5050] = {.lex_state = 156, .external_lex_state = 11}, + [5051] = {.lex_state = 156, .external_lex_state = 11}, + [5052] = {.lex_state = 156, .external_lex_state = 11}, + [5053] = {.lex_state = 156, .external_lex_state = 11}, + [5054] = {.lex_state = 156, .external_lex_state = 11}, + [5055] = {.lex_state = 37, .external_lex_state = 14}, + [5056] = {.lex_state = 37, .external_lex_state = 8}, + [5057] = {.lex_state = 34, .external_lex_state = 14}, + [5058] = {.lex_state = 35, .external_lex_state = 12}, + [5059] = {.lex_state = 56, .external_lex_state = 14}, + [5060] = {.lex_state = 42, .external_lex_state = 15}, + [5061] = {.lex_state = 156, .external_lex_state = 11}, + [5062] = {.lex_state = 156, .external_lex_state = 11}, + [5063] = {.lex_state = 156, .external_lex_state = 11}, + [5064] = {.lex_state = 34, .external_lex_state = 11}, + [5065] = {.lex_state = 34, .external_lex_state = 11}, + [5066] = {.lex_state = 34, .external_lex_state = 11}, + [5067] = {.lex_state = 34, .external_lex_state = 11}, + [5068] = {.lex_state = 34, .external_lex_state = 11}, + [5069] = {.lex_state = 156, .external_lex_state = 11}, + [5070] = {.lex_state = 34, .external_lex_state = 14}, + [5071] = {.lex_state = 35, .external_lex_state = 12}, + [5072] = {.lex_state = 42, .external_lex_state = 14}, + [5073] = {.lex_state = 34, .external_lex_state = 11}, + [5074] = {.lex_state = 34, .external_lex_state = 11}, + [5075] = {.lex_state = 34, .external_lex_state = 14}, + [5076] = {.lex_state = 35, .external_lex_state = 16}, + [5077] = {.lex_state = 34, .external_lex_state = 11}, + [5078] = {.lex_state = 34, .external_lex_state = 11}, + [5079] = {.lex_state = 156, .external_lex_state = 11}, + [5080] = {.lex_state = 59, .external_lex_state = 12}, + [5081] = {.lex_state = 34, .external_lex_state = 11}, + [5082] = {.lex_state = 34, .external_lex_state = 11}, + [5083] = {.lex_state = 34, .external_lex_state = 11}, + [5084] = {.lex_state = 34, .external_lex_state = 11}, + [5085] = {.lex_state = 35, .external_lex_state = 12}, + [5086] = {.lex_state = 34, .external_lex_state = 11}, + [5087] = {.lex_state = 34, .external_lex_state = 11}, + [5088] = {.lex_state = 34, .external_lex_state = 11}, + [5089] = {.lex_state = 34, .external_lex_state = 16}, + [5090] = {.lex_state = 35, .external_lex_state = 12}, + [5091] = {.lex_state = 156, .external_lex_state = 11}, + [5092] = {.lex_state = 35, .external_lex_state = 12}, + [5093] = {.lex_state = 156, .external_lex_state = 11}, + [5094] = {.lex_state = 34, .external_lex_state = 11}, + [5095] = {.lex_state = 35, .external_lex_state = 12}, + [5096] = {.lex_state = 35, .external_lex_state = 12}, + [5097] = {.lex_state = 37, .external_lex_state = 7}, + [5098] = {.lex_state = 34, .external_lex_state = 11}, + [5099] = {.lex_state = 156, .external_lex_state = 11}, + [5100] = {.lex_state = 42, .external_lex_state = 15}, + [5101] = {.lex_state = 42, .external_lex_state = 14}, + [5102] = {.lex_state = 34, .external_lex_state = 11}, + [5103] = {.lex_state = 156, .external_lex_state = 11}, + [5104] = {.lex_state = 156, .external_lex_state = 11}, + [5105] = {.lex_state = 37, .external_lex_state = 12}, + [5106] = {.lex_state = 35, .external_lex_state = 12}, + [5107] = {.lex_state = 156, .external_lex_state = 11}, + [5108] = {.lex_state = 34, .external_lex_state = 11}, + [5109] = {.lex_state = 34, .external_lex_state = 11}, + [5110] = {.lex_state = 156, .external_lex_state = 11}, + [5111] = {.lex_state = 156, .external_lex_state = 11}, + [5112] = {.lex_state = 156, .external_lex_state = 11}, + [5113] = {.lex_state = 35, .external_lex_state = 12}, + [5114] = {.lex_state = 34, .external_lex_state = 11}, + [5115] = {.lex_state = 42, .external_lex_state = 16}, + [5116] = {.lex_state = 34, .external_lex_state = 11}, + [5117] = {.lex_state = 34, .external_lex_state = 11}, + [5118] = {.lex_state = 34, .external_lex_state = 14}, + [5119] = {.lex_state = 34, .external_lex_state = 11}, + [5120] = {.lex_state = 34, .external_lex_state = 14}, + [5121] = {.lex_state = 34, .external_lex_state = 11}, + [5122] = {.lex_state = 42, .external_lex_state = 15}, + [5123] = {.lex_state = 34, .external_lex_state = 11}, + [5124] = {.lex_state = 156, .external_lex_state = 11}, + [5125] = {.lex_state = 156, .external_lex_state = 11}, + [5126] = {.lex_state = 156, .external_lex_state = 11}, + [5127] = {.lex_state = 42, .external_lex_state = 15}, + [5128] = {.lex_state = 156, .external_lex_state = 11}, + [5129] = {.lex_state = 156, .external_lex_state = 11}, + [5130] = {.lex_state = 35, .external_lex_state = 16}, + [5131] = {.lex_state = 42, .external_lex_state = 15}, + [5132] = {.lex_state = 34, .external_lex_state = 11}, + [5133] = {.lex_state = 35, .external_lex_state = 12}, + [5134] = {.lex_state = 35, .external_lex_state = 16}, + [5135] = {.lex_state = 34, .external_lex_state = 11}, + [5136] = {.lex_state = 34, .external_lex_state = 11}, + [5137] = {.lex_state = 34, .external_lex_state = 11}, + [5138] = {.lex_state = 34, .external_lex_state = 11}, + [5139] = {.lex_state = 34, .external_lex_state = 11}, + [5140] = {.lex_state = 34, .external_lex_state = 14}, + [5141] = {.lex_state = 34, .external_lex_state = 11}, + [5142] = {.lex_state = 34, .external_lex_state = 11}, + [5143] = {.lex_state = 156, .external_lex_state = 11}, + [5144] = {.lex_state = 37, .external_lex_state = 12}, + [5145] = {.lex_state = 37, .external_lex_state = 15}, + [5146] = {.lex_state = 156, .external_lex_state = 11}, + [5147] = {.lex_state = 156, .external_lex_state = 11}, + [5148] = {.lex_state = 156, .external_lex_state = 11}, + [5149] = {.lex_state = 34, .external_lex_state = 11}, + [5150] = {.lex_state = 34, .external_lex_state = 11}, + [5151] = {.lex_state = 156, .external_lex_state = 11}, + [5152] = {.lex_state = 34, .external_lex_state = 14}, + [5153] = {.lex_state = 34, .external_lex_state = 15}, + [5154] = {.lex_state = 43, .external_lex_state = 11}, + [5155] = {.lex_state = 42, .external_lex_state = 15}, + [5156] = {.lex_state = 42, .external_lex_state = 15}, + [5157] = {.lex_state = 156, .external_lex_state = 15}, + [5158] = {.lex_state = 37, .external_lex_state = 16}, + [5159] = {.lex_state = 36, .external_lex_state = 12}, + [5160] = {.lex_state = 156, .external_lex_state = 11}, + [5161] = {.lex_state = 0, .external_lex_state = 18}, + [5162] = {.lex_state = 34, .external_lex_state = 15}, + [5163] = {.lex_state = 42, .external_lex_state = 14}, + [5164] = {.lex_state = 42, .external_lex_state = 14}, + [5165] = {.lex_state = 156, .external_lex_state = 11}, + [5166] = {.lex_state = 36, .external_lex_state = 12}, + [5167] = {.lex_state = 34, .external_lex_state = 16}, + [5168] = {.lex_state = 37, .external_lex_state = 16}, + [5169] = {.lex_state = 34, .external_lex_state = 14}, + [5170] = {.lex_state = 156, .external_lex_state = 11}, + [5171] = {.lex_state = 34, .external_lex_state = 11}, + [5172] = {.lex_state = 37, .external_lex_state = 14}, + [5173] = {.lex_state = 34, .external_lex_state = 11}, + [5174] = {.lex_state = 35, .external_lex_state = 12}, + [5175] = {.lex_state = 156, .external_lex_state = 11}, + [5176] = {.lex_state = 37, .external_lex_state = 12}, + [5177] = {.lex_state = 0, .external_lex_state = 18}, + [5178] = {.lex_state = 0, .external_lex_state = 18}, + [5179] = {.lex_state = 0, .external_lex_state = 18}, + [5180] = {.lex_state = 36, .external_lex_state = 12}, + [5181] = {.lex_state = 156, .external_lex_state = 11}, + [5182] = {.lex_state = 42, .external_lex_state = 14}, + [5183] = {.lex_state = 37, .external_lex_state = 15}, + [5184] = {.lex_state = 156, .external_lex_state = 11}, + [5185] = {.lex_state = 35, .external_lex_state = 12}, + [5186] = {.lex_state = 0, .external_lex_state = 18}, + [5187] = {.lex_state = 34, .external_lex_state = 16}, + [5188] = {.lex_state = 0, .external_lex_state = 18}, + [5189] = {.lex_state = 0, .external_lex_state = 18}, + [5190] = {.lex_state = 34, .external_lex_state = 14}, + [5191] = {.lex_state = 34, .external_lex_state = 14}, + [5192] = {.lex_state = 34, .external_lex_state = 14}, + [5193] = {.lex_state = 43, .external_lex_state = 11}, + [5194] = {.lex_state = 34, .external_lex_state = 14}, + [5195] = {.lex_state = 37, .external_lex_state = 12}, + [5196] = {.lex_state = 156, .external_lex_state = 11}, + [5197] = {.lex_state = 34, .external_lex_state = 14}, + [5198] = {.lex_state = 35, .external_lex_state = 12}, + [5199] = {.lex_state = 37, .external_lex_state = 12}, + [5200] = {.lex_state = 34, .external_lex_state = 16}, + [5201] = {.lex_state = 36, .external_lex_state = 12}, + [5202] = {.lex_state = 34, .external_lex_state = 11}, + [5203] = {.lex_state = 34, .external_lex_state = 14}, + [5204] = {.lex_state = 43, .external_lex_state = 11}, + [5205] = {.lex_state = 43, .external_lex_state = 11}, + [5206] = {.lex_state = 43, .external_lex_state = 11}, + [5207] = {.lex_state = 68, .external_lex_state = 17}, + [5208] = {.lex_state = 35, .external_lex_state = 12}, + [5209] = {.lex_state = 156, .external_lex_state = 11}, + [5210] = {.lex_state = 34, .external_lex_state = 14}, + [5211] = {.lex_state = 34, .external_lex_state = 11}, + [5212] = {.lex_state = 156, .external_lex_state = 11}, + [5213] = {.lex_state = 34, .external_lex_state = 14}, + [5214] = {.lex_state = 34, .external_lex_state = 11}, + [5215] = {.lex_state = 35, .external_lex_state = 12}, + [5216] = {.lex_state = 36, .external_lex_state = 12}, + [5217] = {.lex_state = 34, .external_lex_state = 14}, + [5218] = {.lex_state = 34, .external_lex_state = 14}, + [5219] = {.lex_state = 34, .external_lex_state = 14}, + [5220] = {.lex_state = 42, .external_lex_state = 16}, + [5221] = {.lex_state = 56, .external_lex_state = 16}, + [5222] = {.lex_state = 156, .external_lex_state = 11}, + [5223] = {.lex_state = 37, .external_lex_state = 14}, + [5224] = {.lex_state = 34, .external_lex_state = 11}, + [5225] = {.lex_state = 34, .external_lex_state = 14}, + [5226] = {.lex_state = 34, .external_lex_state = 15}, + [5227] = {.lex_state = 156, .external_lex_state = 11}, + [5228] = {.lex_state = 34, .external_lex_state = 15}, + [5229] = {.lex_state = 43, .external_lex_state = 11}, + [5230] = {.lex_state = 156, .external_lex_state = 11}, + [5231] = {.lex_state = 42, .external_lex_state = 15}, + [5232] = {.lex_state = 43, .external_lex_state = 11}, + [5233] = {.lex_state = 156, .external_lex_state = 15}, + [5234] = {.lex_state = 156, .external_lex_state = 15}, + [5235] = {.lex_state = 34, .external_lex_state = 16}, + [5236] = {.lex_state = 34, .external_lex_state = 14}, + [5237] = {.lex_state = 156, .external_lex_state = 11}, + [5238] = {.lex_state = 34, .external_lex_state = 14}, + [5239] = {.lex_state = 36, .external_lex_state = 12}, + [5240] = {.lex_state = 34, .external_lex_state = 15}, + [5241] = {.lex_state = 42, .external_lex_state = 14}, + [5242] = {.lex_state = 42, .external_lex_state = 14}, + [5243] = {.lex_state = 34, .external_lex_state = 14}, + [5244] = {.lex_state = 68, .external_lex_state = 17}, + [5245] = {.lex_state = 37, .external_lex_state = 12}, + [5246] = {.lex_state = 0, .external_lex_state = 18}, + [5247] = {.lex_state = 37, .external_lex_state = 12}, + [5248] = {.lex_state = 37, .external_lex_state = 12}, + [5249] = {.lex_state = 42, .external_lex_state = 16}, + [5250] = {.lex_state = 35, .external_lex_state = 12}, + [5251] = {.lex_state = 42, .external_lex_state = 16}, + [5252] = {.lex_state = 37, .external_lex_state = 14}, + [5253] = {.lex_state = 156, .external_lex_state = 15}, + [5254] = {.lex_state = 43, .external_lex_state = 11}, + [5255] = {.lex_state = 34, .external_lex_state = 14}, + [5256] = {.lex_state = 156, .external_lex_state = 11}, + [5257] = {.lex_state = 37, .external_lex_state = 15}, + [5258] = {.lex_state = 35, .external_lex_state = 12}, + [5259] = {.lex_state = 34, .external_lex_state = 11}, + [5260] = {.lex_state = 34, .external_lex_state = 16}, + [5261] = {.lex_state = 35, .external_lex_state = 12}, + [5262] = {.lex_state = 156, .external_lex_state = 11}, + [5263] = {.lex_state = 36, .external_lex_state = 12}, + [5264] = {.lex_state = 34, .external_lex_state = 11}, + [5265] = {.lex_state = 34, .external_lex_state = 14}, + [5266] = {.lex_state = 35, .external_lex_state = 12}, + [5267] = {.lex_state = 34, .external_lex_state = 14}, + [5268] = {.lex_state = 34, .external_lex_state = 11}, + [5269] = {.lex_state = 34, .external_lex_state = 16}, + [5270] = {.lex_state = 43, .external_lex_state = 11}, + [5271] = {.lex_state = 42, .external_lex_state = 15}, + [5272] = {.lex_state = 37, .external_lex_state = 15}, + [5273] = {.lex_state = 34, .external_lex_state = 16}, + [5274] = {.lex_state = 42, .external_lex_state = 15}, + [5275] = {.lex_state = 42, .external_lex_state = 16}, + [5276] = {.lex_state = 37, .external_lex_state = 16}, + [5277] = {.lex_state = 37, .external_lex_state = 16}, + [5278] = {.lex_state = 42, .external_lex_state = 16}, + [5279] = {.lex_state = 36, .external_lex_state = 12}, + [5280] = {.lex_state = 36, .external_lex_state = 12}, + [5281] = {.lex_state = 68, .external_lex_state = 17}, + [5282] = {.lex_state = 34, .external_lex_state = 16}, + [5283] = {.lex_state = 34, .external_lex_state = 16}, + [5284] = {.lex_state = 34, .external_lex_state = 16}, + [5285] = {.lex_state = 156, .external_lex_state = 11}, + [5286] = {.lex_state = 34, .external_lex_state = 15}, + [5287] = {.lex_state = 34, .external_lex_state = 15}, + [5288] = {.lex_state = 34, .external_lex_state = 15}, + [5289] = {.lex_state = 34, .external_lex_state = 15}, + [5290] = {.lex_state = 34, .external_lex_state = 15}, + [5291] = {.lex_state = 34, .external_lex_state = 15}, + [5292] = {.lex_state = 156, .external_lex_state = 11}, + [5293] = {.lex_state = 43, .external_lex_state = 11}, + [5294] = {.lex_state = 68, .external_lex_state = 17}, + [5295] = {.lex_state = 35, .external_lex_state = 12}, + [5296] = {.lex_state = 36, .external_lex_state = 12}, + [5297] = {.lex_state = 34, .external_lex_state = 15}, + [5298] = {.lex_state = 37, .external_lex_state = 16}, + [5299] = {.lex_state = 37, .external_lex_state = 12}, + [5300] = {.lex_state = 53, .external_lex_state = 12}, + [5301] = {.lex_state = 36, .external_lex_state = 20}, + [5302] = {.lex_state = 156, .external_lex_state = 16}, + [5303] = {.lex_state = 35, .external_lex_state = 12}, + [5304] = {.lex_state = 42, .external_lex_state = 16}, + [5305] = {.lex_state = 36, .external_lex_state = 20}, + [5306] = {.lex_state = 36, .external_lex_state = 20}, + [5307] = {.lex_state = 34, .external_lex_state = 14}, + [5308] = {.lex_state = 34, .external_lex_state = 12}, + [5309] = {.lex_state = 37, .external_lex_state = 16}, + [5310] = {.lex_state = 37, .external_lex_state = 16}, + [5311] = {.lex_state = 156, .external_lex_state = 15}, + [5312] = {.lex_state = 156, .external_lex_state = 15}, + [5313] = {.lex_state = 43, .external_lex_state = 12}, + [5314] = {.lex_state = 35, .external_lex_state = 12}, + [5315] = {.lex_state = 35, .external_lex_state = 11}, + [5316] = {.lex_state = 37, .external_lex_state = 12}, + [5317] = {.lex_state = 37, .external_lex_state = 12}, + [5318] = {.lex_state = 156, .external_lex_state = 15}, + [5319] = {.lex_state = 3, .external_lex_state = 15}, + [5320] = {.lex_state = 36, .external_lex_state = 20}, + [5321] = {.lex_state = 34, .external_lex_state = 12}, + [5322] = {.lex_state = 37, .external_lex_state = 14}, + [5323] = {.lex_state = 37, .external_lex_state = 14}, + [5324] = {.lex_state = 35, .external_lex_state = 11}, + [5325] = {.lex_state = 156, .external_lex_state = 15}, + [5326] = {.lex_state = 34, .external_lex_state = 14}, + [5327] = {.lex_state = 34, .external_lex_state = 12}, + [5328] = {.lex_state = 36, .external_lex_state = 20}, + [5329] = {.lex_state = 35, .external_lex_state = 12}, + [5330] = {.lex_state = 37, .external_lex_state = 12}, + [5331] = {.lex_state = 37, .external_lex_state = 16}, + [5332] = {.lex_state = 42, .external_lex_state = 15}, + [5333] = {.lex_state = 37, .external_lex_state = 11}, + [5334] = {.lex_state = 156, .external_lex_state = 16}, + [5335] = {.lex_state = 37, .external_lex_state = 16}, + [5336] = {.lex_state = 34, .external_lex_state = 12}, + [5337] = {.lex_state = 34, .external_lex_state = 12}, + [5338] = {.lex_state = 34, .external_lex_state = 12}, + [5339] = {.lex_state = 34, .external_lex_state = 12}, + [5340] = {.lex_state = 34, .external_lex_state = 12}, + [5341] = {.lex_state = 36, .external_lex_state = 20}, + [5342] = {.lex_state = 34, .external_lex_state = 11}, + [5343] = {.lex_state = 36, .external_lex_state = 20}, + [5344] = {.lex_state = 34, .external_lex_state = 12}, + [5345] = {.lex_state = 37, .external_lex_state = 16}, + [5346] = {.lex_state = 37, .external_lex_state = 16}, + [5347] = {.lex_state = 56, .external_lex_state = 12}, + [5348] = {.lex_state = 156, .external_lex_state = 15}, + [5349] = {.lex_state = 36, .external_lex_state = 11}, + [5350] = {.lex_state = 37, .external_lex_state = 16}, + [5351] = {.lex_state = 35, .external_lex_state = 11}, + [5352] = {.lex_state = 34, .external_lex_state = 12}, + [5353] = {.lex_state = 34, .external_lex_state = 12}, + [5354] = {.lex_state = 34, .external_lex_state = 11}, + [5355] = {.lex_state = 35, .external_lex_state = 12}, + [5356] = {.lex_state = 35, .external_lex_state = 12}, + [5357] = {.lex_state = 37, .external_lex_state = 12}, + [5358] = {.lex_state = 36, .external_lex_state = 11}, + [5359] = {.lex_state = 34, .external_lex_state = 12}, + [5360] = {.lex_state = 35, .external_lex_state = 12}, + [5361] = {.lex_state = 36, .external_lex_state = 11}, + [5362] = {.lex_state = 56, .external_lex_state = 14}, + [5363] = {.lex_state = 43, .external_lex_state = 12}, + [5364] = {.lex_state = 3, .external_lex_state = 15}, + [5365] = {.lex_state = 42, .external_lex_state = 14}, + [5366] = {.lex_state = 36, .external_lex_state = 20}, + [5367] = {.lex_state = 37, .external_lex_state = 16}, + [5368] = {.lex_state = 42, .external_lex_state = 14}, + [5369] = {.lex_state = 35, .external_lex_state = 11}, + [5370] = {.lex_state = 37, .external_lex_state = 12}, + [5371] = {.lex_state = 34, .external_lex_state = 12}, + [5372] = {.lex_state = 56, .external_lex_state = 12}, + [5373] = {.lex_state = 43, .external_lex_state = 12}, + [5374] = {.lex_state = 37, .external_lex_state = 12}, + [5375] = {.lex_state = 36, .external_lex_state = 20}, + [5376] = {.lex_state = 34, .external_lex_state = 12}, + [5377] = {.lex_state = 37, .external_lex_state = 12}, + [5378] = {.lex_state = 37, .external_lex_state = 12}, + [5379] = {.lex_state = 3, .external_lex_state = 15}, + [5380] = {.lex_state = 34, .external_lex_state = 12}, + [5381] = {.lex_state = 37, .external_lex_state = 12}, + [5382] = {.lex_state = 34, .external_lex_state = 12}, + [5383] = {.lex_state = 37, .external_lex_state = 12}, + [5384] = {.lex_state = 35, .external_lex_state = 12}, + [5385] = {.lex_state = 37, .external_lex_state = 12}, + [5386] = {.lex_state = 36, .external_lex_state = 20}, + [5387] = {.lex_state = 34, .external_lex_state = 12}, + [5388] = {.lex_state = 34, .external_lex_state = 12}, + [5389] = {.lex_state = 156, .external_lex_state = 16}, + [5390] = {.lex_state = 34, .external_lex_state = 12}, + [5391] = {.lex_state = 34, .external_lex_state = 14}, + [5392] = {.lex_state = 34, .external_lex_state = 12}, + [5393] = {.lex_state = 34, .external_lex_state = 12}, + [5394] = {.lex_state = 35, .external_lex_state = 12}, + [5395] = {.lex_state = 34, .external_lex_state = 12}, + [5396] = {.lex_state = 34, .external_lex_state = 12}, + [5397] = {.lex_state = 156, .external_lex_state = 15}, + [5398] = {.lex_state = 37, .external_lex_state = 12}, + [5399] = {.lex_state = 36, .external_lex_state = 11}, + [5400] = {.lex_state = 34, .external_lex_state = 12}, + [5401] = {.lex_state = 34, .external_lex_state = 12}, + [5402] = {.lex_state = 35, .external_lex_state = 11}, + [5403] = {.lex_state = 34, .external_lex_state = 12}, + [5404] = {.lex_state = 37, .external_lex_state = 14}, + [5405] = {.lex_state = 37, .external_lex_state = 12}, + [5406] = {.lex_state = 36, .external_lex_state = 11}, + [5407] = {.lex_state = 36, .external_lex_state = 20}, + [5408] = {.lex_state = 35, .external_lex_state = 12}, + [5409] = {.lex_state = 36, .external_lex_state = 20}, + [5410] = {.lex_state = 35, .external_lex_state = 12}, + [5411] = {.lex_state = 36, .external_lex_state = 11}, + [5412] = {.lex_state = 35, .external_lex_state = 12}, + [5413] = {.lex_state = 36, .external_lex_state = 20}, + [5414] = {.lex_state = 37, .external_lex_state = 16}, + [5415] = {.lex_state = 35, .external_lex_state = 11}, + [5416] = {.lex_state = 36, .external_lex_state = 20}, + [5417] = {.lex_state = 36, .external_lex_state = 20}, + [5418] = {.lex_state = 37, .external_lex_state = 16}, + [5419] = {.lex_state = 37, .external_lex_state = 12}, + [5420] = {.lex_state = 34, .external_lex_state = 12}, + [5421] = {.lex_state = 156, .external_lex_state = 15}, + [5422] = {.lex_state = 36, .external_lex_state = 20}, + [5423] = {.lex_state = 35, .external_lex_state = 11}, + [5424] = {.lex_state = 37, .external_lex_state = 16}, + [5425] = {.lex_state = 35, .external_lex_state = 12}, + [5426] = {.lex_state = 56, .external_lex_state = 12}, + [5427] = {.lex_state = 37, .external_lex_state = 15}, + [5428] = {.lex_state = 37, .external_lex_state = 15}, + [5429] = {.lex_state = 35, .external_lex_state = 12}, + [5430] = {.lex_state = 35, .external_lex_state = 12}, + [5431] = {.lex_state = 35, .external_lex_state = 12}, + [5432] = {.lex_state = 37, .external_lex_state = 12}, + [5433] = {.lex_state = 37, .external_lex_state = 16}, + [5434] = {.lex_state = 56, .external_lex_state = 12}, + [5435] = {.lex_state = 36, .external_lex_state = 20}, + [5436] = {.lex_state = 36, .external_lex_state = 20}, + [5437] = {.lex_state = 36, .external_lex_state = 20}, + [5438] = {.lex_state = 56, .external_lex_state = 12}, + [5439] = {.lex_state = 37, .external_lex_state = 16}, + [5440] = {.lex_state = 156, .external_lex_state = 15}, + [5441] = {.lex_state = 37, .external_lex_state = 12}, + [5442] = {.lex_state = 36, .external_lex_state = 20}, + [5443] = {.lex_state = 36, .external_lex_state = 11}, + [5444] = {.lex_state = 34, .external_lex_state = 11}, + [5445] = {.lex_state = 156, .external_lex_state = 15}, + [5446] = {.lex_state = 35, .external_lex_state = 11}, + [5447] = {.lex_state = 36, .external_lex_state = 20}, + [5448] = {.lex_state = 156, .external_lex_state = 15}, + [5449] = {.lex_state = 34, .external_lex_state = 11}, + [5450] = {.lex_state = 36, .external_lex_state = 20}, + [5451] = {.lex_state = 34, .external_lex_state = 14}, + [5452] = {.lex_state = 37, .external_lex_state = 16}, + [5453] = {.lex_state = 36, .external_lex_state = 20}, + [5454] = {.lex_state = 56, .external_lex_state = 14}, + [5455] = {.lex_state = 36, .external_lex_state = 20}, + [5456] = {.lex_state = 36, .external_lex_state = 20}, + [5457] = {.lex_state = 35, .external_lex_state = 11}, + [5458] = {.lex_state = 34, .external_lex_state = 14}, + [5459] = {.lex_state = 56, .external_lex_state = 12}, + [5460] = {.lex_state = 36, .external_lex_state = 11}, + [5461] = {.lex_state = 34, .external_lex_state = 12}, + [5462] = {.lex_state = 37, .external_lex_state = 15}, + [5463] = {.lex_state = 34, .external_lex_state = 14}, + [5464] = {.lex_state = 37, .external_lex_state = 12}, + [5465] = {.lex_state = 34, .external_lex_state = 12}, + [5466] = {.lex_state = 156, .external_lex_state = 16}, + [5467] = {.lex_state = 36, .external_lex_state = 11}, + [5468] = {.lex_state = 37, .external_lex_state = 15}, + [5469] = {.lex_state = 36, .external_lex_state = 11}, + [5470] = {.lex_state = 42, .external_lex_state = 16}, + [5471] = {.lex_state = 35, .external_lex_state = 11}, + [5472] = {.lex_state = 42, .external_lex_state = 16}, + [5473] = {.lex_state = 36, .external_lex_state = 20}, + [5474] = {.lex_state = 56, .external_lex_state = 14}, + [5475] = {.lex_state = 36, .external_lex_state = 20}, + [5476] = {.lex_state = 156, .external_lex_state = 16}, + [5477] = {.lex_state = 37, .external_lex_state = 14}, + [5478] = {.lex_state = 34, .external_lex_state = 11}, + [5479] = {.lex_state = 37, .external_lex_state = 14}, + [5480] = {.lex_state = 37, .external_lex_state = 14}, + [5481] = {.lex_state = 36, .external_lex_state = 20}, + [5482] = {.lex_state = 35, .external_lex_state = 12}, + [5483] = {.lex_state = 37, .external_lex_state = 16}, + [5484] = {.lex_state = 37, .external_lex_state = 16}, + [5485] = {.lex_state = 35, .external_lex_state = 11}, + [5486] = {.lex_state = 36, .external_lex_state = 20}, + [5487] = {.lex_state = 34, .external_lex_state = 14}, + [5488] = {.lex_state = 36, .external_lex_state = 20}, + [5489] = {.lex_state = 36, .external_lex_state = 12}, + [5490] = {.lex_state = 42, .external_lex_state = 15}, + [5491] = {.lex_state = 156, .external_lex_state = 15}, + [5492] = {.lex_state = 56, .external_lex_state = 14}, + [5493] = {.lex_state = 156, .external_lex_state = 5}, + [5494] = {.lex_state = 37, .external_lex_state = 12}, + [5495] = {.lex_state = 37, .external_lex_state = 12}, + [5496] = {.lex_state = 36, .external_lex_state = 20}, + [5497] = {.lex_state = 56, .external_lex_state = 14}, + [5498] = {.lex_state = 35, .external_lex_state = 12}, + [5499] = {.lex_state = 36, .external_lex_state = 20}, + [5500] = {.lex_state = 34, .external_lex_state = 14}, + [5501] = {.lex_state = 34, .external_lex_state = 12}, + [5502] = {.lex_state = 56, .external_lex_state = 14}, + [5503] = {.lex_state = 37, .external_lex_state = 15}, + [5504] = {.lex_state = 36, .external_lex_state = 20}, + [5505] = {.lex_state = 34, .external_lex_state = 12}, + [5506] = {.lex_state = 34, .external_lex_state = 12}, + [5507] = {.lex_state = 37, .external_lex_state = 15}, + [5508] = {.lex_state = 37, .external_lex_state = 15}, + [5509] = {.lex_state = 36, .external_lex_state = 20}, + [5510] = {.lex_state = 34, .external_lex_state = 11}, + [5511] = {.lex_state = 36, .external_lex_state = 20}, + [5512] = {.lex_state = 42, .external_lex_state = 14}, + [5513] = {.lex_state = 35, .external_lex_state = 11}, + [5514] = {.lex_state = 35, .external_lex_state = 11}, + [5515] = {.lex_state = 36, .external_lex_state = 11}, + [5516] = {.lex_state = 42, .external_lex_state = 15}, + [5517] = {.lex_state = 37, .external_lex_state = 12}, + [5518] = {.lex_state = 156, .external_lex_state = 16}, + [5519] = {.lex_state = 37, .external_lex_state = 12}, + [5520] = {.lex_state = 53, .external_lex_state = 12}, + [5521] = {.lex_state = 35, .external_lex_state = 11}, + [5522] = {.lex_state = 34, .external_lex_state = 12}, + [5523] = {.lex_state = 37, .external_lex_state = 12}, + [5524] = {.lex_state = 37, .external_lex_state = 11}, + [5525] = {.lex_state = 35, .external_lex_state = 12}, + [5526] = {.lex_state = 35, .external_lex_state = 11}, + [5527] = {.lex_state = 35, .external_lex_state = 11}, + [5528] = {.lex_state = 36, .external_lex_state = 20}, + [5529] = {.lex_state = 34, .external_lex_state = 12}, + [5530] = {.lex_state = 37, .external_lex_state = 12}, + [5531] = {.lex_state = 34, .external_lex_state = 12}, + [5532] = {.lex_state = 34, .external_lex_state = 14}, + [5533] = {.lex_state = 37, .external_lex_state = 16}, + [5534] = {.lex_state = 36, .external_lex_state = 12}, + [5535] = {.lex_state = 34, .external_lex_state = 16}, + [5536] = {.lex_state = 37, .external_lex_state = 15}, + [5537] = {.lex_state = 37, .external_lex_state = 14}, + [5538] = {.lex_state = 37, .external_lex_state = 16}, + [5539] = {.lex_state = 37, .external_lex_state = 16}, + [5540] = {.lex_state = 37, .external_lex_state = 16}, + [5541] = {.lex_state = 34, .external_lex_state = 12}, + [5542] = {.lex_state = 37, .external_lex_state = 16}, + [5543] = {.lex_state = 156, .external_lex_state = 11}, + [5544] = {.lex_state = 37, .external_lex_state = 14}, + [5545] = {.lex_state = 37, .external_lex_state = 16}, + [5546] = {.lex_state = 156, .external_lex_state = 11}, + [5547] = {.lex_state = 156, .external_lex_state = 16}, + [5548] = {.lex_state = 156, .external_lex_state = 14}, + [5549] = {.lex_state = 37, .external_lex_state = 15}, + [5550] = {.lex_state = 156, .external_lex_state = 11}, + [5551] = {.lex_state = 37, .external_lex_state = 16}, + [5552] = {.lex_state = 34, .external_lex_state = 14}, + [5553] = {.lex_state = 37, .external_lex_state = 14}, + [5554] = {.lex_state = 34, .external_lex_state = 16}, + [5555] = {.lex_state = 156, .external_lex_state = 16}, + [5556] = {.lex_state = 37, .external_lex_state = 14}, + [5557] = {.lex_state = 156, .external_lex_state = 11}, + [5558] = {.lex_state = 37, .external_lex_state = 14}, + [5559] = {.lex_state = 37, .external_lex_state = 14}, + [5560] = {.lex_state = 34, .external_lex_state = 14}, + [5561] = {.lex_state = 37, .external_lex_state = 15}, + [5562] = {.lex_state = 36, .external_lex_state = 13}, + [5563] = {.lex_state = 36, .external_lex_state = 21}, + [5564] = {.lex_state = 35, .external_lex_state = 12}, + [5565] = {.lex_state = 36, .external_lex_state = 21}, + [5566] = {.lex_state = 156, .external_lex_state = 14}, + [5567] = {.lex_state = 156, .external_lex_state = 5}, + [5568] = {.lex_state = 37, .external_lex_state = 14}, + [5569] = {.lex_state = 156, .external_lex_state = 11}, + [5570] = {.lex_state = 156, .external_lex_state = 11}, + [5571] = {.lex_state = 37, .external_lex_state = 14}, + [5572] = {.lex_state = 37, .external_lex_state = 16}, + [5573] = {.lex_state = 34, .external_lex_state = 16}, + [5574] = {.lex_state = 43, .external_lex_state = 12}, + [5575] = {.lex_state = 36, .external_lex_state = 2}, + [5576] = {.lex_state = 156, .external_lex_state = 16}, + [5577] = {.lex_state = 36, .external_lex_state = 21}, + [5578] = {.lex_state = 34, .external_lex_state = 12}, + [5579] = {.lex_state = 35, .external_lex_state = 12}, + [5580] = {.lex_state = 34, .external_lex_state = 12}, + [5581] = {.lex_state = 37, .external_lex_state = 14}, + [5582] = {.lex_state = 37, .external_lex_state = 14}, + [5583] = {.lex_state = 34, .external_lex_state = 14}, + [5584] = {.lex_state = 156, .external_lex_state = 5}, + [5585] = {.lex_state = 37, .external_lex_state = 15}, + [5586] = {.lex_state = 156, .external_lex_state = 16}, + [5587] = {.lex_state = 37, .external_lex_state = 16}, + [5588] = {.lex_state = 156, .external_lex_state = 5}, + [5589] = {.lex_state = 36, .external_lex_state = 13}, + [5590] = {.lex_state = 37, .external_lex_state = 14}, + [5591] = {.lex_state = 36, .external_lex_state = 21}, + [5592] = {.lex_state = 37, .external_lex_state = 15}, + [5593] = {.lex_state = 156, .external_lex_state = 12}, + [5594] = {.lex_state = 34, .external_lex_state = 14}, + [5595] = {.lex_state = 156, .external_lex_state = 5}, + [5596] = {.lex_state = 156, .external_lex_state = 11}, + [5597] = {.lex_state = 36, .external_lex_state = 21}, + [5598] = {.lex_state = 156, .external_lex_state = 11}, + [5599] = {.lex_state = 37, .external_lex_state = 15}, + [5600] = {.lex_state = 53, .external_lex_state = 12}, + [5601] = {.lex_state = 37, .external_lex_state = 15}, + [5602] = {.lex_state = 156, .external_lex_state = 5}, + [5603] = {.lex_state = 37, .external_lex_state = 14}, + [5604] = {.lex_state = 37, .external_lex_state = 15}, + [5605] = {.lex_state = 43, .external_lex_state = 12}, + [5606] = {.lex_state = 37, .external_lex_state = 15}, + [5607] = {.lex_state = 34, .external_lex_state = 12}, + [5608] = {.lex_state = 37, .external_lex_state = 15}, + [5609] = {.lex_state = 34, .external_lex_state = 14}, + [5610] = {.lex_state = 43, .external_lex_state = 12}, + [5611] = {.lex_state = 156, .external_lex_state = 15}, + [5612] = {.lex_state = 37, .external_lex_state = 16}, + [5613] = {.lex_state = 36, .external_lex_state = 13}, + [5614] = {.lex_state = 36, .external_lex_state = 21}, + [5615] = {.lex_state = 37, .external_lex_state = 16}, + [5616] = {.lex_state = 36, .external_lex_state = 13}, + [5617] = {.lex_state = 37, .external_lex_state = 15}, + [5618] = {.lex_state = 37, .external_lex_state = 16}, + [5619] = {.lex_state = 36, .external_lex_state = 21}, + [5620] = {.lex_state = 156, .external_lex_state = 11}, + [5621] = {.lex_state = 37, .external_lex_state = 16}, + [5622] = {.lex_state = 37, .external_lex_state = 16}, + [5623] = {.lex_state = 37, .external_lex_state = 16}, + [5624] = {.lex_state = 156, .external_lex_state = 14}, + [5625] = {.lex_state = 37, .external_lex_state = 14}, + [5626] = {.lex_state = 37, .external_lex_state = 14}, + [5627] = {.lex_state = 36, .external_lex_state = 12}, + [5628] = {.lex_state = 156, .external_lex_state = 12}, + [5629] = {.lex_state = 37, .external_lex_state = 14}, + [5630] = {.lex_state = 37, .external_lex_state = 14}, + [5631] = {.lex_state = 37, .external_lex_state = 15}, + [5632] = {.lex_state = 37, .external_lex_state = 14}, + [5633] = {.lex_state = 156, .external_lex_state = 14}, + [5634] = {.lex_state = 156, .external_lex_state = 11}, + [5635] = {.lex_state = 156, .external_lex_state = 11}, + [5636] = {.lex_state = 36, .external_lex_state = 21}, + [5637] = {.lex_state = 37, .external_lex_state = 14}, + [5638] = {.lex_state = 43, .external_lex_state = 12}, + [5639] = {.lex_state = 36, .external_lex_state = 21}, + [5640] = {.lex_state = 156, .external_lex_state = 12}, + [5641] = {.lex_state = 156, .external_lex_state = 16}, + [5642] = {.lex_state = 156, .external_lex_state = 16}, + [5643] = {.lex_state = 156, .external_lex_state = 12}, + [5644] = {.lex_state = 43, .external_lex_state = 12}, + [5645] = {.lex_state = 37, .external_lex_state = 16}, + [5646] = {.lex_state = 156, .external_lex_state = 11}, + [5647] = {.lex_state = 37, .external_lex_state = 16}, + [5648] = {.lex_state = 34, .external_lex_state = 14}, + [5649] = {.lex_state = 156, .external_lex_state = 5}, + [5650] = {.lex_state = 43, .external_lex_state = 12}, + [5651] = {.lex_state = 36, .external_lex_state = 14}, + [5652] = {.lex_state = 37, .external_lex_state = 16}, + [5653] = {.lex_state = 156, .external_lex_state = 14}, + [5654] = {.lex_state = 34, .external_lex_state = 14}, + [5655] = {.lex_state = 36, .external_lex_state = 21}, + [5656] = {.lex_state = 36, .external_lex_state = 14}, + [5657] = {.lex_state = 36, .external_lex_state = 14}, + [5658] = {.lex_state = 156, .external_lex_state = 11}, + [5659] = {.lex_state = 36, .external_lex_state = 13}, + [5660] = {.lex_state = 34, .external_lex_state = 14}, + [5661] = {.lex_state = 156, .external_lex_state = 14}, + [5662] = {.lex_state = 156, .external_lex_state = 15}, + [5663] = {.lex_state = 35, .external_lex_state = 12}, + [5664] = {.lex_state = 37, .external_lex_state = 16}, + [5665] = {.lex_state = 35, .external_lex_state = 12}, + [5666] = {.lex_state = 35, .external_lex_state = 12}, + [5667] = {.lex_state = 37, .external_lex_state = 15}, + [5668] = {.lex_state = 37, .external_lex_state = 15}, + [5669] = {.lex_state = 37, .external_lex_state = 15}, + [5670] = {.lex_state = 37, .external_lex_state = 15}, + [5671] = {.lex_state = 37, .external_lex_state = 15}, + [5672] = {.lex_state = 37, .external_lex_state = 15}, + [5673] = {.lex_state = 37, .external_lex_state = 16}, + [5674] = {.lex_state = 35, .external_lex_state = 12}, + [5675] = {.lex_state = 36, .external_lex_state = 12}, + [5676] = {.lex_state = 156, .external_lex_state = 5}, + [5677] = {.lex_state = 37, .external_lex_state = 14}, + [5678] = {.lex_state = 156, .external_lex_state = 11}, + [5679] = {.lex_state = 37, .external_lex_state = 15}, + [5680] = {.lex_state = 156, .external_lex_state = 11}, + [5681] = {.lex_state = 156, .external_lex_state = 11}, + [5682] = {.lex_state = 156, .external_lex_state = 16}, + [5683] = {.lex_state = 34, .external_lex_state = 14}, + [5684] = {.lex_state = 36, .external_lex_state = 21}, + [5685] = {.lex_state = 37, .external_lex_state = 16}, + [5686] = {.lex_state = 34, .external_lex_state = 16}, + [5687] = {.lex_state = 37, .external_lex_state = 15}, + [5688] = {.lex_state = 37, .external_lex_state = 14}, + [5689] = {.lex_state = 37, .external_lex_state = 16}, + [5690] = {.lex_state = 37, .external_lex_state = 14}, + [5691] = {.lex_state = 156, .external_lex_state = 15}, + [5692] = {.lex_state = 37, .external_lex_state = 14}, + [5693] = {.lex_state = 34, .external_lex_state = 12}, + [5694] = {.lex_state = 35, .external_lex_state = 12}, + [5695] = {.lex_state = 37, .external_lex_state = 15}, + [5696] = {.lex_state = 37, .external_lex_state = 14}, + [5697] = {.lex_state = 36, .external_lex_state = 21}, + [5698] = {.lex_state = 156, .external_lex_state = 5}, + [5699] = {.lex_state = 34, .external_lex_state = 11}, + [5700] = {.lex_state = 156, .external_lex_state = 14}, + [5701] = {.lex_state = 37, .external_lex_state = 16}, + [5702] = {.lex_state = 35, .external_lex_state = 11}, + [5703] = {.lex_state = 37, .external_lex_state = 16}, + [5704] = {.lex_state = 37, .external_lex_state = 15}, + [5705] = {.lex_state = 43, .external_lex_state = 12}, + [5706] = {.lex_state = 36, .external_lex_state = 2}, + [5707] = {.lex_state = 37, .external_lex_state = 15}, + [5708] = {.lex_state = 36, .external_lex_state = 12}, + [5709] = {.lex_state = 156, .external_lex_state = 11}, + [5710] = {.lex_state = 156, .external_lex_state = 11}, + [5711] = {.lex_state = 37, .external_lex_state = 14}, + [5712] = {.lex_state = 156, .external_lex_state = 11}, + [5713] = {.lex_state = 156, .external_lex_state = 11}, + [5714] = {.lex_state = 156, .external_lex_state = 12}, + [5715] = {.lex_state = 156, .external_lex_state = 11}, + [5716] = {.lex_state = 156, .external_lex_state = 11}, + [5717] = {.lex_state = 156, .external_lex_state = 16}, + [5718] = {.lex_state = 156, .external_lex_state = 11}, + [5719] = {.lex_state = 156, .external_lex_state = 11}, + [5720] = {.lex_state = 156, .external_lex_state = 15}, + [5721] = {.lex_state = 156, .external_lex_state = 11}, + [5722] = {.lex_state = 156, .external_lex_state = 11}, + [5723] = {.lex_state = 156, .external_lex_state = 11}, + [5724] = {.lex_state = 156, .external_lex_state = 12}, + [5725] = {.lex_state = 156, .external_lex_state = 12}, + [5726] = {.lex_state = 156, .external_lex_state = 15}, + [5727] = {.lex_state = 156, .external_lex_state = 12}, + [5728] = {.lex_state = 156, .external_lex_state = 14}, + [5729] = {.lex_state = 156, .external_lex_state = 16}, + [5730] = {.lex_state = 156, .external_lex_state = 11}, + [5731] = {.lex_state = 156, .external_lex_state = 11}, + [5732] = {.lex_state = 156, .external_lex_state = 14}, + [5733] = {.lex_state = 35, .external_lex_state = 11}, + [5734] = {.lex_state = 156, .external_lex_state = 11}, + [5735] = {.lex_state = 156, .external_lex_state = 11}, + [5736] = {.lex_state = 156, .external_lex_state = 11}, + [5737] = {.lex_state = 156, .external_lex_state = 11}, + [5738] = {.lex_state = 156, .external_lex_state = 11}, + [5739] = {.lex_state = 36, .external_lex_state = 11}, + [5740] = {.lex_state = 156, .external_lex_state = 11}, + [5741] = {.lex_state = 156, .external_lex_state = 16}, + [5742] = {.lex_state = 156, .external_lex_state = 11}, + [5743] = {.lex_state = 156, .external_lex_state = 11}, + [5744] = {.lex_state = 156, .external_lex_state = 11}, + [5745] = {.lex_state = 156, .external_lex_state = 11}, + [5746] = {.lex_state = 156, .external_lex_state = 11}, + [5747] = {.lex_state = 156, .external_lex_state = 11}, + [5748] = {.lex_state = 156, .external_lex_state = 11}, + [5749] = {.lex_state = 156, .external_lex_state = 11}, + [5750] = {.lex_state = 156, .external_lex_state = 15}, + [5751] = {.lex_state = 156, .external_lex_state = 11}, + [5752] = {.lex_state = 156, .external_lex_state = 14}, + [5753] = {.lex_state = 156, .external_lex_state = 11}, + [5754] = {.lex_state = 156, .external_lex_state = 14}, + [5755] = {.lex_state = 156, .external_lex_state = 11}, + [5756] = {.lex_state = 156, .external_lex_state = 14}, + [5757] = {.lex_state = 156, .external_lex_state = 16}, + [5758] = {.lex_state = 156, .external_lex_state = 16}, + [5759] = {.lex_state = 156, .external_lex_state = 11}, + [5760] = {.lex_state = 70, .external_lex_state = 19}, + [5761] = {.lex_state = 156, .external_lex_state = 15}, + [5762] = {.lex_state = 156, .external_lex_state = 14}, + [5763] = {.lex_state = 156, .external_lex_state = 16}, + [5764] = {.lex_state = 156, .external_lex_state = 16}, + [5765] = {.lex_state = 156, .external_lex_state = 12}, + [5766] = {.lex_state = 156, .external_lex_state = 12}, + [5767] = {.lex_state = 156, .external_lex_state = 14}, + [5768] = {.lex_state = 156, .external_lex_state = 12}, + [5769] = {.lex_state = 156, .external_lex_state = 14}, + [5770] = {.lex_state = 156, .external_lex_state = 11}, + [5771] = {.lex_state = 156, .external_lex_state = 11}, + [5772] = {.lex_state = 156, .external_lex_state = 14}, + [5773] = {.lex_state = 156, .external_lex_state = 11}, + [5774] = {.lex_state = 156, .external_lex_state = 11}, + [5775] = {.lex_state = 156, .external_lex_state = 11}, + [5776] = {.lex_state = 156, .external_lex_state = 16}, + [5777] = {.lex_state = 156, .external_lex_state = 11}, + [5778] = {.lex_state = 156, .external_lex_state = 11}, + [5779] = {.lex_state = 156, .external_lex_state = 16}, + [5780] = {.lex_state = 156, .external_lex_state = 11}, + [5781] = {.lex_state = 156, .external_lex_state = 11}, + [5782] = {.lex_state = 156, .external_lex_state = 14}, + [5783] = {.lex_state = 156, .external_lex_state = 11}, + [5784] = {.lex_state = 156, .external_lex_state = 14}, + [5785] = {.lex_state = 156, .external_lex_state = 11}, + [5786] = {.lex_state = 156, .external_lex_state = 11}, + [5787] = {.lex_state = 156, .external_lex_state = 14}, + [5788] = {.lex_state = 156, .external_lex_state = 16}, + [5789] = {.lex_state = 156, .external_lex_state = 16}, + [5790] = {.lex_state = 156, .external_lex_state = 16}, + [5791] = {.lex_state = 156, .external_lex_state = 15}, + [5792] = {.lex_state = 156, .external_lex_state = 15}, + [5793] = {.lex_state = 156, .external_lex_state = 16}, + [5794] = {.lex_state = 37, .external_lex_state = 12}, + [5795] = {.lex_state = 156, .external_lex_state = 14}, + [5796] = {.lex_state = 156, .external_lex_state = 11}, + [5797] = {.lex_state = 70, .external_lex_state = 19}, + [5798] = {.lex_state = 156, .external_lex_state = 12}, + [5799] = {.lex_state = 34, .external_lex_state = 11}, + [5800] = {.lex_state = 156, .external_lex_state = 11}, + [5801] = {.lex_state = 156, .external_lex_state = 11}, + [5802] = {.lex_state = 156, .external_lex_state = 16}, + [5803] = {.lex_state = 156, .external_lex_state = 16}, + [5804] = {.lex_state = 156, .external_lex_state = 11}, + [5805] = {.lex_state = 156, .external_lex_state = 11}, + [5806] = {.lex_state = 156, .external_lex_state = 11}, + [5807] = {.lex_state = 156, .external_lex_state = 11}, + [5808] = {.lex_state = 156, .external_lex_state = 11}, + [5809] = {.lex_state = 156, .external_lex_state = 11}, + [5810] = {.lex_state = 156, .external_lex_state = 11}, + [5811] = {.lex_state = 156, .external_lex_state = 11}, + [5812] = {.lex_state = 156, .external_lex_state = 11}, + [5813] = {.lex_state = 156, .external_lex_state = 15}, + [5814] = {.lex_state = 3, .external_lex_state = 15}, + [5815] = {.lex_state = 3, .external_lex_state = 15}, + [5816] = {.lex_state = 3, .external_lex_state = 15}, + [5817] = {.lex_state = 156, .external_lex_state = 14}, + [5818] = {.lex_state = 3, .external_lex_state = 15}, + [5819] = {.lex_state = 36, .external_lex_state = 12}, + [5820] = {.lex_state = 156, .external_lex_state = 11}, + [5821] = {.lex_state = 156, .external_lex_state = 14}, + [5822] = {.lex_state = 156, .external_lex_state = 11}, + [5823] = {.lex_state = 156, .external_lex_state = 15}, + [5824] = {.lex_state = 156, .external_lex_state = 11}, + [5825] = {.lex_state = 156, .external_lex_state = 11}, + [5826] = {.lex_state = 156, .external_lex_state = 11}, + [5827] = {.lex_state = 156, .external_lex_state = 11}, + [5828] = {.lex_state = 156, .external_lex_state = 11}, + [5829] = {.lex_state = 156, .external_lex_state = 11}, + [5830] = {.lex_state = 156, .external_lex_state = 11}, + [5831] = {.lex_state = 156, .external_lex_state = 11}, + [5832] = {.lex_state = 156, .external_lex_state = 11}, + [5833] = {.lex_state = 156, .external_lex_state = 15}, + [5834] = {.lex_state = 156, .external_lex_state = 20}, + [5835] = {.lex_state = 156, .external_lex_state = 11}, + [5836] = {.lex_state = 37, .external_lex_state = 12}, + [5837] = {.lex_state = 36, .external_lex_state = 12}, + [5838] = {.lex_state = 156, .external_lex_state = 15}, + [5839] = {.lex_state = 156, .external_lex_state = 11}, + [5840] = {.lex_state = 156, .external_lex_state = 11}, + [5841] = {.lex_state = 156, .external_lex_state = 11}, + [5842] = {.lex_state = 156, .external_lex_state = 11}, + [5843] = {.lex_state = 156, .external_lex_state = 11}, + [5844] = {.lex_state = 156, .external_lex_state = 11}, + [5845] = {.lex_state = 34, .external_lex_state = 12}, + [5846] = {.lex_state = 156, .external_lex_state = 11}, + [5847] = {.lex_state = 156, .external_lex_state = 16}, + [5848] = {.lex_state = 156, .external_lex_state = 15}, + [5849] = {.lex_state = 35, .external_lex_state = 11}, + [5850] = {.lex_state = 156, .external_lex_state = 12}, + [5851] = {.lex_state = 156, .external_lex_state = 11}, + [5852] = {.lex_state = 156, .external_lex_state = 12}, + [5853] = {.lex_state = 156, .external_lex_state = 16}, + [5854] = {.lex_state = 156, .external_lex_state = 11}, + [5855] = {.lex_state = 156, .external_lex_state = 16}, + [5856] = {.lex_state = 156, .external_lex_state = 11}, + [5857] = {.lex_state = 156, .external_lex_state = 16}, + [5858] = {.lex_state = 156, .external_lex_state = 15}, + [5859] = {.lex_state = 156, .external_lex_state = 20}, + [5860] = {.lex_state = 156, .external_lex_state = 14}, + [5861] = {.lex_state = 156, .external_lex_state = 15}, + [5862] = {.lex_state = 156, .external_lex_state = 12}, + [5863] = {.lex_state = 156, .external_lex_state = 11}, + [5864] = {.lex_state = 156, .external_lex_state = 11}, + [5865] = {.lex_state = 156, .external_lex_state = 15}, + [5866] = {.lex_state = 156, .external_lex_state = 11}, + [5867] = {.lex_state = 156, .external_lex_state = 14}, + [5868] = {.lex_state = 156, .external_lex_state = 14}, + [5869] = {.lex_state = 156, .external_lex_state = 15}, + [5870] = {.lex_state = 156, .external_lex_state = 16}, + [5871] = {.lex_state = 156, .external_lex_state = 11}, + [5872] = {.lex_state = 156, .external_lex_state = 14}, + [5873] = {.lex_state = 156, .external_lex_state = 16}, + [5874] = {.lex_state = 156, .external_lex_state = 14}, + [5875] = {.lex_state = 156, .external_lex_state = 14}, + [5876] = {.lex_state = 156, .external_lex_state = 16}, + [5877] = {.lex_state = 156, .external_lex_state = 16}, + [5878] = {.lex_state = 156, .external_lex_state = 16}, + [5879] = {.lex_state = 156, .external_lex_state = 16}, + [5880] = {.lex_state = 156, .external_lex_state = 16}, + [5881] = {.lex_state = 156, .external_lex_state = 11}, + [5882] = {.lex_state = 156, .external_lex_state = 16}, + [5883] = {.lex_state = 156, .external_lex_state = 11}, + [5884] = {.lex_state = 156, .external_lex_state = 16}, + [5885] = {.lex_state = 156, .external_lex_state = 11}, + [5886] = {.lex_state = 156, .external_lex_state = 11}, + [5887] = {.lex_state = 156, .external_lex_state = 11}, + [5888] = {.lex_state = 156, .external_lex_state = 11}, + [5889] = {.lex_state = 156, .external_lex_state = 11}, + [5890] = {.lex_state = 156, .external_lex_state = 11}, + [5891] = {.lex_state = 156, .external_lex_state = 14}, + [5892] = {.lex_state = 156, .external_lex_state = 11}, + [5893] = {.lex_state = 156, .external_lex_state = 11}, + [5894] = {.lex_state = 156, .external_lex_state = 11}, + [5895] = {.lex_state = 156, .external_lex_state = 15}, + [5896] = {.lex_state = 156, .external_lex_state = 12}, + [5897] = {.lex_state = 156, .external_lex_state = 11}, + [5898] = {.lex_state = 156, .external_lex_state = 15}, + [5899] = {.lex_state = 156, .external_lex_state = 14}, + [5900] = {.lex_state = 156, .external_lex_state = 14}, + [5901] = {.lex_state = 156, .external_lex_state = 14}, + [5902] = {.lex_state = 156, .external_lex_state = 15}, + [5903] = {.lex_state = 156, .external_lex_state = 16}, + [5904] = {.lex_state = 156, .external_lex_state = 15}, + [5905] = {.lex_state = 156, .external_lex_state = 16}, + [5906] = {.lex_state = 156, .external_lex_state = 11}, + [5907] = {.lex_state = 156, .external_lex_state = 14}, + [5908] = {.lex_state = 156, .external_lex_state = 16}, + [5909] = {.lex_state = 156, .external_lex_state = 14}, + [5910] = {.lex_state = 156, .external_lex_state = 14}, + [5911] = {.lex_state = 156, .external_lex_state = 16}, + [5912] = {.lex_state = 156, .external_lex_state = 16}, + [5913] = {.lex_state = 156, .external_lex_state = 16}, + [5914] = {.lex_state = 156, .external_lex_state = 16}, + [5915] = {.lex_state = 156, .external_lex_state = 14}, + [5916] = {.lex_state = 70, .external_lex_state = 19}, + [5917] = {.lex_state = 156, .external_lex_state = 16}, + [5918] = {.lex_state = 35, .external_lex_state = 11}, + [5919] = {.lex_state = 156, .external_lex_state = 11}, + [5920] = {.lex_state = 156, .external_lex_state = 11}, + [5921] = {.lex_state = 156, .external_lex_state = 16}, + [5922] = {.lex_state = 156, .external_lex_state = 16}, + [5923] = {.lex_state = 156, .external_lex_state = 14}, + [5924] = {.lex_state = 156, .external_lex_state = 14}, + [5925] = {.lex_state = 156, .external_lex_state = 15}, + [5926] = {.lex_state = 156, .external_lex_state = 16}, + [5927] = {.lex_state = 156, .external_lex_state = 12}, + [5928] = {.lex_state = 156, .external_lex_state = 11}, + [5929] = {.lex_state = 156, .external_lex_state = 15}, + [5930] = {.lex_state = 156, .external_lex_state = 11}, + [5931] = {.lex_state = 156, .external_lex_state = 11}, + [5932] = {.lex_state = 156, .external_lex_state = 11}, + [5933] = {.lex_state = 156, .external_lex_state = 14}, + [5934] = {.lex_state = 156, .external_lex_state = 14}, + [5935] = {.lex_state = 156, .external_lex_state = 11}, + [5936] = {.lex_state = 156, .external_lex_state = 16}, + [5937] = {.lex_state = 156, .external_lex_state = 11}, + [5938] = {.lex_state = 3, .external_lex_state = 15}, + [5939] = {.lex_state = 156, .external_lex_state = 14}, + [5940] = {.lex_state = 3, .external_lex_state = 15}, + [5941] = {.lex_state = 156, .external_lex_state = 14}, + [5942] = {.lex_state = 3, .external_lex_state = 15}, + [5943] = {.lex_state = 156, .external_lex_state = 16}, + [5944] = {.lex_state = 156, .external_lex_state = 16}, + [5945] = {.lex_state = 156, .external_lex_state = 11}, + [5946] = {.lex_state = 156, .external_lex_state = 11}, + [5947] = {.lex_state = 156, .external_lex_state = 11}, + [5948] = {.lex_state = 156, .external_lex_state = 14}, + [5949] = {.lex_state = 156, .external_lex_state = 16}, + [5950] = {.lex_state = 156, .external_lex_state = 11}, + [5951] = {.lex_state = 156, .external_lex_state = 11}, + [5952] = {.lex_state = 156, .external_lex_state = 11}, + [5953] = {.lex_state = 156, .external_lex_state = 11}, + [5954] = {.lex_state = 156, .external_lex_state = 11}, + [5955] = {.lex_state = 156, .external_lex_state = 11}, + [5956] = {.lex_state = 156, .external_lex_state = 11}, + [5957] = {.lex_state = 156, .external_lex_state = 11}, + [5958] = {.lex_state = 34, .external_lex_state = 14}, + [5959] = {.lex_state = 156, .external_lex_state = 14}, + [5960] = {.lex_state = 37, .external_lex_state = 12}, + [5961] = {.lex_state = 156, .external_lex_state = 15}, + [5962] = {.lex_state = 156, .external_lex_state = 11}, + [5963] = {.lex_state = 156, .external_lex_state = 12}, + [5964] = {.lex_state = 156, .external_lex_state = 16}, + [5965] = {.lex_state = 156, .external_lex_state = 11}, + [5966] = {.lex_state = 156, .external_lex_state = 11}, + [5967] = {.lex_state = 37, .external_lex_state = 12}, + [5968] = {.lex_state = 156, .external_lex_state = 15}, + [5969] = {.lex_state = 156, .external_lex_state = 11}, + [5970] = {.lex_state = 156, .external_lex_state = 14}, + [5971] = {.lex_state = 156, .external_lex_state = 14}, + [5972] = {.lex_state = 156, .external_lex_state = 11}, + [5973] = {.lex_state = 156, .external_lex_state = 16}, + [5974] = {.lex_state = 156, .external_lex_state = 11}, + [5975] = {.lex_state = 156, .external_lex_state = 12}, + [5976] = {.lex_state = 156, .external_lex_state = 14}, + [5977] = {.lex_state = 156, .external_lex_state = 14}, + [5978] = {.lex_state = 156, .external_lex_state = 14}, + [5979] = {.lex_state = 156, .external_lex_state = 14}, + [5980] = {.lex_state = 156, .external_lex_state = 16}, + [5981] = {.lex_state = 156, .external_lex_state = 16}, + [5982] = {.lex_state = 156, .external_lex_state = 16}, + [5983] = {.lex_state = 156, .external_lex_state = 11}, + [5984] = {.lex_state = 34, .external_lex_state = 16}, + [5985] = {.lex_state = 156, .external_lex_state = 11}, + [5986] = {.lex_state = 156, .external_lex_state = 14}, + [5987] = {.lex_state = 156, .external_lex_state = 15}, + [5988] = {.lex_state = 156, .external_lex_state = 11}, + [5989] = {.lex_state = 156, .external_lex_state = 14}, + [5990] = {.lex_state = 156, .external_lex_state = 15}, + [5991] = {.lex_state = 156, .external_lex_state = 14}, + [5992] = {.lex_state = 156, .external_lex_state = 11}, + [5993] = {.lex_state = 156, .external_lex_state = 11}, + [5994] = {.lex_state = 156, .external_lex_state = 11}, + [5995] = {.lex_state = 156, .external_lex_state = 12}, + [5996] = {.lex_state = 156, .external_lex_state = 11}, + [5997] = {.lex_state = 156, .external_lex_state = 14}, + [5998] = {.lex_state = 156, .external_lex_state = 14}, + [5999] = {.lex_state = 156, .external_lex_state = 14}, + [6000] = {.lex_state = 156, .external_lex_state = 14}, + [6001] = {.lex_state = 156, .external_lex_state = 16}, + [6002] = {.lex_state = 156, .external_lex_state = 16}, + [6003] = {.lex_state = 156, .external_lex_state = 11}, + [6004] = {.lex_state = 156, .external_lex_state = 11}, + [6005] = {.lex_state = 156, .external_lex_state = 14}, + [6006] = {.lex_state = 156, .external_lex_state = 14}, + [6007] = {.lex_state = 156, .external_lex_state = 16}, + [6008] = {.lex_state = 156, .external_lex_state = 14}, + [6009] = {.lex_state = 156, .external_lex_state = 16}, + [6010] = {.lex_state = 156, .external_lex_state = 16}, + [6011] = {.lex_state = 156, .external_lex_state = 16}, + [6012] = {.lex_state = 156, .external_lex_state = 11}, + [6013] = {.lex_state = 156, .external_lex_state = 2}, + [6014] = {.lex_state = 156, .external_lex_state = 11}, + [6015] = {.lex_state = 156, .external_lex_state = 11}, + [6016] = {.lex_state = 156, .external_lex_state = 11}, + [6017] = {.lex_state = 156, .external_lex_state = 11}, + [6018] = {.lex_state = 156, .external_lex_state = 11}, + [6019] = {.lex_state = 156, .external_lex_state = 12}, + [6020] = {.lex_state = 156, .external_lex_state = 12}, + [6021] = {.lex_state = 156, .external_lex_state = 11}, + [6022] = {.lex_state = 156, .external_lex_state = 11}, + [6023] = {.lex_state = 156, .external_lex_state = 14}, + [6024] = {.lex_state = 156, .external_lex_state = 14}, + [6025] = {.lex_state = 156, .external_lex_state = 16}, + [6026] = {.lex_state = 156, .external_lex_state = 11}, + [6027] = {.lex_state = 156, .external_lex_state = 14}, + [6028] = {.lex_state = 156, .external_lex_state = 14}, + [6029] = {.lex_state = 156, .external_lex_state = 14}, + [6030] = {.lex_state = 156, .external_lex_state = 16}, + [6031] = {.lex_state = 156, .external_lex_state = 16}, + [6032] = {.lex_state = 156, .external_lex_state = 12}, + [6033] = {.lex_state = 156, .external_lex_state = 14}, + [6034] = {.lex_state = 156, .external_lex_state = 11}, + [6035] = {.lex_state = 156, .external_lex_state = 11}, + [6036] = {.lex_state = 156, .external_lex_state = 11}, + [6037] = {.lex_state = 156, .external_lex_state = 16}, + [6038] = {.lex_state = 156, .external_lex_state = 12}, + [6039] = {.lex_state = 156, .external_lex_state = 11}, + [6040] = {.lex_state = 156, .external_lex_state = 11}, + [6041] = {.lex_state = 156, .external_lex_state = 14}, + [6042] = {.lex_state = 156, .external_lex_state = 14}, + [6043] = {.lex_state = 156, .external_lex_state = 16}, + [6044] = {.lex_state = 156, .external_lex_state = 11}, + [6045] = {.lex_state = 156, .external_lex_state = 12}, + [6046] = {.lex_state = 156, .external_lex_state = 14}, + [6047] = {.lex_state = 156, .external_lex_state = 14}, + [6048] = {.lex_state = 156, .external_lex_state = 14}, + [6049] = {.lex_state = 156, .external_lex_state = 12}, + [6050] = {.lex_state = 156, .external_lex_state = 16}, + [6051] = {.lex_state = 156, .external_lex_state = 16}, + [6052] = {.lex_state = 156, .external_lex_state = 16}, + [6053] = {.lex_state = 156, .external_lex_state = 11}, + [6054] = {.lex_state = 156, .external_lex_state = 11}, + [6055] = {.lex_state = 156, .external_lex_state = 14}, + [6056] = {.lex_state = 156, .external_lex_state = 11}, + [6057] = {.lex_state = 156, .external_lex_state = 11}, + [6058] = {.lex_state = 70, .external_lex_state = 19}, + [6059] = {.lex_state = 156, .external_lex_state = 16}, + [6060] = {.lex_state = 156, .external_lex_state = 12}, + [6061] = {.lex_state = 156, .external_lex_state = 11}, + [6062] = {.lex_state = 156, .external_lex_state = 14}, + [6063] = {.lex_state = 156, .external_lex_state = 11}, + [6064] = {.lex_state = 156, .external_lex_state = 16}, + [6065] = {.lex_state = 156, .external_lex_state = 16}, + [6066] = {.lex_state = 156, .external_lex_state = 16}, + [6067] = {.lex_state = 156, .external_lex_state = 16}, + [6068] = {.lex_state = 156, .external_lex_state = 14}, + [6069] = {.lex_state = 36, .external_lex_state = 12}, + [6070] = {.lex_state = 156, .external_lex_state = 11}, + [6071] = {.lex_state = 156, .external_lex_state = 16}, + [6072] = {.lex_state = 156, .external_lex_state = 14}, + [6073] = {.lex_state = 156, .external_lex_state = 12}, + [6074] = {.lex_state = 156, .external_lex_state = 11}, + [6075] = {.lex_state = 156, .external_lex_state = 11}, + [6076] = {.lex_state = 156, .external_lex_state = 15}, + [6077] = {.lex_state = 156, .external_lex_state = 11}, + [6078] = {.lex_state = 156, .external_lex_state = 11}, + [6079] = {.lex_state = 156, .external_lex_state = 11}, + [6080] = {.lex_state = 156, .external_lex_state = 11}, + [6081] = {.lex_state = 35, .external_lex_state = 11}, + [6082] = {.lex_state = 36, .external_lex_state = 12}, + [6083] = {.lex_state = 156, .external_lex_state = 15}, + [6084] = {.lex_state = 156, .external_lex_state = 11}, + [6085] = {.lex_state = 156, .external_lex_state = 11}, + [6086] = {.lex_state = 156, .external_lex_state = 11}, + [6087] = {.lex_state = 156, .external_lex_state = 16}, + [6088] = {.lex_state = 156, .external_lex_state = 16}, + [6089] = {.lex_state = 156, .external_lex_state = 16}, + [6090] = {.lex_state = 156, .external_lex_state = 12}, + [6091] = {.lex_state = 156, .external_lex_state = 12}, + [6092] = {.lex_state = 156, .external_lex_state = 15}, + [6093] = {.lex_state = 156, .external_lex_state = 11}, + [6094] = {.lex_state = 156, .external_lex_state = 11}, + [6095] = {.lex_state = 156, .external_lex_state = 11}, + [6096] = {.lex_state = 156, .external_lex_state = 11}, + [6097] = {.lex_state = 156, .external_lex_state = 14}, + [6098] = {.lex_state = 156, .external_lex_state = 11}, + [6099] = {.lex_state = 3, .external_lex_state = 15}, + [6100] = {.lex_state = 156, .external_lex_state = 11}, + [6101] = {.lex_state = 156, .external_lex_state = 16}, + [6102] = {.lex_state = 36, .external_lex_state = 11}, + [6103] = {.lex_state = 156, .external_lex_state = 11}, + [6104] = {.lex_state = 156, .external_lex_state = 11}, + [6105] = {.lex_state = 156, .external_lex_state = 11}, + [6106] = {.lex_state = 156, .external_lex_state = 11}, + [6107] = {.lex_state = 156, .external_lex_state = 14}, + [6108] = {.lex_state = 156, .external_lex_state = 11}, + [6109] = {.lex_state = 156, .external_lex_state = 11}, + [6110] = {.lex_state = 156, .external_lex_state = 14}, + [6111] = {.lex_state = 156, .external_lex_state = 14}, + [6112] = {.lex_state = 156, .external_lex_state = 11}, + [6113] = {.lex_state = 156, .external_lex_state = 14}, + [6114] = {.lex_state = 156, .external_lex_state = 11}, + [6115] = {.lex_state = 156, .external_lex_state = 11}, + [6116] = {.lex_state = 156, .external_lex_state = 14}, + [6117] = {.lex_state = 156, .external_lex_state = 11}, + [6118] = {.lex_state = 156, .external_lex_state = 11}, + [6119] = {.lex_state = 3, .external_lex_state = 15}, + [6120] = {.lex_state = 156, .external_lex_state = 12}, + [6121] = {.lex_state = 53, .external_lex_state = 12}, + [6122] = {.lex_state = 156, .external_lex_state = 2}, + [6123] = {.lex_state = 156, .external_lex_state = 14}, + [6124] = {.lex_state = 34, .external_lex_state = 14}, + [6125] = {.lex_state = 34, .external_lex_state = 12}, + [6126] = {.lex_state = 156, .external_lex_state = 14}, + [6127] = {.lex_state = 156, .external_lex_state = 11}, + [6128] = {.lex_state = 156, .external_lex_state = 12}, + [6129] = {.lex_state = 156, .external_lex_state = 16}, + [6130] = {.lex_state = 156, .external_lex_state = 14}, + [6131] = {.lex_state = 156, .external_lex_state = 12}, + [6132] = {.lex_state = 34, .external_lex_state = 12}, + [6133] = {.lex_state = 37, .external_lex_state = 12}, + [6134] = {.lex_state = 156, .external_lex_state = 16}, + [6135] = {.lex_state = 156, .external_lex_state = 12}, + [6136] = {.lex_state = 37, .external_lex_state = 12}, + [6137] = {.lex_state = 37, .external_lex_state = 12}, + [6138] = {.lex_state = 156, .external_lex_state = 12}, + [6139] = {.lex_state = 156, .external_lex_state = 11}, + [6140] = {.lex_state = 34, .external_lex_state = 15}, + [6141] = {.lex_state = 37, .external_lex_state = 12}, + [6142] = {.lex_state = 156, .external_lex_state = 12}, + [6143] = {.lex_state = 156, .external_lex_state = 11}, + [6144] = {.lex_state = 156, .external_lex_state = 12}, + [6145] = {.lex_state = 156, .external_lex_state = 14}, + [6146] = {.lex_state = 156, .external_lex_state = 12}, + [6147] = {.lex_state = 34, .external_lex_state = 12}, + [6148] = {.lex_state = 156, .external_lex_state = 15}, + [6149] = {.lex_state = 156, .external_lex_state = 14}, + [6150] = {.lex_state = 156, .external_lex_state = 20}, + [6151] = {.lex_state = 156, .external_lex_state = 12}, + [6152] = {.lex_state = 156, .external_lex_state = 12}, + [6153] = {.lex_state = 156, .external_lex_state = 2}, + [6154] = {.lex_state = 156, .external_lex_state = 20}, + [6155] = {.lex_state = 34, .external_lex_state = 12}, + [6156] = {.lex_state = 34, .external_lex_state = 12}, + [6157] = {.lex_state = 156, .external_lex_state = 15}, + [6158] = {.lex_state = 156, .external_lex_state = 12}, + [6159] = {.lex_state = 156, .external_lex_state = 12}, + [6160] = {.lex_state = 156, .external_lex_state = 12}, + [6161] = {.lex_state = 34, .external_lex_state = 12}, + [6162] = {.lex_state = 156, .external_lex_state = 11}, + [6163] = {.lex_state = 156, .external_lex_state = 12}, + [6164] = {.lex_state = 156, .external_lex_state = 12}, + [6165] = {.lex_state = 156, .external_lex_state = 15}, + [6166] = {.lex_state = 156, .external_lex_state = 12}, + [6167] = {.lex_state = 156, .external_lex_state = 11}, + [6168] = {.lex_state = 156, .external_lex_state = 11}, + [6169] = {.lex_state = 156, .external_lex_state = 12}, + [6170] = {.lex_state = 156, .external_lex_state = 12}, + [6171] = {.lex_state = 156, .external_lex_state = 20}, + [6172] = {.lex_state = 156, .external_lex_state = 12}, + [6173] = {.lex_state = 156, .external_lex_state = 11}, + [6174] = {.lex_state = 156, .external_lex_state = 14}, + [6175] = {.lex_state = 156, .external_lex_state = 14}, + [6176] = {.lex_state = 156, .external_lex_state = 12}, + [6177] = {.lex_state = 156, .external_lex_state = 20}, + [6178] = {.lex_state = 156, .external_lex_state = 12}, + [6179] = {.lex_state = 156, .external_lex_state = 12}, + [6180] = {.lex_state = 156, .external_lex_state = 12}, + [6181] = {.lex_state = 156, .external_lex_state = 2}, + [6182] = {.lex_state = 156, .external_lex_state = 11}, + [6183] = {.lex_state = 156, .external_lex_state = 12}, + [6184] = {.lex_state = 156, .external_lex_state = 11}, + [6185] = {.lex_state = 156, .external_lex_state = 12}, + [6186] = {.lex_state = 156, .external_lex_state = 15}, + [6187] = {.lex_state = 156, .external_lex_state = 11}, + [6188] = {.lex_state = 156, .external_lex_state = 12}, + [6189] = {.lex_state = 156, .external_lex_state = 12}, + [6190] = {.lex_state = 156, .external_lex_state = 12}, + [6191] = {.lex_state = 156, .external_lex_state = 11}, + [6192] = {.lex_state = 156, .external_lex_state = 11}, + [6193] = {.lex_state = 156, .external_lex_state = 15}, + [6194] = {.lex_state = 156, .external_lex_state = 12}, + [6195] = {.lex_state = 156, .external_lex_state = 11}, + [6196] = {.lex_state = 156, .external_lex_state = 12}, + [6197] = {.lex_state = 156, .external_lex_state = 20}, + [6198] = {.lex_state = 156, .external_lex_state = 14}, + [6199] = {.lex_state = 156, .external_lex_state = 11}, + [6200] = {.lex_state = 36, .external_lex_state = 11}, + [6201] = {.lex_state = 156, .external_lex_state = 11}, + [6202] = {.lex_state = 156, .external_lex_state = 12}, + [6203] = {.lex_state = 156, .external_lex_state = 15}, + [6204] = {.lex_state = 156, .external_lex_state = 11}, + [6205] = {.lex_state = 156, .external_lex_state = 12}, + [6206] = {.lex_state = 156, .external_lex_state = 11}, + [6207] = {.lex_state = 156, .external_lex_state = 11}, + [6208] = {.lex_state = 156, .external_lex_state = 11}, + [6209] = {.lex_state = 156, .external_lex_state = 14}, + [6210] = {.lex_state = 156, .external_lex_state = 14}, + [6211] = {.lex_state = 36, .external_lex_state = 11}, + [6212] = {.lex_state = 156, .external_lex_state = 11}, + [6213] = {.lex_state = 156, .external_lex_state = 16}, + [6214] = {.lex_state = 156, .external_lex_state = 11}, + [6215] = {.lex_state = 156, .external_lex_state = 11}, + [6216] = {.lex_state = 156, .external_lex_state = 15}, + [6217] = {.lex_state = 34, .external_lex_state = 12}, + [6218] = {.lex_state = 156, .external_lex_state = 12}, + [6219] = {.lex_state = 156, .external_lex_state = 20}, + [6220] = {.lex_state = 156, .external_lex_state = 11}, + [6221] = {.lex_state = 156, .external_lex_state = 12}, + [6222] = {.lex_state = 156, .external_lex_state = 11}, + [6223] = {.lex_state = 156, .external_lex_state = 14}, + [6224] = {.lex_state = 156, .external_lex_state = 14}, + [6225] = {.lex_state = 156, .external_lex_state = 11}, + [6226] = {.lex_state = 156, .external_lex_state = 14}, + [6227] = {.lex_state = 156, .external_lex_state = 14}, + [6228] = {.lex_state = 156, .external_lex_state = 16}, + [6229] = {.lex_state = 53, .external_lex_state = 12}, + [6230] = {.lex_state = 156, .external_lex_state = 16}, + [6231] = {.lex_state = 156, .external_lex_state = 15}, + [6232] = {.lex_state = 34, .external_lex_state = 14}, + [6233] = {.lex_state = 34, .external_lex_state = 14}, + [6234] = {.lex_state = 156, .external_lex_state = 14}, + [6235] = {.lex_state = 70, .external_lex_state = 19}, + [6236] = {.lex_state = 156, .external_lex_state = 11}, + [6237] = {.lex_state = 35, .external_lex_state = 11}, + [6238] = {.lex_state = 156, .external_lex_state = 16}, + [6239] = {.lex_state = 156, .external_lex_state = 16}, + [6240] = {.lex_state = 156, .external_lex_state = 11}, + [6241] = {.lex_state = 36, .external_lex_state = 11}, + [6242] = {.lex_state = 156, .external_lex_state = 11}, + [6243] = {.lex_state = 37, .external_lex_state = 12}, + [6244] = {.lex_state = 156, .external_lex_state = 11}, + [6245] = {.lex_state = 156, .external_lex_state = 11}, + [6246] = {.lex_state = 34, .external_lex_state = 16}, + [6247] = {.lex_state = 156, .external_lex_state = 11}, + [6248] = {.lex_state = 35, .external_lex_state = 11}, + [6249] = {.lex_state = 156, .external_lex_state = 11}, + [6250] = {.lex_state = 156, .external_lex_state = 14}, + [6251] = {.lex_state = 156, .external_lex_state = 14}, + [6252] = {.lex_state = 156, .external_lex_state = 14}, + [6253] = {.lex_state = 156, .external_lex_state = 16}, + [6254] = {.lex_state = 156, .external_lex_state = 16}, + [6255] = {.lex_state = 156, .external_lex_state = 12}, + [6256] = {.lex_state = 156, .external_lex_state = 12}, + [6257] = {.lex_state = 156, .external_lex_state = 12}, + [6258] = {.lex_state = 156, .external_lex_state = 11}, + [6259] = {.lex_state = 36, .external_lex_state = 11}, + [6260] = {.lex_state = 156, .external_lex_state = 15}, + [6261] = {.lex_state = 34, .external_lex_state = 16}, + [6262] = {.lex_state = 156, .external_lex_state = 11}, + [6263] = {.lex_state = 156, .external_lex_state = 11}, + [6264] = {.lex_state = 156, .external_lex_state = 11}, + [6265] = {.lex_state = 36, .external_lex_state = 11}, + [6266] = {.lex_state = 156, .external_lex_state = 11}, + [6267] = {.lex_state = 156, .external_lex_state = 15}, + [6268] = {.lex_state = 156, .external_lex_state = 11}, + [6269] = {.lex_state = 156, .external_lex_state = 11}, + [6270] = {.lex_state = 156, .external_lex_state = 11}, + [6271] = {.lex_state = 156, .external_lex_state = 12}, + [6272] = {.lex_state = 156, .external_lex_state = 11}, + [6273] = {.lex_state = 156, .external_lex_state = 11}, + [6274] = {.lex_state = 156, .external_lex_state = 11}, + [6275] = {.lex_state = 156, .external_lex_state = 16}, + [6276] = {.lex_state = 156, .external_lex_state = 2}, + [6277] = {.lex_state = 156, .external_lex_state = 11}, + [6278] = {.lex_state = 156, .external_lex_state = 14}, + [6279] = {.lex_state = 156, .external_lex_state = 11}, + [6280] = {.lex_state = 156, .external_lex_state = 14}, + [6281] = {.lex_state = 156, .external_lex_state = 16}, + [6282] = {.lex_state = 156, .external_lex_state = 16}, + [6283] = {.lex_state = 156, .external_lex_state = 16}, + [6284] = {.lex_state = 156, .external_lex_state = 11}, + [6285] = {.lex_state = 34, .external_lex_state = 15}, + [6286] = {.lex_state = 156, .external_lex_state = 11}, + [6287] = {.lex_state = 156, .external_lex_state = 14}, + [6288] = {.lex_state = 156, .external_lex_state = 11}, + [6289] = {.lex_state = 156, .external_lex_state = 16}, + [6290] = {.lex_state = 156, .external_lex_state = 16}, + [6291] = {.lex_state = 156, .external_lex_state = 16}, + [6292] = {.lex_state = 53, .external_lex_state = 12}, + [6293] = {.lex_state = 156, .external_lex_state = 14}, + [6294] = {.lex_state = 156, .external_lex_state = 14}, + [6295] = {.lex_state = 156, .external_lex_state = 16}, + [6296] = {.lex_state = 156, .external_lex_state = 16}, + [6297] = {.lex_state = 156, .external_lex_state = 14}, + [6298] = {.lex_state = 156, .external_lex_state = 16}, + [6299] = {.lex_state = 156, .external_lex_state = 14}, + [6300] = {.lex_state = 156, .external_lex_state = 11}, + [6301] = {.lex_state = 156, .external_lex_state = 11}, + [6302] = {.lex_state = 36, .external_lex_state = 11}, + [6303] = {.lex_state = 156, .external_lex_state = 11}, + [6304] = {.lex_state = 156, .external_lex_state = 11}, + [6305] = {.lex_state = 156, .external_lex_state = 16}, + [6306] = {.lex_state = 156, .external_lex_state = 11}, + [6307] = {.lex_state = 156, .external_lex_state = 14}, + [6308] = {.lex_state = 34, .external_lex_state = 15}, + [6309] = {.lex_state = 156, .external_lex_state = 11}, + [6310] = {.lex_state = 156, .external_lex_state = 11}, + [6311] = {.lex_state = 156, .external_lex_state = 15}, + [6312] = {.lex_state = 156, .external_lex_state = 11}, + [6313] = {.lex_state = 156, .external_lex_state = 11}, + [6314] = {.lex_state = 34, .external_lex_state = 11}, + [6315] = {.lex_state = 36, .external_lex_state = 12}, + [6316] = {.lex_state = 36, .external_lex_state = 13}, + [6317] = {.lex_state = 156, .external_lex_state = 12}, + [6318] = {.lex_state = 156, .external_lex_state = 12}, + [6319] = {.lex_state = 156, .external_lex_state = 12}, + [6320] = {.lex_state = 156, .external_lex_state = 11}, + [6321] = {.lex_state = 156, .external_lex_state = 12}, + [6322] = {.lex_state = 156, .external_lex_state = 11}, + [6323] = {.lex_state = 156, .external_lex_state = 12}, + [6324] = {.lex_state = 156, .external_lex_state = 14}, + [6325] = {.lex_state = 156, .external_lex_state = 11}, + [6326] = {.lex_state = 36, .external_lex_state = 12}, + [6327] = {.lex_state = 56, .external_lex_state = 12}, + [6328] = {.lex_state = 156, .external_lex_state = 12}, + [6329] = {.lex_state = 156, .external_lex_state = 14}, + [6330] = {.lex_state = 156, .external_lex_state = 14}, + [6331] = {.lex_state = 156, .external_lex_state = 11}, + [6332] = {.lex_state = 156, .external_lex_state = 14}, + [6333] = {.lex_state = 156, .external_lex_state = 14}, + [6334] = {.lex_state = 56, .external_lex_state = 12}, + [6335] = {.lex_state = 156, .external_lex_state = 16}, + [6336] = {.lex_state = 156, .external_lex_state = 11}, + [6337] = {.lex_state = 56, .external_lex_state = 12}, + [6338] = {.lex_state = 156, .external_lex_state = 14}, + [6339] = {.lex_state = 156, .external_lex_state = 11}, + [6340] = {.lex_state = 34, .external_lex_state = 12}, + [6341] = {.lex_state = 156, .external_lex_state = 14}, + [6342] = {.lex_state = 156, .external_lex_state = 11}, + [6343] = {.lex_state = 156, .external_lex_state = 16}, + [6344] = {.lex_state = 156, .external_lex_state = 11}, + [6345] = {.lex_state = 36, .external_lex_state = 12}, + [6346] = {.lex_state = 36, .external_lex_state = 13}, + [6347] = {.lex_state = 156, .external_lex_state = 14}, + [6348] = {.lex_state = 156, .external_lex_state = 16}, + [6349] = {.lex_state = 156, .external_lex_state = 11}, + [6350] = {.lex_state = 156, .external_lex_state = 11}, + [6351] = {.lex_state = 156, .external_lex_state = 11}, + [6352] = {.lex_state = 156, .external_lex_state = 12}, + [6353] = {.lex_state = 156, .external_lex_state = 16}, + [6354] = {.lex_state = 156, .external_lex_state = 11}, + [6355] = {.lex_state = 156, .external_lex_state = 16}, + [6356] = {.lex_state = 156, .external_lex_state = 14}, + [6357] = {.lex_state = 156, .external_lex_state = 12}, + [6358] = {.lex_state = 156, .external_lex_state = 11}, + [6359] = {.lex_state = 56, .external_lex_state = 12}, + [6360] = {.lex_state = 35, .external_lex_state = 12}, + [6361] = {.lex_state = 34, .external_lex_state = 12}, + [6362] = {.lex_state = 156, .external_lex_state = 11}, + [6363] = {.lex_state = 156, .external_lex_state = 15}, + [6364] = {.lex_state = 156, .external_lex_state = 14}, + [6365] = {.lex_state = 156, .external_lex_state = 14}, + [6366] = {.lex_state = 56, .external_lex_state = 12}, + [6367] = {.lex_state = 35, .external_lex_state = 12}, + [6368] = {.lex_state = 35, .external_lex_state = 12}, + [6369] = {.lex_state = 34, .external_lex_state = 12}, + [6370] = {.lex_state = 36, .external_lex_state = 13}, + [6371] = {.lex_state = 156, .external_lex_state = 11}, + [6372] = {.lex_state = 156, .external_lex_state = 14}, + [6373] = {.lex_state = 36, .external_lex_state = 13}, + [6374] = {.lex_state = 156, .external_lex_state = 11}, + [6375] = {.lex_state = 156, .external_lex_state = 11}, + [6376] = {.lex_state = 156, .external_lex_state = 11}, + [6377] = {.lex_state = 35, .external_lex_state = 12}, + [6378] = {.lex_state = 156, .external_lex_state = 11}, + [6379] = {.lex_state = 156, .external_lex_state = 11}, + [6380] = {.lex_state = 156, .external_lex_state = 12}, + [6381] = {.lex_state = 156, .external_lex_state = 14}, + [6382] = {.lex_state = 36, .external_lex_state = 12}, + [6383] = {.lex_state = 156, .external_lex_state = 14}, + [6384] = {.lex_state = 156, .external_lex_state = 14}, + [6385] = {.lex_state = 156, .external_lex_state = 12}, + [6386] = {.lex_state = 156, .external_lex_state = 12}, + [6387] = {.lex_state = 156, .external_lex_state = 14}, + [6388] = {.lex_state = 36, .external_lex_state = 12}, + [6389] = {.lex_state = 156, .external_lex_state = 12}, + [6390] = {.lex_state = 156, .external_lex_state = 14}, + [6391] = {.lex_state = 156, .external_lex_state = 12}, + [6392] = {.lex_state = 156, .external_lex_state = 11}, + [6393] = {.lex_state = 156, .external_lex_state = 12}, + [6394] = {.lex_state = 156, .external_lex_state = 12}, + [6395] = {.lex_state = 35, .external_lex_state = 12}, + [6396] = {.lex_state = 156, .external_lex_state = 12}, + [6397] = {.lex_state = 156, .external_lex_state = 14}, + [6398] = {.lex_state = 156, .external_lex_state = 14}, + [6399] = {.lex_state = 156, .external_lex_state = 2}, + [6400] = {.lex_state = 156, .external_lex_state = 14}, + [6401] = {.lex_state = 156, .external_lex_state = 15}, + [6402] = {.lex_state = 156, .external_lex_state = 12}, + [6403] = {.lex_state = 156, .external_lex_state = 16}, + [6404] = {.lex_state = 35, .external_lex_state = 12}, + [6405] = {.lex_state = 156, .external_lex_state = 16}, + [6406] = {.lex_state = 156, .external_lex_state = 12}, + [6407] = {.lex_state = 156, .external_lex_state = 16}, + [6408] = {.lex_state = 156, .external_lex_state = 14}, + [6409] = {.lex_state = 156, .external_lex_state = 11}, + [6410] = {.lex_state = 156, .external_lex_state = 2}, + [6411] = {.lex_state = 156, .external_lex_state = 14}, + [6412] = {.lex_state = 56, .external_lex_state = 12}, + [6413] = {.lex_state = 35, .external_lex_state = 12}, + [6414] = {.lex_state = 34, .external_lex_state = 12}, + [6415] = {.lex_state = 156, .external_lex_state = 14}, + [6416] = {.lex_state = 156, .external_lex_state = 11}, + [6417] = {.lex_state = 56, .external_lex_state = 12}, + [6418] = {.lex_state = 36, .external_lex_state = 12}, + [6419] = {.lex_state = 156, .external_lex_state = 14}, + [6420] = {.lex_state = 35, .external_lex_state = 12}, + [6421] = {.lex_state = 156, .external_lex_state = 14}, + [6422] = {.lex_state = 156, .external_lex_state = 11}, + [6423] = {.lex_state = 156, .external_lex_state = 14}, + [6424] = {.lex_state = 34, .external_lex_state = 12}, + [6425] = {.lex_state = 156, .external_lex_state = 15}, + [6426] = {.lex_state = 156, .external_lex_state = 14}, + [6427] = {.lex_state = 156, .external_lex_state = 2}, + [6428] = {.lex_state = 56, .external_lex_state = 12}, + [6429] = {.lex_state = 156, .external_lex_state = 11}, + [6430] = {.lex_state = 156, .external_lex_state = 11}, + [6431] = {.lex_state = 156, .external_lex_state = 15}, + [6432] = {.lex_state = 156, .external_lex_state = 12}, + [6433] = {.lex_state = 156, .external_lex_state = 12}, + [6434] = {.lex_state = 156, .external_lex_state = 12}, + [6435] = {.lex_state = 156, .external_lex_state = 12}, + [6436] = {.lex_state = 156, .external_lex_state = 12}, + [6437] = {.lex_state = 156, .external_lex_state = 12}, + [6438] = {.lex_state = 156, .external_lex_state = 12}, + [6439] = {.lex_state = 156, .external_lex_state = 11}, + [6440] = {.lex_state = 156, .external_lex_state = 11}, + [6441] = {.lex_state = 156, .external_lex_state = 14}, + [6442] = {.lex_state = 156, .external_lex_state = 12}, + [6443] = {.lex_state = 156, .external_lex_state = 14}, + [6444] = {.lex_state = 156, .external_lex_state = 14}, + [6445] = {.lex_state = 56, .external_lex_state = 12}, + [6446] = {.lex_state = 35, .external_lex_state = 12}, + [6447] = {.lex_state = 156, .external_lex_state = 14}, + [6448] = {.lex_state = 34, .external_lex_state = 12}, + [6449] = {.lex_state = 156, .external_lex_state = 14}, + [6450] = {.lex_state = 156, .external_lex_state = 2}, + [6451] = {.lex_state = 156, .external_lex_state = 14}, + [6452] = {.lex_state = 156, .external_lex_state = 16}, + [6453] = {.lex_state = 156, .external_lex_state = 14}, + [6454] = {.lex_state = 36, .external_lex_state = 13}, + [6455] = {.lex_state = 156, .external_lex_state = 14}, + [6456] = {.lex_state = 156, .external_lex_state = 12}, + [6457] = {.lex_state = 35, .external_lex_state = 12}, + [6458] = {.lex_state = 156, .external_lex_state = 14}, + [6459] = {.lex_state = 156, .external_lex_state = 14}, + [6460] = {.lex_state = 156, .external_lex_state = 11}, + [6461] = {.lex_state = 56, .external_lex_state = 12}, + [6462] = {.lex_state = 35, .external_lex_state = 12}, + [6463] = {.lex_state = 34, .external_lex_state = 12}, + [6464] = {.lex_state = 156, .external_lex_state = 12}, + [6465] = {.lex_state = 156, .external_lex_state = 11}, + [6466] = {.lex_state = 34, .external_lex_state = 12}, + [6467] = {.lex_state = 156, .external_lex_state = 14}, + [6468] = {.lex_state = 156, .external_lex_state = 12}, + [6469] = {.lex_state = 156, .external_lex_state = 12}, + [6470] = {.lex_state = 156, .external_lex_state = 14}, + [6471] = {.lex_state = 156, .external_lex_state = 11}, + [6472] = {.lex_state = 156, .external_lex_state = 14}, + [6473] = {.lex_state = 156, .external_lex_state = 14}, + [6474] = {.lex_state = 156, .external_lex_state = 2}, + [6475] = {.lex_state = 156, .external_lex_state = 14}, + [6476] = {.lex_state = 156, .external_lex_state = 14}, + [6477] = {.lex_state = 156, .external_lex_state = 12}, + [6478] = {.lex_state = 156, .external_lex_state = 14}, + [6479] = {.lex_state = 156, .external_lex_state = 14}, + [6480] = {.lex_state = 156, .external_lex_state = 14}, + [6481] = {.lex_state = 156, .external_lex_state = 14}, + [6482] = {.lex_state = 36, .external_lex_state = 12}, + [6483] = {.lex_state = 156, .external_lex_state = 14}, + [6484] = {.lex_state = 156, .external_lex_state = 11}, + [6485] = {.lex_state = 156, .external_lex_state = 12}, + [6486] = {.lex_state = 156, .external_lex_state = 11}, + [6487] = {.lex_state = 156, .external_lex_state = 14}, + [6488] = {.lex_state = 156, .external_lex_state = 14}, + [6489] = {.lex_state = 156, .external_lex_state = 14}, + [6490] = {.lex_state = 156, .external_lex_state = 16}, + [6491] = {.lex_state = 156, .external_lex_state = 14}, + [6492] = {.lex_state = 156, .external_lex_state = 12}, + [6493] = {.lex_state = 156, .external_lex_state = 12}, + [6494] = {.lex_state = 156, .external_lex_state = 11}, + [6495] = {.lex_state = 156, .external_lex_state = 11}, + [6496] = {.lex_state = 156, .external_lex_state = 12}, + [6497] = {.lex_state = 156, .external_lex_state = 12}, + [6498] = {.lex_state = 156, .external_lex_state = 11}, + [6499] = {.lex_state = 36, .external_lex_state = 13}, + [6500] = {.lex_state = 156, .external_lex_state = 14}, + [6501] = {.lex_state = 156, .external_lex_state = 14}, + [6502] = {.lex_state = 156, .external_lex_state = 12}, + [6503] = {.lex_state = 156, .external_lex_state = 12}, + [6504] = {.lex_state = 36, .external_lex_state = 12}, + [6505] = {.lex_state = 156, .external_lex_state = 14}, + [6506] = {.lex_state = 36, .external_lex_state = 13}, + [6507] = {.lex_state = 156, .external_lex_state = 14}, + [6508] = {.lex_state = 156, .external_lex_state = 11}, + [6509] = {.lex_state = 36, .external_lex_state = 13}, + [6510] = {.lex_state = 156, .external_lex_state = 11}, + [6511] = {.lex_state = 156, .external_lex_state = 16}, + [6512] = {.lex_state = 156, .external_lex_state = 14}, + [6513] = {.lex_state = 35, .external_lex_state = 12}, + [6514] = {.lex_state = 156, .external_lex_state = 11}, + [6515] = {.lex_state = 56, .external_lex_state = 12}, + [6516] = {.lex_state = 156, .external_lex_state = 12}, + [6517] = {.lex_state = 156, .external_lex_state = 14}, + [6518] = {.lex_state = 156, .external_lex_state = 12}, + [6519] = {.lex_state = 36, .external_lex_state = 13}, + [6520] = {.lex_state = 156, .external_lex_state = 11}, + [6521] = {.lex_state = 156, .external_lex_state = 14}, + [6522] = {.lex_state = 156, .external_lex_state = 12}, + [6523] = {.lex_state = 156, .external_lex_state = 11}, + [6524] = {.lex_state = 156, .external_lex_state = 11}, + [6525] = {.lex_state = 156, .external_lex_state = 14}, + [6526] = {.lex_state = 156, .external_lex_state = 12}, + [6527] = {.lex_state = 54, .external_lex_state = 12}, + [6528] = {.lex_state = 156, .external_lex_state = 11}, + [6529] = {.lex_state = 36, .external_lex_state = 12}, + [6530] = {.lex_state = 156, .external_lex_state = 11}, + [6531] = {.lex_state = 156, .external_lex_state = 12}, + [6532] = {.lex_state = 156, .external_lex_state = 12}, + [6533] = {.lex_state = 156, .external_lex_state = 11}, + [6534] = {.lex_state = 156, .external_lex_state = 11}, + [6535] = {.lex_state = 156, .external_lex_state = 11}, + [6536] = {.lex_state = 156, .external_lex_state = 11}, + [6537] = {.lex_state = 156, .external_lex_state = 11}, + [6538] = {.lex_state = 35, .external_lex_state = 12}, + [6539] = {.lex_state = 34, .external_lex_state = 12}, + [6540] = {.lex_state = 156, .external_lex_state = 11}, + [6541] = {.lex_state = 156, .external_lex_state = 14}, + [6542] = {.lex_state = 36, .external_lex_state = 13}, + [6543] = {.lex_state = 36, .external_lex_state = 13}, + [6544] = {.lex_state = 156, .external_lex_state = 14}, + [6545] = {.lex_state = 156, .external_lex_state = 12}, + [6546] = {.lex_state = 156, .external_lex_state = 11}, + [6547] = {.lex_state = 36, .external_lex_state = 12}, + [6548] = {.lex_state = 156, .external_lex_state = 11}, + [6549] = {.lex_state = 156, .external_lex_state = 11}, + [6550] = {.lex_state = 54, .external_lex_state = 12}, + [6551] = {.lex_state = 156, .external_lex_state = 12}, + [6552] = {.lex_state = 36, .external_lex_state = 13}, + [6553] = {.lex_state = 156, .external_lex_state = 12}, + [6554] = {.lex_state = 156, .external_lex_state = 14}, + [6555] = {.lex_state = 56, .external_lex_state = 12}, + [6556] = {.lex_state = 156, .external_lex_state = 11}, + [6557] = {.lex_state = 156, .external_lex_state = 12}, + [6558] = {.lex_state = 156, .external_lex_state = 14}, + [6559] = {.lex_state = 156, .external_lex_state = 14}, + [6560] = {.lex_state = 156, .external_lex_state = 14}, + [6561] = {.lex_state = 156, .external_lex_state = 16}, + [6562] = {.lex_state = 36, .external_lex_state = 12}, + [6563] = {.lex_state = 156, .external_lex_state = 14}, + [6564] = {.lex_state = 156, .external_lex_state = 14}, + [6565] = {.lex_state = 156, .external_lex_state = 11}, + [6566] = {.lex_state = 36, .external_lex_state = 12}, + [6567] = {.lex_state = 156, .external_lex_state = 11}, + [6568] = {.lex_state = 35, .external_lex_state = 12}, + [6569] = {.lex_state = 36, .external_lex_state = 12}, + [6570] = {.lex_state = 156, .external_lex_state = 11}, + [6571] = {.lex_state = 36, .external_lex_state = 12}, + [6572] = {.lex_state = 56, .external_lex_state = 12}, + [6573] = {.lex_state = 35, .external_lex_state = 12}, + [6574] = {.lex_state = 156, .external_lex_state = 16}, + [6575] = {.lex_state = 34, .external_lex_state = 12}, + [6576] = {.lex_state = 34, .external_lex_state = 12}, + [6577] = {.lex_state = 156, .external_lex_state = 14}, + [6578] = {.lex_state = 156, .external_lex_state = 11}, + [6579] = {.lex_state = 156, .external_lex_state = 11}, + [6580] = {.lex_state = 34, .external_lex_state = 12}, + [6581] = {.lex_state = 35, .external_lex_state = 12}, + [6582] = {.lex_state = 156, .external_lex_state = 14}, + [6583] = {.lex_state = 36, .external_lex_state = 13}, + [6584] = {.lex_state = 156, .external_lex_state = 11}, + [6585] = {.lex_state = 156, .external_lex_state = 14}, + [6586] = {.lex_state = 156, .external_lex_state = 11}, + [6587] = {.lex_state = 156, .external_lex_state = 14}, + [6588] = {.lex_state = 156, .external_lex_state = 11}, + [6589] = {.lex_state = 156, .external_lex_state = 14}, + [6590] = {.lex_state = 156, .external_lex_state = 12}, + [6591] = {.lex_state = 56, .external_lex_state = 12}, + [6592] = {.lex_state = 36, .external_lex_state = 12}, + [6593] = {.lex_state = 156, .external_lex_state = 14}, + [6594] = {.lex_state = 156, .external_lex_state = 11}, + [6595] = {.lex_state = 156, .external_lex_state = 15}, + [6596] = {.lex_state = 156, .external_lex_state = 12}, + [6597] = {.lex_state = 156, .external_lex_state = 21}, + [6598] = {.lex_state = 36, .external_lex_state = 12}, + [6599] = {.lex_state = 156, .external_lex_state = 12}, + [6600] = {.lex_state = 6, .external_lex_state = 12}, + [6601] = {.lex_state = 156, .external_lex_state = 12}, + [6602] = {.lex_state = 156, .external_lex_state = 12}, + [6603] = {.lex_state = 36, .external_lex_state = 12}, + [6604] = {.lex_state = 156, .external_lex_state = 14}, + [6605] = {.lex_state = 156, .external_lex_state = 16}, + [6606] = {.lex_state = 156, .external_lex_state = 16}, + [6607] = {.lex_state = 156, .external_lex_state = 12}, + [6608] = {.lex_state = 156, .external_lex_state = 12}, + [6609] = {.lex_state = 156, .external_lex_state = 15}, + [6610] = {.lex_state = 36, .external_lex_state = 12}, + [6611] = {.lex_state = 36, .external_lex_state = 12}, + [6612] = {.lex_state = 36, .external_lex_state = 12}, + [6613] = {.lex_state = 36, .external_lex_state = 12}, + [6614] = {.lex_state = 156, .external_lex_state = 12}, + [6615] = {.lex_state = 156, .external_lex_state = 15}, + [6616] = {.lex_state = 156, .external_lex_state = 14}, + [6617] = {.lex_state = 36, .external_lex_state = 12}, + [6618] = {.lex_state = 156, .external_lex_state = 12}, + [6619] = {.lex_state = 156, .external_lex_state = 13}, + [6620] = {.lex_state = 156, .external_lex_state = 14}, + [6621] = {.lex_state = 156, .external_lex_state = 12}, + [6622] = {.lex_state = 156, .external_lex_state = 12}, + [6623] = {.lex_state = 36, .external_lex_state = 12}, + [6624] = {.lex_state = 156, .external_lex_state = 15}, + [6625] = {.lex_state = 156, .external_lex_state = 15}, + [6626] = {.lex_state = 6, .external_lex_state = 12}, + [6627] = {.lex_state = 36, .external_lex_state = 12}, + [6628] = {.lex_state = 156, .external_lex_state = 21}, + [6629] = {.lex_state = 156, .external_lex_state = 12}, + [6630] = {.lex_state = 34, .external_lex_state = 12}, + [6631] = {.lex_state = 156, .external_lex_state = 15}, + [6632] = {.lex_state = 156, .external_lex_state = 14}, + [6633] = {.lex_state = 156, .external_lex_state = 12}, + [6634] = {.lex_state = 156, .external_lex_state = 14}, + [6635] = {.lex_state = 6, .external_lex_state = 12}, + [6636] = {.lex_state = 156, .external_lex_state = 12}, + [6637] = {.lex_state = 156, .external_lex_state = 21}, + [6638] = {.lex_state = 156, .external_lex_state = 16}, + [6639] = {.lex_state = 6, .external_lex_state = 12}, + [6640] = {.lex_state = 156, .external_lex_state = 21}, + [6641] = {.lex_state = 6, .external_lex_state = 12}, + [6642] = {.lex_state = 34, .external_lex_state = 12}, + [6643] = {.lex_state = 156, .external_lex_state = 12}, + [6644] = {.lex_state = 156, .external_lex_state = 12}, + [6645] = {.lex_state = 156, .external_lex_state = 16}, + [6646] = {.lex_state = 36, .external_lex_state = 12}, + [6647] = {.lex_state = 156, .external_lex_state = 12}, + [6648] = {.lex_state = 36, .external_lex_state = 12}, + [6649] = {.lex_state = 36, .external_lex_state = 12}, + [6650] = {.lex_state = 36, .external_lex_state = 12}, + [6651] = {.lex_state = 156, .external_lex_state = 12}, + [6652] = {.lex_state = 156, .external_lex_state = 15}, + [6653] = {.lex_state = 156, .external_lex_state = 15}, + [6654] = {.lex_state = 156, .external_lex_state = 21}, + [6655] = {.lex_state = 156, .external_lex_state = 14}, + [6656] = {.lex_state = 6, .external_lex_state = 12}, + [6657] = {.lex_state = 156, .external_lex_state = 16}, + [6658] = {.lex_state = 156, .external_lex_state = 14}, + [6659] = {.lex_state = 156, .external_lex_state = 12}, + [6660] = {.lex_state = 156, .external_lex_state = 12}, + [6661] = {.lex_state = 156, .external_lex_state = 12}, + [6662] = {.lex_state = 156, .external_lex_state = 12}, + [6663] = {.lex_state = 156, .external_lex_state = 14}, + [6664] = {.lex_state = 156, .external_lex_state = 14}, + [6665] = {.lex_state = 156, .external_lex_state = 12}, + [6666] = {.lex_state = 156, .external_lex_state = 14}, + [6667] = {.lex_state = 156, .external_lex_state = 15}, + [6668] = {.lex_state = 156, .external_lex_state = 14}, + [6669] = {.lex_state = 156, .external_lex_state = 12}, + [6670] = {.lex_state = 156, .external_lex_state = 14}, + [6671] = {.lex_state = 156, .external_lex_state = 12}, + [6672] = {.lex_state = 156, .external_lex_state = 15}, + [6673] = {.lex_state = 36, .external_lex_state = 12}, + [6674] = {.lex_state = 156, .external_lex_state = 12}, + [6675] = {.lex_state = 156, .external_lex_state = 12}, + [6676] = {.lex_state = 156, .external_lex_state = 12}, + [6677] = {.lex_state = 156, .external_lex_state = 12}, + [6678] = {.lex_state = 156, .external_lex_state = 15}, + [6679] = {.lex_state = 156, .external_lex_state = 12}, + [6680] = {.lex_state = 36, .external_lex_state = 12}, + [6681] = {.lex_state = 36, .external_lex_state = 12}, + [6682] = {.lex_state = 36, .external_lex_state = 12}, + [6683] = {.lex_state = 36, .external_lex_state = 12}, + [6684] = {.lex_state = 36, .external_lex_state = 12}, + [6685] = {.lex_state = 6, .external_lex_state = 12}, + [6686] = {.lex_state = 156, .external_lex_state = 14}, + [6687] = {.lex_state = 156, .external_lex_state = 12}, + [6688] = {.lex_state = 36, .external_lex_state = 12}, + [6689] = {.lex_state = 36, .external_lex_state = 12}, + [6690] = {.lex_state = 156, .external_lex_state = 14}, + [6691] = {.lex_state = 156, .external_lex_state = 16}, + [6692] = {.lex_state = 156, .external_lex_state = 16}, + [6693] = {.lex_state = 156, .external_lex_state = 14}, + [6694] = {.lex_state = 36, .external_lex_state = 12}, + [6695] = {.lex_state = 36, .external_lex_state = 12}, + [6696] = {.lex_state = 36, .external_lex_state = 12}, + [6697] = {.lex_state = 156, .external_lex_state = 12}, + [6698] = {.lex_state = 156, .external_lex_state = 12}, + [6699] = {.lex_state = 156, .external_lex_state = 12}, + [6700] = {.lex_state = 156, .external_lex_state = 16}, + [6701] = {.lex_state = 156, .external_lex_state = 12}, + [6702] = {.lex_state = 36, .external_lex_state = 12}, + [6703] = {.lex_state = 6, .external_lex_state = 12}, + [6704] = {.lex_state = 36, .external_lex_state = 12}, + [6705] = {.lex_state = 156, .external_lex_state = 12}, + [6706] = {.lex_state = 156, .external_lex_state = 15}, + [6707] = {.lex_state = 156, .external_lex_state = 12}, + [6708] = {.lex_state = 156, .external_lex_state = 21}, + [6709] = {.lex_state = 156, .external_lex_state = 15}, + [6710] = {.lex_state = 156, .external_lex_state = 16}, + [6711] = {.lex_state = 6, .external_lex_state = 12}, + [6712] = {.lex_state = 156, .external_lex_state = 12}, + [6713] = {.lex_state = 156, .external_lex_state = 12}, + [6714] = {.lex_state = 156, .external_lex_state = 12}, + [6715] = {.lex_state = 6, .external_lex_state = 12}, + [6716] = {.lex_state = 36, .external_lex_state = 12}, + [6717] = {.lex_state = 156, .external_lex_state = 15}, + [6718] = {.lex_state = 156, .external_lex_state = 13}, + [6719] = {.lex_state = 36, .external_lex_state = 12}, + [6720] = {.lex_state = 156, .external_lex_state = 12}, + [6721] = {.lex_state = 156, .external_lex_state = 12}, + [6722] = {.lex_state = 156, .external_lex_state = 16}, + [6723] = {.lex_state = 156, .external_lex_state = 16}, + [6724] = {.lex_state = 156, .external_lex_state = 15}, + [6725] = {.lex_state = 156, .external_lex_state = 15}, + [6726] = {.lex_state = 156, .external_lex_state = 14}, + [6727] = {.lex_state = 156, .external_lex_state = 12}, + [6728] = {.lex_state = 156, .external_lex_state = 12}, + [6729] = {.lex_state = 6, .external_lex_state = 12}, + [6730] = {.lex_state = 156, .external_lex_state = 15}, + [6731] = {.lex_state = 156, .external_lex_state = 12}, + [6732] = {.lex_state = 36, .external_lex_state = 12}, + [6733] = {.lex_state = 36, .external_lex_state = 12}, + [6734] = {.lex_state = 156, .external_lex_state = 12}, + [6735] = {.lex_state = 36, .external_lex_state = 12}, + [6736] = {.lex_state = 156, .external_lex_state = 12}, + [6737] = {.lex_state = 36, .external_lex_state = 12}, + [6738] = {.lex_state = 156, .external_lex_state = 12}, + [6739] = {.lex_state = 156, .external_lex_state = 15}, + [6740] = {.lex_state = 156, .external_lex_state = 14}, + [6741] = {.lex_state = 156, .external_lex_state = 12}, + [6742] = {.lex_state = 156, .external_lex_state = 14}, + [6743] = {.lex_state = 156, .external_lex_state = 12}, + [6744] = {.lex_state = 156, .external_lex_state = 16}, + [6745] = {.lex_state = 36, .external_lex_state = 12}, + [6746] = {.lex_state = 156, .external_lex_state = 12}, + [6747] = {.lex_state = 156, .external_lex_state = 14}, + [6748] = {.lex_state = 36, .external_lex_state = 12}, + [6749] = {.lex_state = 36, .external_lex_state = 12}, + [6750] = {.lex_state = 36, .external_lex_state = 12}, + [6751] = {.lex_state = 36, .external_lex_state = 12}, + [6752] = {.lex_state = 156, .external_lex_state = 15}, + [6753] = {.lex_state = 156, .external_lex_state = 15}, + [6754] = {.lex_state = 156, .external_lex_state = 12}, + [6755] = {.lex_state = 156, .external_lex_state = 16}, + [6756] = {.lex_state = 156, .external_lex_state = 12}, + [6757] = {.lex_state = 156, .external_lex_state = 12}, + [6758] = {.lex_state = 156, .external_lex_state = 12}, + [6759] = {.lex_state = 156, .external_lex_state = 12}, + [6760] = {.lex_state = 156, .external_lex_state = 15}, + [6761] = {.lex_state = 156, .external_lex_state = 15}, + [6762] = {.lex_state = 156, .external_lex_state = 12}, + [6763] = {.lex_state = 156, .external_lex_state = 14}, + [6764] = {.lex_state = 156, .external_lex_state = 12}, + [6765] = {.lex_state = 156, .external_lex_state = 12}, + [6766] = {.lex_state = 156, .external_lex_state = 14}, + [6767] = {.lex_state = 156, .external_lex_state = 15}, + [6768] = {.lex_state = 156, .external_lex_state = 14}, + [6769] = {.lex_state = 156, .external_lex_state = 16}, + [6770] = {.lex_state = 156, .external_lex_state = 14}, + [6771] = {.lex_state = 156, .external_lex_state = 14}, + [6772] = {.lex_state = 36, .external_lex_state = 12}, + [6773] = {.lex_state = 156, .external_lex_state = 16}, + [6774] = {.lex_state = 6, .external_lex_state = 12}, + [6775] = {.lex_state = 36, .external_lex_state = 12}, + [6776] = {.lex_state = 156, .external_lex_state = 14}, + [6777] = {.lex_state = 156, .external_lex_state = 16}, + [6778] = {.lex_state = 156, .external_lex_state = 12}, + [6779] = {.lex_state = 156, .external_lex_state = 12}, + [6780] = {.lex_state = 156, .external_lex_state = 15}, + [6781] = {.lex_state = 156, .external_lex_state = 15}, + [6782] = {.lex_state = 156, .external_lex_state = 15}, + [6783] = {.lex_state = 36, .external_lex_state = 12}, + [6784] = {.lex_state = 156, .external_lex_state = 12}, + [6785] = {.lex_state = 36, .external_lex_state = 12}, + [6786] = {.lex_state = 36, .external_lex_state = 12}, + [6787] = {.lex_state = 156, .external_lex_state = 12}, + [6788] = {.lex_state = 156, .external_lex_state = 12}, + [6789] = {.lex_state = 36, .external_lex_state = 12}, + [6790] = {.lex_state = 36, .external_lex_state = 12}, + [6791] = {.lex_state = 36, .external_lex_state = 12}, + [6792] = {.lex_state = 156, .external_lex_state = 14}, + [6793] = {.lex_state = 156, .external_lex_state = 13}, + [6794] = {.lex_state = 36, .external_lex_state = 12}, + [6795] = {.lex_state = 156, .external_lex_state = 14}, + [6796] = {.lex_state = 36, .external_lex_state = 12}, + [6797] = {.lex_state = 156, .external_lex_state = 14}, + [6798] = {.lex_state = 36, .external_lex_state = 12}, + [6799] = {.lex_state = 36, .external_lex_state = 12}, + [6800] = {.lex_state = 156, .external_lex_state = 14}, + [6801] = {.lex_state = 6, .external_lex_state = 12}, + [6802] = {.lex_state = 156, .external_lex_state = 12}, + [6803] = {.lex_state = 156, .external_lex_state = 16}, + [6804] = {.lex_state = 156, .external_lex_state = 12}, + [6805] = {.lex_state = 156, .external_lex_state = 14}, + [6806] = {.lex_state = 36, .external_lex_state = 12}, + [6807] = {.lex_state = 156, .external_lex_state = 14}, + [6808] = {.lex_state = 156, .external_lex_state = 16}, + [6809] = {.lex_state = 156, .external_lex_state = 12}, + [6810] = {.lex_state = 34, .external_lex_state = 12}, + [6811] = {.lex_state = 156, .external_lex_state = 14}, + [6812] = {.lex_state = 156, .external_lex_state = 12}, + [6813] = {.lex_state = 156, .external_lex_state = 16}, + [6814] = {.lex_state = 36, .external_lex_state = 12}, + [6815] = {.lex_state = 36, .external_lex_state = 12}, + [6816] = {.lex_state = 36, .external_lex_state = 12}, + [6817] = {.lex_state = 156, .external_lex_state = 15}, + [6818] = {.lex_state = 36, .external_lex_state = 12}, + [6819] = {.lex_state = 156, .external_lex_state = 15}, + [6820] = {.lex_state = 156, .external_lex_state = 14}, + [6821] = {.lex_state = 36, .external_lex_state = 12}, + [6822] = {.lex_state = 36, .external_lex_state = 12}, + [6823] = {.lex_state = 156, .external_lex_state = 12}, + [6824] = {.lex_state = 156, .external_lex_state = 15}, + [6825] = {.lex_state = 6, .external_lex_state = 12}, + [6826] = {.lex_state = 156, .external_lex_state = 12}, + [6827] = {.lex_state = 156, .external_lex_state = 12}, + [6828] = {.lex_state = 36, .external_lex_state = 12}, + [6829] = {.lex_state = 156, .external_lex_state = 12}, + [6830] = {.lex_state = 156, .external_lex_state = 12}, + [6831] = {.lex_state = 36, .external_lex_state = 12}, + [6832] = {.lex_state = 6, .external_lex_state = 12}, + [6833] = {.lex_state = 156, .external_lex_state = 16}, + [6834] = {.lex_state = 156, .external_lex_state = 12}, + [6835] = {.lex_state = 156, .external_lex_state = 12}, + [6836] = {.lex_state = 156, .external_lex_state = 21}, + [6837] = {.lex_state = 156, .external_lex_state = 14}, + [6838] = {.lex_state = 156, .external_lex_state = 14}, + [6839] = {.lex_state = 36, .external_lex_state = 12}, + [6840] = {.lex_state = 36, .external_lex_state = 12}, + [6841] = {.lex_state = 156, .external_lex_state = 14}, + [6842] = {.lex_state = 156, .external_lex_state = 14}, + [6843] = {.lex_state = 156, .external_lex_state = 21}, + [6844] = {.lex_state = 156, .external_lex_state = 15}, + [6845] = {.lex_state = 156, .external_lex_state = 16}, + [6846] = {.lex_state = 156, .external_lex_state = 14}, + [6847] = {.lex_state = 36, .external_lex_state = 12}, + [6848] = {.lex_state = 156, .external_lex_state = 12}, + [6849] = {.lex_state = 156, .external_lex_state = 21}, + [6850] = {.lex_state = 156, .external_lex_state = 12}, + [6851] = {.lex_state = 156, .external_lex_state = 21}, + [6852] = {.lex_state = 156, .external_lex_state = 12}, + [6853] = {.lex_state = 156, .external_lex_state = 16}, + [6854] = {.lex_state = 156, .external_lex_state = 12}, + [6855] = {.lex_state = 34, .external_lex_state = 12}, + [6856] = {.lex_state = 156, .external_lex_state = 12}, + [6857] = {.lex_state = 156, .external_lex_state = 12}, + [6858] = {.lex_state = 156, .external_lex_state = 12}, + [6859] = {.lex_state = 156, .external_lex_state = 16}, + [6860] = {.lex_state = 36, .external_lex_state = 12}, + [6861] = {.lex_state = 156, .external_lex_state = 12}, + [6862] = {.lex_state = 156, .external_lex_state = 21}, + [6863] = {.lex_state = 156, .external_lex_state = 21}, + [6864] = {.lex_state = 4, .external_lex_state = 12}, + [6865] = {.lex_state = 156, .external_lex_state = 12}, + [6866] = {.lex_state = 6, .external_lex_state = 12}, + [6867] = {.lex_state = 156, .external_lex_state = 12}, + [6868] = {.lex_state = 156, .external_lex_state = 12}, + [6869] = {.lex_state = 156, .external_lex_state = 14}, + [6870] = {.lex_state = 36, .external_lex_state = 12}, + [6871] = {.lex_state = 156, .external_lex_state = 14}, + [6872] = {.lex_state = 36, .external_lex_state = 12}, + [6873] = {.lex_state = 156, .external_lex_state = 15}, + [6874] = {.lex_state = 156, .external_lex_state = 12}, + [6875] = {.lex_state = 36, .external_lex_state = 12}, + [6876] = {.lex_state = 156, .external_lex_state = 15}, + [6877] = {.lex_state = 156, .external_lex_state = 12}, + [6878] = {.lex_state = 156, .external_lex_state = 14}, + [6879] = {.lex_state = 156, .external_lex_state = 14}, + [6880] = {.lex_state = 156, .external_lex_state = 12}, + [6881] = {.lex_state = 156, .external_lex_state = 12}, + [6882] = {.lex_state = 34, .external_lex_state = 12}, + [6883] = {.lex_state = 156, .external_lex_state = 15}, + [6884] = {.lex_state = 156, .external_lex_state = 15}, + [6885] = {.lex_state = 156, .external_lex_state = 12}, + [6886] = {.lex_state = 156, .external_lex_state = 12}, + [6887] = {.lex_state = 6, .external_lex_state = 12}, + [6888] = {.lex_state = 156, .external_lex_state = 12}, + [6889] = {.lex_state = 156, .external_lex_state = 12}, + [6890] = {.lex_state = 156, .external_lex_state = 12}, + [6891] = {.lex_state = 34, .external_lex_state = 12}, + [6892] = {.lex_state = 36, .external_lex_state = 12}, + [6893] = {.lex_state = 156, .external_lex_state = 15}, + [6894] = {.lex_state = 156, .external_lex_state = 15}, + [6895] = {.lex_state = 156, .external_lex_state = 15}, + [6896] = {.lex_state = 156, .external_lex_state = 12}, + [6897] = {.lex_state = 156, .external_lex_state = 12}, + [6898] = {.lex_state = 156, .external_lex_state = 12}, + [6899] = {.lex_state = 156, .external_lex_state = 12}, + [6900] = {.lex_state = 156, .external_lex_state = 16}, + [6901] = {.lex_state = 156, .external_lex_state = 16}, + [6902] = {.lex_state = 156, .external_lex_state = 15}, + [6903] = {.lex_state = 6, .external_lex_state = 12}, + [6904] = {.lex_state = 156, .external_lex_state = 15}, + [6905] = {.lex_state = 36, .external_lex_state = 12}, + [6906] = {.lex_state = 156, .external_lex_state = 13}, + [6907] = {.lex_state = 156, .external_lex_state = 12}, + [6908] = {.lex_state = 156, .external_lex_state = 12}, + [6909] = {.lex_state = 156, .external_lex_state = 12}, + [6910] = {.lex_state = 156, .external_lex_state = 12}, + [6911] = {.lex_state = 36, .external_lex_state = 12}, + [6912] = {.lex_state = 36, .external_lex_state = 12}, + [6913] = {.lex_state = 36, .external_lex_state = 12}, + [6914] = {.lex_state = 6, .external_lex_state = 12}, + [6915] = {.lex_state = 156, .external_lex_state = 12}, + [6916] = {.lex_state = 156, .external_lex_state = 14}, + [6917] = {.lex_state = 156, .external_lex_state = 12}, + [6918] = {.lex_state = 6, .external_lex_state = 12}, + [6919] = {.lex_state = 6, .external_lex_state = 12}, + [6920] = {.lex_state = 156, .external_lex_state = 12}, + [6921] = {.lex_state = 156, .external_lex_state = 15}, + [6922] = {.lex_state = 156, .external_lex_state = 14}, + [6923] = {.lex_state = 156, .external_lex_state = 12}, + [6924] = {.lex_state = 156, .external_lex_state = 12}, + [6925] = {.lex_state = 156, .external_lex_state = 12}, + [6926] = {.lex_state = 156, .external_lex_state = 14}, + [6927] = {.lex_state = 156, .external_lex_state = 12}, + [6928] = {.lex_state = 156, .external_lex_state = 12}, + [6929] = {.lex_state = 156, .external_lex_state = 12}, + [6930] = {.lex_state = 156, .external_lex_state = 14}, + [6931] = {.lex_state = 6, .external_lex_state = 12}, + [6932] = {.lex_state = 156, .external_lex_state = 12}, + [6933] = {.lex_state = 6, .external_lex_state = 12}, + [6934] = {.lex_state = 156, .external_lex_state = 12}, + [6935] = {.lex_state = 156, .external_lex_state = 12}, + [6936] = {.lex_state = 156, .external_lex_state = 12}, + [6937] = {.lex_state = 156, .external_lex_state = 12}, + [6938] = {.lex_state = 156, .external_lex_state = 16}, + [6939] = {.lex_state = 156, .external_lex_state = 12}, + [6940] = {.lex_state = 156, .external_lex_state = 12}, + [6941] = {.lex_state = 36, .external_lex_state = 12}, + [6942] = {.lex_state = 156, .external_lex_state = 12}, + [6943] = {.lex_state = 156, .external_lex_state = 14}, + [6944] = {.lex_state = 156, .external_lex_state = 12}, + [6945] = {.lex_state = 6, .external_lex_state = 12}, + [6946] = {.lex_state = 156, .external_lex_state = 13}, + [6947] = {.lex_state = 156, .external_lex_state = 12}, + [6948] = {.lex_state = 156, .external_lex_state = 13}, + [6949] = {.lex_state = 156, .external_lex_state = 12}, + [6950] = {.lex_state = 156, .external_lex_state = 12}, + [6951] = {.lex_state = 156, .external_lex_state = 12}, + [6952] = {.lex_state = 156, .external_lex_state = 12}, + [6953] = {.lex_state = 36, .external_lex_state = 12}, + [6954] = {.lex_state = 36, .external_lex_state = 12}, + [6955] = {.lex_state = 156, .external_lex_state = 12}, + [6956] = {.lex_state = 36, .external_lex_state = 12}, + [6957] = {.lex_state = 156, .external_lex_state = 14}, + [6958] = {.lex_state = 36, .external_lex_state = 12}, + [6959] = {.lex_state = 156, .external_lex_state = 13}, + [6960] = {.lex_state = 156, .external_lex_state = 21}, + [6961] = {.lex_state = 156, .external_lex_state = 12}, + [6962] = {.lex_state = 156, .external_lex_state = 14}, + [6963] = {.lex_state = 36, .external_lex_state = 12}, + [6964] = {.lex_state = 156, .external_lex_state = 12}, + [6965] = {.lex_state = 6, .external_lex_state = 12}, + [6966] = {.lex_state = 36, .external_lex_state = 12}, + [6967] = {.lex_state = 6, .external_lex_state = 12}, + [6968] = {.lex_state = 36, .external_lex_state = 12}, + [6969] = {.lex_state = 34, .external_lex_state = 12}, + [6970] = {.lex_state = 156, .external_lex_state = 13}, + [6971] = {.lex_state = 36, .external_lex_state = 12}, + [6972] = {.lex_state = 156, .external_lex_state = 21}, + [6973] = {.lex_state = 156, .external_lex_state = 12}, + [6974] = {.lex_state = 156, .external_lex_state = 12}, + [6975] = {.lex_state = 34, .external_lex_state = 12}, + [6976] = {.lex_state = 36, .external_lex_state = 12}, + [6977] = {.lex_state = 156, .external_lex_state = 14}, + [6978] = {.lex_state = 156, .external_lex_state = 12}, + [6979] = {.lex_state = 156, .external_lex_state = 15}, + [6980] = {.lex_state = 36, .external_lex_state = 12}, + [6981] = {.lex_state = 156, .external_lex_state = 14}, + [6982] = {.lex_state = 156, .external_lex_state = 12}, + [6983] = {.lex_state = 156, .external_lex_state = 16}, + [6984] = {.lex_state = 36, .external_lex_state = 12}, + [6985] = {.lex_state = 6, .external_lex_state = 12}, + [6986] = {.lex_state = 156, .external_lex_state = 12}, + [6987] = {.lex_state = 156, .external_lex_state = 12}, + [6988] = {.lex_state = 34, .external_lex_state = 12}, + [6989] = {.lex_state = 36, .external_lex_state = 12}, + [6990] = {.lex_state = 36, .external_lex_state = 12}, + [6991] = {.lex_state = 34, .external_lex_state = 12}, + [6992] = {.lex_state = 36, .external_lex_state = 12}, + [6993] = {.lex_state = 156, .external_lex_state = 11}, + [6994] = {.lex_state = 156, .external_lex_state = 12}, + [6995] = {.lex_state = 6, .external_lex_state = 12}, + [6996] = {.lex_state = 156, .external_lex_state = 12}, + [6997] = {.lex_state = 36, .external_lex_state = 12}, + [6998] = {.lex_state = 156, .external_lex_state = 12}, + [6999] = {.lex_state = 36, .external_lex_state = 12}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19432,8 +24126,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_escape_sequence] = ACTIONS(1), [anon_sym_BSLASH] = ACTIONS(1), [sym_type_conversion] = ACTIONS(1), - [sym_integer] = ACTIONS(1), - [sym_float] = ACTIONS(1), + [anon_sym_0x] = ACTIONS(1), + [anon_sym_0X] = ACTIONS(1), + [anon_sym_0O] = ACTIONS(1), + [aux_sym_integer_token2] = ACTIONS(1), + [anon_sym_0B] = ACTIONS(1), + [aux_sym_integer_token3] = ACTIONS(1), + [aux_sym_integer_token5] = ACTIONS(1), [anon_sym_await] = ACTIONS(1), [anon_sym_api] = ACTIONS(1), [sym_true] = ACTIONS(1), @@ -19441,6 +24140,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(5), [anon_sym_PYTHON] = ACTIONS(1), + [sym_c_integer_signedness] = ACTIONS(1), + [aux_sym_c_integer_type_token1] = ACTIONS(1), [anon_sym_object] = ACTIONS(1), [anon_sym_property] = ACTIONS(1), [anon_sym_include] = ACTIONS(1), @@ -19508,86 +24209,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(5696), - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [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(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3321), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5088), - [sym_DEF_statement] = STATE(213), - [sym_IF_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3980), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3980), - [aux_sym_decorated_definition_repeat1] = STATE(3321), + [sym_module] = STATE(6857), + [sym__statement] = STATE(266), + [sym__simple_statements] = STATE(266), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_if_statement] = STATE(266), + [sym_match_statement] = STATE(266), + [sym_for_statement] = STATE(266), + [sym_while_statement] = STATE(266), + [sym_try_statement] = STATE(266), + [sym_with_statement] = STATE(266), + [sym_function_definition] = STATE(266), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_class_definition] = STATE(266), + [sym_decorated_definition] = STATE(266), + [sym_decorator] = STATE(4111), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_run_directive] = STATE(263), + [sym_property_definition] = STATE(266), + [sym_include_statement] = STATE(6040), + [sym_DEF_statement] = STATE(266), + [sym_IF_statement] = STATE(266), + [sym_cdef_statement] = STATE(266), + [sym_ctypedef_statement] = STATE(266), + [sym_storageclass] = STATE(4717), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(266), + [aux_sym_class_definition_repeat1] = STATE(4717), + [aux_sym_decorated_definition_repeat1] = STATE(4111), + [aux_sym_integer_repeat4] = STATE(2428), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19629,110 +24332,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PYTHON] = ACTIONS(89), - [anon_sym_property] = ACTIONS(91), - [anon_sym_include] = ACTIONS(93), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_PYTHON] = ACTIONS(97), + [anon_sym_property] = ACTIONS(99), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(103), + [anon_sym_IF] = ACTIONS(105), + [anon_sym_cdef] = ACTIONS(107), + [anon_sym_cpdef] = ACTIONS(107), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(111), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, [2] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(585), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3847), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19747,19 +24458,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19773,110 +24484,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [3] = { - [sym__statement] = STATE(215), - [sym__simple_statements] = STATE(215), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(215), - [sym_decorated_definition] = STATE(215), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(4040), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(215), - [sym_IF_statement] = STATE(215), - [sym_cdef_statement] = STATE(215), - [sym_ctypedef_statement] = STATE(215), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(215), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3580), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19891,19 +24610,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19917,110 +24636,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(141), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [4] = { - [sym__statement] = STATE(215), - [sym__simple_statements] = STATE(215), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(215), - [sym_decorated_definition] = STATE(215), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(4006), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(215), - [sym_IF_statement] = STATE(215), - [sym_cdef_statement] = STATE(215), - [sym_ctypedef_statement] = STATE(215), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(215), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(262), + [sym__simple_statements] = STATE(262), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(262), + [sym_match_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_try_statement] = STATE(262), + [sym_with_statement] = STATE(262), + [sym_function_definition] = STATE(262), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(262), + [sym_decorated_definition] = STATE(262), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(4840), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(262), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(262), + [sym_IF_statement] = STATE(262), + [sym_cdef_statement] = STATE(262), + [sym_ctypedef_statement] = STATE(262), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(262), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20035,19 +24762,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20061,110 +24788,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(141), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(151), + [sym_string_start] = ACTIONS(117), }, [5] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(881), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(892), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20179,19 +24914,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20205,110 +24940,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [6] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1109), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1129), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20323,19 +25066,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20349,110 +25092,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [7] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1071), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1134), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20467,19 +25218,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20493,110 +25244,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [8] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1481), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2016), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20611,19 +25370,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20637,110 +25396,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [9] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1365), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1262), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20755,19 +25522,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20781,110 +25548,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [10] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1597), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2017), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20899,19 +25674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20925,110 +25700,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [11] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(894), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(872), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21043,19 +25826,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21069,110 +25852,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [12] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1201), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1328), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21187,19 +25978,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21213,110 +26004,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [13] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1061), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1158), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21331,19 +26130,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21357,110 +26156,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [14] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1470), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2041), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21475,19 +26282,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21501,110 +26308,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [15] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1567), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2054), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21619,19 +26434,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21645,110 +26460,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [16] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1313), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1823), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21763,19 +26586,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21789,110 +26612,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [17] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1320), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1888), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21907,19 +26738,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21933,110 +26764,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [18] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1321), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1910), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22051,19 +26890,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22077,110 +26916,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [19] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1358), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1188), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22195,19 +27042,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22221,110 +27068,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [20] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1394), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1267), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22339,19 +27194,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22365,110 +27220,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [21] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1423), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1702), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22483,19 +27346,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22509,110 +27372,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [22] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1517), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2124), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22627,19 +27498,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22653,110 +27524,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [23] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1059), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1144), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22771,19 +27650,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22797,110 +27676,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [24] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1099), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1145), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22915,19 +27802,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22941,110 +27828,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [25] = { - [sym__statement] = STATE(217), - [sym__simple_statements] = STATE(217), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(217), - [sym_decorated_definition] = STATE(217), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(998), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(217), - [sym_IF_statement] = STATE(217), - [sym_cdef_statement] = STATE(217), - [sym_ctypedef_statement] = STATE(217), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(217), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(265), + [sym__simple_statements] = STATE(265), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(265), + [sym_match_statement] = STATE(265), + [sym_for_statement] = STATE(265), + [sym_while_statement] = STATE(265), + [sym_try_statement] = STATE(265), + [sym_with_statement] = STATE(265), + [sym_function_definition] = STATE(265), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(265), + [sym_decorated_definition] = STATE(265), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1021), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(265), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(265), + [sym_IF_statement] = STATE(265), + [sym_cdef_statement] = STATE(265), + [sym_ctypedef_statement] = STATE(265), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(265), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23059,19 +27954,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23085,110 +27980,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(145), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(157), + [sym_string_start] = ACTIONS(117), }, [26] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1460), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2139), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23203,19 +28106,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23229,110 +28132,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [27] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1516), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2142), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23347,19 +28258,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23373,110 +28284,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [28] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1300), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1957), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23491,19 +28410,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23517,110 +28436,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [29] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1310), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1966), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23635,19 +28562,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23661,110 +28588,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [30] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1323), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1998), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23779,19 +28714,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23805,110 +28740,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [31] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1329), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1184), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23923,19 +28866,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23949,110 +28892,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [32] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1366), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1194), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24067,19 +29018,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24093,110 +29044,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [33] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1244), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1224), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24211,19 +29170,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24237,110 +29196,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [34] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1250), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1227), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24355,19 +29322,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24381,110 +29348,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [35] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1252), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1228), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24499,19 +29474,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24525,110 +29500,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [36] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1264), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1239), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24643,19 +29626,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24669,110 +29652,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [37] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1072), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1155), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24787,19 +29778,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24813,110 +29804,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [38] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1085), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1156), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24931,19 +29930,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24957,110 +29956,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [39] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1436), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2171), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25075,19 +30082,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25101,110 +30108,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [40] = { - [sym__statement] = STATE(217), - [sym__simple_statements] = STATE(217), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(217), - [sym_decorated_definition] = STATE(217), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1000), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(217), - [sym_IF_statement] = STATE(217), - [sym_cdef_statement] = STATE(217), - [sym_ctypedef_statement] = STATE(217), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(217), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(265), + [sym__simple_statements] = STATE(265), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(265), + [sym_match_statement] = STATE(265), + [sym_for_statement] = STATE(265), + [sym_while_statement] = STATE(265), + [sym_try_statement] = STATE(265), + [sym_with_statement] = STATE(265), + [sym_function_definition] = STATE(265), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(265), + [sym_decorated_definition] = STATE(265), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(986), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(265), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(265), + [sym_IF_statement] = STATE(265), + [sym_cdef_statement] = STATE(265), + [sym_ctypedef_statement] = STATE(265), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(265), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25219,19 +30234,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25245,110 +30260,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(145), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(157), + [sym_string_start] = ACTIONS(117), }, [41] = { - [sym__statement] = STATE(221), - [sym__simple_statements] = STATE(221), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(221), - [sym_decorated_definition] = STATE(221), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1002), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(221), - [sym_IF_statement] = STATE(221), - [sym_cdef_statement] = STATE(221), - [sym_ctypedef_statement] = STATE(221), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(221), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(269), + [sym__simple_statements] = STATE(269), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(269), + [sym_match_statement] = STATE(269), + [sym_for_statement] = STATE(269), + [sym_while_statement] = STATE(269), + [sym_try_statement] = STATE(269), + [sym_with_statement] = STATE(269), + [sym_function_definition] = STATE(269), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(269), + [sym_decorated_definition] = STATE(269), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(988), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(269), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(269), + [sym_IF_statement] = STATE(269), + [sym_cdef_statement] = STATE(269), + [sym_ctypedef_statement] = STATE(269), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(269), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25363,19 +30386,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25389,110 +30412,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(147), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(159), + [sym_string_start] = ACTIONS(117), }, [42] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1476), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2177), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25507,19 +30538,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25533,110 +30564,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [43] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1277), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1255), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25651,19 +30690,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25677,110 +30716,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [44] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1289), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1265), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25795,19 +30842,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25821,110 +30868,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [45] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1566), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2185), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25939,19 +30994,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25965,110 +31020,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [46] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1298), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1269), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26083,19 +31146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26109,110 +31172,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [47] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1307), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1273), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26227,19 +31298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26253,110 +31324,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [48] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1347), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1302), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26371,19 +31450,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26397,110 +31476,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [49] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1351), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1307), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26515,19 +31602,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26541,110 +31628,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [50] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1356), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1310), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26659,19 +31754,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26685,110 +31780,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [51] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1097), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1164), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26803,19 +31906,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26829,110 +31932,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [52] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(5287), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(6506), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26947,19 +32058,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26973,110 +32084,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [53] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1514), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2023), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27091,19 +32210,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27117,110 +32236,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [54] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1103), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1100), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27235,19 +32362,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27261,110 +32388,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [55] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1528), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2028), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27379,19 +32514,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27405,110 +32540,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [56] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1375), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1326), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27523,19 +32666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27549,110 +32692,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [57] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1378), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1329), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27667,19 +32818,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27693,110 +32844,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [58] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1379), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1330), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27811,19 +32970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27837,110 +32996,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [59] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1118), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27955,19 +33122,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27981,110 +33148,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [60] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1392), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1418), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28099,19 +33274,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28125,110 +33300,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [61] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1407), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1420), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28243,19 +33426,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28269,110 +33452,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [62] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1179), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1439), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28387,19 +33578,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28413,110 +33604,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [63] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1185), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1451), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28531,19 +33730,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28557,110 +33756,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [64] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(5471), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(6370), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28675,19 +33882,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28701,110 +33908,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [65] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(5484), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(6509), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28819,19 +34034,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28845,110 +34060,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [66] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1136), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(261), + [sym_match_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_try_statement] = STATE(261), + [sym_with_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1125), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28963,19 +34186,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28989,110 +34212,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(117), }, [67] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1537), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2032), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29107,19 +34338,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29133,110 +34364,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [68] = { - [sym__statement] = STATE(217), - [sym__simple_statements] = STATE(217), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(217), - [sym_decorated_definition] = STATE(217), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1052), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(217), - [sym_IF_statement] = STATE(217), - [sym_cdef_statement] = STATE(217), - [sym_ctypedef_statement] = STATE(217), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(217), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(265), + [sym__simple_statements] = STATE(265), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(265), + [sym_match_statement] = STATE(265), + [sym_for_statement] = STATE(265), + [sym_while_statement] = STATE(265), + [sym_try_statement] = STATE(265), + [sym_with_statement] = STATE(265), + [sym_function_definition] = STATE(265), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(265), + [sym_decorated_definition] = STATE(265), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1005), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(265), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(265), + [sym_IF_statement] = STATE(265), + [sym_cdef_statement] = STATE(265), + [sym_ctypedef_statement] = STATE(265), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(265), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29251,19 +34490,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29277,110 +34516,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(145), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(157), + [sym_string_start] = ACTIONS(117), }, [69] = { - [sym__statement] = STATE(221), - [sym__simple_statements] = STATE(221), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(221), - [sym_decorated_definition] = STATE(221), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1053), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(221), - [sym_IF_statement] = STATE(221), - [sym_cdef_statement] = STATE(221), - [sym_ctypedef_statement] = STATE(221), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(221), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(269), + [sym__simple_statements] = STATE(269), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(269), + [sym_match_statement] = STATE(269), + [sym_for_statement] = STATE(269), + [sym_while_statement] = STATE(269), + [sym_try_statement] = STATE(269), + [sym_with_statement] = STATE(269), + [sym_function_definition] = STATE(269), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(269), + [sym_decorated_definition] = STATE(269), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1006), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(269), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(269), + [sym_IF_statement] = STATE(269), + [sym_cdef_statement] = STATE(269), + [sym_ctypedef_statement] = STATE(269), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(269), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29395,19 +34642,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29421,110 +34668,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(147), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(159), + [sym_string_start] = ACTIONS(117), }, [70] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1192), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1460), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29539,19 +34794,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29565,110 +34820,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [71] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1193), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1461), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29683,19 +34946,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29709,110 +34972,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [72] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1197), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1465), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29827,19 +35098,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29853,110 +35124,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [73] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1198), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1466), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29971,19 +35250,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29997,110 +35276,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [74] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1202), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1470), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30115,19 +35402,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30141,110 +35428,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [75] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1213), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1481), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30259,19 +35554,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30285,110 +35580,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [76] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1216), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1485), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30403,19 +35706,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30429,110 +35732,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [77] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1217), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1486), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30547,19 +35858,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30573,110 +35884,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [78] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(5310), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(6552), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30691,19 +36010,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30717,110 +36036,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [79] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(5312), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(6583), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30835,19 +36162,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30861,110 +36188,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [80] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1222), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1493), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30979,19 +36314,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31005,110 +36340,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [81] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1225), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1496), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31123,19 +36466,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31149,110 +36492,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [82] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1231), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1504), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31267,19 +36618,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31293,110 +36644,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [83] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1232), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1505), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31411,19 +36770,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31437,110 +36796,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [84] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1235), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1508), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31555,19 +36922,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31581,110 +36948,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [85] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(5332), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(6499), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31699,19 +37074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31725,110 +37100,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [86] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1236), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1509), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31843,19 +37226,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31869,110 +37252,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [87] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1239), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1513), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31987,19 +37378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32013,110 +37404,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [88] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1240), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(218), - [sym_IF_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(260), + [sym_match_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_with_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1514), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32131,19 +37530,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32157,110 +37556,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(117), }, [89] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(904), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(884), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32275,19 +37682,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32301,110 +37708,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [90] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1150), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1076), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32419,19 +37834,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32445,110 +37860,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [91] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1151), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1077), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32563,19 +37986,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32589,110 +38012,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [92] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1466), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2080), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32707,19 +38138,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32733,110 +38164,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [93] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(540), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1595), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32851,19 +38290,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32877,110 +38316,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [94] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1473), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2082), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32995,19 +38442,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33021,110 +38468,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [95] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(912), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(868), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33139,19 +38594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33165,110 +38620,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [96] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3067), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3902), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33283,19 +38746,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33309,110 +38772,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [97] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1080), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1088), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33427,19 +38898,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33453,110 +38924,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [98] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1505), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2093), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33571,19 +39050,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33597,110 +39076,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [99] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1533), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2100), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33715,19 +39202,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33741,110 +39228,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [100] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(550), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1619), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33859,19 +39354,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33885,110 +39380,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [101] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(552), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1621), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34003,19 +39506,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34029,110 +39532,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [102] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(553), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1622), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34147,19 +39658,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34173,110 +39684,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [103] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3116), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3810), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34291,19 +39810,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34317,110 +39836,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [104] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3007), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3701), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34435,19 +39962,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34461,110 +39988,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [105] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(563), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1634), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34579,19 +40114,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34605,110 +40140,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [106] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1580), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2189), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34723,19 +40266,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34749,110 +40292,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [107] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1162), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1097), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34867,19 +40418,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34893,110 +40444,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [108] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1115), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1098), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35011,19 +40570,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35037,110 +40596,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [109] = { - [sym__statement] = STATE(223), - [sym__simple_statements] = STATE(223), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(223), - [sym_decorated_definition] = STATE(223), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1012), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(223), - [sym_IF_statement] = STATE(223), - [sym_cdef_statement] = STATE(223), - [sym_ctypedef_statement] = STATE(223), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(223), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(273), + [sym__simple_statements] = STATE(273), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(273), + [sym_match_statement] = STATE(273), + [sym_for_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_try_statement] = STATE(273), + [sym_with_statement] = STATE(273), + [sym_function_definition] = STATE(273), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(273), + [sym_decorated_definition] = STATE(273), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1024), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(273), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(273), + [sym_IF_statement] = STATE(273), + [sym_cdef_statement] = STATE(273), + [sym_ctypedef_statement] = STATE(273), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(273), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35155,19 +40722,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35181,110 +40748,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(151), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(165), + [sym_string_start] = ACTIONS(117), }, [110] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1600), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35299,19 +40874,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35325,110 +40900,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [111] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1523), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2117), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35443,19 +41026,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35469,110 +41052,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [112] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(568), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1648), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35587,19 +41178,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35613,110 +41204,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [113] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(570), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1651), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35731,19 +41330,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35757,110 +41356,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [114] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(572), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1653), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35875,19 +41482,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35901,110 +41508,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [115] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3035), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3820), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36019,19 +41634,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36045,110 +41660,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [116] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(2996), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3740), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36163,19 +41786,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36189,110 +41812,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [117] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(587), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1667), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36307,19 +41938,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36333,110 +41964,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [118] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(588), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1669), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36451,19 +42090,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36477,110 +42116,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [119] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1130), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1670), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36595,19 +42242,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36621,110 +42268,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [120] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1131), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1676), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36739,19 +42394,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36765,110 +42420,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [121] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1532), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1106), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36883,19 +42546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36909,110 +42572,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [122] = { - [sym__statement] = STATE(223), - [sym__simple_statements] = STATE(223), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(223), - [sym_decorated_definition] = STATE(223), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1054), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(223), - [sym_IF_statement] = STATE(223), - [sym_cdef_statement] = STATE(223), - [sym_ctypedef_statement] = STATE(223), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(223), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37027,19 +42698,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37053,110 +42724,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(151), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [123] = { - [sym__statement] = STATE(224), - [sym__simple_statements] = STATE(224), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(224), - [sym_decorated_definition] = STATE(224), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1055), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(224), - [sym_IF_statement] = STATE(224), - [sym_cdef_statement] = STATE(224), - [sym_ctypedef_statement] = STATE(224), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(224), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2129), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37171,19 +42850,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37197,110 +42876,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(153), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [124] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1548), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(273), + [sym__simple_statements] = STATE(273), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(273), + [sym_match_statement] = STATE(273), + [sym_for_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_try_statement] = STATE(273), + [sym_with_statement] = STATE(273), + [sym_function_definition] = STATE(273), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(273), + [sym_decorated_definition] = STATE(273), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1027), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(273), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(273), + [sym_IF_statement] = STATE(273), + [sym_cdef_statement] = STATE(273), + [sym_ctypedef_statement] = STATE(273), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(273), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37315,19 +43002,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37341,110 +43028,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(165), + [sym_string_start] = ACTIONS(117), }, [125] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(591), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(259), + [sym_match_statement] = STATE(259), + [sym_for_statement] = STATE(259), + [sym_while_statement] = STATE(259), + [sym_try_statement] = STATE(259), + [sym_with_statement] = STATE(259), + [sym_function_definition] = STATE(259), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1028), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37459,19 +43154,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37485,110 +43180,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(167), + [sym_string_start] = ACTIONS(117), }, [126] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(595), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2134), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37603,19 +43306,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37629,110 +43332,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [127] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1558), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1691), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37747,19 +43458,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37773,110 +43484,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [128] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3090), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1695), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37891,19 +43610,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37917,110 +43636,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [129] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(2983), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3832), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38035,19 +43762,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38061,110 +43788,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [130] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(611), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3785), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38179,19 +43914,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38205,110 +43940,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [131] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(613), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1717), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38323,19 +44066,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38349,110 +44092,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [132] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(615), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1720), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38467,19 +44218,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38493,110 +44244,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [133] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1123), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1722), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38611,19 +44370,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38637,110 +44396,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [134] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1437), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1117), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38755,19 +44522,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38781,110 +44548,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [135] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1153), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2145), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38899,19 +44674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38925,110 +44700,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [136] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1450), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1121), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39043,19 +44826,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39069,110 +44852,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [137] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(616), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2148), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39187,19 +44978,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39213,110 +45004,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [138] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(618), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1733), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39331,19 +45130,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39357,110 +45156,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [139] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(619), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1735), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39475,19 +45282,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39501,110 +45308,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [140] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1076), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1736), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39619,19 +45434,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39645,110 +45460,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [141] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3062), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1177), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39763,19 +45586,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39789,110 +45612,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [142] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(2935), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(262), + [sym__simple_statements] = STATE(262), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(262), + [sym_match_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_try_statement] = STATE(262), + [sym_with_statement] = STATE(262), + [sym_function_definition] = STATE(262), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(262), + [sym_decorated_definition] = STATE(262), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(4910), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(262), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(262), + [sym_IF_statement] = STATE(262), + [sym_cdef_statement] = STATE(262), + [sym_ctypedef_statement] = STATE(262), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(262), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39907,19 +45738,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39933,110 +45764,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(151), + [sym_string_start] = ACTIONS(117), }, [143] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(635), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3792), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40051,19 +45890,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40077,110 +45916,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [144] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(639), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1757), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40195,19 +46042,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40221,110 +46068,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [145] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1158), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1761), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40339,19 +46194,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40365,110 +46220,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [146] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1560), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(270), + [sym__simple_statements] = STATE(270), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(270), + [sym_match_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_try_statement] = STATE(270), + [sym_with_statement] = STATE(270), + [sym_function_definition] = STATE(270), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(270), + [sym_decorated_definition] = STATE(270), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1128), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(270), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(270), + [sym_IF_statement] = STATE(270), + [sym_cdef_statement] = STATE(270), + [sym_ctypedef_statement] = STATE(270), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(270), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40483,19 +46346,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40509,110 +46372,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(161), + [sym_string_start] = ACTIONS(117), }, [147] = { - [sym__statement] = STATE(223), - [sym__simple_statements] = STATE(223), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(223), - [sym_decorated_definition] = STATE(223), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(993), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(223), - [sym_IF_statement] = STATE(223), - [sym_cdef_statement] = STATE(223), - [sym_ctypedef_statement] = STATE(223), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(223), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2154), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40627,19 +46498,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40653,110 +46524,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(151), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [148] = { - [sym__statement] = STATE(224), - [sym__simple_statements] = STATE(224), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(224), - [sym_decorated_definition] = STATE(224), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(994), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(224), - [sym_IF_statement] = STATE(224), - [sym_cdef_statement] = STATE(224), - [sym_ctypedef_statement] = STATE(224), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(224), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(273), + [sym__simple_statements] = STATE(273), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(273), + [sym_match_statement] = STATE(273), + [sym_for_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_try_statement] = STATE(273), + [sym_with_statement] = STATE(273), + [sym_function_definition] = STATE(273), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(273), + [sym_decorated_definition] = STATE(273), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1039), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(273), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(273), + [sym_IF_statement] = STATE(273), + [sym_cdef_statement] = STATE(273), + [sym_ctypedef_statement] = STATE(273), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(273), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40771,19 +46650,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40797,110 +46676,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(153), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(165), + [sym_string_start] = ACTIONS(117), }, [149] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(640), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(259), + [sym_match_statement] = STATE(259), + [sym_for_statement] = STATE(259), + [sym_while_statement] = STATE(259), + [sym_try_statement] = STATE(259), + [sym_with_statement] = STATE(259), + [sym_function_definition] = STATE(259), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1041), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40915,19 +46802,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40941,110 +46828,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(167), + [sym_string_start] = ACTIONS(117), }, [150] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(641), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1766), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41059,19 +46954,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41085,110 +46980,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [151] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(643), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1769), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41203,19 +47106,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41229,110 +47132,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [152] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3041), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1772), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41347,19 +47258,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41373,110 +47284,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [153] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(2955), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3849), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41491,19 +47410,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41517,110 +47436,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [154] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(654), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3695), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41635,19 +47562,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41661,110 +47588,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [155] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(656), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1787), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41779,19 +47714,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41805,110 +47740,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [156] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(657), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1789), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41923,19 +47866,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41949,110 +47892,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [157] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(660), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1790), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42067,19 +48018,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42093,110 +48044,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [158] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3089), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1794), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42211,19 +48170,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42237,110 +48196,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [159] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(666), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3854), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42355,19 +48322,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42381,110 +48348,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [160] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(667), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1803), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42499,19 +48474,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42525,110 +48500,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [161] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(669), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1804), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42643,19 +48626,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42669,110 +48652,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [162] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3094), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1807), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42787,19 +48778,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42813,110 +48804,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [163] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(671), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3855), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42931,19 +48930,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42957,110 +48956,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [164] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3097), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1812), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43075,19 +49082,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43101,110 +49108,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [165] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3036), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3857), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43219,19 +49234,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43245,110 +49260,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [166] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(688), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3906), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43363,19 +49386,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43389,110 +49412,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [167] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3077), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1536), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43507,19 +49538,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43533,110 +49564,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [168] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3079), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3916), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43651,19 +49690,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43677,110 +49716,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [169] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3027), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3918), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43795,19 +49842,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43821,110 +49868,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [170] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(697), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3919), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43939,19 +49994,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43965,110 +50020,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [171] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(702), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1215), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44083,19 +50146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44109,110 +50172,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [172] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3126), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1251), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44227,19 +50298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44253,110 +50324,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [173] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3133), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3922), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44371,19 +50450,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44397,110 +50476,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [174] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3138), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3927), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44515,19 +50602,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44541,110 +50628,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [175] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3141), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3929), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44659,19 +50754,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44685,110 +50780,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [176] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(707), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3861), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44803,19 +50906,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44829,110 +50932,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [177] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(711), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1318), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44947,19 +51058,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44973,110 +51084,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [178] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3044), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1459), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45091,19 +51210,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45117,110 +51236,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [179] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3074), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3817), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45235,19 +51362,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45261,110 +51388,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [180] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3065), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3825), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45379,19 +51514,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45405,110 +51540,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [181] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3132), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3826), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45523,19 +51666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45549,110 +51692,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [182] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3071), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3829), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45667,19 +51818,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45693,110 +51844,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [183] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(715), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3871), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45811,19 +51970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45837,110 +51996,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [184] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(717), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1534), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45955,19 +52122,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45981,110 +52148,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [185] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3123), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1557), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46099,19 +52274,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46125,110 +52300,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [186] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3145), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3873), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46243,19 +52426,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46269,110 +52452,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [187] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3150), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3875), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46387,19 +52578,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46413,110 +52604,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [188] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3031), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3887), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46531,19 +52730,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46557,110 +52756,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [189] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3040), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3888), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46675,19 +52882,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46701,110 +52908,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [190] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3046), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3904), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46819,19 +53034,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46845,110 +53060,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [191] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(722), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3910), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46963,19 +53186,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46989,110 +53212,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [192] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(723), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1618), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47107,19 +53338,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47133,110 +53364,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [193] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3045), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1641), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47251,19 +53490,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47277,110 +53516,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [194] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3043), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3830), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47395,19 +53642,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47421,110 +53668,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [195] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3081), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3843), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47539,19 +53794,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47565,110 +53820,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [196] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3122), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3844), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47683,19 +53946,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47709,110 +53972,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [197] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3087), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3851), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47827,19 +54098,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47853,110 +54124,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [198] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(725), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3859), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47971,19 +54250,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47997,110 +54276,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [199] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(727), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1675), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48115,19 +54402,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48141,110 +54428,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [200] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3153), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1686), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48259,19 +54554,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48285,110 +54580,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [201] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3051), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3877), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48403,19 +54706,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48429,110 +54732,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [202] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3055), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3880), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48547,19 +54858,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48573,110 +54884,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [203] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3080), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3881), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48691,19 +55010,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48717,110 +55036,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [204] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(729), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3884), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48835,19 +55162,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48861,110 +55188,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [205] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3146), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1696), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48979,19 +55314,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49005,110 +55340,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [206] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3086), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3890), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49123,19 +55466,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49149,110 +55492,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [207] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3144), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3891), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49267,19 +55618,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49293,110 +55644,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [208] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(730), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3897), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49411,19 +55770,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49437,110 +55796,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [209] = { - [sym__statement] = STATE(220), - [sym__simple_statements] = STATE(220), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(220), - [sym_decorated_definition] = STATE(220), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(3033), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(220), - [sym_IF_statement] = STATE(220), - [sym_cdef_statement] = STATE(220), - [sym_ctypedef_statement] = STATE(220), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(220), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1725), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49555,19 +55922,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49581,110 +55948,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [210] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(650), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(268), + [sym__simple_statements] = STATE(268), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_with_statement] = STATE(268), + [sym_function_definition] = STATE(268), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(268), + [sym_decorated_definition] = STATE(268), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3911), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(268), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(268), + [sym_IF_statement] = STATE(268), + [sym_cdef_statement] = STATE(268), + [sym_ctypedef_statement] = STATE(268), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(268), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49699,19 +56074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49725,110 +56100,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(117), }, [211] = { - [sym__statement] = STATE(222), - [sym__simple_statements] = STATE(222), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(222), - [sym_decorated_definition] = STATE(222), - [sym_decorator] = STATE(3301), - [sym_block] = STATE(1368), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(222), - [sym_IF_statement] = STATE(222), - [sym_cdef_statement] = STATE(222), - [sym_ctypedef_statement] = STATE(222), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(222), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(1730), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49843,19 +56226,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49869,253 +56252,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [212] = { - [sym__statement] = STATE(212), - [sym__simple_statements] = STATE(212), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [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(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_class_definition] = STATE(212), - [sym_decorated_definition] = STATE(212), - [sym_decorator] = STATE(3321), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5088), - [sym_DEF_statement] = STATE(212), - [sym_IF_statement] = STATE(212), - [sym_cdef_statement] = STATE(212), - [sym_ctypedef_statement] = STATE(212), - [sym_storageclass] = STATE(3980), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(212), - [aux_sym_class_definition_repeat1] = STATE(3980), - [aux_sym_decorated_definition_repeat1] = STATE(3321), - [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), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3612), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [213] = { - [sym__statement] = STATE(212), - [sym__simple_statements] = STATE(212), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [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(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_class_definition] = STATE(212), - [sym_decorated_definition] = STATE(212), - [sym_decorator] = STATE(3321), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5088), - [sym_DEF_statement] = STATE(212), - [sym_IF_statement] = STATE(212), - [sym_cdef_statement] = STATE(212), - [sym_ctypedef_statement] = STATE(212), - [sym_storageclass] = STATE(3980), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(212), - [aux_sym_class_definition_repeat1] = STATE(3980), - [aux_sym_decorated_definition_repeat1] = STATE(3321), - [ts_builtin_sym_end] = ACTIONS(307), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3575), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50130,19 +56530,19 @@ static const uint16_t ts_parse_table[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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -50156,109 +56556,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(91), - [anon_sym_include] = ACTIONS(93), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [214] = { - [sym__statement] = STATE(212), - [sym__simple_statements] = STATE(212), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [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(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_class_definition] = STATE(212), - [sym_decorated_definition] = STATE(212), - [sym_decorator] = STATE(3321), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5088), - [sym_DEF_statement] = STATE(212), - [sym_IF_statement] = STATE(212), - [sym_cdef_statement] = STATE(212), - [sym_ctypedef_statement] = STATE(212), - [sym_storageclass] = STATE(3980), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(212), - [aux_sym_class_definition_repeat1] = STATE(3980), - [aux_sym_decorated_definition_repeat1] = STATE(3321), - [ts_builtin_sym_end] = ACTIONS(309), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3454), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50273,19 +56682,19 @@ static const uint16_t ts_parse_table[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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -50299,108 +56708,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(91), - [anon_sym_include] = ACTIONS(93), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [215] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3464), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50415,19 +56834,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -50441,110 +56860,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(311), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [216] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [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(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3321), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5088), - [sym_DEF_statement] = STATE(214), - [sym_IF_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3980), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3980), - [aux_sym_decorated_definition_repeat1] = STATE(3321), - [ts_builtin_sym_end] = ACTIONS(307), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3468), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50559,19 +56986,19 @@ static const uint16_t ts_parse_table[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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -50585,108 +57012,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(91), - [anon_sym_include] = ACTIONS(93), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [217] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3576), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50701,19 +57138,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -50727,109 +57164,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(313), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [218] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3601), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50844,19 +57290,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -50870,252 +57316,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(315), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [219] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), - [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), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3560), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [220] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3587), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51130,19 +57594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -51156,109 +57620,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(359), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [221] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3620), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51273,19 +57746,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -51299,109 +57772,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(361), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [222] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3633), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51416,19 +57898,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -51442,109 +57924,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(363), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [223] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3646), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51559,19 +58050,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -51585,109 +58076,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(365), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [224] = { - [sym__statement] = STATE(219), - [sym__simple_statements] = STATE(219), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [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(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_class_definition] = STATE(219), - [sym_decorated_definition] = STATE(219), - [sym_decorator] = STATE(3301), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(5100), - [sym_DEF_statement] = STATE(219), - [sym_IF_statement] = STATE(219), - [sym_cdef_statement] = STATE(219), - [sym_ctypedef_statement] = STATE(219), - [sym_storageclass] = STATE(3957), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [aux_sym_module_repeat1] = STATE(219), - [aux_sym_class_definition_repeat1] = STATE(3957), - [aux_sym_decorated_definition_repeat1] = STATE(3301), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3679), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51702,19 +58202,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [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_class] = ACTIONS(135), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -51728,99 +58228,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(367), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [225] = { - [sym__simple_statements] = STATE(708), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4778), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3631), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51830,13 +58354,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -51848,100 +58380,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(385), - [sym__indent] = ACTIONS(387), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [226] = { - [sym__simple_statements] = STATE(716), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4805), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3642), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51951,13 +58506,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -51969,100 +58532,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(389), - [sym__indent] = ACTIONS(391), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [227] = { - [sym__simple_statements] = STATE(689), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(5221), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3667), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52072,13 +58658,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -52090,100 +58684,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(393), - [sym__indent] = ACTIONS(395), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [228] = { - [sym__simple_statements] = STATE(1359), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4945), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3455), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52193,13 +58810,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -52211,100 +58836,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [229] = { - [sym__simple_statements] = STATE(698), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(5259), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3461), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52314,13 +58962,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -52332,100 +58988,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [230] = { - [sym__simple_statements] = STATE(1386), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4930), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3475), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52435,13 +59114,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -52453,100 +59140,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(405), - [sym__indent] = ACTIONS(407), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [231] = { - [sym__simple_statements] = STATE(726), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4837), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3509), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52556,13 +59266,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -52574,100 +59292,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(409), - [sym__indent] = ACTIONS(411), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [232] = { - [sym__simple_statements] = STATE(1342), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4830), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3583), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52677,13 +59418,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -52695,100 +59444,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(413), - [sym__indent] = ACTIONS(415), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4892), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3594), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52798,13 +59570,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -52816,100 +59596,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(417), - [sym__indent] = ACTIONS(419), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(5191), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3596), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52919,13 +59722,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -52937,100 +59748,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(421), - [sym__indent] = ACTIONS(423), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [235] = { - [sym__simple_statements] = STATE(721), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4824), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3616), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -53040,13 +59874,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -53058,100 +59900,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(425), - [sym__indent] = ACTIONS(427), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4834), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3621), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -53161,13 +60026,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -53179,100 +60052,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(429), - [sym__indent] = ACTIONS(431), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [237] = { - [sym__simple_statements] = STATE(1200), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(5045), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3623), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -53282,13 +60178,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -53300,100 +60204,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(433), - [sym__indent] = ACTIONS(435), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4975), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3640), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -53403,13 +60330,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -53421,100 +60356,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(437), - [sym__indent] = ACTIONS(439), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [239] = { - [sym__simple_statements] = STATE(1301), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(5240), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3657), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -53524,13 +60482,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -53542,100 +60508,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(441), - [sym__indent] = ACTIONS(443), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(5264), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3485), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -53645,13 +60634,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -53663,100 +60660,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [241] = { - [sym__simple_statements] = STATE(1215), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_int_type] = STATE(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(5138), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3492), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -53766,13 +60786,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -53784,100 +60812,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(449), - [sym__indent] = ACTIONS(451), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3648), - [sym__signedness] = STATE(3253), - [sym__longness] = STATE(3480), - [sym_function_pointer_type] = STATE(3648), - [sym_c_type] = STATE(4942), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(369), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3494), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -53887,13 +60938,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -53905,103 +60964,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(453), - [sym__indent] = ACTIONS(455), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [243] = { - [sym__simple_statements] = STATE(1478), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(1999), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1992), - [sym_subscript] = STATE(1992), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(457), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3495), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [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_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), @@ -54009,14 +61090,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(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(469), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_class] = ACTIONS(135), + [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), @@ -54028,93 +61116,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(475), - [sym__indent] = ACTIONS(477), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [244] = { - [sym__simple_statements] = STATE(1510), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(1999), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1992), - [sym_subscript] = STATE(1992), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(457), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3497), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [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_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), @@ -54122,14 +61242,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(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(469), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_class] = ACTIONS(135), + [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), @@ -54141,93 +61268,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(479), - [sym__indent] = ACTIONS(481), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [245] = { - [sym__simple_statements] = STATE(1549), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(1999), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1992), - [sym_subscript] = STATE(1992), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(457), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3498), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [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_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), @@ -54235,14 +61394,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(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(469), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_class] = ACTIONS(135), + [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), @@ -54254,93 +61420,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(483), - [sym__indent] = ACTIONS(485), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [246] = { - [sym__simple_statements] = STATE(1433), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(1999), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1992), - [sym_subscript] = STATE(1992), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(457), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3500), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [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_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), @@ -54348,14 +61546,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(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(469), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_class] = ACTIONS(135), + [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), @@ -54367,93 +61572,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(487), - [sym__indent] = ACTIONS(489), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [247] = { - [sym__simple_statements] = STATE(1602), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(1999), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1992), - [sym_subscript] = STATE(1992), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(457), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3533), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [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_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), @@ -54461,14 +61698,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(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(469), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_class] = ACTIONS(135), + [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), @@ -54480,93 +61724,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(491), - [sym__indent] = ACTIONS(493), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [248] = { - [sym__simple_statements] = STATE(1515), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(1999), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1992), - [sym_subscript] = STATE(1992), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(457), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3535), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [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_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), @@ -54574,14 +61850,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(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(469), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_class] = ACTIONS(135), + [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), @@ -54593,93 +61876,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(495), - [sym__indent] = ACTIONS(497), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [249] = { - [sym__simple_statements] = STATE(1480), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(1999), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1992), - [sym_subscript] = STATE(1992), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(457), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3537), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [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_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), @@ -54687,14 +62002,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(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(469), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_class] = ACTIONS(135), + [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), @@ -54706,93 +62028,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(499), - [sym__indent] = ACTIONS(501), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [250] = { - [sym__simple_statements] = STATE(1531), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(1999), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1992), - [sym_subscript] = STATE(1992), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(457), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3540), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), [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_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), @@ -54800,14 +62154,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(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(469), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_class] = ACTIONS(135), + [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), @@ -54819,80 +62180,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [251] = { - [sym__simple_statements] = STATE(1444), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3543), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54907,13 +62306,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -54925,80 +62332,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(507), - [sym__indent] = ACTIONS(509), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [252] = { - [sym__simple_statements] = STATE(1424), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3549), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55013,13 +62458,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55031,80 +62484,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(511), - [sym__indent] = ACTIONS(513), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [253] = { - [sym__simple_statements] = STATE(1015), - [sym_import_statement] = STATE(4981), - [sym_future_import_statement] = STATE(4981), - [sym_import_from_statement] = STATE(4981), - [sym_print_statement] = STATE(4981), - [sym_assert_statement] = STATE(4981), - [sym_expression_statement] = STATE(4981), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4981), - [sym_delete_statement] = STATE(4981), - [sym_raise_statement] = STATE(4981), - [sym_pass_statement] = STATE(4981), - [sym_break_statement] = STATE(4981), - [sym_continue_statement] = STATE(4981), - [sym_global_statement] = STATE(4981), - [sym_nonlocal_statement] = STATE(4981), - [sym_exec_statement] = STATE(4981), - [sym_type_alias_statement] = STATE(4981), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4981), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3550), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55119,13 +62610,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55137,80 +62636,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(515), - [sym__indent] = ACTIONS(517), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [254] = { - [sym__simple_statements] = STATE(1016), - [sym_import_statement] = STATE(5008), - [sym_future_import_statement] = STATE(5008), - [sym_import_from_statement] = STATE(5008), - [sym_print_statement] = STATE(5008), - [sym_assert_statement] = STATE(5008), - [sym_expression_statement] = STATE(5008), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5008), - [sym_delete_statement] = STATE(5008), - [sym_raise_statement] = STATE(5008), - [sym_pass_statement] = STATE(5008), - [sym_break_statement] = STATE(5008), - [sym_continue_statement] = STATE(5008), - [sym_global_statement] = STATE(5008), - [sym_nonlocal_statement] = STATE(5008), - [sym_exec_statement] = STATE(5008), - [sym_type_alias_statement] = STATE(5008), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5008), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3561), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55225,13 +62762,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55243,80 +62788,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(519), - [sym__indent] = ACTIONS(521), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [255] = { - [sym__simple_statements] = STATE(5288), - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3563), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55331,13 +62914,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55349,80 +62940,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(523), - [sym__indent] = ACTIONS(525), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [256] = { - [sym__simple_statements] = STATE(1100), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(272), + [sym__simple_statements] = STATE(272), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(272), + [sym_match_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_try_statement] = STATE(272), + [sym_with_statement] = STATE(272), + [sym_function_definition] = STATE(272), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(272), + [sym_decorated_definition] = STATE(272), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(3573), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(272), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(272), + [sym_IF_statement] = STATE(272), + [sym_cdef_statement] = STATE(272), + [sym_ctypedef_statement] = STATE(272), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(272), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55437,13 +63066,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55455,80 +63092,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(527), - [sym__indent] = ACTIONS(529), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(117), }, [257] = { - [sym__simple_statements] = STATE(1241), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(271), + [sym__simple_statements] = STATE(271), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(271), + [sym_match_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_try_statement] = STATE(271), + [sym_with_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(271), + [sym_decorated_definition] = STATE(271), + [sym_decorator] = STATE(4107), + [sym_block] = STATE(2138), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(271), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(271), + [sym_IF_statement] = STATE(271), + [sym_cdef_statement] = STATE(271), + [sym_ctypedef_statement] = STATE(271), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(271), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55543,13 +63218,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55561,80 +63244,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(531), - [sym__indent] = ACTIONS(533), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(163), + [sym_string_start] = ACTIONS(117), }, [258] = { - [sym__simple_statements] = STATE(567), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(264), + [sym__simple_statements] = STATE(264), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_if_statement] = STATE(264), + [sym_match_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_try_statement] = STATE(264), + [sym_with_statement] = STATE(264), + [sym_function_definition] = STATE(264), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_class_definition] = STATE(264), + [sym_decorated_definition] = STATE(264), + [sym_decorator] = STATE(4111), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(264), + [sym_include_statement] = STATE(6040), + [sym_DEF_statement] = STATE(264), + [sym_IF_statement] = STATE(264), + [sym_cdef_statement] = STATE(264), + [sym_ctypedef_statement] = STATE(264), + [sym_storageclass] = STATE(4717), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(264), + [aux_sym_class_definition_repeat1] = STATE(4717), + [aux_sym_decorated_definition_repeat1] = STATE(4111), + [aux_sym_integer_repeat4] = STATE(2428), + [ts_builtin_sym_end] = ACTIONS(169), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55649,13 +63370,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(373), - [anon_sym_async] = ACTIONS(373), + [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(59), [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), @@ -55667,80 +63396,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(535), - [sym__indent] = ACTIONS(537), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(99), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(103), + [anon_sym_IF] = ACTIONS(105), + [anon_sym_cdef] = ACTIONS(107), + [anon_sym_cpdef] = ACTIONS(107), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(111), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, [259] = { - [sym__simple_statements] = STATE(1262), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55755,13 +63520,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55773,80 +63546,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(539), - [sym__indent] = ACTIONS(541), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(171), + [sym_string_start] = ACTIONS(117), }, [260] = { - [sym__simple_statements] = STATE(1291), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55861,13 +63671,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55879,80 +63697,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(543), - [sym__indent] = ACTIONS(545), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(173), + [sym_string_start] = ACTIONS(117), }, [261] = { - [sym__simple_statements] = STATE(571), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55967,13 +63822,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -55985,80 +63848,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(547), - [sym__indent] = ACTIONS(549), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(175), + [sym_string_start] = ACTIONS(117), }, [262] = { - [sym__simple_statements] = STATE(1043), - [sym_import_statement] = STATE(4858), - [sym_future_import_statement] = STATE(4858), - [sym_import_from_statement] = STATE(4858), - [sym_print_statement] = STATE(4858), - [sym_assert_statement] = STATE(4858), - [sym_expression_statement] = STATE(4858), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4858), - [sym_delete_statement] = STATE(4858), - [sym_raise_statement] = STATE(4858), - [sym_pass_statement] = STATE(4858), - [sym_break_statement] = STATE(4858), - [sym_continue_statement] = STATE(4858), - [sym_global_statement] = STATE(4858), - [sym_nonlocal_statement] = STATE(4858), - [sym_exec_statement] = STATE(4858), - [sym_type_alias_statement] = STATE(4858), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4858), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56073,13 +63973,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -56091,80 +63999,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(551), - [sym__indent] = ACTIONS(553), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(177), + [sym_string_start] = ACTIONS(117), }, [263] = { - [sym__simple_statements] = STATE(1116), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_if_statement] = STATE(258), + [sym_match_statement] = STATE(258), + [sym_for_statement] = STATE(258), + [sym_while_statement] = STATE(258), + [sym_try_statement] = STATE(258), + [sym_with_statement] = STATE(258), + [sym_function_definition] = STATE(258), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4111), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6040), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(4717), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(4717), + [aux_sym_decorated_definition_repeat1] = STATE(4111), + [aux_sym_integer_repeat4] = STATE(2428), + [ts_builtin_sym_end] = ACTIONS(179), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56179,13 +64125,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(373), - [anon_sym_async] = ACTIONS(373), + [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(59), [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), @@ -56197,80 +64151,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(555), - [sym__indent] = ACTIONS(557), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(99), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(103), + [anon_sym_IF] = ACTIONS(105), + [anon_sym_cdef] = ACTIONS(107), + [anon_sym_cpdef] = ACTIONS(107), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(111), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__statement] = STATE(264), + [sym__simple_statements] = STATE(264), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_if_statement] = STATE(264), + [sym_match_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_try_statement] = STATE(264), + [sym_with_statement] = STATE(264), + [sym_function_definition] = STATE(264), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_class_definition] = STATE(264), + [sym_decorated_definition] = STATE(264), + [sym_decorator] = STATE(4111), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(264), + [sym_include_statement] = STATE(6040), + [sym_DEF_statement] = STATE(264), + [sym_IF_statement] = STATE(264), + [sym_cdef_statement] = STATE(264), + [sym_ctypedef_statement] = STATE(264), + [sym_storageclass] = STATE(4717), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(264), + [aux_sym_class_definition_repeat1] = STATE(4717), + [aux_sym_decorated_definition_repeat1] = STATE(4111), + [aux_sym_integer_repeat4] = STATE(2428), + [ts_builtin_sym_end] = ACTIONS(181), + [sym_identifier] = ACTIONS(183), + [anon_sym_import] = ACTIONS(186), + [anon_sym_cimport] = ACTIONS(186), + [anon_sym_from] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_print] = ACTIONS(198), + [anon_sym_assert] = ACTIONS(201), + [anon_sym_return] = ACTIONS(204), + [anon_sym_del] = ACTIONS(207), + [anon_sym_raise] = ACTIONS(210), + [anon_sym_pass] = ACTIONS(213), + [anon_sym_break] = ACTIONS(216), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_if] = ACTIONS(222), + [anon_sym_match] = ACTIONS(225), + [anon_sym_async] = ACTIONS(228), + [anon_sym_for] = ACTIONS(231), + [anon_sym_while] = ACTIONS(234), + [anon_sym_try] = ACTIONS(237), + [anon_sym_with] = ACTIONS(240), + [anon_sym_def] = ACTIONS(243), + [anon_sym_global] = ACTIONS(246), + [anon_sym_nonlocal] = ACTIONS(249), + [anon_sym_exec] = ACTIONS(252), + [anon_sym_type] = ACTIONS(255), + [anon_sym_class] = ACTIONS(258), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_not] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_lambda] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(285), + [anon_sym_None] = ACTIONS(288), + [anon_sym_0x] = ACTIONS(291), + [anon_sym_0X] = ACTIONS(291), + [anon_sym_0o] = ACTIONS(294), + [anon_sym_0O] = ACTIONS(294), + [anon_sym_0b] = ACTIONS(297), + [anon_sym_0B] = ACTIONS(297), + [aux_sym_integer_token4] = ACTIONS(300), + [sym_float] = ACTIONS(303), + [anon_sym_await] = ACTIONS(306), + [anon_sym_api] = ACTIONS(309), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(315), + [anon_sym_include] = ACTIONS(318), + [anon_sym_DEF] = ACTIONS(321), + [anon_sym_IF] = ACTIONS(324), + [anon_sym_cdef] = ACTIONS(327), + [anon_sym_cpdef] = ACTIONS(327), + [anon_sym_new] = ACTIONS(330), + [anon_sym_ctypedef] = ACTIONS(333), + [anon_sym_public] = ACTIONS(336), + [anon_sym_packed] = ACTIONS(336), + [anon_sym_inline] = ACTIONS(336), + [anon_sym_readonly] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(339), + [sym_string_start] = ACTIONS(342), + }, + [265] = { + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56285,13 +64426,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -56303,80 +64452,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(429), - [sym__indent] = ACTIONS(431), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(345), + [sym_string_start] = ACTIONS(117), }, - [265] = { - [sym__simple_statements] = STATE(1156), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [266] = { + [sym__statement] = STATE(264), + [sym__simple_statements] = STATE(264), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_if_statement] = STATE(264), + [sym_match_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_try_statement] = STATE(264), + [sym_with_statement] = STATE(264), + [sym_function_definition] = STATE(264), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_class_definition] = STATE(264), + [sym_decorated_definition] = STATE(264), + [sym_decorator] = STATE(4111), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(264), + [sym_include_statement] = STATE(6040), + [sym_DEF_statement] = STATE(264), + [sym_IF_statement] = STATE(264), + [sym_cdef_statement] = STATE(264), + [sym_ctypedef_statement] = STATE(264), + [sym_storageclass] = STATE(4717), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(264), + [aux_sym_class_definition_repeat1] = STATE(4717), + [aux_sym_decorated_definition_repeat1] = STATE(4111), + [aux_sym_integer_repeat4] = STATE(2428), + [ts_builtin_sym_end] = ACTIONS(179), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56391,13 +64578,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(373), - [anon_sym_async] = ACTIONS(373), + [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(59), [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), @@ -56409,80 +64604,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(559), - [sym__indent] = ACTIONS(561), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(99), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(103), + [anon_sym_IF] = ACTIONS(105), + [anon_sym_cdef] = ACTIONS(107), + [anon_sym_cpdef] = ACTIONS(107), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(111), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [267] = { + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(183), + [anon_sym_import] = ACTIONS(186), + [anon_sym_cimport] = ACTIONS(186), + [anon_sym_from] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_print] = ACTIONS(198), + [anon_sym_assert] = ACTIONS(201), + [anon_sym_return] = ACTIONS(204), + [anon_sym_del] = ACTIONS(207), + [anon_sym_raise] = ACTIONS(210), + [anon_sym_pass] = ACTIONS(213), + [anon_sym_break] = ACTIONS(216), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_if] = ACTIONS(347), + [anon_sym_match] = ACTIONS(350), + [anon_sym_async] = ACTIONS(353), + [anon_sym_for] = ACTIONS(356), + [anon_sym_while] = ACTIONS(359), + [anon_sym_try] = ACTIONS(362), + [anon_sym_with] = ACTIONS(365), + [anon_sym_def] = ACTIONS(368), + [anon_sym_global] = ACTIONS(246), + [anon_sym_nonlocal] = ACTIONS(249), + [anon_sym_exec] = ACTIONS(252), + [anon_sym_type] = ACTIONS(255), + [anon_sym_class] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_not] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_lambda] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(285), + [anon_sym_None] = ACTIONS(288), + [anon_sym_0x] = ACTIONS(291), + [anon_sym_0X] = ACTIONS(291), + [anon_sym_0o] = ACTIONS(294), + [anon_sym_0O] = ACTIONS(294), + [anon_sym_0b] = ACTIONS(297), + [anon_sym_0B] = ACTIONS(297), + [aux_sym_integer_token4] = ACTIONS(300), + [sym_float] = ACTIONS(303), + [anon_sym_await] = ACTIONS(306), + [anon_sym_api] = ACTIONS(309), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(374), + [anon_sym_include] = ACTIONS(318), + [anon_sym_DEF] = ACTIONS(377), + [anon_sym_IF] = ACTIONS(380), + [anon_sym_cdef] = ACTIONS(383), + [anon_sym_cpdef] = ACTIONS(383), + [anon_sym_new] = ACTIONS(330), + [anon_sym_ctypedef] = ACTIONS(386), + [anon_sym_public] = ACTIONS(336), + [anon_sym_packed] = ACTIONS(336), + [anon_sym_inline] = ACTIONS(336), + [anon_sym_readonly] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(339), + [sym__dedent] = ACTIONS(181), + [sym_string_start] = ACTIONS(342), + }, + [268] = { + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56497,13 +64879,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -56515,80 +64905,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(563), - [sym__indent] = ACTIONS(565), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(389), + [sym_string_start] = ACTIONS(117), }, - [267] = { - [sym__simple_statements] = STATE(1376), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [269] = { + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56603,13 +65030,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -56621,80 +65056,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(567), - [sym__indent] = ACTIONS(569), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(391), + [sym_string_start] = ACTIONS(117), }, - [268] = { - [sym__simple_statements] = STATE(1495), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [270] = { + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56709,13 +65181,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -56727,80 +65207,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(571), - [sym__indent] = ACTIONS(573), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(393), + [sym_string_start] = ACTIONS(117), }, - [269] = { - [sym__simple_statements] = STATE(586), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [271] = { + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56815,13 +65332,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -56833,80 +65358,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(575), - [sym__indent] = ACTIONS(577), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(395), + [sym_string_start] = ACTIONS(117), }, - [270] = { - [sym__simple_statements] = STATE(1520), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [272] = { + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56921,13 +65483,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -56939,80 +65509,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(579), - [sym__indent] = ACTIONS(581), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(397), + [sym_string_start] = ACTIONS(117), }, - [271] = { - [sym__simple_statements] = STATE(1380), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [273] = { + [sym__statement] = STATE(267), + [sym__simple_statements] = STATE(267), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_if_statement] = STATE(267), + [sym_match_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_try_statement] = STATE(267), + [sym_with_statement] = STATE(267), + [sym_function_definition] = STATE(267), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_class_definition] = STATE(267), + [sym_decorated_definition] = STATE(267), + [sym_decorator] = STATE(4107), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_property_definition] = STATE(267), + [sym_include_statement] = STATE(6143), + [sym_DEF_statement] = STATE(267), + [sym_IF_statement] = STATE(267), + [sym_cdef_statement] = STATE(267), + [sym_ctypedef_statement] = STATE(267), + [sym_storageclass] = STATE(4781), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_module_repeat1] = STATE(267), + [aux_sym_class_definition_repeat1] = STATE(4781), + [aux_sym_decorated_definition_repeat1] = STATE(4107), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57027,13 +65634,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_async] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(129), + [anon_sym_with] = ACTIONS(131), + [anon_sym_def] = ACTIONS(133), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(135), [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), @@ -57045,85 +65660,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(583), - [sym__indent] = ACTIONS(585), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(137), + [anon_sym_include] = ACTIONS(101), + [anon_sym_DEF] = ACTIONS(139), + [anon_sym_IF] = ACTIONS(141), + [anon_sym_cdef] = ACTIONS(143), + [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_new] = ACTIONS(109), + [anon_sym_ctypedef] = ACTIONS(145), + [anon_sym_public] = ACTIONS(113), + [anon_sym_packed] = ACTIONS(113), + [anon_sym_inline] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(115), + [sym__dedent] = ACTIONS(399), + [sym_string_start] = ACTIONS(117), }, - [272] = { - [sym__simple_statements] = STATE(589), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [274] = { + [sym__simple_statements] = STATE(1414), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6100), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -57133,8 +65770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57151,297 +65788,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(587), - [sym__indent] = ACTIONS(589), - [sym_string_start] = ACTIONS(109), - }, - [273] = { - [sym__simple_statements] = STATE(590), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [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(591), - [sym__indent] = ACTIONS(593), - [sym_string_start] = ACTIONS(109), - }, - [274] = { - [sym__simple_statements] = STATE(1122), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [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(595), - [sym__indent] = ACTIONS(597), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), + [sym_string_start] = ACTIONS(117), }, [275] = { - [sym__simple_statements] = STATE(1383), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1615), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6063), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -57451,8 +65899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57469,85 +65917,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(599), - [sym__indent] = ACTIONS(601), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(421), + [sym__indent] = ACTIONS(423), + [sym_string_start] = ACTIONS(117), }, [276] = { - [sym__simple_statements] = STATE(1487), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3662), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5770), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -57557,8 +66028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57575,85 +66046,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(603), - [sym__indent] = ACTIONS(605), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), + [sym_string_start] = ACTIONS(117), }, [277] = { - [sym__simple_statements] = STATE(1367), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3628), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5822), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -57663,8 +66157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57681,85 +66175,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(607), - [sym__indent] = ACTIONS(609), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), + [sym_string_start] = ACTIONS(117), }, [278] = { - [sym__simple_statements] = STATE(1372), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3834), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5894), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -57769,8 +66286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57787,85 +66304,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(611), - [sym__indent] = ACTIONS(613), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(433), + [sym__indent] = ACTIONS(435), + [sym_string_start] = ACTIONS(117), }, [279] = { - [sym__simple_statements] = STATE(1001), - [sym_import_statement] = STATE(4858), - [sym_future_import_statement] = STATE(4858), - [sym_import_from_statement] = STATE(4858), - [sym_print_statement] = STATE(4858), - [sym_assert_statement] = STATE(4858), - [sym_expression_statement] = STATE(4858), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4858), - [sym_delete_statement] = STATE(4858), - [sym_raise_statement] = STATE(4858), - [sym_pass_statement] = STATE(4858), - [sym_break_statement] = STATE(4858), - [sym_continue_statement] = STATE(4858), - [sym_global_statement] = STATE(4858), - [sym_nonlocal_statement] = STATE(4858), - [sym_exec_statement] = STATE(4858), - [sym_type_alias_statement] = STATE(4858), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4858), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1271), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6162), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -57875,8 +66415,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57893,85 +66433,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(615), - [sym__indent] = ACTIONS(617), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(437), + [sym__indent] = ACTIONS(439), + [sym_string_start] = ACTIONS(117), }, [280] = { - [sym__simple_statements] = STATE(1149), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3903), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6300), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -57981,8 +66544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57999,85 +66562,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(619), - [sym__indent] = ACTIONS(621), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(441), + [sym__indent] = ACTIONS(443), + [sym_string_start] = ACTIONS(117), }, [281] = { - [sym__simple_statements] = STATE(1409), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1324), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5935), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58087,8 +66673,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58105,85 +66691,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(623), - [sym__indent] = ACTIONS(625), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(445), + [sym__indent] = ACTIONS(447), + [sym_string_start] = ACTIONS(117), }, [282] = { - [sym__simple_statements] = STATE(1386), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1650), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5801), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58193,8 +66802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58211,85 +66820,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(405), - [sym__indent] = ACTIONS(407), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(449), + [sym__indent] = ACTIONS(451), + [sym_string_start] = ACTIONS(117), }, [283] = { - [sym__simple_statements] = STATE(1003), - [sym_import_statement] = STATE(4944), - [sym_future_import_statement] = STATE(4944), - [sym_import_from_statement] = STATE(4944), - [sym_print_statement] = STATE(4944), - [sym_assert_statement] = STATE(4944), - [sym_expression_statement] = STATE(4944), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4944), - [sym_delete_statement] = STATE(4944), - [sym_raise_statement] = STATE(4944), - [sym_pass_statement] = STATE(4944), - [sym_break_statement] = STATE(4944), - [sym_continue_statement] = STATE(4944), - [sym_global_statement] = STATE(4944), - [sym_nonlocal_statement] = STATE(4944), - [sym_exec_statement] = STATE(4944), - [sym_type_alias_statement] = STATE(4944), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4944), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3850), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6263), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58299,8 +66931,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58317,85 +66949,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(627), - [sym__indent] = ACTIONS(629), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(453), + [sym__indent] = ACTIONS(455), + [sym_string_start] = ACTIONS(117), }, [284] = { - [sym__simple_statements] = STATE(1180), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3499), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5839), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58405,8 +67060,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58423,85 +67078,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(631), - [sym__indent] = ACTIONS(633), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(457), + [sym__indent] = ACTIONS(459), + [sym_string_start] = ACTIONS(117), }, [285] = { - [sym__simple_statements] = STATE(1182), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1468), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5721), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58511,8 +67189,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58529,85 +67207,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(635), - [sym__indent] = ACTIONS(637), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(461), + [sym__indent] = ACTIONS(463), + [sym_string_start] = ACTIONS(117), }, [286] = { - [sym__simple_statements] = STATE(592), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3686), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6303), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58617,8 +67318,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58635,85 +67336,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(639), - [sym__indent] = ACTIONS(641), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(465), + [sym__indent] = ACTIONS(467), + [sym_string_start] = ACTIONS(117), }, [287] = { - [sym__simple_statements] = STATE(593), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1537), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6012), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58723,8 +67447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58741,85 +67465,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(643), - [sym__indent] = ACTIONS(645), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(469), + [sym__indent] = ACTIONS(471), + [sym_string_start] = ACTIONS(117), }, [288] = { - [sym__simple_statements] = STATE(594), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3821), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6240), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58829,8 +67576,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58847,85 +67594,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(647), - [sym__indent] = ACTIONS(649), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(473), + [sym__indent] = ACTIONS(475), + [sym_string_start] = ACTIONS(117), }, [289] = { - [sym__simple_statements] = STATE(1183), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1189), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5919), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -58935,8 +67705,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58953,85 +67723,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(651), - [sym__indent] = ACTIONS(653), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(477), + [sym__indent] = ACTIONS(479), + [sym_string_start] = ACTIONS(117), }, [290] = { - [sym__simple_statements] = STATE(1058), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1332), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6187), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -59041,8 +67834,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59059,85 +67852,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(655), - [sym__indent] = ACTIONS(657), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(481), + [sym__indent] = ACTIONS(483), + [sym_string_start] = ACTIONS(117), }, [291] = { - [sym__simple_statements] = STATE(1381), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3586), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5735), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -59147,8 +67963,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59165,85 +67981,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(659), - [sym__indent] = ACTIONS(661), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(485), + [sym__indent] = ACTIONS(487), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3506), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5800), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -59253,8 +68092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59271,85 +68110,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(417), - [sym__indent] = ACTIONS(419), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(489), + [sym__indent] = ACTIONS(491), + [sym_string_start] = ACTIONS(117), }, [293] = { - [sym__simple_statements] = STATE(5472), - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1223), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5864), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -59359,8 +68221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59377,85 +68239,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(663), - [sym__indent] = ACTIONS(665), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), + [sym_string_start] = ACTIONS(117), }, [294] = { - [sym__simple_statements] = STATE(1288), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3811), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5759), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -59465,8 +68350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59483,85 +68368,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(667), - [sym__indent] = ACTIONS(669), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(3846), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6103), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -59571,8 +68479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59589,85 +68497,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(671), - [sym__indent] = ACTIONS(673), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), + [sym_string_start] = ACTIONS(117), }, [296] = { - [sym__simple_statements] = STATE(610), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1677), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(6093), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -59677,8 +68608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59695,85 +68626,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(675), - [sym__indent] = ACTIONS(677), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), + [sym_string_start] = ACTIONS(117), }, [297] = { - [sym__simple_statements] = STATE(5486), - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(1190), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_int_type] = STATE(4419), + [sym__signedness] = STATE(4025), + [sym__longness] = STATE(4241), + [sym_function_pointer_type] = STATE(4419), + [sym_c_type] = STATE(5774), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -59783,8 +68737,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59801,87 +68755,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(679), - [sym__indent] = ACTIONS(681), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), + [anon_sym_new] = ACTIONS(109), + [anon_sym_signed] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_char] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [anon_sym_long] = ACTIONS(413), + [anon_sym_const] = ACTIONS(415), + [anon_sym_volatile] = ACTIONS(415), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), + [sym_string_start] = ACTIONS(117), }, [298] = { - [sym__simple_statements] = STATE(1284), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(2178), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2403), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4602), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2402), + [sym_subscript] = STATE(2402), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(513), [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(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_print] = ACTIONS(519), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -59889,13 +68867,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_match] = ACTIONS(521), + [anon_sym_async] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(523), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(525), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(527), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -59907,87 +68886,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(683), - [sym__indent] = ACTIONS(685), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(529), + [anon_sym_api] = ACTIONS(521), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(531), + [sym__indent] = ACTIONS(533), + [sym_string_start] = ACTIONS(117), }, [299] = { - [sym__simple_statements] = STATE(614), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(2128), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2403), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4602), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2402), + [sym_subscript] = STATE(2402), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(513), [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(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_print] = ACTIONS(519), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -59995,13 +68988,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_match] = ACTIONS(521), + [anon_sym_async] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(523), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(525), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(527), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -60013,87 +69007,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(687), - [sym__indent] = ACTIONS(689), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(529), + [anon_sym_api] = ACTIONS(521), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(535), + [sym__indent] = ACTIONS(537), + [sym_string_start] = ACTIONS(117), }, [300] = { - [sym__simple_statements] = STATE(1550), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(2169), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2403), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4602), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2402), + [sym_subscript] = STATE(2402), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(513), [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(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_print] = ACTIONS(519), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -60101,13 +69109,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_match] = ACTIONS(521), + [anon_sym_async] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(523), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(525), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(527), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -60119,87 +69128,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(691), - [sym__indent] = ACTIONS(693), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(529), + [anon_sym_api] = ACTIONS(521), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(539), + [sym__indent] = ACTIONS(541), + [sym_string_start] = ACTIONS(117), }, [301] = { - [sym__simple_statements] = STATE(1159), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(2146), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2403), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4602), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2402), + [sym_subscript] = STATE(2402), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(513), [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(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_print] = ACTIONS(519), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -60207,13 +69230,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_match] = ACTIONS(521), + [anon_sym_async] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(523), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(525), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(527), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -60225,87 +69249,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(695), - [sym__indent] = ACTIONS(697), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(529), + [anon_sym_api] = ACTIONS(521), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(543), + [sym__indent] = ACTIONS(545), + [sym_string_start] = ACTIONS(117), }, [302] = { - [sym__simple_statements] = STATE(1312), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(2024), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2403), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4602), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2402), + [sym_subscript] = STATE(2402), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(513), [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(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_print] = ACTIONS(519), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -60313,13 +69351,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_match] = ACTIONS(521), + [anon_sym_async] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(523), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(525), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(527), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -60331,87 +69370,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(699), - [sym__indent] = ACTIONS(701), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(529), + [anon_sym_api] = ACTIONS(521), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(547), + [sym__indent] = ACTIONS(549), + [sym_string_start] = ACTIONS(117), }, [303] = { - [sym__simple_statements] = STATE(1215), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(2141), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2403), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4602), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2402), + [sym_subscript] = STATE(2402), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(513), [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(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_print] = ACTIONS(519), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -60419,13 +69472,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_match] = ACTIONS(521), + [anon_sym_async] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(523), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(525), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(527), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -60437,80 +69491,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(449), - [sym__indent] = ACTIONS(451), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(529), + [anon_sym_api] = ACTIONS(521), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(551), + [sym__indent] = ACTIONS(553), + [sym_string_start] = ACTIONS(117), }, [304] = { - [sym__simple_statements] = STATE(1448), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2135), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2403), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4602), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2402), + [sym_subscript] = STATE(2402), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(513), + [anon_sym_import] = ACTIONS(11), + [anon_sym_cimport] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_print] = ACTIONS(519), + [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(521), + [anon_sym_async] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(525), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(527), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(529), + [anon_sym_api] = ACTIONS(521), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(555), + [sym__indent] = ACTIONS(557), + [sym_string_start] = ACTIONS(117), + }, + [305] = { + [sym__simple_statements] = STATE(2116), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2403), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4602), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2402), + [sym_subscript] = STATE(2402), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(513), + [anon_sym_import] = ACTIONS(11), + [anon_sym_cimport] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_print] = ACTIONS(519), + [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(521), + [anon_sym_async] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(525), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(527), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(529), + [anon_sym_api] = ACTIONS(521), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(559), + [sym__indent] = ACTIONS(561), + [sym_string_start] = ACTIONS(117), + }, + [306] = { + [sym__simple_statements] = STATE(1263), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60525,8 +69829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60543,80 +69847,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(703), - [sym__indent] = ACTIONS(705), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(563), + [sym__indent] = ACTIONS(565), + [sym_string_start] = ACTIONS(117), }, - [305] = { - [sym__simple_statements] = STATE(1045), - [sym_import_statement] = STATE(4981), - [sym_future_import_statement] = STATE(4981), - [sym_import_from_statement] = STATE(4981), - [sym_print_statement] = STATE(4981), - [sym_assert_statement] = STATE(4981), - [sym_expression_statement] = STATE(4981), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4981), - [sym_delete_statement] = STATE(4981), - [sym_raise_statement] = STATE(4981), - [sym_pass_statement] = STATE(4981), - [sym_break_statement] = STATE(4981), - [sym_continue_statement] = STATE(4981), - [sym_global_statement] = STATE(4981), - [sym_nonlocal_statement] = STATE(4981), - [sym_exec_statement] = STATE(4981), - [sym_type_alias_statement] = STATE(4981), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4981), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [307] = { + [sym__simple_statements] = STATE(1636), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60631,8 +69943,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60649,80 +69961,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(707), - [sym__indent] = ACTIONS(709), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(567), + [sym__indent] = ACTIONS(569), + [sym_string_start] = ACTIONS(117), }, - [306] = { - [sym__simple_statements] = STATE(1194), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [308] = { + [sym__simple_statements] = STATE(1637), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60737,8 +70057,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60755,80 +70075,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(711), - [sym__indent] = ACTIONS(713), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(571), + [sym__indent] = ACTIONS(573), + [sym_string_start] = ACTIONS(117), }, - [307] = { - [sym__simple_statements] = STATE(961), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [309] = { + [sym__simple_statements] = STATE(1639), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60843,8 +70171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60861,80 +70189,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(715), - [sym__indent] = ACTIONS(717), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(575), + [sym__indent] = ACTIONS(577), + [sym_string_start] = ACTIONS(117), }, - [308] = { - [sym__simple_statements] = STATE(617), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [310] = { + [sym__simple_statements] = STATE(1095), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60949,8 +70285,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60967,80 +70303,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(719), - [sym__indent] = ACTIONS(721), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(579), + [sym__indent] = ACTIONS(581), + [sym_string_start] = ACTIONS(117), }, - [309] = { - [sym__simple_statements] = STATE(1342), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [311] = { + [sym__simple_statements] = STATE(1096), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61055,8 +70399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61073,80 +70417,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(413), - [sym__indent] = ACTIONS(415), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(583), + [sym__indent] = ACTIONS(585), + [sym_string_start] = ACTIONS(117), }, - [310] = { - [sym__simple_statements] = STATE(1200), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [312] = { + [sym__simple_statements] = STATE(1261), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61161,8 +70513,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61179,80 +70531,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(433), - [sym__indent] = ACTIONS(435), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(587), + [sym__indent] = ACTIONS(589), + [sym_string_start] = ACTIONS(117), }, - [311] = { - [sym__simple_statements] = STATE(620), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [313] = { + [sym__simple_statements] = STATE(2111), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61267,8 +70627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61285,80 +70645,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(723), - [sym__indent] = ACTIONS(725), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(591), + [sym__indent] = ACTIONS(593), + [sym_string_start] = ACTIONS(117), }, - [312] = { - [sym__simple_statements] = STATE(621), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [314] = { + [sym__simple_statements] = STATE(1133), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61373,8 +70741,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61391,80 +70759,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(727), - [sym__indent] = ACTIONS(729), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(595), + [sym__indent] = ACTIONS(597), + [sym_string_start] = ACTIONS(117), }, - [313] = { - [sym__simple_statements] = STATE(1234), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [315] = { + [sym__simple_statements] = STATE(2042), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61479,8 +70855,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61497,80 +70873,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(731), - [sym__indent] = ACTIONS(733), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(599), + [sym__indent] = ACTIONS(601), + [sym_string_start] = ACTIONS(117), }, - [314] = { - [sym__simple_statements] = STATE(1371), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [316] = { + [sym__simple_statements] = STATE(1025), + [sym_import_statement] = STATE(6017), + [sym_future_import_statement] = STATE(6017), + [sym_import_from_statement] = STATE(6017), + [sym_print_statement] = STATE(6017), + [sym_assert_statement] = STATE(6017), + [sym_expression_statement] = STATE(6017), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6017), + [sym_delete_statement] = STATE(6017), + [sym_raise_statement] = STATE(6017), + [sym_pass_statement] = STATE(6017), + [sym_break_statement] = STATE(6017), + [sym_continue_statement] = STATE(6017), + [sym_global_statement] = STATE(6017), + [sym_nonlocal_statement] = STATE(6017), + [sym_exec_statement] = STATE(6017), + [sym_type_alias_statement] = STATE(6017), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6017), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61585,8 +70969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61603,80 +70987,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(735), - [sym__indent] = ACTIONS(737), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(603), + [sym__indent] = ACTIONS(605), + [sym_string_start] = ACTIONS(117), }, - [315] = { - [sym__simple_statements] = STATE(1214), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [317] = { + [sym__simple_statements] = STATE(1026), + [sym_import_statement] = STATE(6036), + [sym_future_import_statement] = STATE(6036), + [sym_import_from_statement] = STATE(6036), + [sym_print_statement] = STATE(6036), + [sym_assert_statement] = STATE(6036), + [sym_expression_statement] = STATE(6036), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6036), + [sym_delete_statement] = STATE(6036), + [sym_raise_statement] = STATE(6036), + [sym_pass_statement] = STATE(6036), + [sym_break_statement] = STATE(6036), + [sym_continue_statement] = STATE(6036), + [sym_global_statement] = STATE(6036), + [sym_nonlocal_statement] = STATE(6036), + [sym_exec_statement] = STATE(6036), + [sym_type_alias_statement] = STATE(6036), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6036), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61691,8 +71083,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61709,292 +71101,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(739), - [sym__indent] = ACTIONS(741), - [sym_string_start] = ACTIONS(109), - }, - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [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(743), - [sym__indent] = ACTIONS(745), - [sym_string_start] = ACTIONS(109), - }, - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [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(453), - [sym__indent] = ACTIONS(455), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(607), + [sym__indent] = ACTIONS(609), + [sym_string_start] = ACTIONS(117), }, [318] = { - [sym__simple_statements] = STATE(1254), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1271), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62009,8 +71197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62027,80 +71215,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(747), - [sym__indent] = ACTIONS(749), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(437), + [sym__indent] = ACTIONS(439), + [sym_string_start] = ACTIONS(117), }, [319] = { - [sym__simple_statements] = STATE(636), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1168), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62115,8 +71311,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62133,80 +71329,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(751), - [sym__indent] = ACTIONS(753), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(611), + [sym__indent] = ACTIONS(613), + [sym_string_start] = ACTIONS(117), }, [320] = { - [sym__simple_statements] = STATE(637), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1124), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62221,8 +71425,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62239,80 +71443,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(755), - [sym__indent] = ACTIONS(757), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(615), + [sym__indent] = ACTIONS(617), + [sym_string_start] = ACTIONS(117), }, [321] = { - [sym__simple_statements] = STATE(638), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1647), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62327,8 +71539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62345,80 +71557,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(759), - [sym__indent] = ACTIONS(761), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(619), + [sym__indent] = ACTIONS(621), + [sym_string_start] = ACTIONS(117), }, [322] = { - [sym__simple_statements] = STATE(1248), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1022), + [sym_import_statement] = STATE(5856), + [sym_future_import_statement] = STATE(5856), + [sym_import_from_statement] = STATE(5856), + [sym_print_statement] = STATE(5856), + [sym_assert_statement] = STATE(5856), + [sym_expression_statement] = STATE(5856), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5856), + [sym_delete_statement] = STATE(5856), + [sym_raise_statement] = STATE(5856), + [sym_pass_statement] = STATE(5856), + [sym_break_statement] = STATE(5856), + [sym_continue_statement] = STATE(5856), + [sym_global_statement] = STATE(5856), + [sym_nonlocal_statement] = STATE(5856), + [sym_exec_statement] = STATE(5856), + [sym_type_alias_statement] = STATE(5856), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5856), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62433,8 +71653,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62451,80 +71671,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(763), - [sym__indent] = ACTIONS(765), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(623), + [sym__indent] = ACTIONS(625), + [sym_string_start] = ACTIONS(117), }, [323] = { - [sym__simple_statements] = STATE(1218), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1274), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62539,8 +71767,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62557,80 +71785,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(767), - [sym__indent] = ACTIONS(769), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(627), + [sym__indent] = ACTIONS(629), + [sym_string_start] = ACTIONS(117), }, [324] = { - [sym__simple_statements] = STATE(1219), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1652), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62645,8 +71881,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62663,80 +71899,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(771), - [sym__indent] = ACTIONS(773), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(631), + [sym__indent] = ACTIONS(633), + [sym_string_start] = ACTIONS(117), }, [325] = { - [sym__simple_statements] = STATE(1263), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1298), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62751,8 +71995,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62769,80 +72013,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(775), - [sym__indent] = ACTIONS(777), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(635), + [sym__indent] = ACTIONS(637), + [sym_string_start] = ACTIONS(117), }, [326] = { - [sym__simple_statements] = STATE(5313), - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2118), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62857,8 +72109,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62875,80 +72127,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(779), - [sym__indent] = ACTIONS(781), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(639), + [sym__indent] = ACTIONS(641), + [sym_string_start] = ACTIONS(117), }, [327] = { - [sym__simple_statements] = STATE(1253), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2050), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62963,8 +72223,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62981,80 +72241,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(783), - [sym__indent] = ACTIONS(785), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(643), + [sym__indent] = ACTIONS(645), + [sym_string_start] = ACTIONS(117), }, [328] = { - [sym__simple_statements] = STATE(642), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3821), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63069,8 +72337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63087,80 +72355,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(787), - [sym__indent] = ACTIONS(789), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(473), + [sym__indent] = ACTIONS(475), + [sym_string_start] = ACTIONS(117), }, [329] = { - [sym__simple_statements] = STATE(1223), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1540), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63175,8 +72451,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63193,80 +72469,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(791), - [sym__indent] = ACTIONS(793), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(647), + [sym__indent] = ACTIONS(649), + [sym_string_start] = ACTIONS(117), }, [330] = { - [sym__simple_statements] = STATE(1257), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3750), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63281,8 +72565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63299,80 +72583,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(795), - [sym__indent] = ACTIONS(797), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(651), + [sym__indent] = ACTIONS(653), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1308), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63387,8 +72679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63405,80 +72697,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(437), - [sym__indent] = ACTIONS(439), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(655), + [sym__indent] = ACTIONS(657), + [sym_string_start] = ACTIONS(117), }, [332] = { - [sym__simple_statements] = STATE(1139), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2055), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63493,8 +72793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63511,80 +72811,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(799), - [sym__indent] = ACTIONS(801), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(659), + [sym__indent] = ACTIONS(661), + [sym_string_start] = ACTIONS(117), }, [333] = { - [sym__simple_statements] = STATE(1471), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1668), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63599,8 +72907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63617,80 +72925,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(803), - [sym__indent] = ACTIONS(805), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(663), + [sym__indent] = ACTIONS(665), + [sym_string_start] = ACTIONS(117), }, [334] = { - [sym__simple_statements] = STATE(1233), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(6542), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63705,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(373), - [anon_sym_async] = ACTIONS(373), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63723,80 +73039,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(807), - [sym__indent] = ACTIONS(809), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(667), + [sym__indent] = ACTIONS(669), + [sym_string_start] = ACTIONS(117), }, [335] = { - [sym__simple_statements] = STATE(655), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1671), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63811,8 +73135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63829,80 +73153,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(811), - [sym__indent] = ACTIONS(813), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(671), + [sym__indent] = ACTIONS(673), + [sym_string_start] = ACTIONS(117), }, [336] = { - [sym__simple_statements] = STATE(5297), - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1672), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63917,8 +73249,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63935,80 +73267,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(815), - [sym__indent] = ACTIONS(817), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(675), + [sym__indent] = ACTIONS(677), + [sym_string_start] = ACTIONS(117), }, [337] = { - [sym__simple_statements] = STATE(1073), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1105), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64023,8 +73363,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64041,80 +73381,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(819), - [sym__indent] = ACTIONS(821), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(679), + [sym__indent] = ACTIONS(681), + [sym_string_start] = ACTIONS(117), }, [338] = { - [sym__simple_statements] = STATE(658), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1842), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64129,8 +73477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64147,80 +73495,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(823), - [sym__indent] = ACTIONS(825), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(683), + [sym__indent] = ACTIONS(685), + [sym_string_start] = ACTIONS(117), }, [339] = { - [sym__simple_statements] = STATE(659), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(6543), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64235,8 +73591,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64253,80 +73609,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(827), - [sym__indent] = ACTIONS(829), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(687), + [sym__indent] = ACTIONS(689), + [sym_string_start] = ACTIONS(117), }, [340] = { - [sym__simple_statements] = STATE(1074), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1099), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64341,8 +73705,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64359,80 +73723,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(831), - [sym__indent] = ACTIONS(833), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(691), + [sym__indent] = ACTIONS(693), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2137), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64447,8 +73819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64465,80 +73837,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(835), - [sym__indent] = ACTIONS(837), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(695), + [sym__indent] = ACTIONS(697), + [sym_string_start] = ACTIONS(117), }, [342] = { - [sym__simple_statements] = STATE(1237), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(866), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64553,8 +73933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64571,80 +73951,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(839), - [sym__indent] = ACTIONS(841), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(699), + [sym__indent] = ACTIONS(701), + [sym_string_start] = ACTIONS(117), }, [343] = { - [sym__simple_statements] = STATE(1006), - [sym_import_statement] = STATE(4858), - [sym_future_import_statement] = STATE(4858), - [sym_import_from_statement] = STATE(4858), - [sym_print_statement] = STATE(4858), - [sym_assert_statement] = STATE(4858), - [sym_expression_statement] = STATE(4858), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4858), - [sym_delete_statement] = STATE(4858), - [sym_raise_statement] = STATE(4858), - [sym_pass_statement] = STATE(4858), - [sym_break_statement] = STATE(4858), - [sym_continue_statement] = STATE(4858), - [sym_global_statement] = STATE(4858), - [sym_nonlocal_statement] = STATE(4858), - [sym_exec_statement] = STATE(4858), - [sym_type_alias_statement] = STATE(4858), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4858), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1108), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64659,8 +74047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64677,80 +74065,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(843), - [sym__indent] = ACTIONS(845), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(703), + [sym__indent] = ACTIONS(705), + [sym_string_start] = ACTIONS(117), }, [344] = { - [sym__simple_statements] = STATE(1544), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1956), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64765,8 +74161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64783,80 +74179,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(847), - [sym__indent] = ACTIONS(849), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(707), + [sym__indent] = ACTIONS(709), + [sym_string_start] = ACTIONS(117), }, [345] = { - [sym__simple_statements] = STATE(668), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(999), + [sym_import_statement] = STATE(5856), + [sym_future_import_statement] = STATE(5856), + [sym_import_from_statement] = STATE(5856), + [sym_print_statement] = STATE(5856), + [sym_assert_statement] = STATE(5856), + [sym_expression_statement] = STATE(5856), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5856), + [sym_delete_statement] = STATE(5856), + [sym_raise_statement] = STATE(5856), + [sym_pass_statement] = STATE(5856), + [sym_break_statement] = STATE(5856), + [sym_continue_statement] = STATE(5856), + [sym_global_statement] = STATE(5856), + [sym_nonlocal_statement] = STATE(5856), + [sym_exec_statement] = STATE(5856), + [sym_type_alias_statement] = STATE(5856), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5856), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64871,8 +74275,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64889,186 +74293,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(851), - [sym__indent] = ACTIONS(853), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(711), + [sym__indent] = ACTIONS(713), + [sym_string_start] = ACTIONS(117), }, [346] = { - [sym_chevron] = STATE(4615), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4070), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [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(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [sym__simple_statements] = STATE(1491), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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(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_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), - [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_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), - [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_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(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(857), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(715), + [sym__indent] = ACTIONS(717), + [sym_string_start] = ACTIONS(117), }, [347] = { - [sym__simple_statements] = STATE(1105), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1230), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65083,8 +74503,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65101,80 +74521,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(897), - [sym__indent] = ACTIONS(899), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(719), + [sym__indent] = ACTIONS(721), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1327), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65189,8 +74617,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65207,80 +74635,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(901), - [sym__indent] = ACTIONS(903), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(723), + [sym__indent] = ACTIONS(725), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1692), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65295,8 +74731,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65313,80 +74749,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(905), - [sym__indent] = ACTIONS(907), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(727), + [sym__indent] = ACTIONS(729), + [sym_string_start] = ACTIONS(117), }, [350] = { - [sym__simple_statements] = STATE(679), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1693), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65401,8 +74845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65419,80 +74863,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(909), - [sym__indent] = ACTIONS(911), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(731), + [sym__indent] = ACTIONS(733), + [sym_string_start] = ACTIONS(117), }, [351] = { - [sym__simple_statements] = STATE(897), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1694), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65507,8 +74959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65525,80 +74977,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(913), - [sym__indent] = ACTIONS(915), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(735), + [sym__indent] = ACTIONS(737), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(4912), + [sym_import_statement] = STATE(6139), + [sym_future_import_statement] = STATE(6139), + [sym_import_from_statement] = STATE(6139), + [sym_print_statement] = STATE(6139), + [sym_assert_statement] = STATE(6139), + [sym_expression_statement] = STATE(6139), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6139), + [sym_delete_statement] = STATE(6139), + [sym_raise_statement] = STATE(6139), + [sym_pass_statement] = STATE(6139), + [sym_break_statement] = STATE(6139), + [sym_continue_statement] = STATE(6139), + [sym_global_statement] = STATE(6139), + [sym_nonlocal_statement] = STATE(6139), + [sym_exec_statement] = STATE(6139), + [sym_type_alias_statement] = STATE(6139), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6139), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65613,8 +75073,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65631,80 +75091,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(917), - [sym__indent] = ACTIONS(919), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(739), + [sym__indent] = ACTIONS(741), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1111), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65719,8 +75187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65737,80 +75205,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(921), - [sym__indent] = ACTIONS(923), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(743), + [sym__indent] = ACTIONS(745), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3834), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65825,8 +75301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65843,80 +75319,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(925), - [sym__indent] = ACTIONS(927), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(433), + [sym__indent] = ACTIONS(435), + [sym_string_start] = ACTIONS(117), }, [355] = { - [sym__simple_statements] = STATE(1067), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1331), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65931,8 +75415,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65949,80 +75433,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(929), - [sym__indent] = ACTIONS(931), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(747), + [sym__indent] = ACTIONS(749), + [sym_string_start] = ACTIONS(117), }, [356] = { - [sym__simple_statements] = STATE(689), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1334), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66037,8 +75529,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66055,80 +75547,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(393), - [sym__indent] = ACTIONS(395), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(751), + [sym__indent] = ACTIONS(753), + [sym_string_start] = ACTIONS(117), }, [357] = { - [sym__simple_statements] = STATE(1096), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1264), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66143,8 +75643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66161,80 +75661,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(933), - [sym__indent] = ACTIONS(935), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(755), + [sym__indent] = ACTIONS(757), + [sym_string_start] = ACTIONS(117), }, [358] = { - [sym__simple_statements] = STATE(692), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3787), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66249,8 +75757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66267,80 +75775,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(937), - [sym__indent] = ACTIONS(939), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(759), + [sym__indent] = ACTIONS(761), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1716), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66355,8 +75871,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66373,80 +75889,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(941), - [sym__indent] = ACTIONS(943), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(763), + [sym__indent] = ACTIONS(765), + [sym_string_start] = ACTIONS(117), }, [360] = { - [sym__simple_statements] = STATE(1551), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1190), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66461,8 +75985,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66479,80 +76003,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(945), - [sym__indent] = ACTIONS(947), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1721), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66567,8 +76099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66585,80 +76117,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(949), - [sym__indent] = ACTIONS(951), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(767), + [sym__indent] = ACTIONS(769), + [sym_string_start] = ACTIONS(117), }, [362] = { - [sym__simple_statements] = STATE(536), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1421), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66673,8 +76213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66691,80 +76231,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(953), - [sym__indent] = ACTIONS(955), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(771), + [sym__indent] = ACTIONS(773), + [sym_string_start] = ACTIONS(117), }, [363] = { - [sym__simple_statements] = STATE(1575), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1118), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66779,8 +76327,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66797,80 +76345,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(957), - [sym__indent] = ACTIONS(959), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(775), + [sym__indent] = ACTIONS(777), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1414), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66885,8 +76441,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66903,80 +76459,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(961), - [sym__indent] = ACTIONS(963), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), + [sym_string_start] = ACTIONS(117), }, [365] = { - [sym__simple_statements] = STATE(901), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1705), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66991,8 +76555,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67009,80 +76573,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(965), - [sym__indent] = ACTIONS(967), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(779), + [sym__indent] = ACTIONS(781), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1441), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67097,8 +76669,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67115,80 +76687,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(969), - [sym__indent] = ACTIONS(971), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(783), + [sym__indent] = ACTIONS(785), + [sym_string_start] = ACTIONS(117), }, [367] = { - [sym__simple_statements] = STATE(701), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1034), + [sym_import_statement] = STATE(6017), + [sym_future_import_statement] = STATE(6017), + [sym_import_from_statement] = STATE(6017), + [sym_print_statement] = STATE(6017), + [sym_assert_statement] = STATE(6017), + [sym_expression_statement] = STATE(6017), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6017), + [sym_delete_statement] = STATE(6017), + [sym_raise_statement] = STATE(6017), + [sym_pass_statement] = STATE(6017), + [sym_break_statement] = STATE(6017), + [sym_continue_statement] = STATE(6017), + [sym_global_statement] = STATE(6017), + [sym_nonlocal_statement] = STATE(6017), + [sym_exec_statement] = STATE(6017), + [sym_type_alias_statement] = STATE(6017), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6017), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67203,8 +76783,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67221,80 +76801,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(973), - [sym__indent] = ACTIONS(975), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(787), + [sym__indent] = ACTIONS(789), + [sym_string_start] = ACTIONS(117), }, [368] = { - [sym__simple_statements] = STATE(698), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1445), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67309,8 +76897,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67327,80 +76915,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(401), - [sym__indent] = ACTIONS(403), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(791), + [sym__indent] = ACTIONS(793), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1447), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67415,8 +77011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67433,80 +77029,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(977), - [sym__indent] = ACTIONS(979), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(795), + [sym__indent] = ACTIONS(797), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1734), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67521,8 +77125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67539,80 +77143,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(981), - [sym__indent] = ACTIONS(983), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(799), + [sym__indent] = ACTIONS(801), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1724), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67627,8 +77239,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67645,80 +77257,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(985), - [sym__indent] = ACTIONS(987), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(803), + [sym__indent] = ACTIONS(805), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1737), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67733,8 +77353,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67751,80 +77371,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(989), - [sym__indent] = ACTIONS(991), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(807), + [sym__indent] = ACTIONS(809), + [sym_string_start] = ACTIONS(117), }, [373] = { - [sym__simple_statements] = STATE(1140), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1738), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67839,8 +77467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67857,80 +77485,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(993), - [sym__indent] = ACTIONS(995), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(811), + [sym__indent] = ACTIONS(813), + [sym_string_start] = ACTIONS(117), }, [374] = { - [sym__simple_statements] = STATE(1439), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(6373), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67945,8 +77581,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67963,80 +77599,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(997), - [sym__indent] = ACTIONS(999), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(815), + [sym__indent] = ACTIONS(817), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68051,8 +77695,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68069,80 +77713,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1001), - [sym__indent] = ACTIONS(1003), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(819), + [sym__indent] = ACTIONS(821), + [sym_string_start] = ACTIONS(117), }, [376] = { - [sym__simple_statements] = STATE(1569), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(6519), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68157,8 +77809,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68175,80 +77827,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1005), - [sym__indent] = ACTIONS(1007), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(823), + [sym__indent] = ACTIONS(825), + [sym_string_start] = ACTIONS(117), }, [377] = { - [sym__simple_statements] = STATE(4079), - [sym_import_statement] = STATE(4776), - [sym_future_import_statement] = STATE(4776), - [sym_import_from_statement] = STATE(4776), - [sym_print_statement] = STATE(4776), - [sym_assert_statement] = STATE(4776), - [sym_expression_statement] = STATE(4776), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4776), - [sym_delete_statement] = STATE(4776), - [sym_raise_statement] = STATE(4776), - [sym_pass_statement] = STATE(4776), - [sym_break_statement] = STATE(4776), - [sym_continue_statement] = STATE(4776), - [sym_global_statement] = STATE(4776), - [sym_nonlocal_statement] = STATE(4776), - [sym_exec_statement] = STATE(4776), - [sym_type_alias_statement] = STATE(4776), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4776), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1767), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68263,8 +77923,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68281,80 +77941,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1009), - [sym__indent] = ACTIONS(1011), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(827), + [sym__indent] = ACTIONS(829), + [sym_string_start] = ACTIONS(117), }, [378] = { - [sym__simple_statements] = STATE(708), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3689), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68369,8 +78037,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68387,80 +78055,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(385), - [sym__indent] = ACTIONS(387), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(831), + [sym__indent] = ACTIONS(833), + [sym_string_start] = ACTIONS(117), }, [379] = { - [sym__simple_statements] = STATE(1317), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3846), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68475,8 +78151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68493,80 +78169,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1013), - [sym__indent] = ACTIONS(1015), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), + [sym_string_start] = ACTIONS(117), }, [380] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1142), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68581,8 +78265,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68599,80 +78283,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1017), - [sym__indent] = ACTIONS(1019), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(835), + [sym__indent] = ACTIONS(837), + [sym_string_start] = ACTIONS(117), }, [381] = { - [sym__simple_statements] = STATE(1155), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1758), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68687,8 +78379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68705,80 +78397,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1021), - [sym__indent] = ACTIONS(1023), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(839), + [sym__indent] = ACTIONS(841), + [sym_string_start] = ACTIONS(117), }, [382] = { - [sym__simple_statements] = STATE(1467), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1759), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68793,8 +78493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68811,80 +78511,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1025), - [sym__indent] = ACTIONS(1027), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(843), + [sym__indent] = ACTIONS(845), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1760), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68899,8 +78607,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68917,80 +78625,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1029), - [sym__indent] = ACTIONS(1031), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(847), + [sym__indent] = ACTIONS(849), + [sym_string_start] = ACTIONS(117), }, [384] = { - [sym__simple_statements] = STATE(1278), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1143), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69005,8 +78721,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69023,80 +78739,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1033), - [sym__indent] = ACTIONS(1035), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(851), + [sym__indent] = ACTIONS(853), + [sym_string_start] = ACTIONS(117), }, [385] = { - [sym__simple_statements] = STATE(541), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2127), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69111,8 +78835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69129,80 +78853,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1037), - [sym__indent] = ACTIONS(1039), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(855), + [sym__indent] = ACTIONS(857), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1462), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69217,8 +78949,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69235,80 +78967,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1041), - [sym__indent] = ACTIONS(1043), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(859), + [sym__indent] = ACTIONS(861), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1101), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69323,8 +79063,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69341,80 +79081,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1045), - [sym__indent] = ACTIONS(1047), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(863), + [sym__indent] = ACTIONS(865), + [sym_string_start] = ACTIONS(117), }, [388] = { - [sym__simple_statements] = STATE(542), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2176), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69429,8 +79177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69447,80 +79195,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1049), - [sym__indent] = ACTIONS(1051), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(867), + [sym__indent] = ACTIONS(869), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1770), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69535,8 +79291,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69553,80 +79309,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1053), - [sym__indent] = ACTIONS(1055), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(871), + [sym__indent] = ACTIONS(873), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1468), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69641,8 +79405,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69659,80 +79423,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1057), - [sym__indent] = ACTIONS(1059), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(461), + [sym__indent] = ACTIONS(463), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(970), + [sym_import_statement] = STATE(5856), + [sym_future_import_statement] = STATE(5856), + [sym_import_from_statement] = STATE(5856), + [sym_print_statement] = STATE(5856), + [sym_assert_statement] = STATE(5856), + [sym_expression_statement] = STATE(5856), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5856), + [sym_delete_statement] = STATE(5856), + [sym_raise_statement] = STATE(5856), + [sym_pass_statement] = STATE(5856), + [sym_break_statement] = STATE(5856), + [sym_continue_statement] = STATE(5856), + [sym_global_statement] = STATE(5856), + [sym_nonlocal_statement] = STATE(5856), + [sym_exec_statement] = STATE(5856), + [sym_type_alias_statement] = STATE(5856), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5856), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69747,8 +79519,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69765,80 +79537,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1061), - [sym__indent] = ACTIONS(1063), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(875), + [sym__indent] = ACTIONS(877), + [sym_string_start] = ACTIONS(117), }, [392] = { - [sym__simple_statements] = STATE(543), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3850), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69853,8 +79633,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69871,80 +79651,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1065), - [sym__indent] = ACTIONS(1067), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(453), + [sym__indent] = ACTIONS(455), + [sym_string_start] = ACTIONS(117), }, [393] = { - [sym__simple_statements] = STATE(716), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(972), + [sym_import_statement] = STATE(5920), + [sym_future_import_statement] = STATE(5920), + [sym_import_from_statement] = STATE(5920), + [sym_print_statement] = STATE(5920), + [sym_assert_statement] = STATE(5920), + [sym_expression_statement] = STATE(5920), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5920), + [sym_delete_statement] = STATE(5920), + [sym_raise_statement] = STATE(5920), + [sym_pass_statement] = STATE(5920), + [sym_break_statement] = STATE(5920), + [sym_continue_statement] = STATE(5920), + [sym_global_statement] = STATE(5920), + [sym_nonlocal_statement] = STATE(5920), + [sym_exec_statement] = STATE(5920), + [sym_type_alias_statement] = STATE(5920), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5920), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69959,8 +79747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69977,80 +79765,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(389), - [sym__indent] = ACTIONS(391), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(879), + [sym__indent] = ACTIONS(881), + [sym_string_start] = ACTIONS(117), }, [394] = { - [sym__simple_statements] = STATE(1280), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1483), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70065,8 +79861,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70083,80 +79879,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1069), - [sym__indent] = ACTIONS(1071), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(883), + [sym__indent] = ACTIONS(885), + [sym_string_start] = ACTIONS(117), }, [395] = { - [sym__simple_statements] = STATE(1281), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1788), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70171,8 +79975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70189,80 +79993,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1073), - [sym__indent] = ACTIONS(1075), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(887), + [sym__indent] = ACTIONS(889), + [sym_string_start] = ACTIONS(117), }, [396] = { - [sym__simple_statements] = STATE(1579), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1791), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70277,8 +80089,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70295,80 +80107,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1077), - [sym__indent] = ACTIONS(1079), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(891), + [sym__indent] = ACTIONS(893), + [sym_string_start] = ACTIONS(117), }, [397] = { - [sym__simple_statements] = STATE(718), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1793), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70383,8 +80203,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70401,80 +80221,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1081), - [sym__indent] = ACTIONS(1083), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(895), + [sym__indent] = ACTIONS(897), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1487), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70489,8 +80317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70507,80 +80335,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1085), - [sym__indent] = ACTIONS(1087), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(899), + [sym__indent] = ACTIONS(901), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3853), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70595,8 +80431,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70613,80 +80449,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(421), - [sym__indent] = ACTIONS(423), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(903), + [sym__indent] = ACTIONS(905), + [sym_string_start] = ACTIONS(117), }, [400] = { - [sym__simple_statements] = STATE(1098), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1490), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70701,8 +80545,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70719,80 +80563,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1089), - [sym__indent] = ACTIONS(1091), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(907), + [sym__indent] = ACTIONS(909), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1948), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70807,8 +80659,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70825,80 +80677,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1093), - [sym__indent] = ACTIONS(1095), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(911), + [sym__indent] = ACTIONS(913), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1806), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70913,8 +80773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70931,80 +80791,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1097), - [sym__indent] = ACTIONS(1099), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(915), + [sym__indent] = ACTIONS(917), + [sym_string_start] = ACTIONS(117), }, [403] = { - [sym__simple_statements] = STATE(547), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(6316), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71019,8 +80887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71037,80 +80905,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1101), - [sym__indent] = ACTIONS(1103), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(919), + [sym__indent] = ACTIONS(921), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2025), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71125,8 +81001,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71143,80 +81019,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1105), - [sym__indent] = ACTIONS(1107), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(923), + [sym__indent] = ACTIONS(925), + [sym_string_start] = ACTIONS(117), }, [405] = { - [sym__simple_statements] = STATE(1328), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3856), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71231,8 +81115,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71249,80 +81133,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1109), - [sym__indent] = ACTIONS(1111), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(927), + [sym__indent] = ACTIONS(929), + [sym_string_start] = ACTIONS(117), }, [406] = { - [sym__simple_statements] = STATE(1301), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1494), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71337,8 +81229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71355,80 +81247,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(441), - [sym__indent] = ACTIONS(443), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(931), + [sym__indent] = ACTIONS(933), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1970), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71443,8 +81343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71461,80 +81361,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1113), - [sym__indent] = ACTIONS(1115), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(935), + [sym__indent] = ACTIONS(937), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3895), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71549,8 +81457,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71567,80 +81475,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1117), - [sym__indent] = ACTIONS(1119), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(939), + [sym__indent] = ACTIONS(941), + [sym_string_start] = ACTIONS(117), }, [409] = { - [sym__simple_statements] = STATE(1506), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1971), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71655,8 +81571,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71673,80 +81589,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1121), - [sym__indent] = ACTIONS(1123), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(943), + [sym__indent] = ACTIONS(945), + [sym_string_start] = ACTIONS(117), }, [410] = { - [sym__simple_statements] = STATE(1081), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(2149), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71761,8 +81685,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71779,80 +81703,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1125), - [sym__indent] = ACTIONS(1127), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(947), + [sym__indent] = ACTIONS(949), + [sym_string_start] = ACTIONS(117), }, [411] = { - [sym__simple_statements] = STATE(1084), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3907), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71867,8 +81799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71885,80 +81817,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1129), - [sym__indent] = ACTIONS(1131), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(951), + [sym__indent] = ACTIONS(953), + [sym_string_start] = ACTIONS(117), }, [412] = { - [sym__simple_statements] = STATE(724), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3908), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71973,8 +81913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71991,80 +81931,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1133), - [sym__indent] = ACTIONS(1135), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(955), + [sym__indent] = ACTIONS(957), + [sym_string_start] = ACTIONS(117), }, [413] = { - [sym__simple_statements] = STATE(721), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3909), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72079,8 +82027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72097,80 +82045,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(425), - [sym__indent] = ACTIONS(427), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(959), + [sym__indent] = ACTIONS(961), + [sym_string_start] = ACTIONS(117), }, [414] = { - [sym__simple_statements] = STATE(1005), - [sym_import_statement] = STATE(4981), - [sym_future_import_statement] = STATE(4981), - [sym_import_from_statement] = STATE(4981), - [sym_print_statement] = STATE(4981), - [sym_assert_statement] = STATE(4981), - [sym_expression_statement] = STATE(4981), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4981), - [sym_delete_statement] = STATE(4981), - [sym_raise_statement] = STATE(4981), - [sym_pass_statement] = STATE(4981), - [sym_break_statement] = STATE(4981), - [sym_continue_statement] = STATE(4981), - [sym_global_statement] = STATE(4981), - [sym_nonlocal_statement] = STATE(4981), - [sym_exec_statement] = STATE(4981), - [sym_type_alias_statement] = STATE(4981), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4981), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1506), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72185,8 +82141,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72203,80 +82159,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1137), - [sym__indent] = ACTIONS(1139), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(963), + [sym__indent] = ACTIONS(965), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1650), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72291,8 +82255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72309,80 +82273,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1141), - [sym__indent] = ACTIONS(1143), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(449), + [sym__indent] = ACTIONS(451), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1748), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72397,8 +82369,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72415,80 +82387,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1145), - [sym__indent] = ACTIONS(1147), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(967), + [sym__indent] = ACTIONS(969), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3913), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72503,8 +82483,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72521,80 +82501,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1149), - [sym__indent] = ACTIONS(1151), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(971), + [sym__indent] = ACTIONS(973), + [sym_string_start] = ACTIONS(117), }, [418] = { - [sym__simple_statements] = STATE(1521), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1189), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72609,8 +82597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72627,80 +82615,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1153), - [sym__indent] = ACTIONS(1155), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(477), + [sym__indent] = ACTIONS(479), + [sym_string_start] = ACTIONS(117), }, [419] = { - [sym__simple_statements] = STATE(1331), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3917), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72715,8 +82711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72733,186 +82729,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1157), - [sym__indent] = ACTIONS(1159), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(975), + [sym__indent] = ACTIONS(977), + [sym_string_start] = ACTIONS(117), }, [420] = { - [sym__simple_statements] = STATE(1534), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [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), + [sym_chevron] = STATE(5557), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4828), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_print] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(983), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_not] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH_SLASH] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1011), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AT_EQ] = ACTIONS(1014), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), [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(1161), - [sym__indent] = ACTIONS(1163), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1510), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72927,8 +82939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72945,80 +82957,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1165), - [sym__indent] = ACTIONS(1167), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1018), + [sym__indent] = ACTIONS(1020), + [sym_string_start] = ACTIONS(117), }, [422] = { - [sym__simple_statements] = STATE(890), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3920), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73033,8 +83053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73051,80 +83071,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1169), - [sym__indent] = ACTIONS(1171), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1022), + [sym__indent] = ACTIONS(1024), + [sym_string_start] = ACTIONS(117), }, [423] = { - [sym__simple_statements] = STATE(551), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3921), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73139,8 +83167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73157,80 +83185,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1173), - [sym__indent] = ACTIONS(1175), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1026), + [sym__indent] = ACTIONS(1028), + [sym_string_start] = ACTIONS(117), }, [424] = { - [sym__simple_statements] = STATE(726), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1195), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73245,8 +83281,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73263,80 +83299,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(409), - [sym__indent] = ACTIONS(411), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1030), + [sym__indent] = ACTIONS(1032), + [sym_string_start] = ACTIONS(117), }, [425] = { - [sym__simple_statements] = STATE(1114), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1270), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73351,8 +83395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73369,80 +83413,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1177), - [sym__indent] = ACTIONS(1179), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1034), + [sym__indent] = ACTIONS(1036), + [sym_string_start] = ACTIONS(117), }, [426] = { - [sym__simple_statements] = STATE(1308), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1248), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73457,8 +83509,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73475,186 +83527,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1181), - [sym__indent] = ACTIONS(1183), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1038), + [sym__indent] = ACTIONS(1040), + [sym_string_start] = ACTIONS(117), }, [427] = { - [sym__simple_statements] = STATE(554), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [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), + [sym_chevron] = STATE(5557), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4828), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_print] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(983), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_not] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH_SLASH] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1011), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AT_EQ] = ACTIONS(1014), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), [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(1185), - [sym__indent] = ACTIONS(1187), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1223), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73669,8 +83737,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73687,80 +83755,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1189), - [sym__indent] = ACTIONS(1191), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), + [sym_string_start] = ACTIONS(117), }, [429] = { - [sym__simple_statements] = STATE(555), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3923), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73775,8 +83851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73793,80 +83869,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1193), - [sym__indent] = ACTIONS(1195), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1045), + [sym__indent] = ACTIONS(1047), + [sym_string_start] = ACTIONS(117), }, [430] = { - [sym__simple_statements] = STATE(1345), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3924), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73881,8 +83965,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73899,80 +83983,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1197), - [sym__indent] = ACTIONS(1199), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1049), + [sym__indent] = ACTIONS(1051), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3925), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73987,8 +84079,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74005,80 +84097,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1201), - [sym__indent] = ACTIONS(1203), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1053), + [sym__indent] = ACTIONS(1055), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3926), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74093,8 +84193,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74111,80 +84211,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1205), - [sym__indent] = ACTIONS(1207), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1057), + [sym__indent] = ACTIONS(1059), + [sym_string_start] = ACTIONS(117), }, [433] = { - [sym__simple_statements] = STATE(1391), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3930), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74199,8 +84307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74217,80 +84325,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1209), - [sym__indent] = ACTIONS(1211), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1061), + [sym__indent] = ACTIONS(1063), + [sym_string_start] = ACTIONS(117), }, [434] = { - [sym__simple_statements] = STATE(728), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1324), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74305,8 +84421,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74323,80 +84439,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1213), - [sym__indent] = ACTIONS(1215), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(445), + [sym__indent] = ACTIONS(447), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1464), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74411,8 +84535,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74429,80 +84553,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1217), - [sym__indent] = ACTIONS(1219), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1065), + [sym__indent] = ACTIONS(1067), + [sym_string_start] = ACTIONS(117), }, [436] = { - [sym__simple_statements] = STATE(1062), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3823), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74517,8 +84649,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74535,80 +84667,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1221), - [sym__indent] = ACTIONS(1223), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1069), + [sym__indent] = ACTIONS(1071), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3801), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74623,8 +84763,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74641,80 +84781,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(445), - [sym__indent] = ACTIONS(447), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1073), + [sym__indent] = ACTIONS(1075), + [sym_string_start] = ACTIONS(117), }, [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3827), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74729,8 +84877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74747,80 +84895,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1225), - [sym__indent] = ACTIONS(1227), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1077), + [sym__indent] = ACTIONS(1079), + [sym_string_start] = ACTIONS(117), }, [439] = { - [sym__simple_statements] = STATE(1352), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3867), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74835,8 +84991,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74853,80 +85009,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1229), - [sym__indent] = ACTIONS(1231), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1081), + [sym__indent] = ACTIONS(1083), + [sym_string_start] = ACTIONS(117), }, [440] = { - [sym__simple_statements] = STATE(564), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3869), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74941,8 +85105,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74959,80 +85123,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1233), - [sym__indent] = ACTIONS(1235), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1085), + [sym__indent] = ACTIONS(1087), + [sym_string_start] = ACTIONS(117), }, [441] = { - [sym__simple_statements] = STATE(531), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3870), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75047,8 +85219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75065,80 +85237,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1237), - [sym__indent] = ACTIONS(1239), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1089), + [sym__indent] = ACTIONS(1091), + [sym_string_start] = ACTIONS(117), }, [442] = { - [sym__simple_statements] = STATE(565), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1635), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75153,8 +85333,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75171,80 +85351,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1241), - [sym__indent] = ACTIONS(1243), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1093), + [sym__indent] = ACTIONS(1095), + [sym_string_start] = ACTIONS(117), }, [443] = { - [sym__simple_statements] = STATE(566), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1566), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75259,8 +85447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75277,80 +85465,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1245), - [sym__indent] = ACTIONS(1247), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1097), + [sym__indent] = ACTIONS(1099), + [sym_string_start] = ACTIONS(117), }, [444] = { - [sym__simple_statements] = STATE(1297), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3872), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75365,8 +85561,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75383,80 +85579,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1249), - [sym__indent] = ACTIONS(1251), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1101), + [sym__indent] = ACTIONS(1103), + [sym_string_start] = ACTIONS(117), }, [445] = { - [sym__simple_statements] = STATE(1111), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3876), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75471,8 +85675,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75489,80 +85693,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1253), - [sym__indent] = ACTIONS(1255), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1105), + [sym__indent] = ACTIONS(1107), + [sym_string_start] = ACTIONS(117), }, [446] = { - [sym__simple_statements] = STATE(1112), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3889), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75577,8 +85789,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75595,80 +85807,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1257), - [sym__indent] = ACTIONS(1259), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1109), + [sym__indent] = ACTIONS(1111), + [sym_string_start] = ACTIONS(117), }, [447] = { - [sym__simple_statements] = STATE(1359), - [sym_import_statement] = STATE(5088), - [sym_future_import_statement] = STATE(5088), - [sym_import_from_statement] = STATE(5088), - [sym_print_statement] = STATE(5088), - [sym_assert_statement] = STATE(5088), - [sym_expression_statement] = STATE(5088), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5088), - [sym_delete_statement] = STATE(5088), - [sym_raise_statement] = STATE(5088), - [sym_pass_statement] = STATE(5088), - [sym_break_statement] = STATE(5088), - [sym_continue_statement] = STATE(5088), - [sym_global_statement] = STATE(5088), - [sym_nonlocal_statement] = STATE(5088), - [sym_exec_statement] = STATE(5088), - [sym_type_alias_statement] = STATE(5088), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5088), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3803), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75683,8 +85903,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75701,80 +85921,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(397), - [sym__indent] = ACTIONS(399), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1113), + [sym__indent] = ACTIONS(1115), + [sym_string_start] = ACTIONS(117), }, [448] = { - [sym__simple_statements] = STATE(1581), - [sym_import_statement] = STATE(5100), - [sym_future_import_statement] = STATE(5100), - [sym_import_from_statement] = STATE(5100), - [sym_print_statement] = STATE(5100), - [sym_assert_statement] = STATE(5100), - [sym_expression_statement] = STATE(5100), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5100), - [sym_delete_statement] = STATE(5100), - [sym_raise_statement] = STATE(5100), - [sym_pass_statement] = STATE(5100), - [sym_break_statement] = STATE(5100), - [sym_continue_statement] = STATE(5100), - [sym_global_statement] = STATE(5100), - [sym_nonlocal_statement] = STATE(5100), - [sym_exec_statement] = STATE(5100), - [sym_type_alias_statement] = STATE(5100), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5100), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3804), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75789,8 +86017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75807,80 +86035,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1261), - [sym__indent] = ACTIONS(1263), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1117), + [sym__indent] = ACTIONS(1119), + [sym_string_start] = ACTIONS(117), }, [449] = { - [sym__simple_statements] = STATE(4018), - [sym_import_statement] = STATE(4776), - [sym_future_import_statement] = STATE(4776), - [sym_import_from_statement] = STATE(4776), - [sym_print_statement] = STATE(4776), - [sym_assert_statement] = STATE(4776), - [sym_expression_statement] = STATE(4776), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(4776), - [sym_delete_statement] = STATE(4776), - [sym_raise_statement] = STATE(4776), - [sym_pass_statement] = STATE(4776), - [sym_break_statement] = STATE(4776), - [sym_continue_statement] = STATE(4776), - [sym_global_statement] = STATE(4776), - [sym_nonlocal_statement] = STATE(4776), - [sym_exec_statement] = STATE(4776), - [sym_type_alias_statement] = STATE(4776), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(4776), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1643), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75895,8 +86131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75913,186 +86149,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1265), - [sym__indent] = ACTIONS(1267), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1121), + [sym__indent] = ACTIONS(1123), + [sym_string_start] = ACTIONS(117), }, [450] = { - [sym_chevron] = STATE(4615), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4070), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [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(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [sym__simple_statements] = STATE(1615), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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(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_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), - [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_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), - [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_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(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(857), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(421), + [sym__indent] = ACTIONS(423), + [sym_string_start] = ACTIONS(117), }, [451] = { - [sym__simple_statements] = STATE(5411), - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3840), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76107,8 +86359,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -76125,80 +86377,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1269), - [sym__indent] = ACTIONS(1271), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1125), + [sym__indent] = ACTIONS(1127), + [sym_string_start] = ACTIONS(117), }, [452] = { - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [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(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [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(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3841), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76213,8 +86473,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -76231,289 +86491,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1273), - [sym__indent] = ACTIONS(1275), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1129), + [sym__indent] = ACTIONS(1131), + [sym_string_start] = ACTIONS(117), }, [453] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4125), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [sym__simple_statements] = STATE(3842), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1133), + [sym__indent] = ACTIONS(1135), + [sym_string_start] = ACTIONS(117), }, [454] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4174), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [sym__simple_statements] = STATE(3852), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1137), + [sym__indent] = ACTIONS(1139), + [sym_string_start] = ACTIONS(117), }, [455] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1677), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76528,8 +86815,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -76546,78 +86833,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1315), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), + [sym_string_start] = ACTIONS(117), }, [456] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3879), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76632,8 +86929,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -76650,78 +86947,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1317), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1141), + [sym__indent] = ACTIONS(1143), + [sym_string_start] = ACTIONS(117), }, [457] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3882), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76736,8 +87043,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -76754,78 +87061,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1319), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1145), + [sym__indent] = ACTIONS(1147), + [sym_string_start] = ACTIONS(117), }, [458] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3883), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76840,8 +87157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -76858,78 +87175,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1321), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1149), + [sym__indent] = ACTIONS(1151), + [sym_string_start] = ACTIONS(117), }, [459] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1690), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76944,8 +87271,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -76962,78 +87289,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1323), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1153), + [sym__indent] = ACTIONS(1155), + [sym_string_start] = ACTIONS(117), }, [460] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3894), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77048,8 +87385,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77066,78 +87403,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1325), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1157), + [sym__indent] = ACTIONS(1159), + [sym_string_start] = ACTIONS(117), }, [461] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(1726), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77152,8 +87499,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77170,78 +87517,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1327), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1161), + [sym__indent] = ACTIONS(1163), + [sym_string_start] = ACTIONS(117), }, [462] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3629), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77256,8 +87613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77274,78 +87631,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1329), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1165), + [sym__indent] = ACTIONS(1167), + [sym_string_start] = ACTIONS(117), }, [463] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3558), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77360,8 +87727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77378,78 +87745,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1331), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1169), + [sym__indent] = ACTIONS(1171), + [sym_string_start] = ACTIONS(117), }, [464] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3676), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77464,8 +87841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77482,78 +87859,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1173), + [sym__indent] = ACTIONS(1175), + [sym_string_start] = ACTIONS(117), }, [465] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3685), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77568,8 +87955,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77586,78 +87973,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1177), + [sym__indent] = ACTIONS(1179), + [sym_string_start] = ACTIONS(117), }, [466] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3459), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77672,8 +88069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77690,78 +88087,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1181), + [sym__indent] = ACTIONS(1183), + [sym_string_start] = ACTIONS(117), }, [467] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3686), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77776,8 +88183,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77794,78 +88201,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(465), + [sym__indent] = ACTIONS(467), + [sym_string_start] = ACTIONS(117), }, [468] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3608), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77880,8 +88297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -77898,78 +88315,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1185), + [sym__indent] = ACTIONS(1187), + [sym_string_start] = ACTIONS(117), }, [469] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3661), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77984,8 +88411,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -78002,78 +88429,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1189), + [sym__indent] = ACTIONS(1191), + [sym_string_start] = ACTIONS(117), }, [470] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3463), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78088,8 +88525,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -78106,78 +88543,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1193), + [sym__indent] = ACTIONS(1195), + [sym_string_start] = ACTIONS(117), }, [471] = { - [sym_import_statement] = STATE(5339), - [sym_future_import_statement] = STATE(5339), - [sym_import_from_statement] = STATE(5339), - [sym_print_statement] = STATE(5339), - [sym_assert_statement] = STATE(5339), - [sym_expression_statement] = STATE(5339), - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_return_statement] = STATE(5339), - [sym_delete_statement] = STATE(5339), - [sym_raise_statement] = STATE(5339), - [sym_pass_statement] = STATE(5339), - [sym_break_statement] = STATE(5339), - [sym_continue_statement] = STATE(5339), - [sym_global_statement] = STATE(5339), - [sym_nonlocal_statement] = STATE(5339), - [sym_exec_statement] = STATE(5339), - [sym_type_alias_statement] = STATE(5339), - [sym_pattern] = STATE(3372), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5452), - [sym_augmented_assignment] = STATE(5452), - [sym_pattern_list] = STATE(3490), - [sym_yield] = STATE(5452), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_include_statement] = STATE(5339), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym__simple_statements] = STATE(3488), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78192,8 +88639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -78210,26519 +88657,2958 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1197), + [sym__indent] = ACTIONS(1199), + [sym_string_start] = ACTIONS(117), }, [472] = { - [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), + [sym__simple_statements] = STATE(3503), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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(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_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [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_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(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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1201), + [sym__indent] = ACTIONS(1203), + [sym_string_start] = ACTIONS(117), }, [473] = { - [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), + [sym__simple_statements] = STATE(3598), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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(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_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [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_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(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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1205), + [sym__indent] = ACTIONS(1207), + [sym_string_start] = ACTIONS(117), }, [474] = { - [sym_list_splat_pattern] = STATE(2435), - [sym_primary_expression] = STATE(3307), - [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), + [sym__simple_statements] = STATE(3586), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(485), + [sym__indent] = ACTIONS(487), + [sym_string_start] = ACTIONS(117), }, [475] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5613), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [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(4941), - [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(5877), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5345), - [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), + [sym__simple_statements] = STATE(907), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1209), + [sym__indent] = ACTIONS(1211), + [sym_string_start] = ACTIONS(117), }, [476] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5556), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5323), - [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), + [sym__simple_statements] = STATE(3574), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1213), + [sym__indent] = ACTIONS(1215), + [sym_string_start] = ACTIONS(117), }, [477] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5261), - [sym_parenthesized_list_splat] = STATE(5266), - [sym__patterns] = STATE(5556), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3766), - [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(4793), - [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(5635), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5323), - [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), + [sym__simple_statements] = STATE(3577), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1217), + [sym__indent] = ACTIONS(1219), + [sym_string_start] = ACTIONS(117), }, [478] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [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), + [sym__simple_statements] = STATE(3579), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1221), + [sym__indent] = ACTIONS(1223), + [sym_string_start] = ACTIONS(117), }, [479] = { - [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), + [sym__simple_statements] = STATE(3585), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1225), + [sym__indent] = ACTIONS(1227), + [sym_string_start] = ACTIONS(117), }, [480] = { - [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), + [sym__simple_statements] = STATE(1171), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1229), + [sym__indent] = ACTIONS(1231), + [sym_string_start] = ACTIONS(117), }, [481] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5393), - [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), + [sym__simple_statements] = STATE(1174), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1233), + [sym__indent] = ACTIONS(1235), + [sym_string_start] = ACTIONS(117), }, [482] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5269), - [sym_dictionary_splat] = STATE(5269), - [sym_parenthesized_list_splat] = STATE(4768), - [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(5269), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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), + [sym__simple_statements] = STATE(3622), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1237), + [sym__indent] = ACTIONS(1239), + [sym_string_start] = ACTIONS(117), }, [483] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5012), - [sym_dictionary_splat] = STATE(5012), - [sym_parenthesized_list_splat] = STATE(5018), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4112), - [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(5012), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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), + [sym__simple_statements] = STATE(2063), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1241), + [sym__indent] = ACTIONS(1243), + [sym_string_start] = ACTIONS(117), }, [484] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5482), - [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), + [sym__simple_statements] = STATE(1573), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1245), + [sym__indent] = ACTIONS(1247), + [sym_string_start] = ACTIONS(117), }, [485] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5314), - [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), + [sym__simple_statements] = STATE(3662), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), + [sym_string_start] = ACTIONS(117), }, [486] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5519), - [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), + [sym__simple_statements] = STATE(2067), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1249), + [sym__indent] = ACTIONS(1251), + [sym_string_start] = ACTIONS(117), }, [487] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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), + [sym__simple_statements] = STATE(3683), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1253), + [sym__indent] = ACTIONS(1255), + [sym_string_start] = ACTIONS(117), }, [488] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5412), - [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), + [sym__simple_statements] = STATE(874), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1257), + [sym__indent] = ACTIONS(1259), + [sym_string_start] = ACTIONS(117), }, [489] = { - [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), + [sym__simple_statements] = STATE(3864), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1261), + [sym__indent] = ACTIONS(1263), + [sym_string_start] = ACTIONS(117), }, [490] = { - [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), + [sym__simple_statements] = STATE(3639), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1265), + [sym__indent] = ACTIONS(1267), + [sym_string_start] = ACTIONS(117), }, [491] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5019), - [sym_dictionary_splat] = STATE(5019), - [sym_parenthesized_list_splat] = STATE(5020), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4101), - [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(5019), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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), + [sym__simple_statements] = STATE(3673), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1269), + [sym__indent] = ACTIONS(1271), + [sym_string_start] = ACTIONS(117), }, [492] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(4870), - [sym_dictionary_splat] = STATE(4870), - [sym_parenthesized_list_splat] = STATE(4871), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4120), - [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(4870), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(4926), - [sym_dictionary_splat] = STATE(4926), - [sym_parenthesized_list_splat] = STATE(4927), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4132), - [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(4926), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5054), - [sym_dictionary_splat] = STATE(5054), - [sym_parenthesized_list_splat] = STATE(5055), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4141), - [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(5054), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(4995), - [sym_dictionary_splat] = STATE(4995), - [sym_parenthesized_list_splat] = STATE(4996), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4145), - [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(4995), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5039), - [sym_dictionary_splat] = STATE(5039), - [sym_parenthesized_list_splat] = STATE(5040), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4150), - [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(5039), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(4959), - [sym_dictionary_splat] = STATE(4959), - [sym_parenthesized_list_splat] = STATE(4960), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4156), - [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(4959), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5269), - [sym_dictionary_splat] = STATE(5269), - [sym_parenthesized_list_splat] = STATE(4768), - [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(5269), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5012), - [sym_dictionary_splat] = STATE(5012), - [sym_parenthesized_list_splat] = STATE(5018), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4112), - [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(5012), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(4870), - [sym_dictionary_splat] = STATE(4870), - [sym_parenthesized_list_splat] = STATE(4871), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4120), - [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(4870), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(4926), - [sym_dictionary_splat] = STATE(4926), - [sym_parenthesized_list_splat] = STATE(4927), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4132), - [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(4926), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(4959), - [sym_dictionary_splat] = STATE(4959), - [sym_parenthesized_list_splat] = STATE(4960), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4156), - [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(4959), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(4995), - [sym_dictionary_splat] = STATE(4995), - [sym_parenthesized_list_splat] = STATE(4996), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4145), - [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(4995), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5039), - [sym_dictionary_splat] = STATE(5039), - [sym_parenthesized_list_splat] = STATE(5040), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4150), - [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(5039), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5070), - [sym_dictionary_splat] = STATE(5070), - [sym_parenthesized_list_splat] = STATE(5071), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4162), - [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(5070), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(4672), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5364), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5369), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5373), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5397), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5403), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5406), - [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(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_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3784), - [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(4984), - [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(5639), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5323), - [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_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5261), - [sym_parenthesized_list_splat] = STATE(5266), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3784), - [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(4984), - [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(5639), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5323), - [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_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5261), - [sym_parenthesized_list_splat] = STATE(5266), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3766), - [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(4793), - [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(5635), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5323), - [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_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), + [sym__simple_statements] = STATE(3681), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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_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_not] = ACTIONS(69), [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_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(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(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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1273), + [sym__indent] = ACTIONS(1275), + [sym_string_start] = ACTIONS(117), }, - [519] = { - [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), + [493] = { + [sym__simple_statements] = STATE(1225), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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_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_not] = ACTIONS(69), [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_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(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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1277), + [sym__indent] = ACTIONS(1279), + [sym_string_start] = ACTIONS(117), }, - [520] = { - [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_list_splat_pattern] = STATE(2435), - [sym_primary_expression] = STATE(3307), - [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(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_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_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), - }, - [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(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(1609), - [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_int] = ACTIONS(1605), - [anon_sym_double] = ACTIONS(1605), - [anon_sym_complex] = ACTIONS(1605), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_char] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_ctypedef] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_cppclass] = ACTIONS(1605), - [anon_sym_fused] = ACTIONS(1605), - [anon_sym_public] = ACTIONS(1605), - [anon_sym_packed] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [anon_sym_readonly] = ACTIONS(1605), - [anon_sym_sizeof] = ACTIONS(1605), - [sym__dedent] = ACTIONS(1607), - [sym_string_start] = ACTIONS(1607), - }, - [528] = { - [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(1615), - [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_int] = ACTIONS(1611), - [anon_sym_double] = ACTIONS(1611), - [anon_sym_complex] = ACTIONS(1611), - [anon_sym_new] = ACTIONS(1611), - [anon_sym_signed] = ACTIONS(1611), - [anon_sym_unsigned] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_volatile] = ACTIONS(1611), - [anon_sym_ctypedef] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1611), - [anon_sym_enum] = ACTIONS(1611), - [anon_sym_cppclass] = ACTIONS(1611), - [anon_sym_fused] = 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__dedent] = ACTIONS(1613), - [sym_string_start] = ACTIONS(1613), - }, - [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), - }, - [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), - }, - [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), - }, - [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(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(1631), - [anon_sym_AMP] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_lambda] = ACTIONS(1631), - [anon_sym_yield] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1635), - [anon_sym_None] = ACTIONS(1631), - [sym_integer] = ACTIONS(1631), - [sym_float] = ACTIONS(1635), - [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), - }, - [533] = { - [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_IF] = 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), - }, - [534] = { - [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_IF] = 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), - }, - [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(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), - }, - [536] = { - [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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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_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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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_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(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_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_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_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_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_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_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(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(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_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_list_splat_pattern] = STATE(2435), - [sym_primary_expression] = STATE(3307), - [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(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_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(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(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_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(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(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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4463), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5378), - [sym_c_function_argument_type] = STATE(5629), - [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), - }, - [741] = { - [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(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(2465), - [sym_primary_expression] = STATE(2275), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), + [494] = { + [sym__simple_statements] = STATE(3456), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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_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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4514), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5301), - [sym_c_function_argument_type] = STATE(5714), - [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), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1281), + [sym__indent] = ACTIONS(1283), + [sym_string_start] = ACTIONS(117), }, - [745] = { - [sym_list_splat_pattern] = STATE(2465), - [sym_primary_expression] = STATE(2275), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), + [495] = { + [sym__simple_statements] = STATE(3457), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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(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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4466), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5457), - [sym_c_function_argument_type] = STATE(5726), - [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_list_splat_pattern] = STATE(2435), - [sym_primary_expression] = STATE(3307), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4489), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5521), - [sym_c_function_argument_type] = STATE(5630), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4420), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5370), - [sym_c_function_argument_type] = STATE(5531), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4557), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5374), - [sym_c_function_argument_type] = STATE(5540), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5492), - [sym_c_function_argument_type] = STATE(5810), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4591), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5438), - [sym_c_function_argument_type] = STATE(5692), - [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_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(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(2435), - [sym_primary_expression] = STATE(3307), - [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(1311), - [sym__newline] = ACTIONS(1361), - [sym_string_start] = ACTIONS(1313), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1285), + [sym__indent] = ACTIONS(1287), + [sym_string_start] = ACTIONS(117), }, - [757] = { - [sym_list_splat_pattern] = STATE(2465), - [sym_primary_expression] = STATE(2275), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), + [496] = { + [sym__simple_statements] = STATE(3458), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1289), + [sym__indent] = ACTIONS(1291), + [sym_string_start] = ACTIONS(117), }, - [758] = { - [sym_list_splat_pattern] = STATE(2465), - [sym_primary_expression] = STATE(2275), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), + [497] = { + [sym__simple_statements] = STATE(1075), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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(2435), - [sym_primary_expression] = STATE(3307), - [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(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(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(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(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(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(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(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(2435), - [sym_primary_expression] = STATE(3307), - [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(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_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_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_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_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(3307), - [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(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), - }, - [774] = { - [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_list_splat_pattern] = STATE(2435), - [sym_primary_expression] = STATE(3307), - [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_sizeof] = ACTIONS(1311), - [sym_string_start] = ACTIONS(1313), - }, - [776] = { - [sym_list_splat_pattern] = STATE(2435), - [sym_primary_expression] = STATE(3307), - [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(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), - }, - [777] = { - [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_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_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_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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5683), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5658), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3742), - [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(5154), - [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(5702), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5613), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5658), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3726), - [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(5154), - [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(5767), - [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(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(4951), - [sym_parenthesized_list_splat] = STATE(4883), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym_expression] = STATE(3696), - [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(4883), - [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(4128), - [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(5796), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5613), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5712), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5811), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3726), - [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(5154), - [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(5767), - [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(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(4987), - [sym_parenthesized_list_splat] = STATE(4883), - [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(4883), - [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(4138), - [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(5654), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5757), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3772), - [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(5154), - [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(5843), - [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(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5646), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5811), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3726), - [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(5154), - [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(5767), - [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(5722), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(5011), - [sym_parenthesized_list_splat] = STATE(4883), - [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(4883), - [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(4143), - [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(5774), - [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(5722), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(4861), - [sym_parenthesized_list_splat] = STATE(4883), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym_expression] = STATE(3690), - [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(4883), - [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(4096), - [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(5592), - [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(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5811), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3735), - [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(5154), - [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(5771), - [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(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5811), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3779), - [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(5154), - [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(5752), - [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(5722), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(4919), - [sym_parenthesized_list_splat] = STATE(4883), - [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(4883), - [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(4115), - [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(5798), - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_expression_list] = STATE(5441), - [sym_pattern] = STATE(3394), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4041), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5441), - [sym_augmented_assignment] = STATE(5441), - [sym_pattern_list] = STATE(3349), - [sym__right_hand_side] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [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(373), - [anon_sym_match] = ACTIONS(373), - [anon_sym_async] = ACTIONS(373), - [anon_sym_exec] = ACTIONS(373), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), + [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), @@ -104735,216 +91621,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1293), + [sym__indent] = ACTIONS(1295), + [sym_string_start] = ACTIONS(117), }, - [799] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5613), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [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(4941), - [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(5877), - [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), - }, - [800] = { - [sym_named_expression] = STATE(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5830), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3726), - [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(5154), - [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(5767), - [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), - }, - [801] = { - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_expression_list] = STATE(5311), - [sym_pattern] = STATE(3394), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4041), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5311), - [sym_augmented_assignment] = STATE(5311), - [sym_pattern_list] = STATE(3349), - [sym__right_hand_side] = STATE(5311), - [sym_yield] = STATE(5311), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [498] = { + [sym__simple_statements] = STATE(3506), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [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(373), - [anon_sym_match] = ACTIONS(373), - [anon_sym_async] = ACTIONS(373), - [anon_sym_exec] = ACTIONS(373), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), + [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), @@ -104957,364 +91735,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [802] = { - [sym_named_expression] = STATE(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5601), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3726), - [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(5154), - [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(5767), - [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(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(4821), - [sym_parenthesized_list_splat] = STATE(4883), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym_expression] = STATE(3657), - [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(4883), - [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(4142), - [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(5580), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5811), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3735), - [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(5154), - [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(5771), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(489), + [sym__indent] = ACTIONS(491), + [sym_string_start] = ACTIONS(117), }, - [805] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5613), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3771), - [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(4948), - [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(5734), - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_expression_list] = STATE(5455), - [sym_pattern] = STATE(3394), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2000), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4041), - [sym_primary_expression] = STATE(2170), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_assignment] = STATE(5455), - [sym_augmented_assignment] = STATE(5455), - [sym_pattern_list] = STATE(3349), - [sym__right_hand_side] = STATE(5455), - [sym_yield] = STATE(5455), - [sym_attribute] = STATE(1982), - [sym_subscript] = STATE(1982), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [sym_sizeof_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), + [499] = { + [sym__simple_statements] = STATE(2075), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), [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(373), - [anon_sym_match] = ACTIONS(373), - [anon_sym_async] = ACTIONS(373), - [anon_sym_exec] = ACTIONS(373), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), + [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), @@ -105327,2950 +91849,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(4868), - [sym_parenthesized_list_splat] = STATE(4883), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym_expression] = STATE(3628), - [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(4883), - [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(4103), - [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(5865), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5811), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3726), - [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(5154), - [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(5767), - [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(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(5113), - [sym_parenthesized_list_splat] = STATE(4883), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym_expression] = STATE(3674), - [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(4883), - [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(4208), - [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(5792), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1297), + [sym__indent] = ACTIONS(1299), + [sym_string_start] = ACTIONS(117), }, - [810] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5613), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4893), - [sym_parenthesized_list_splat] = STATE(4894), - [sym__patterns] = STATE(5712), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3751), - [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(4859), - [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(5788), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5261), - [sym_parenthesized_list_splat] = STATE(5266), - [sym__patterns] = STATE(5556), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3766), - [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(4793), - [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(5635), - [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_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5613), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [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(4941), - [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(5877), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym__patterns] = STATE(5556), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(2578), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym__patterns] = STATE(5757), - [sym_pattern] = STATE(5158), - [sym_tuple_pattern] = STATE(5351), - [sym_list_pattern] = STATE(5351), - [sym_list_splat_pattern] = STATE(2571), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3726), - [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(5154), - [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(5767), - [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_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_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(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4421), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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_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(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(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4421), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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_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_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(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4421), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4421), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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_named_expression] = STATE(3948), - [sym__named_expression_lhs] = STATE(5709), - [sym_expression_list] = STATE(4429), - [sym_pattern] = STATE(5321), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2413), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(3874), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), - [sym_pattern_list] = STATE(4429), - [sym_yield] = STATE(4429), - [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym__f_expression] = STATE(4429), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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_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(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4421), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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_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_named_expression] = STATE(3948), - [sym__named_expression_lhs] = STATE(5709), - [sym_expression_list] = STATE(4502), - [sym_pattern] = STATE(5321), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2413), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(3874), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), - [sym_pattern_list] = STATE(4502), - [sym_yield] = STATE(4502), - [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym__f_expression] = STATE(4502), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4421), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(5127), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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] = { - [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(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(4985), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4870), - [sym_dictionary_splat] = STATE(4870), - [sym_parenthesized_list_splat] = STATE(4871), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3754), - [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(4870), - [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(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(4958), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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_pattern] = STATE(3303), - [sym_tuple_pattern] = STATE(3293), - [sym_list_pattern] = STATE(3293), - [sym_list_splat_pattern] = STATE(2604), - [sym_primary_expression] = STATE(3294), - [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_pattern] = STATE(3303), - [sym_tuple_pattern] = STATE(3293), - [sym_list_pattern] = STATE(3293), - [sym_list_splat_pattern] = STATE(2604), - [sym_primary_expression] = STATE(3294), - [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(3525), - [sym__named_expression_lhs] = STATE(5878), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3854), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_attribute] = STATE(2230), - [sym_subscript] = STATE(2230), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(4379), - [sym_splat_type] = STATE(4350), - [sym_generic_type] = STATE(4350), - [sym_union_type] = STATE(4350), - [sym_constrained_type] = STATE(4350), - [sym_member_type] = STATE(4350), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [500] = { + [sym__simple_statements] = STATE(1275), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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(2819), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2821), + [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(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(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(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4421), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5039), - [sym_dictionary_splat] = STATE(5039), - [sym_parenthesized_list_splat] = STATE(5040), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3800), - [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(5039), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1301), + [sym__indent] = ACTIONS(1303), + [sym_string_start] = ACTIONS(117), }, - [843] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(5119), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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(3525), - [sym__named_expression_lhs] = STATE(5878), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3854), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_attribute] = STATE(2230), - [sym_subscript] = STATE(2230), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(4370), - [sym_splat_type] = STATE(4350), - [sym_generic_type] = STATE(4350), - [sym_union_type] = STATE(4350), - [sym_constrained_type] = STATE(4350), - [sym_member_type] = STATE(4350), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [501] = { + [sym__simple_statements] = STATE(3511), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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(2819), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2821), + [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(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(2823), - [anon_sym_sizeof] = ACTIONS(107), - [sym_string_start] = ACTIONS(109), - }, - [845] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4518), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1305), + [sym__indent] = ACTIONS(1307), + [sym_string_start] = ACTIONS(117), }, - [846] = { - [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(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3904), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_attribute] = STATE(2230), - [sym_subscript] = STATE(2230), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(4480), - [sym_splat_type] = STATE(4350), - [sym_generic_type] = STATE(4350), - [sym_union_type] = STATE(4350), - [sym_constrained_type] = STATE(4350), - [sym_member_type] = STATE(4350), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [502] = { + [sym__simple_statements] = STATE(3578), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), @@ -108279,1844 +92188,1594 @@ 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(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), - }, - [848] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4330), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(5220), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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(5637), - [sym_with_item] = STATE(5277), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [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(5104), - [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(5719), - [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1309), + [sym__indent] = ACTIONS(1311), + [sym_string_start] = ACTIONS(117), }, - [851] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4277), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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(3186), - [sym__named_expression_lhs] = STATE(5807), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4072), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(4654), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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(3525), - [sym__named_expression_lhs] = STATE(5878), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3854), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_attribute] = STATE(2230), - [sym_subscript] = STATE(2230), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(4269), - [sym_splat_type] = STATE(4350), - [sym_generic_type] = STATE(4350), - [sym_union_type] = STATE(4350), - [sym_constrained_type] = STATE(4350), - [sym_member_type] = STATE(4350), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [503] = { + [sym__simple_statements] = STATE(1229), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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(2819), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2821), + [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(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(2823), - [anon_sym_sizeof] = ACTIONS(107), - [sym_string_start] = ACTIONS(109), - }, - [855] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3763), - [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(5166), - [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(5613), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(3305), - [sym_primary_expression] = STATE(3332), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_attribute] = STATE(3308), - [sym_subscript] = STATE(3308), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5343), - [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4305), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(5228), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(4654), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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__patterns] = STATE(5556), - [sym_pattern] = STATE(4881), - [sym_tuple_pattern] = STATE(5357), - [sym_list_pattern] = STATE(5357), - [sym_list_splat_pattern] = STATE(3305), - [sym_primary_expression] = STATE(3332), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_attribute] = STATE(3308), - [sym_subscript] = STATE(3308), - [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(3599), - [sym__signedness] = STATE(3262), - [sym__longness] = STATE(3479), - [sym_function_pointer_type] = STATE(3599), - [sym_c_type] = STATE(5343), - [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(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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1313), + [sym__indent] = ACTIONS(1315), + [sym_string_start] = ACTIONS(117), }, - [861] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(5120), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [504] = { + [sym__simple_statements] = STATE(1232), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1317), + [sym__indent] = ACTIONS(1319), + [sym_string_start] = ACTIONS(117), }, - [862] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5166), - [sym_dictionary_splat] = STATE(5166), - [sym_parenthesized_list_splat] = STATE(5167), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4195), - [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(5166), - [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), + [505] = { + [sym__simple_statements] = STATE(3595), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1321), + [sym__indent] = ACTIONS(1323), + [sym_string_start] = ACTIONS(117), }, - [863] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5807), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4072), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(4752), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [506] = { + [sym__simple_statements] = STATE(2081), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1325), + [sym__indent] = ACTIONS(1327), + [sym_string_start] = ACTIONS(117), }, - [864] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(5125), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [507] = { + [sym__simple_statements] = STATE(3617), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1329), + [sym__indent] = ACTIONS(1331), + [sym_string_start] = ACTIONS(117), }, - [865] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4995), - [sym_dictionary_splat] = STATE(4995), - [sym_parenthesized_list_splat] = STATE(4996), - [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_attribute] = STATE(2575), - [sym_subscript] = STATE(2575), - [sym_ellipsis] = STATE(2575), - [sym_call] = STATE(2575), - [sym_keyword_argument] = STATE(4995), - [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), + [508] = { + [sym__simple_statements] = STATE(1135), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1333), + [sym__indent] = ACTIONS(1335), + [sym_string_start] = ACTIONS(117), }, - [866] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5269), - [sym_dictionary_splat] = STATE(5269), - [sym_parenthesized_list_splat] = STATE(4768), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3775), - [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(5269), - [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), + [509] = { + [sym__simple_statements] = STATE(1596), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1337), + [sym__indent] = ACTIONS(1339), + [sym_string_start] = ACTIONS(117), }, - [867] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4259), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(5131), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [510] = { + [sym__simple_statements] = STATE(3624), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1341), + [sym__indent] = ACTIONS(1343), + [sym_string_start] = ACTIONS(117), }, - [868] = { - [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), + [511] = { + [sym__simple_statements] = STATE(3625), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1345), + [sym__indent] = ACTIONS(1347), + [sym_string_start] = ACTIONS(117), }, - [869] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4926), - [sym_dictionary_splat] = STATE(4926), - [sym_parenthesized_list_splat] = STATE(4927), - [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(4926), - [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), + [512] = { + [sym__simple_statements] = STATE(1597), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1349), + [sym__indent] = ACTIONS(1351), + [sym_string_start] = ACTIONS(117), }, - [870] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(3911), - [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(4517), - [sym_splat_type] = STATE(4519), - [sym_generic_type] = STATE(4519), - [sym_union_type] = STATE(4519), - [sym_constrained_type] = STATE(4519), - [sym_member_type] = STATE(4519), - [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), + [513] = { + [sym__simple_statements] = STATE(1598), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1353), + [sym__indent] = ACTIONS(1355), + [sym_string_start] = ACTIONS(117), }, - [871] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5012), - [sym_dictionary_splat] = STATE(5012), - [sym_parenthesized_list_splat] = STATE(5018), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3761), - [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(5012), - [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), + [514] = { + [sym__simple_statements] = STATE(901), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1357), + [sym__indent] = ACTIONS(1359), + [sym_string_start] = ACTIONS(117), }, - [872] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5807), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4072), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_attribute] = STATE(2508), - [sym_subscript] = STATE(2508), - [sym_ellipsis] = STATE(2508), - [sym_call] = STATE(2508), - [sym_type] = STATE(4621), - [sym_splat_type] = STATE(4633), - [sym_generic_type] = STATE(4633), - [sym_union_type] = STATE(4633), - [sym_constrained_type] = STATE(4633), - [sym_member_type] = STATE(4633), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [515] = { + [sym__simple_statements] = STATE(3658), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1361), + [sym__indent] = ACTIONS(1363), + [sym_string_start] = ACTIONS(117), }, - [873] = { - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3904), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_attribute] = STATE(2230), - [sym_subscript] = STATE(2230), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(4590), - [sym_splat_type] = STATE(4350), - [sym_generic_type] = STATE(4350), - [sym_union_type] = STATE(4350), - [sym_constrained_type] = STATE(4350), - [sym_member_type] = STATE(4350), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [516] = { + [sym__simple_statements] = STATE(3628), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), @@ -110125,69 +93784,112 @@ 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(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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), + [sym_string_start] = ACTIONS(117), }, - [874] = { - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3904), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [sym_attribute] = STATE(2230), - [sym_subscript] = STATE(2230), - [sym_ellipsis] = STATE(2230), - [sym_call] = STATE(2230), - [sym_type] = STATE(4379), - [sym_splat_type] = STATE(4350), - [sym_generic_type] = STATE(4350), - [sym_union_type] = STATE(4350), - [sym_constrained_type] = STATE(4350), - [sym_member_type] = STATE(4350), - [sym_list] = STATE(2230), - [sym_set] = STATE(2230), - [sym_tuple] = STATE(2230), - [sym_dictionary] = STATE(2230), - [sym_list_comprehension] = STATE(2230), - [sym_dictionary_comprehension] = STATE(2230), - [sym_set_comprehension] = STATE(2230), - [sym_generator_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_conditional_expression] = STATE(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [517] = { + [sym__simple_statements] = STATE(6346), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), @@ -110196,8431 +93898,4553 @@ 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(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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1365), + [sym__indent] = ACTIONS(1367), + [sym_string_start] = ACTIONS(117), }, - [875] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4959), - [sym_dictionary_splat] = STATE(4959), - [sym_parenthesized_list_splat] = STATE(4960), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3773), - [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(4959), - [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), + [518] = { + [sym__simple_statements] = STATE(3486), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1369), + [sym__indent] = ACTIONS(1371), + [sym_string_start] = ACTIONS(117), }, - [876] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [519] = { + [sym__simple_statements] = STATE(3489), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1373), + [sym__indent] = ACTIONS(1375), + [sym_string_start] = ACTIONS(117), }, - [877] = { - [sym_named_expression] = STATE(3948), - [sym__named_expression_lhs] = STATE(5709), - [sym_expression_list] = STATE(4455), - [sym_list_splat_pattern] = STATE(2465), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(3888), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), + [520] = { + [sym__simple_statements] = STATE(3490), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1377), + [sym__indent] = ACTIONS(1379), + [sym_string_start] = ACTIONS(117), }, - [878] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [521] = { + [sym__simple_statements] = STATE(1116), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1381), + [sym__indent] = ACTIONS(1383), + [sym_string_start] = ACTIONS(117), }, - [879] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [522] = { + [sym__simple_statements] = STATE(3903), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(441), + [sym__indent] = ACTIONS(443), + [sym_string_start] = ACTIONS(117), }, - [880] = { - [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_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), + [523] = { + [sym__simple_statements] = STATE(1122), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1385), + [sym__indent] = ACTIONS(1387), + [sym_string_start] = ACTIONS(117), }, - [882] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [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(4916), - [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(5562), - [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), + [524] = { + [sym__simple_statements] = STATE(3496), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1389), + [sym__indent] = ACTIONS(1391), + [sym_string_start] = ACTIONS(117), }, - [883] = { - [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), + [525] = { + [sym__simple_statements] = STATE(3772), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1393), + [sym__indent] = ACTIONS(1395), + [sym_string_start] = ACTIONS(117), }, - [884] = { - [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), + [526] = { + [sym__simple_statements] = STATE(1607), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1397), + [sym__indent] = ACTIONS(1399), + [sym_string_start] = ACTIONS(117), }, - [885] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [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(4941), - [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(5877), - [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), + [527] = { + [sym__simple_statements] = STATE(3499), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(457), + [sym__indent] = ACTIONS(459), + [sym_string_start] = ACTIONS(117), }, - [886] = { - [sym_named_expression] = STATE(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3735), - [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(5154), - [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(5771), - [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), + [528] = { + [sym__simple_statements] = STATE(1332), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(481), + [sym__indent] = ACTIONS(483), + [sym_string_start] = ACTIONS(117), }, - [887] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5261), - [sym_parenthesized_list_splat] = STATE(5266), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3766), - [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(4793), - [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(5635), - [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), + [529] = { + [sym__simple_statements] = STATE(2094), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1401), + [sym__indent] = ACTIONS(1403), + [sym_string_start] = ACTIONS(117), }, - [888] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [530] = { + [sym__simple_statements] = STATE(3534), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1405), + [sym__indent] = ACTIONS(1407), + [sym_string_start] = ACTIONS(117), }, - [889] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [531] = { + [sym__simple_statements] = STATE(1089), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1409), + [sym__indent] = ACTIONS(1411), + [sym_string_start] = ACTIONS(117), }, - [890] = { - [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), + [532] = { + [sym__simple_statements] = STATE(1090), + [sym_import_statement] = STATE(5956), + [sym_future_import_statement] = STATE(5956), + [sym_import_from_statement] = STATE(5956), + [sym_print_statement] = STATE(5956), + [sym_assert_statement] = STATE(5956), + [sym_expression_statement] = STATE(5956), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5956), + [sym_delete_statement] = STATE(5956), + [sym_raise_statement] = STATE(5956), + [sym_pass_statement] = STATE(5956), + [sym_break_statement] = STATE(5956), + [sym_continue_statement] = STATE(5956), + [sym_global_statement] = STATE(5956), + [sym_nonlocal_statement] = STATE(5956), + [sym_exec_statement] = STATE(5956), + [sym_type_alias_statement] = STATE(5956), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5956), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1413), + [sym__indent] = ACTIONS(1415), + [sym_string_start] = ACTIONS(117), }, - [891] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [533] = { + [sym__simple_statements] = STATE(3538), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1417), + [sym__indent] = ACTIONS(1419), + [sym_string_start] = ACTIONS(117), }, - [892] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [534] = { + [sym__simple_statements] = STATE(3539), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1421), + [sym__indent] = ACTIONS(1423), + [sym_string_start] = ACTIONS(117), }, - [893] = { - [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), + [535] = { + [sym__simple_statements] = STATE(1023), + [sym_import_statement] = STATE(6017), + [sym_future_import_statement] = STATE(6017), + [sym_import_from_statement] = STATE(6017), + [sym_print_statement] = STATE(6017), + [sym_assert_statement] = STATE(6017), + [sym_expression_statement] = STATE(6017), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6017), + [sym_delete_statement] = STATE(6017), + [sym_raise_statement] = STATE(6017), + [sym_pass_statement] = STATE(6017), + [sym_break_statement] = STATE(6017), + [sym_continue_statement] = STATE(6017), + [sym_global_statement] = STATE(6017), + [sym_nonlocal_statement] = STATE(6017), + [sym_exec_statement] = STATE(6017), + [sym_type_alias_statement] = STATE(6017), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6017), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1425), + [sym__indent] = ACTIONS(1427), + [sym_string_start] = ACTIONS(117), }, - [894] = { - [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), + [536] = { + [sym__simple_statements] = STATE(3541), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1429), + [sym__indent] = ACTIONS(1431), + [sym_string_start] = ACTIONS(117), }, - [895] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [537] = { + [sym__simple_statements] = STATE(2097), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1433), + [sym__indent] = ACTIONS(1435), + [sym_string_start] = ACTIONS(117), }, - [896] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [538] = { + [sym__simple_statements] = STATE(1113), + [sym_import_statement] = STATE(6114), + [sym_future_import_statement] = STATE(6114), + [sym_import_from_statement] = STATE(6114), + [sym_print_statement] = STATE(6114), + [sym_assert_statement] = STATE(6114), + [sym_expression_statement] = STATE(6114), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6114), + [sym_delete_statement] = STATE(6114), + [sym_raise_statement] = STATE(6114), + [sym_pass_statement] = STATE(6114), + [sym_break_statement] = STATE(6114), + [sym_continue_statement] = STATE(6114), + [sym_global_statement] = STATE(6114), + [sym_nonlocal_statement] = STATE(6114), + [sym_exec_statement] = STATE(6114), + [sym_type_alias_statement] = STATE(6114), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6114), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1437), + [sym__indent] = ACTIONS(1439), + [sym_string_start] = ACTIONS(117), }, - [897] = { - [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), + [539] = { + [sym__simple_statements] = STATE(2101), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1441), + [sym__indent] = ACTIONS(1443), + [sym_string_start] = ACTIONS(117), }, - [898] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3784), - [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(4984), - [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(5639), - [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), + [540] = { + [sym__simple_statements] = STATE(3551), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1445), + [sym__indent] = ACTIONS(1447), + [sym_string_start] = ACTIONS(117), }, - [899] = { - [sym_named_expression] = STATE(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3776), - [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(5154), - [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(5673), - [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), + [541] = { + [sym__simple_statements] = STATE(1446), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1449), + [sym__indent] = ACTIONS(1451), + [sym_string_start] = ACTIONS(117), }, - [900] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4893), - [sym_parenthesized_list_splat] = STATE(4894), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3751), - [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(4859), - [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(5788), - [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), + [542] = { + [sym__simple_statements] = STATE(1620), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1453), + [sym__indent] = ACTIONS(1455), + [sym_string_start] = ACTIONS(117), }, - [901] = { - [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), + [543] = { + [sym__simple_statements] = STATE(3564), + [sym_import_statement] = STATE(5993), + [sym_future_import_statement] = STATE(5993), + [sym_import_from_statement] = STATE(5993), + [sym_print_statement] = STATE(5993), + [sym_assert_statement] = STATE(5993), + [sym_expression_statement] = STATE(5993), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5993), + [sym_delete_statement] = STATE(5993), + [sym_raise_statement] = STATE(5993), + [sym_pass_statement] = STATE(5993), + [sym_break_statement] = STATE(5993), + [sym_continue_statement] = STATE(5993), + [sym_global_statement] = STATE(5993), + [sym_nonlocal_statement] = STATE(5993), + [sym_exec_statement] = STATE(5993), + [sym_type_alias_statement] = STATE(5993), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5993), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1457), + [sym__indent] = ACTIONS(1459), + [sym_string_start] = ACTIONS(117), }, - [902] = { - [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), + [544] = { + [sym__simple_statements] = STATE(1623), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1461), + [sym__indent] = ACTIONS(1463), + [sym_string_start] = ACTIONS(117), }, - [903] = { - [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), + [545] = { + [sym__simple_statements] = STATE(1624), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1465), + [sym__indent] = ACTIONS(1467), + [sym_string_start] = ACTIONS(117), }, - [904] = { - [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), + [546] = { + [sym__simple_statements] = STATE(1492), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1469), + [sym__indent] = ACTIONS(1471), + [sym_string_start] = ACTIONS(117), }, - [905] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_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_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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_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_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_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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3806), - [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(5104), - [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(5719), - [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_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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3726), - [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(5154), - [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(5767), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3785), - [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(5154), - [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(5522), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(5261), - [sym_parenthesized_list_splat] = STATE(5266), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3784), - [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(4984), - [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(5639), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [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_yield] = STATE(5010), - [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(5763), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3742), - [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(5154), - [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(5702), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4893), - [sym_parenthesized_list_splat] = STATE(4894), - [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_yield] = STATE(5010), - [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(5763), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3751), - [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(4859), - [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(5788), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3772), - [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(5154), - [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(5843), - [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_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [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(3771), - [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(4948), - [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(5734), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3771), - [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(4948), - [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(5734), - [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_named_expression] = STATE(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3788), - [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(5154), - [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(5768), - [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_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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [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(4916), - [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(5562), - [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_named_expression] = STATE(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat] = STATE(5154), - [sym_parenthesized_list_splat] = STATE(5154), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym_expression] = STATE(3779), - [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(5154), - [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(5752), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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_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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat] = STATE(4879), - [sym_parenthesized_list_splat] = STATE(4879), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym_expression] = STATE(3766), - [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(4793), - [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(5635), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym__expression_within_for_in_clause] = STATE(4585), - [sym_expression] = STATE(4059), - [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(4585), - [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(3948), - [sym__named_expression_lhs] = STATE(5813), - [sym_list_splat] = STATE(5319), - [sym_parenthesized_list_splat] = STATE(5319), - [sym_list_splat_pattern] = STATE(2465), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(4344), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), - [sym_yield] = STATE(5319), + [547] = { + [sym__simple_statements] = STATE(2107), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym__expression_within_for_in_clause] = STATE(4585), - [sym_expression] = STATE(4059), - [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(4585), - [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(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym__expression_within_for_in_clause] = STATE(4585), - [sym_expression] = STATE(4059), - [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(4585), - [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(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym__expression_within_for_in_clause] = STATE(4444), - [sym_expression] = STATE(4089), - [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(4444), - [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(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat] = STATE(5292), - [sym_parenthesized_list_splat] = STATE(5292), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4337), - [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(5292), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym__expression_within_for_in_clause] = STATE(4573), - [sym_expression] = STATE(4071), - [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(4573), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym__expression_within_for_in_clause] = STATE(4573), - [sym_expression] = STATE(4071), - [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(4573), - [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(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_expression_list] = STATE(5515), - [sym_pattern] = STATE(4732), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4088), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_pattern_list] = STATE(5487), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat] = STATE(5292), - [sym_parenthesized_list_splat] = STATE(5292), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4337), - [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(5292), - [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(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym__expression_within_for_in_clause] = STATE(4444), - [sym_expression] = STATE(4089), - [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(4444), - [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] = { - [sym_named_expression] = STATE(2577), - [sym__named_expression_lhs] = STATE(5637), - [sym_list_splat_pattern] = STATE(2540), - [sym_as_pattern] = STATE(2577), - [sym__expression_within_for_in_clause] = STATE(4585), - [sym_expression] = STATE(4059), - [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(4585), - [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] = { - [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_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5501), - [sym_parenthesized_list_splat] = STATE(5501), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4319), - [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(5501), - [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(1470), - [anon_sym_sizeof] = ACTIONS(1472), - [sym_string_start] = ACTIONS(1474), - }, - [977] = { - [sym_named_expression] = STATE(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym__expression_within_for_in_clause] = STATE(4444), - [sym_expression] = STATE(4089), - [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(4444), - [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_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_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] = { - [sym_named_expression] = STATE(2410), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat_pattern] = STATE(2500), - [sym_as_pattern] = STATE(2410), - [sym__expression_within_for_in_clause] = STATE(4444), - [sym_expression] = STATE(4089), - [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(4444), - [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_pattern] = STATE(3331), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2809), - [sym_primary_expression] = STATE(3333), - [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(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym__expression_within_for_in_clause] = STATE(4573), - [sym_expression] = STATE(4071), - [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(4573), - [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(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_expression_list] = STATE(5422), - [sym_pattern] = STATE(4706), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4075), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_pattern_list] = STATE(5485), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1473), + [sym__indent] = ACTIONS(1475), + [sym_string_start] = ACTIONS(117), }, - [984] = { - [sym_named_expression] = STATE(2570), - [sym__named_expression_lhs] = STATE(5863), - [sym_list_splat_pattern] = STATE(2610), - [sym_as_pattern] = STATE(2570), - [sym__expression_within_for_in_clause] = STATE(4573), - [sym_expression] = STATE(4071), - [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(4573), - [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), + [548] = { + [sym__simple_statements] = STATE(3700), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1477), + [sym__indent] = ACTIONS(1479), + [sym_string_start] = ACTIONS(117), }, - [985] = { - [sym_named_expression] = STATE(3948), - [sym__named_expression_lhs] = STATE(5813), - [sym_list_splat] = STATE(5319), - [sym_parenthesized_list_splat] = STATE(5319), - [sym_list_splat_pattern] = STATE(2465), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(4344), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), - [sym_yield] = STATE(5319), + [549] = { + [sym__simple_statements] = STATE(1256), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1481), + [sym__indent] = ACTIONS(1483), + [sym_string_start] = ACTIONS(117), }, - [986] = { - [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), + [550] = { + [sym__simple_statements] = STATE(3811), + [sym_import_statement] = STATE(5889), + [sym_future_import_statement] = STATE(5889), + [sym_import_from_statement] = STATE(5889), + [sym_print_statement] = STATE(5889), + [sym_assert_statement] = STATE(5889), + [sym_expression_statement] = STATE(5889), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(5889), + [sym_delete_statement] = STATE(5889), + [sym_raise_statement] = STATE(5889), + [sym_pass_statement] = STATE(5889), + [sym_break_statement] = STATE(5889), + [sym_continue_statement] = STATE(5889), + [sym_global_statement] = STATE(5889), + [sym_nonlocal_statement] = STATE(5889), + [sym_exec_statement] = STATE(5889), + [sym_type_alias_statement] = STATE(5889), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(5889), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), + [sym_string_start] = ACTIONS(117), }, - [987] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5501), - [sym_parenthesized_list_splat] = STATE(5501), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4319), - [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(5501), - [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), + [551] = { + [sym__simple_statements] = STATE(4902), + [sym_import_statement] = STATE(6139), + [sym_future_import_statement] = STATE(6139), + [sym_import_from_statement] = STATE(6139), + [sym_print_statement] = STATE(6139), + [sym_assert_statement] = STATE(6139), + [sym_expression_statement] = STATE(6139), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6139), + [sym_delete_statement] = STATE(6139), + [sym_raise_statement] = STATE(6139), + [sym_pass_statement] = STATE(6139), + [sym_break_statement] = STATE(6139), + [sym_continue_statement] = STATE(6139), + [sym_global_statement] = STATE(6139), + [sym_nonlocal_statement] = STATE(6139), + [sym_exec_statement] = STATE(6139), + [sym_type_alias_statement] = STATE(6139), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6139), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1485), + [sym__indent] = ACTIONS(1487), + [sym_string_start] = ACTIONS(117), }, - [988] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_expression_list] = STATE(5336), - [sym_pattern] = STATE(4738), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4032), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_pattern_list] = STATE(5503), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [552] = { + [sym__simple_statements] = STATE(1259), + [sym_import_statement] = STATE(6040), + [sym_future_import_statement] = STATE(6040), + [sym_import_from_statement] = STATE(6040), + [sym_print_statement] = STATE(6040), + [sym_assert_statement] = STATE(6040), + [sym_expression_statement] = STATE(6040), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6040), + [sym_delete_statement] = STATE(6040), + [sym_raise_statement] = STATE(6040), + [sym_pass_statement] = STATE(6040), + [sym_break_statement] = STATE(6040), + [sym_continue_statement] = STATE(6040), + [sym_global_statement] = STATE(6040), + [sym_nonlocal_statement] = STATE(6040), + [sym_exec_statement] = STATE(6040), + [sym_type_alias_statement] = STATE(6040), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6040), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1489), + [sym__indent] = ACTIONS(1491), + [sym_string_start] = ACTIONS(117), }, - [989] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_expression_list] = STATE(5341), - [sym_pattern] = STATE(4746), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4090), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [sym_pattern_list] = STATE(5510), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [553] = { + [sym__simple_statements] = STATE(1537), + [sym_import_statement] = STATE(6143), + [sym_future_import_statement] = STATE(6143), + [sym_import_from_statement] = STATE(6143), + [sym_print_statement] = STATE(6143), + [sym_assert_statement] = STATE(6143), + [sym_expression_statement] = STATE(6143), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6143), + [sym_delete_statement] = STATE(6143), + [sym_raise_statement] = STATE(6143), + [sym_pass_statement] = STATE(6143), + [sym_break_statement] = STATE(6143), + [sym_continue_statement] = STATE(6143), + [sym_global_statement] = STATE(6143), + [sym_nonlocal_statement] = STATE(6143), + [sym_exec_statement] = STATE(6143), + [sym_type_alias_statement] = STATE(6143), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6143), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(469), + [sym__indent] = ACTIONS(471), + [sym_string_start] = ACTIONS(117), }, - [990] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5429), - [sym_dictionary_splat] = STATE(5429), - [sym_parenthesized_list_splat] = STATE(5289), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4290), - [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(5429), - [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), + [554] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH_SLASH] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AT_EQ] = ACTIONS(1014), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(1537), }, - [991] = { - [sym_pattern] = STATE(3331), - [sym_tuple_pattern] = STATE(3300), - [sym_list_pattern] = STATE(3300), - [sym_list_splat_pattern] = STATE(2809), - [sym_primary_expression] = STATE(3333), - [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), + [555] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5085), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH_SLASH] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AT_EQ] = ACTIONS(1014), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(1537), }, - [992] = { - [sym_named_expression] = STATE(3948), - [sym__named_expression_lhs] = STATE(5709), - [sym_list_splat_pattern] = STATE(2465), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(3903), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), + [556] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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_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_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), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1539), + [sym_string_start] = ACTIONS(117), }, - [995] = { - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_expression_list] = STATE(5234), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(3950), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [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(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [557] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), @@ -118629,1018 +98453,1566 @@ 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(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(3171), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1541), + [sym_string_start] = ACTIONS(117), }, - [996] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [558] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1543), + [sym_string_start] = ACTIONS(117), }, - [997] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [559] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1545), + [sym_string_start] = ACTIONS(117), }, - [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), - }, - [999] = { - [sym_named_expression] = STATE(3948), - [sym__named_expression_lhs] = STATE(5813), - [sym_list_splat] = STATE(5319), - [sym_parenthesized_list_splat] = STATE(5319), - [sym_list_splat_pattern] = STATE(2465), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(4344), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), - [sym_yield] = STATE(5319), + [560] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1547), + [sym_string_start] = ACTIONS(117), }, - [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(3185), - [anon_sym_STAR] = ACTIONS(3185), - [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(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(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(3185), - [anon_sym_None] = ACTIONS(3187), - [sym_integer] = ACTIONS(3187), - [sym_float] = ACTIONS(3185), - [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_IF] = 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(3185), + [561] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1549), + [sym_string_start] = ACTIONS(117), }, - [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(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_string_start] = ACTIONS(3189), + [562] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1551), + [sym_string_start] = ACTIONS(117), }, - [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(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_print] = ACTIONS(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_del] = ACTIONS(3195), - [anon_sym_raise] = ACTIONS(3195), - [anon_sym_pass] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_except_STAR] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3195), - [anon_sym_def] = ACTIONS(3195), - [anon_sym_global] = ACTIONS(3195), - [anon_sym_nonlocal] = ACTIONS(3195), - [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_not] = ACTIONS(3195), - [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(3193), - [anon_sym_None] = ACTIONS(3195), - [sym_integer] = ACTIONS(3195), - [sym_float] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_api] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [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), - [anon_sym_ctypedef] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_packed] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3195), - [sym_string_start] = ACTIONS(3193), + [563] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1553), + [sym_string_start] = ACTIONS(117), }, - [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), + [564] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1555), + [sym_string_start] = ACTIONS(117), }, - [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), + [565] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1557), + [sym_string_start] = ACTIONS(117), }, - [1005] = { - [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__dedent] = ACTIONS(3207), - [sym_string_start] = ACTIONS(3207), + [566] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1559), + [sym_string_start] = ACTIONS(117), }, - [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), + [567] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1561), + [sym_string_start] = ACTIONS(117), }, - [1007] = { - [sym_named_expression] = STATE(3948), - [sym__named_expression_lhs] = STATE(5813), - [sym_expression_list] = STATE(4455), - [sym_list_splat_pattern] = STATE(2465), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(4167), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), + [568] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1563), + [sym_string_start] = ACTIONS(117), }, - [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), + [569] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1565), + [sym_string_start] = ACTIONS(117), }, - [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), + [570] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1567), + [sym_string_start] = ACTIONS(117), }, - [1010] = { - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_expression_list] = STATE(5415), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4056), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [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(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [571] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), @@ -119649,6477 +100021,10935 @@ 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(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(2877), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1569), + [sym_string_start] = ACTIONS(117), }, - [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), + [572] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1571), + [sym_string_start] = ACTIONS(117), }, - [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), + [573] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1573), + [sym_string_start] = ACTIONS(117), }, - [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), + [574] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1575), + [sym_string_start] = ACTIONS(117), }, - [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), + [575] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1577), + [sym_string_start] = ACTIONS(117), }, - [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), + [576] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1579), + [sym_string_start] = ACTIONS(117), }, - [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), + [577] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(1581), + [sym_string_start] = ACTIONS(117), + }, + [578] = { + [sym_import_statement] = STATE(6548), + [sym_future_import_statement] = STATE(6548), + [sym_import_from_statement] = STATE(6548), + [sym_print_statement] = STATE(6548), + [sym_assert_statement] = STATE(6548), + [sym_expression_statement] = STATE(6548), + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_return_statement] = STATE(6548), + [sym_delete_statement] = STATE(6548), + [sym_raise_statement] = STATE(6548), + [sym_pass_statement] = STATE(6548), + [sym_break_statement] = STATE(6548), + [sym_continue_statement] = STATE(6548), + [sym_global_statement] = STATE(6548), + [sym_nonlocal_statement] = STATE(6548), + [sym_exec_statement] = STATE(6548), + [sym_type_alias_statement] = STATE(6548), + [sym_pattern] = STATE(4121), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4798), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6565), + [sym_augmented_assignment] = STATE(6565), + [sym_pattern_list] = STATE(4262), + [sym_yield] = STATE(6565), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_include_statement] = STATE(6548), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [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(405), + [anon_sym_async] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(101), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [579] = { + [sym_list_splat_pattern] = STATE(2599), + [sym_primary_expression] = STATE(2654), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH_SLASH] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AT_EQ] = ACTIONS(1014), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, - [1017] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [580] = { + [sym_list_splat_pattern] = STATE(2599), + [sym_primary_expression] = STATE(2654), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH_SLASH] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AT_EQ] = ACTIONS(1014), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, - [1018] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [581] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_LT_LT] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_AT_EQ] = ACTIONS(1597), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(1597), + [sym_string_start] = ACTIONS(1537), }, - [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), + [582] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6977), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6479), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [583] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6962), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4545), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6047), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6879), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6489), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [584] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5910), + [sym_parenthesized_list_splat] = STATE(5915), + [sym__patterns] = STATE(6977), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4541), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6145), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6981), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6479), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [585] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6449), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [586] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6487), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [587] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5986), + [sym_dictionary_splat] = STATE(5986), + [sym_parenthesized_list_splat] = STATE(5989), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5120), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5986), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [588] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6023), + [sym_dictionary_splat] = STATE(6023), + [sym_parenthesized_list_splat] = STATE(6024), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5036), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6023), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1026] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [589] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1027] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [590] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6209), + [sym_dictionary_splat] = STATE(6209), + [sym_parenthesized_list_splat] = STATE(6210), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4935), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6209), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1028] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [591] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5933), + [sym_dictionary_splat] = STATE(5933), + [sym_parenthesized_list_splat] = STATE(5934), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5048), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5933), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [592] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5999), + [sym_dictionary_splat] = STATE(5999), + [sym_parenthesized_list_splat] = STATE(6000), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5057), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5999), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [593] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6560), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [594] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5970), + [sym_dictionary_splat] = STATE(5970), + [sym_parenthesized_list_splat] = STATE(5971), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5140), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5970), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [595] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5900), + [sym_dictionary_splat] = STATE(5900), + [sym_parenthesized_list_splat] = STATE(5901), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5070), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5900), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [596] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6226), + [sym_dictionary_splat] = STATE(6226), + [sym_parenthesized_list_splat] = STATE(6227), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5011), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6226), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1034] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [597] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6582), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1035] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [598] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5867), + [sym_dictionary_splat] = STATE(5867), + [sym_parenthesized_list_splat] = STATE(5868), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5025), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5867), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1036] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [599] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6593), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1037] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [600] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6209), + [sym_dictionary_splat] = STATE(6209), + [sym_parenthesized_list_splat] = STATE(6210), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4935), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6209), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1038] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_expression_list] = STATE(5322), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4193), - [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), + [601] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1039] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_list_splat] = STATE(5501), - [sym_parenthesized_list_splat] = STATE(5501), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4319), - [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(5501), - [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), + [602] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6226), + [sym_dictionary_splat] = STATE(6226), + [sym_parenthesized_list_splat] = STATE(6227), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5011), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6226), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1040] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [603] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5867), + [sym_dictionary_splat] = STATE(5867), + [sym_parenthesized_list_splat] = STATE(5868), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5025), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5867), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1041] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [604] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5900), + [sym_dictionary_splat] = STATE(5900), + [sym_parenthesized_list_splat] = STATE(5901), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5070), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5900), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1042] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [605] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5933), + [sym_dictionary_splat] = STATE(5933), + [sym_parenthesized_list_splat] = STATE(5934), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5048), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5933), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1043] = { - [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), + [606] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5999), + [sym_dictionary_splat] = STATE(5999), + [sym_parenthesized_list_splat] = STATE(6000), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5057), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5999), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1044] = { - [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), + [607] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6041), + [sym_dictionary_splat] = STATE(6041), + [sym_parenthesized_list_splat] = STATE(6042), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5075), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6041), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1045] = { - [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), + [608] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6397), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [609] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6408), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [610] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6415), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [611] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6423), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [612] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6444), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [613] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6480), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [614] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6453), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [615] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6458), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [616] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6470), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [617] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6472), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [618] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6476), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [619] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(5986), + [sym_dictionary_splat] = STATE(5986), + [sym_parenthesized_list_splat] = STATE(5989), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5120), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(5986), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(5548), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [620] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5910), + [sym_parenthesized_list_splat] = STATE(5915), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4541), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6145), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6981), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6479), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [621] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4537), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5923), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6666), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6479), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [622] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5910), + [sym_parenthesized_list_splat] = STATE(5915), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4537), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5923), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6666), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6479), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [623] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5487), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6501), + [sym_c_function_argument_type] = STATE(6795), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [624] = { + [sym_list_splat_pattern] = STATE(2890), + [sym_primary_expression] = STATE(2649), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_print] = ACTIONS(1814), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [sym_type_conversion] = ACTIONS(981), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(1838), + [anon_sym_api] = ACTIONS(1814), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [625] = { + [sym_list_splat_pattern] = STATE(2599), + [sym_primary_expression] = STATE(2654), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, - [1046] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [626] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5451), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6541), + [sym_c_function_argument_type] = STATE(6878), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1047] = { - [sym_named_expression] = STATE(3948), - [sym__named_expression_lhs] = STATE(5709), - [sym_list_splat_pattern] = STATE(2465), - [sym_as_pattern] = STATE(3948), - [sym_expression] = STATE(3903), - [sym_primary_expression] = STATE(2159), - [sym_not_operator] = STATE(3948), - [sym_boolean_operator] = STATE(3948), - [sym_binary_operator] = STATE(2405), - [sym_unary_operator] = STATE(2405), - [sym_comparison_operator] = STATE(3948), - [sym_lambda] = STATE(3948), - [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(3948), - [sym_concatenated_string] = STATE(2405), - [sym_string] = STATE(2231), - [sym_none] = STATE(2405), - [sym_await] = STATE(2405), - [sym_new_expression] = STATE(3948), - [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), + [627] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5307), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6419), + [sym_c_function_argument_type] = STATE(6930), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1048] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [628] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5463), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6491), + [sym_c_function_argument_type] = STATE(6768), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1049] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat] = STATE(5292), - [sym_parenthesized_list_splat] = STATE(5292), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4337), - [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(5292), - [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), + [629] = { + [sym_list_splat_pattern] = STATE(2890), + [sym_primary_expression] = STATE(2649), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_print] = ACTIONS(1814), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [sym_type_conversion] = ACTIONS(981), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(1838), + [anon_sym_api] = ACTIONS(1814), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), }, - [1050] = { - [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), + [630] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5391), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6558), + [sym_c_function_argument_type] = STATE(6916), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1051] = { - [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), + [631] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5458), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6500), + [sym_c_function_argument_type] = STATE(6797), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1052] = { - [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), + [632] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5500), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6330), + [sym_c_function_argument_type] = STATE(6632), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1053] = { - [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), + [633] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5326), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6488), + [sym_c_function_argument_type] = STATE(6763), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1054] = { - [sym_identifier] = ACTIONS(3187), - [anon_sym_import] = ACTIONS(3187), - [anon_sym_cimport] = ACTIONS(3187), - [anon_sym_from] = ACTIONS(3187), - [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), - [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(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(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(3185), - [anon_sym_None] = ACTIONS(3187), - [sym_integer] = ACTIONS(3187), - [sym_float] = ACTIONS(3185), - [anon_sym_await] = ACTIONS(3187), - [anon_sym_api] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), + [634] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_LT_LT] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_AT_EQ] = ACTIONS(1597), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(1597), + [sym_string_start] = ACTIONS(1537), + }, + [635] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [sym_type_conversion] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [636] = { + [sym_list_splat_pattern] = STATE(2890), + [sym_primary_expression] = STATE(2649), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_print] = ACTIONS(1814), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [sym_type_conversion] = ACTIONS(981), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(1838), + [anon_sym_api] = ACTIONS(1814), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [637] = { + [sym_list_splat_pattern] = STATE(2895), + [sym_primary_expression] = STATE(2668), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_print] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_api] = ACTIONS(1853), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), [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_IF] = 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(3185), - [sym_string_start] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [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(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_del] = ACTIONS(3195), - [anon_sym_raise] = ACTIONS(3195), - [anon_sym_pass] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_except_STAR] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3195), - [anon_sym_def] = ACTIONS(3195), - [anon_sym_global] = ACTIONS(3195), - [anon_sym_nonlocal] = ACTIONS(3195), - [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_not] = ACTIONS(3195), - [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(3193), - [anon_sym_None] = ACTIONS(3195), - [sym_integer] = ACTIONS(3195), - [sym_float] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_api] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), + [638] = { + [sym_list_splat_pattern] = STATE(2599), + [sym_primary_expression] = STATE(2784), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_from] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [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), - [anon_sym_ctypedef] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_packed] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3195), - [sym__dedent] = ACTIONS(3193), - [sym_string_start] = ACTIONS(3193), - }, - [1056] = { - [sym_named_expression] = STATE(2806), - [sym__named_expression_lhs] = STATE(5628), - [sym_expression_list] = STATE(5467), - [sym_list_splat_pattern] = STATE(2760), - [sym_as_pattern] = STATE(2806), - [sym_expression] = STATE(4239), - [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_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), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, - [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), + [639] = { + [sym_list_splat_pattern] = STATE(3178), + [sym_primary_expression] = STATE(2812), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_print] = ACTIONS(1895), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_async] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1895), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1901), + [anon_sym_api] = ACTIONS(1895), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), [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), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [640] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(2858), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_from] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_by] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [1060] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [641] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(1597), + [sym_string_start] = ACTIONS(1537), }, - [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), + [642] = { + [sym_list_splat_pattern] = STATE(2599), + [sym_primary_expression] = STATE(2807), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(983), + [anon_sym_with] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1917), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_nogil] = ACTIONS(983), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, - [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), + [643] = { + [sym_list_splat_pattern] = STATE(2599), + [sym_primary_expression] = STATE(2654), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, - [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), + [644] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH_SLASH] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AT_EQ] = ACTIONS(1014), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(1014), + [sym_string_start] = ACTIONS(1537), }, - [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), + [645] = { + [sym_list_splat_pattern] = STATE(2890), + [sym_primary_expression] = STATE(2649), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_print] = ACTIONS(1814), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_is] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(1844), + [anon_sym_EQ_EQ] = ACTIONS(1844), + [anon_sym_BANG_EQ] = ACTIONS(1844), + [anon_sym_GT_EQ] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_GT] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(1838), + [anon_sym_api] = ACTIONS(1814), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), }, - [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), + [646] = { + [sym_list_splat_pattern] = STATE(3178), + [sym_primary_expression] = STATE(2812), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_print] = ACTIONS(1895), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_async] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1901), + [anon_sym_api] = ACTIONS(1895), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [1069] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [647] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_from] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_by] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [648] = { + [sym_list_splat_pattern] = STATE(2599), + [sym_primary_expression] = STATE(2784), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_from] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, - [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), + [649] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_from] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(1597), + [sym_string_start] = ACTIONS(1537), }, - [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), + [650] = { + [sym_list_splat_pattern] = STATE(3359), + [sym_primary_expression] = STATE(3115), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_LT_EQ] = ACTIONS(1844), + [anon_sym_EQ_EQ] = ACTIONS(1844), + [anon_sym_BANG_EQ] = ACTIONS(1844), + [anon_sym_GT_EQ] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_GT] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [651] = { + [sym_list_splat_pattern] = STATE(3221), + [sym_primary_expression] = STATE(2783), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_print] = ACTIONS(1935), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1959), + [anon_sym_api] = ACTIONS(1935), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [1074] = { - [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), + [652] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(2887), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1965), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [1075] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [653] = { + [sym_list_splat_pattern] = STATE(2895), + [sym_primary_expression] = STATE(2668), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_print] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_api] = ACTIONS(1853), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [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), + [654] = { + [sym_list_splat_pattern] = STATE(3178), + [sym_primary_expression] = STATE(2812), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_print] = ACTIONS(1895), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_async] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1901), + [anon_sym_api] = ACTIONS(1895), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), [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), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [1078] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [655] = { + [sym_list_splat_pattern] = STATE(3239), + [sym_primary_expression] = STATE(2930), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_print] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1997), + [anon_sym_api] = ACTIONS(1973), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [1079] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [656] = { + [sym_list_splat_pattern] = STATE(3359), + [sym_primary_expression] = STATE(3115), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [657] = { + [sym_list_splat_pattern] = STATE(2599), + [sym_primary_expression] = STATE(2807), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(983), + [anon_sym_with] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1917), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_nogil] = ACTIONS(983), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(981), + [sym_string_start] = ACTIONS(117), }, - [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), + [658] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(2858), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(983), + [anon_sym_by] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [659] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [660] = { + [sym_list_splat_pattern] = STATE(3239), + [sym_primary_expression] = STATE(2930), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_print] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_COLON_EQ] = ACTIONS(998), [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_match] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), [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), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_is] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_LT_EQ] = ACTIONS(1844), + [anon_sym_EQ_EQ] = ACTIONS(1844), + [anon_sym_BANG_EQ] = ACTIONS(1844), + [anon_sym_GT_EQ] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_GT] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1997), + [anon_sym_api] = ACTIONS(1973), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [661] = { + [sym_list_splat_pattern] = STATE(3221), + [sym_primary_expression] = STATE(2783), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_print] = ACTIONS(1935), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(988), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1959), + [anon_sym_api] = ACTIONS(1935), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [662] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_with] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(1602), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(1597), + [sym_string_start] = ACTIONS(1537), }, - [1086] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4147), - [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), + [663] = { + [sym_list_splat_pattern] = STATE(3178), + [sym_primary_expression] = STATE(2812), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_print] = ACTIONS(1895), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_async] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1901), + [anon_sym_api] = ACTIONS(1895), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [664] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACK] = ACTIONS(1597), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [665] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [666] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(2887), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1965), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [667] = { + [sym_list_splat_pattern] = STATE(3221), + [sym_primary_expression] = STATE(2783), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_print] = ACTIONS(1935), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1959), + [anon_sym_api] = ACTIONS(1935), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), [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), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [668] = { + [sym_list_splat_pattern] = STATE(3359), + [sym_primary_expression] = STATE(3115), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [669] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_by] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [1090] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [670] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(2858), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(983), + [anon_sym_by] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [1091] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4212), - [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), + [671] = { + [sym_list_splat_pattern] = STATE(3239), + [sym_primary_expression] = STATE(2930), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_print] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_is] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_LT_EQ] = ACTIONS(1844), + [anon_sym_EQ_EQ] = ACTIONS(1844), + [anon_sym_BANG_EQ] = ACTIONS(1844), + [anon_sym_GT_EQ] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_GT] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1997), + [anon_sym_api] = ACTIONS(1973), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [672] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH_SLASH] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AT_EQ] = ACTIONS(1014), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [1093] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [673] = { + [sym_list_splat_pattern] = STATE(3359), + [sym_primary_expression] = STATE(3115), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_LT_EQ] = ACTIONS(1844), + [anon_sym_EQ_EQ] = ACTIONS(1844), + [anon_sym_BANG_EQ] = ACTIONS(1844), + [anon_sym_GT_EQ] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_GT] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [1094] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [674] = { + [sym_list_splat_pattern] = STATE(3239), + [sym_primary_expression] = STATE(2930), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_print] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1997), + [anon_sym_api] = ACTIONS(1973), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [675] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_LT_LT] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_AT_EQ] = ACTIONS(1597), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [676] = { + [sym_list_splat_pattern] = STATE(2890), + [sym_primary_expression] = STATE(2649), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_print] = ACTIONS(1814), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_is] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(1844), + [anon_sym_EQ_EQ] = ACTIONS(1844), + [anon_sym_BANG_EQ] = ACTIONS(1844), + [anon_sym_GT_EQ] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_GT] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(1838), + [anon_sym_api] = ACTIONS(1814), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [677] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [678] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACK] = ACTIONS(1597), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [679] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(3306), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON_EQ] = ACTIONS(998), + [anon_sym_if] = ACTIONS(983), + [anon_sym_else] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2011), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), [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), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [680] = { + [sym_list_splat_pattern] = STATE(3359), + [sym_primary_expression] = STATE(3115), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), }, - [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), + [681] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [682] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(3306), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_if] = ACTIONS(983), + [anon_sym_else] = ACTIONS(983), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(983), + [anon_sym_and] = ACTIONS(983), + [anon_sym_or] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_is] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_LT_GT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2011), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), [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), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [683] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_else] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_and] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_is] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_LT_GT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [684] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6691), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4531), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6901), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [685] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6813), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4531), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6901), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), [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), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [686] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6813), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4590), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6938), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [687] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat] = STATE(5720), + [sym_dictionary_splat] = STATE(5848), + [sym_parenthesized_list_splat] = STATE(5720), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4446), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_yield] = STATE(5720), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_pair] = STATE(5000), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym__collection_elements] = STATE(6624), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2045), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), [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), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [1104] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [688] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6962), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [689] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6605), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4542), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6606), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [1106] = { - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4064), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [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(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [690] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat] = STATE(5720), + [sym_dictionary_splat] = STATE(6148), + [sym_parenthesized_list_splat] = STATE(5720), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4401), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_yield] = STATE(5720), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_pair] = STATE(5100), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym__collection_elements] = STATE(6615), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [691] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6174), + [sym_parenthesized_list_splat] = STATE(6175), + [sym__patterns] = STATE(6726), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4539), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6149), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6616), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [692] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_expression_list] = STATE(6351), + [sym_pattern] = STATE(4216), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4846), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6351), + [sym_augmented_assignment] = STATE(6351), + [sym_pattern_list] = STATE(4114), + [sym__right_hand_side] = STATE(6351), + [sym_yield] = STATE(6351), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(405), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), + [anon_sym_exec] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -126128,2410 +110958,3877 @@ 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(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(3161), - [sym_string_start] = ACTIONS(109), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [1107] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [693] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_expression_list] = STATE(6579), + [sym_pattern] = STATE(4216), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4846), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6579), + [sym_augmented_assignment] = STATE(6579), + [sym_pattern_list] = STATE(4114), + [sym__right_hand_side] = STATE(6579), + [sym_yield] = STATE(6579), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(405), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), + [anon_sym_exec] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [694] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_expression_list] = STATE(6325), + [sym_pattern] = STATE(4216), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2395), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4846), + [sym_primary_expression] = STATE(2490), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_assignment] = STATE(6325), + [sym_augmented_assignment] = STATE(6325), + [sym_pattern_list] = STATE(4114), + [sym__right_hand_side] = STATE(6325), + [sym_yield] = STATE(6325), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(405), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), + [anon_sym_exec] = ACTIONS(405), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [1110] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [695] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6977), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [696] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6813), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4521), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6773), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [697] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat] = STATE(5720), + [sym_dictionary_splat] = STATE(5861), + [sym_parenthesized_list_splat] = STATE(5720), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4450), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_yield] = STATE(5720), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_pair] = STATE(5007), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym__collection_elements] = STATE(6730), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [1113] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [698] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6962), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [699] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6605), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4531), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6901), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), [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), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [700] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat] = STATE(5720), + [sym_dictionary_splat] = STATE(6157), + [sym_parenthesized_list_splat] = STATE(5720), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4425), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_yield] = STATE(5720), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_pair] = STATE(5127), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym__collection_elements] = STATE(6672), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [1117] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [701] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6726), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [702] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6813), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4531), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6901), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [1119] = { - [sym_named_expression] = STATE(3186), - [sym__named_expression_lhs] = STATE(5708), - [sym_dictionary_splat] = STATE(5419), - [sym_list_splat_pattern] = STATE(2435), - [sym_as_pattern] = STATE(3186), - [sym_expression] = STATE(4527), - [sym_primary_expression] = STATE(2156), - [sym_not_operator] = STATE(3186), - [sym_boolean_operator] = STATE(3186), - [sym_binary_operator] = STATE(2508), - [sym_unary_operator] = STATE(2508), - [sym_comparison_operator] = STATE(3186), - [sym_lambda] = STATE(3186), - [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(5419), - [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(3186), - [sym_concatenated_string] = STATE(2508), - [sym_string] = STATE(2209), - [sym_none] = STATE(2508), - [sym_await] = STATE(2508), - [sym_new_expression] = STATE(3186), - [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), + [703] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat] = STATE(5720), + [sym_dictionary_splat] = STATE(5925), + [sym_parenthesized_list_splat] = STATE(5720), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4457), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_yield] = STATE(5720), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_pair] = STATE(5031), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym__collection_elements] = STATE(6767), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [1120] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [704] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6604), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [1121] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [705] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6813), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4531), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6901), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [706] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat] = STATE(5720), + [sym_dictionary_splat] = STATE(5961), + [sym_parenthesized_list_splat] = STATE(5720), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4461), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_yield] = STATE(5720), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_pair] = STATE(5042), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym__collection_elements] = STATE(6717), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [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), + [707] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6658), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [1124] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [708] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6900), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4531), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6901), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [1125] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [709] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6962), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4545), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6047), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6879), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [1126] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [710] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6638), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4531), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6901), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [1127] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [711] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6962), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4545), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6047), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6879), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [1128] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [712] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6813), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4590), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6938), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [1129] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [713] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6962), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [714] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym__patterns] = STATE(6900), + [sym_pattern] = STATE(6009), + [sym_tuple_pattern] = STATE(6574), + [sym_list_pattern] = STATE(6574), + [sym_list_splat_pattern] = STATE(3068), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4583), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3073), + [sym_subscript] = STATE(3073), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6645), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), }, - [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), + [715] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat] = STATE(5720), + [sym_dictionary_splat] = STATE(6165), + [sym_parenthesized_list_splat] = STATE(5720), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4438), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_yield] = STATE(5720), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_pair] = STATE(5122), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym__collection_elements] = STATE(6667), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [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), + [716] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5910), + [sym_parenthesized_list_splat] = STATE(5915), + [sym__patterns] = STATE(6977), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4541), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6145), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6981), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [717] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym__patterns] = STATE(6962), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(3208), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4513), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5891), + [sym_attribute] = STATE(3210), + [sym_subscript] = STATE(3210), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6820), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_exec] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1656), + [anon_sym_api] = ACTIONS(1626), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [718] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat] = STATE(5720), + [sym_dictionary_splat] = STATE(5895), + [sym_parenthesized_list_splat] = STATE(5720), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4454), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_yield] = STATE(5720), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_pair] = STATE(5021), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym__collection_elements] = STATE(6678), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2131), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), [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), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), }, - [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), + [719] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5367), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [1134] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [720] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5367), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [1135] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4098), - [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), + [721] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5367), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [722] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_expression_list] = STATE(5448), + [sym_pattern] = STATE(6402), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2933), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4685), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_pattern_list] = STATE(5448), + [sym_yield] = STATE(5448), + [sym_attribute] = STATE(2936), + [sym_subscript] = STATE(2936), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym__f_expression] = STATE(5448), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_exec] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_api] = ACTIONS(2165), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), }, - [1137] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [723] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_expression_list] = STATE(5421), + [sym_pattern] = STATE(6402), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(2933), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4685), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_pattern_list] = STATE(5421), + [sym_yield] = STATE(5421), + [sym_attribute] = STATE(2936), + [sym_subscript] = STATE(2936), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym__f_expression] = STATE(5421), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_exec] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_api] = ACTIONS(2165), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), }, - [1138] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [724] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5367), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [725] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5367), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [726] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5367), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), [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), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [1141] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [727] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(6136), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [1142] = { - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4064), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [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(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [728] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(5836), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [729] = { + [sym_pattern] = STATE(4065), + [sym_tuple_pattern] = STATE(4080), + [sym_list_pattern] = STATE(4080), + [sym_list_splat_pattern] = STATE(3168), + [sym_primary_expression] = STATE(4112), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(3170), + [sym_subscript] = STATE(3170), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_print] = ACTIONS(2201), + [anon_sym_COLON] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_exec] = ACTIONS(2201), + [anon_sym_EQ] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(2195), + [anon_sym_DASH_EQ] = ACTIONS(2195), + [anon_sym_STAR_EQ] = ACTIONS(2195), + [anon_sym_SLASH_EQ] = ACTIONS(2195), + [anon_sym_AT_EQ] = ACTIONS(2195), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2195), + [anon_sym_PERCENT_EQ] = ACTIONS(2195), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2195), + [anon_sym_GT_GT_EQ] = ACTIONS(2195), + [anon_sym_LT_LT_EQ] = ACTIONS(2195), + [anon_sym_AMP_EQ] = ACTIONS(2195), + [anon_sym_CARET_EQ] = ACTIONS(2195), + [anon_sym_PIPE_EQ] = ACTIONS(2195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_api] = ACTIONS(2201), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(2195), + [sym_string_start] = ACTIONS(1537), + }, + [730] = { + [sym_pattern] = STATE(4065), + [sym_tuple_pattern] = STATE(4080), + [sym_list_pattern] = STATE(4080), + [sym_list_splat_pattern] = STATE(3168), + [sym_primary_expression] = STATE(4112), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(3170), + [sym_subscript] = STATE(3170), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_print] = ACTIONS(2201), + [anon_sym_COLON] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_exec] = ACTIONS(2201), + [anon_sym_EQ] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(2207), + [anon_sym_DASH_EQ] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2207), + [anon_sym_SLASH_EQ] = ACTIONS(2207), + [anon_sym_AT_EQ] = ACTIONS(2207), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2207), + [anon_sym_PERCENT_EQ] = ACTIONS(2207), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2207), + [anon_sym_GT_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_LT_EQ] = ACTIONS(2207), + [anon_sym_AMP_EQ] = ACTIONS(2207), + [anon_sym_CARET_EQ] = ACTIONS(2207), + [anon_sym_PIPE_EQ] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_api] = ACTIONS(2201), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym__newline] = ACTIONS(2207), + [sym_string_start] = ACTIONS(1537), + }, + [731] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(5967), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [732] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5933), + [sym_dictionary_splat] = STATE(5933), + [sym_parenthesized_list_splat] = STATE(5934), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4543), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_keyword_argument] = STATE(5933), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_COMMA] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [733] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5158), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [734] = { + [sym__patterns] = STATE(6977), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(4101), + [sym_primary_expression] = STATE(4070), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(4102), + [sym_subscript] = STATE(4102), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6381), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_print] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_exec] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_api] = ACTIONS(2229), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [735] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4886), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(5610), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [736] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5999), + [sym_dictionary_splat] = STATE(5999), + [sym_parenthesized_list_splat] = STATE(6000), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4566), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_keyword_argument] = STATE(5999), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [737] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6209), + [sym_dictionary_splat] = STATE(6209), + [sym_parenthesized_list_splat] = STATE(6210), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4523), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_keyword_argument] = STATE(6209), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [738] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(5960), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [739] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5367), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [740] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4790), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(5333), + [sym_splat_type] = STATE(5270), + [sym_generic_type] = STATE(5270), + [sym_union_type] = STATE(5270), + [sym_constrained_type] = STATE(5270), + [sym_member_type] = STATE(5270), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(2251), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -128542,25203 +114839,105902 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [741] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(4949), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [742] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4886), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(5605), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [743] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6287), + [sym_dictionary_splat] = STATE(6287), + [sym_parenthesized_list_splat] = STATE(6293), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4603), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_keyword_argument] = STATE(6287), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), [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), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [1143] = { - [sym_named_expression] = STATE(3525), - [sym__named_expression_lhs] = STATE(5561), - [sym_expression_list] = STATE(5401), - [sym_list_splat_pattern] = STATE(2215), - [sym_as_pattern] = STATE(3525), - [sym_expression] = STATE(4037), - [sym_primary_expression] = STATE(2131), - [sym_not_operator] = STATE(3525), - [sym_boolean_operator] = STATE(3525), - [sym_binary_operator] = STATE(2230), - [sym_unary_operator] = STATE(2230), - [sym_comparison_operator] = STATE(3525), - [sym_lambda] = STATE(3525), - [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(3525), - [sym_concatenated_string] = STATE(2230), - [sym_string] = STATE(2140), - [sym_none] = STATE(2230), - [sym_await] = STATE(2230), - [sym_new_expression] = STATE(3525), - [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), + [744] = { + [sym__patterns] = STATE(6962), + [sym_pattern] = STATE(6033), + [sym_tuple_pattern] = STATE(6467), + [sym_list_pattern] = STATE(6467), + [sym_list_splat_pattern] = STATE(4101), + [sym_primary_expression] = STATE(4070), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(4102), + [sym_subscript] = STATE(4102), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_int_type] = STATE(4328), + [sym__signedness] = STATE(4003), + [sym__longness] = STATE(4252), + [sym_function_pointer_type] = STATE(4328), + [sym_c_type] = STATE(6381), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_print] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_exec] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_api] = ACTIONS(2229), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1660), + [anon_sym_double] = ACTIONS(1660), + [anon_sym_complex] = ACTIONS(1660), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(1670), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [745] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5986), + [sym_dictionary_splat] = STATE(5986), + [sym_parenthesized_list_splat] = STATE(5989), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4587), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_keyword_argument] = STATE(5986), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [746] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5867), + [sym_dictionary_splat] = STATE(5867), + [sym_parenthesized_list_splat] = STATE(5868), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4570), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_keyword_argument] = STATE(5867), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [747] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4665), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(5293), + [sym_splat_type] = STATE(5270), + [sym_generic_type] = STATE(5270), + [sym_union_type] = STATE(5270), + [sym_constrained_type] = STATE(5270), + [sym_member_type] = STATE(5270), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(2251), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(2263), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), + [anon_sym_lambda] = ACTIONS(2265), [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [748] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6226), + [sym_dictionary_splat] = STATE(6226), + [sym_parenthesized_list_splat] = STATE(6227), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4515), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_keyword_argument] = STATE(6226), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, - [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), + [749] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5277), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [750] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5168), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [751] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4665), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(5154), + [sym_splat_type] = STATE(5270), + [sym_generic_type] = STATE(5270), + [sym_union_type] = STATE(5270), + [sym_constrained_type] = STATE(5270), + [sym_member_type] = STATE(5270), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(2251), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [752] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4886), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(5638), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [753] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5335), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), [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), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [754] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(6243), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [755] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(5605), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [756] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_type] = STATE(5439), + [sym_splat_type] = STATE(5424), + [sym_generic_type] = STATE(5424), + [sym_union_type] = STATE(5424), + [sym_constrained_type] = STATE(5424), + [sym_member_type] = STATE(5424), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), [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), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), }, - [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), + [757] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(6133), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [758] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4790), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(5154), + [sym_splat_type] = STATE(5270), + [sym_generic_type] = STATE(5270), + [sym_union_type] = STATE(5270), + [sym_constrained_type] = STATE(5270), + [sym_member_type] = STATE(5270), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(2251), + [anon_sym_exec] = ACTIONS(994), [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), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [759] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(6137), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [760] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(6141), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [1160] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [761] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4665), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(5206), + [sym_splat_type] = STATE(5270), + [sym_generic_type] = STATE(5270), + [sym_union_type] = STATE(5270), + [sym_constrained_type] = STATE(5270), + [sym_member_type] = STATE(5270), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(2251), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [1161] = { - [sym_named_expression] = STATE(2686), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2736), - [sym_as_pattern] = STATE(2686), - [sym_expression] = STATE(4155), - [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(5477), - [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), + [762] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5144), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_type] = STATE(5794), + [sym_splat_type] = STATE(5650), + [sym_generic_type] = STATE(5650), + [sym_union_type] = STATE(5650), + [sym_constrained_type] = STATE(5650), + [sym_member_type] = STATE(5650), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), }, - [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), + [763] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5900), + [sym_dictionary_splat] = STATE(5900), + [sym_parenthesized_list_splat] = STATE(5901), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4516), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_keyword_argument] = STATE(5900), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 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(4155), 1, - sym_expression, - STATE(5477), 1, - sym_slice, - STATE(5751), 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, - [121] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [192] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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, - 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(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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [334] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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, - 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(1977), 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(1975), 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, - [476] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1981), 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(1979), 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, - [547] = 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(4071), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4304), 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, - [666] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1625), 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(1623), 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, - [737] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1989), 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(1987), 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, - [808] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1993), 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(1991), 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, - [879] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1997), 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(1995), 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, - [950] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2001), 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(1999), 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, - [1021] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2005), 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(2003), 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, - [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, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - 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, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [1163] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [1234] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [1305] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2017), 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(2015), 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, - [1376] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [1447] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2021), 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(2019), 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, - [1518] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2025), 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(2023), 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, - [1589] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1817), 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(1815), 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, - [1660] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2029), 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(2027), 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, - [1731] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2205), 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(2203), 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, - [1802] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2209), 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(2207), 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, - [1873] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2213), 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(2211), 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, - [1944] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [2015] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [2086] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1825), 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(1823), 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, - [2157] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2033), 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(2031), 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, - [2228] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2037), 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(2035), 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, - [2299] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2041), 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(2039), 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, - [2370] = 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(4010), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4569), 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, - [2489] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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, - 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(2045), 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(2043), 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, - [2631] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2373), 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(2371), 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, - [2702] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2221), 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(2219), 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, - [2773] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2377), 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(2375), 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, - [2844] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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, - 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(2381), 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(2379), 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, - [2986] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2049), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [3057] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2053), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [3128] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [3199] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2061), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [3270] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [3341] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2069), 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(2067), 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, - [3412] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [3483] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2077), 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(2075), 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, - [3554] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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, - 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(2085), 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(2083), 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, - [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, - 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [3767] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2093), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [3838] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2229), 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(2227), 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, - [3909] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2097), 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(2095), 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, - [3980] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2101), 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(2099), 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, - [4051] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2105), 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(2103), 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, - [4122] = 3, - 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, - anon_sym_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), 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, - [4193] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2233), 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(2231), 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, - [4264] = 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(4057), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4592), 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, - [4383] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2113), 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(2111), 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, - [4454] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2385), 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(2383), 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, - [4525] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2237), 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(2235), 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, - [4596] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2389), 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(2387), 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, - [4667] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2117), 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(2115), 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, - [4738] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2121), 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(2119), 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, - [4809] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2125), 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(2123), 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, - [4880] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2129), 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(2127), 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, - [4951] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2133), 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(2131), 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, - [5022] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2137), 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(2135), 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, - [5093] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [5164] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2145), 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(2143), 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, - [5235] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2241), 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(2239), 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, - [5306] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2149), 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(2147), 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, - [5377] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2393), 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(2391), 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, - [5448] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1629), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [5519] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2153), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [5590] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2157), 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(2155), 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, - [5661] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2073), 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(2071), 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, - [5732] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1761), 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(1759), 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, - [5803] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1985), 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(1983), 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, - [5874] = 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(4071), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4573), 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, - [5993] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1829), 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(1827), 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, - [6064] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1685), 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(1683), 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, - [6135] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1689), 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(1687), 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, - [6206] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1693), 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(1691), 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, - [6277] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1833), 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(1831), 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, - [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(4285), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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(1835), 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, - [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(4135), 1, - sym_expression, - STATE(5708), 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(3186), 8, - 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(1841), 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(1839), 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, - [6730] = 3, - 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, - anon_sym_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), 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, - [6801] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1697), 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(1695), 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, - [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(3307), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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(1699), 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, - [7054] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1849), 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(1847), 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, - [7125] = 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(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(4135), 1, - sym_expression, - STATE(5708), 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(3186), 8, - 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(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(3991), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4437), 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, - [7365] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2185), 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(2183), 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, - [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, - 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(4059), 1, - sym_expression, - STATE(5637), 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(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, - [7555] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1765), 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(1763), 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, - [7626] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2189), 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(2187), 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, - [7697] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3471), 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(3473), 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_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, - [7768] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2169), 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(2167), 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, - [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(4291), 1, - sym_expression, - STATE(4877), 1, - sym_with_item, - STATE(5708), 1, - sym__named_expression_lhs, - STATE(5793), 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(3186), 8, - 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(1661), 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(1659), 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, - [8031] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 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(1641), 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, - [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(4089), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4338), 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(2193), 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(2191), 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, - [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(4291), 1, - sym_expression, - STATE(4877), 1, - sym_with_item, - STATE(5610), 1, - sym_with_clause, - STATE(5708), 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(3186), 8, - 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(4060), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4576), 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(2161), 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(2159), 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, - [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(4011), 1, - sym_expression, - STATE(4844), 1, - sym_slice, - STATE(5751), 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(4089), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4399), 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(4347), 1, - sym_expression, - STATE(5352), 1, - sym_with_item, - STATE(5628), 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(1853), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(1851), 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, - [9035] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1857), 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(1855), 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, - [9106] = 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(5722), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4438), 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, - [9225] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1861), 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(1859), 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, - [9296] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1865), 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(1863), 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, - [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(4007), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4539), 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, - [9486] = 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(3479), 1, - anon_sym_COLON, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4291), 1, - sym_expression, - STATE(5505), 1, - sym_with_item, - STATE(5708), 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(3186), 8, - 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, - [9607] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1769), 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(1767), 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, - [9678] = 4, - ACTIONS(3481), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1635), 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(1631), 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, - [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(4291), 1, - sym_expression, - STATE(5505), 1, - sym_with_item, - STATE(5708), 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(3186), 8, - 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, - 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(4382), 1, - sym_expression, - STATE(5751), 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, - 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(1653), 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(1651), 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, - [10062] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1869), 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(1867), 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, - [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(4089), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4444), 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(3485), 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(3487), 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_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, - [10323] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2329), 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(2327), 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, - [10394] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 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(1703), 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, - [10465] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 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(1655), 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, - [10536] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1639), 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(1637), 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, - [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(4343), 1, - sym_expression, - STATE(5628), 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(3485), 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(3487), 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_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, - [10797] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2333), 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(2331), 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, - [10868] = 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(4343), 1, - sym_expression, - STATE(5628), 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_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, - [10987] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1773), 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(1771), 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, - [11058] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2337), 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(2335), 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, - [11129] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1777), 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(1775), 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, - [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(4297), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(3307), 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(4297), 1, - sym_expression, - STATE(5751), 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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(1663), 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, - [11618] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2341), 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(2339), 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, - [11689] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2345), 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(2343), 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, - [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(4064), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(3525), 8, - 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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(1779), 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, - [11950] = 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(4158), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3491), 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(3525), 8, - 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, - [12069] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1785), 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(1783), 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, - [12140] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1709), 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(1707), 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, - [12211] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2349), 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(2347), 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, - [12282] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2165), 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(2163), 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, - [12353] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1873), 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(1871), 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, - [12424] = 3, - 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, - anon_sym_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), 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, - [12495] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1877), 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(1875), 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, - [12566] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1881), 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(1879), 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, - [12637] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1717), 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(1715), 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, - [12708] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1721), 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(1719), 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, - [12779] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1885), 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(1883), 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, - [12850] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 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(1787), 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, - [12921] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1889), 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(1887), 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, - [12992] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1893), 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(1891), 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, - [13063] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2293), 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(2291), 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, - [13134] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2297), 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(2295), 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, - [13205] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1725), 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(1723), 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, - [13276] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2301), 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(2299), 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, - [13347] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1897), 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(1895), 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, - [13418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1729), 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(1727), 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, - [13489] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1901), 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(1899), 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, - [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(3307), 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(3307), 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(1873), 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(1871), 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, - [13851] = 3, - 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, - anon_sym_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), 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, - [13922] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1909), 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(1907), 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, - [13993] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1881), 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(1879), 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, - [14064] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1913), 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(1911), 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, - [14135] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2197), 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(2195), 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, - [14206] = 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(4372), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3493), 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, - [14325] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2305), 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(2303), 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, - [14396] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2181), 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(2179), 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, - [14467] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1889), 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(1887), 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, - [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, - anon_sym_STAR, - 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(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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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(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(3495), 1, - anon_sym_RPAREN, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, - sym_string, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(4347), 1, - sym_expression, - STATE(5352), 1, - sym_with_item, - STATE(5628), 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, - [14730] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1921), 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(1919), 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, - [14801] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1925), 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(1923), 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, - [14872] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2201), 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(2199), 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, - [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, - 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(4059), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4362), 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, - [15062] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1929), 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(1927), 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, - [15133] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1933), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(1931), 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, - [15204] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2245), 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(2243), 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, - [15275] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2249), 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(2247), 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, - [15346] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2253), 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(2251), 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, - [15417] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1937), 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(1935), 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, - [15488] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2257), 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(2255), 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, - [15559] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2261), 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(2259), 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, - [15630] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2265), 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(2263), 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, - [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(4059), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4585), 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(2309), 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(2307), 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, - [15891] = 4, - ACTIONS(3497), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1649), 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(1645), 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, - [15964] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2313), 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(2311), 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, - [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(4158), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(3525), 8, - 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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(1667), 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, - [16225] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2317), 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(2315), 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, - [16296] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1673), 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(1671), 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, - [16367] = 3, - 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, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3473), 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_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, - [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(4158), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3501), 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(3525), 8, - 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, - 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(4064), 1, - sym_expression, - STATE(5561), 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, - 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(3525), 8, - 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(2321), 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(2319), 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, - [16747] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1677), 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(1675), 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, - [16818] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2325), 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(2323), 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, - [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(4071), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4394), 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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(1939), 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, - [17079] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1945), 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(1943), 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, - [17150] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [17221] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1949), 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(1947), 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, - [17292] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1953), 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(1951), 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, - [17363] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1957), 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(1955), 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, - [17434] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 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(1679), 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, - [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(4158), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3505), 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(3525), 8, - 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(1961), 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(1959), 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, - [17695] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 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(1795), 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, - [17766] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2353), 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(2351), 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, - [17837] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2357), 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(2355), 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, - [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(4033), 1, - sym_expression, - STATE(5026), 1, - sym_slice, - STATE(5751), 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(2269), 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(2267), 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, - [18100] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2273), 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(2271), 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, - [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(4027), 1, - sym_expression, - STATE(5170), 1, - sym_slice, - STATE(5751), 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(2277), 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(2275), 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, - [18363] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 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(2359), 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, - [18434] = 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(3997), 1, - sym_expression, - STATE(4874), 1, - sym_slice, - STATE(5751), 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, - [18555] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2281), 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(2279), 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, - [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(4004), 1, - sym_expression, - STATE(4929), 1, - sym_slice, - STATE(5751), 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, - [18747] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1801), 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(1799), 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, - [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(4009), 1, - sym_expression, - STATE(4962), 1, - sym_slice, - STATE(5751), 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, - [18939] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2285), 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(2283), 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, - [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(4012), 1, - sym_expression, - STATE(4998), 1, - sym_slice, - STATE(5751), 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, - [19131] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2289), 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(2287), 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, - [19202] = 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(4014), 1, - sym_expression, - STATE(5022), 1, - sym_slice, - STATE(5751), 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, - [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(4017), 1, - sym_expression, - STATE(5042), 1, - sym_slice, - STATE(5751), 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, - [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(4022), 1, - sym_expression, - STATE(5057), 1, - sym_slice, - STATE(5751), 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, - [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, - 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(4025), 1, - sym_expression, - STATE(5073), 1, - sym_slice, - STATE(5751), 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, - [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, - 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(4026), 1, - sym_expression, - STATE(5080), 1, - sym_slice, - STATE(5751), 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, - [19807] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2173), 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(2171), 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, - [19878] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2365), 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(2363), 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, - [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(4291), 1, - sym_expression, - STATE(4877), 1, - sym_with_item, - STATE(5685), 1, - sym_with_clause, - STATE(5708), 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(3186), 8, - 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(2369), 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(2367), 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, - [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(4291), 1, - sym_expression, - STATE(4877), 1, - sym_with_item, - STATE(5708), 1, - sym__named_expression_lhs, - STATE(5720), 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(3186), 8, - 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(1733), 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(1731), 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, - [20333] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1737), 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(1735), 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, - [20404] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1741), 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(1739), 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, - [20475] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1745), 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(1743), 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, - [20546] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1749), 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(1747), 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, - [20617] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1745), 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(1743), 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, - [20688] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1745), 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(1743), 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, - [20759] = 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(4380), 1, - sym_expression, - STATE(5751), 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(4321), 1, - sym_expression, - STATE(5751), 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(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(4400), 1, - sym_expression, - STATE(5813), 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(3948), 8, - 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(4400), 1, - sym_expression, - STATE(5813), 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(3948), 8, - 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, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [21306] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1753), 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(1751), 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, - [21377] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1757), 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(1755), 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, - [21448] = 3, - 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, - anon_sym_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), 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, - [21519] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1805), 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(1803), 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, - [21590] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1801), 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(1799), 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, - [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(4024), 1, - sym_expression, - STATE(5561), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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(3517), 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, - [21851] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2703), 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(2705), 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, - [21921] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3523), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - 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, - 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, - [21991] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1649), 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(1645), 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, - [22061] = 3, - 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, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3527), 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, - [22131] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3531), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3529), 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, - [22201] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3535), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - 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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [22271] = 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, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [22341] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3543), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3541), 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, - [22411] = 3, - 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(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_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [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, - 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, - 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(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, - sym_float, - 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_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [22621] = 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), 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, - [22691] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3555), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3553), 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, - [22761] = 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(3517), 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, - [22831] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3559), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3557), 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, - [22901] = 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(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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [22971] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3313), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [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(3996), 1, - sym_expression, - STATE(5448), 1, - sym_expression_list, - STATE(5561), 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(3525), 8, - 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(3559), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3557), 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, - [23229] = 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, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [23299] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3571), 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(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, - 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, - [23369] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3573), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - 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(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, - 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, - [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(4273), 1, - sym_expression, - STATE(5708), 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(3186), 8, - 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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(3579), 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, - [23627] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3585), 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(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, - 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, - [23697] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3589), 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(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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [23767] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3581), 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(3579), 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, - [23837] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2703), 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(2705), 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, - [23907] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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, - 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(3591), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3593), 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, - [24047] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3595), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3597), 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, - [24117] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2409), 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(2407), 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, - [24187] = 3, - 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, - anon_sym_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), 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, - [24257] = 3, - 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, - anon_sym_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), 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, - [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(4215), 1, - sym_expression, - STATE(5647), 1, - sym_expression_list, - STATE(5708), 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(3186), 8, - 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, - 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(3994), 1, - sym_expression, - STATE(5432), 1, - sym_expression_list, - STATE(5708), 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(3186), 8, - 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, - anon_sym_LPAREN, - anon_sym_STAR, - 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, - [24633] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3613), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - 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, - 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, - [24703] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3531), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3529), 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, - [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(4198), 1, - sym_expression, - STATE(5604), 1, - sym_expression_list, - STATE(5708), 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(3186), 8, - 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(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(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, - 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, - [24961] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3619), 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), 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, - [25031] = 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(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, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [25241] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3635), 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(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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [25311] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3639), 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(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, - 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, - [25381] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3649), 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, - [25521] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3651), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3653), 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, - [25591] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3655), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [25661] = 3, - 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, - anon_sym_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_LPAREN, - anon_sym_STAR, - 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), 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, - [25871] = 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(4291), 1, - sym_expression, - STATE(5505), 1, - sym_with_item, - STATE(5708), 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(3186), 8, - 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, - [25989] = 3, - 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, - anon_sym_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), 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, - [26059] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2405), 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(2403), 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, - [26129] = 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(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, - 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, - [26199] = 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, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3673), 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, + [764] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4790), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_type] = STATE(5524), + [sym_splat_type] = STATE(5270), + [sym_generic_type] = STATE(5270), + [sym_union_type] = STATE(5270), + [sym_constrained_type] = STATE(5270), + [sym_member_type] = STATE(5270), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(2251), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [765] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_with_item] = STATE(6299), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4586), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [766] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4537), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5923), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6666), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [767] = { + [sym_else_clause] = STATE(1152), + [sym_except_group_clause] = STATE(902), + [sym_finally_clause] = STATE(2184), + [aux_sym_try_statement_repeat2] = STATE(902), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2279), + [anon_sym_import] = ACTIONS(2279), + [anon_sym_cimport] = ACTIONS(2279), + [anon_sym_from] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [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_else] = ACTIONS(2281), + [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_except_STAR] = ACTIONS(2283), + [anon_sym_finally] = ACTIONS(2285), + [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(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(2279), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_lambda] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_None] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2277), + [anon_sym_0X] = ACTIONS(2277), + [anon_sym_0o] = ACTIONS(2277), + [anon_sym_0O] = ACTIONS(2277), + [anon_sym_0b] = ACTIONS(2277), + [anon_sym_0B] = ACTIONS(2277), + [aux_sym_integer_token4] = ACTIONS(2279), + [sym_float] = ACTIONS(2277), + [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_new] = ACTIONS(2279), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2277), + }, + [768] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [769] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [770] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4562), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5959), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6693), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [771] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4542), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6606), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [772] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6174), + [sym_parenthesized_list_splat] = STATE(6175), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4562), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5959), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6693), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [773] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [774] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [775] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [776] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [777] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [778] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [779] = { + [sym_else_clause] = STATE(1087), + [sym_except_clause] = STATE(890), + [sym_finally_clause] = STATE(2053), + [aux_sym_try_statement_repeat1] = STATE(890), + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_cimport] = ACTIONS(2317), + [anon_sym_from] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [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_else] = ACTIONS(2281), + [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_except] = ACTIONS(2319), + [anon_sym_finally] = ACTIONS(2285), + [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(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(2317), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_lambda] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_None] = ACTIONS(2317), + [anon_sym_0x] = ACTIONS(2315), + [anon_sym_0X] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0O] = ACTIONS(2315), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0B] = ACTIONS(2315), + [aux_sym_integer_token4] = ACTIONS(2317), + [sym_float] = ACTIONS(2315), + [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_IF] = ACTIONS(2317), + [anon_sym_cdef] = ACTIONS(2317), + [anon_sym_cpdef] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2315), + }, + [780] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4539), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6149), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6616), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [781] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4583), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6645), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [782] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6223), + [sym_parenthesized_list_splat] = STATE(6224), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4513), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5891), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6820), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [783] = { + [sym_else_clause] = STATE(1087), + [sym_except_group_clause] = STATE(902), + [sym_finally_clause] = STATE(2053), + [aux_sym_try_statement_repeat2] = STATE(902), + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_cimport] = ACTIONS(2317), + [anon_sym_from] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [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_else] = ACTIONS(2281), + [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_except_STAR] = ACTIONS(2283), + [anon_sym_finally] = ACTIONS(2285), + [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(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(2317), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_lambda] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_None] = ACTIONS(2317), + [anon_sym_0x] = ACTIONS(2315), + [anon_sym_0X] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0O] = ACTIONS(2315), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0B] = ACTIONS(2315), + [aux_sym_integer_token4] = ACTIONS(2317), + [sym_float] = ACTIONS(2315), + [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_IF] = ACTIONS(2317), + [anon_sym_cdef] = ACTIONS(2317), + [anon_sym_cpdef] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2315), + }, + [784] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [785] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [786] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [787] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [788] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6174), + [sym_parenthesized_list_splat] = STATE(6175), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4539), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6149), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6616), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [789] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4513), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5891), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6820), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [790] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4533), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6700), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [791] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [792] = { + [sym_else_clause] = STATE(1078), + [sym_except_clause] = STATE(885), + [sym_finally_clause] = STATE(2078), + [aux_sym_try_statement_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(2279), + [anon_sym_import] = ACTIONS(2279), + [anon_sym_cimport] = ACTIONS(2279), + [anon_sym_from] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [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_else] = ACTIONS(2339), + [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_except] = ACTIONS(2341), + [anon_sym_finally] = ACTIONS(2343), + [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(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(2279), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_lambda] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_None] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2277), + [anon_sym_0X] = ACTIONS(2277), + [anon_sym_0o] = ACTIONS(2277), + [anon_sym_0O] = ACTIONS(2277), + [anon_sym_0b] = ACTIONS(2277), + [anon_sym_0B] = ACTIONS(2277), + [aux_sym_integer_token4] = ACTIONS(2279), + [sym_float] = ACTIONS(2277), + [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_new] = ACTIONS(2279), + [anon_sym_ctypedef] = 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(2277), + [sym_string_start] = ACTIONS(2277), + }, + [793] = { + [sym_else_clause] = STATE(1078), + [sym_except_group_clause] = STATE(905), + [sym_finally_clause] = STATE(2078), + [aux_sym_try_statement_repeat2] = STATE(905), + [sym_identifier] = ACTIONS(2279), + [anon_sym_import] = ACTIONS(2279), + [anon_sym_cimport] = ACTIONS(2279), + [anon_sym_from] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [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_else] = ACTIONS(2339), + [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_except_STAR] = ACTIONS(2345), + [anon_sym_finally] = ACTIONS(2343), + [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(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(2279), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_lambda] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_None] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2277), + [anon_sym_0X] = ACTIONS(2277), + [anon_sym_0o] = ACTIONS(2277), + [anon_sym_0O] = ACTIONS(2277), + [anon_sym_0b] = ACTIONS(2277), + [anon_sym_0B] = ACTIONS(2277), + [aux_sym_integer_token4] = ACTIONS(2279), + [sym_float] = ACTIONS(2277), + [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_new] = ACTIONS(2279), + [anon_sym_ctypedef] = 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(2277), + [sym_string_start] = ACTIONS(2277), + }, + [794] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [795] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [796] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [797] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [798] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [799] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4538), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5860), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6670), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [800] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4521), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6773), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [801] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [802] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [803] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [804] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [805] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4518), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6692), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [806] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [807] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [808] = { + [sym_else_clause] = STATE(1092), + [sym_except_clause] = STATE(885), + [sym_finally_clause] = STATE(2099), + [aux_sym_try_statement_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_cimport] = ACTIONS(2317), + [anon_sym_from] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [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_else] = ACTIONS(2339), + [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_except] = ACTIONS(2341), + [anon_sym_finally] = ACTIONS(2343), + [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(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(2317), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_lambda] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_None] = ACTIONS(2317), + [anon_sym_0x] = ACTIONS(2315), + [anon_sym_0X] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0O] = ACTIONS(2315), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0B] = ACTIONS(2315), + [aux_sym_integer_token4] = ACTIONS(2317), + [sym_float] = ACTIONS(2315), + [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_IF] = ACTIONS(2317), + [anon_sym_cdef] = ACTIONS(2317), + [anon_sym_cpdef] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_ctypedef] = 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(2315), + [sym_string_start] = ACTIONS(2315), + }, + [809] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [810] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [811] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [812] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [813] = { + [sym_else_clause] = STATE(1092), + [sym_except_group_clause] = STATE(905), + [sym_finally_clause] = STATE(2099), + [aux_sym_try_statement_repeat2] = STATE(905), + [sym_identifier] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_cimport] = ACTIONS(2317), + [anon_sym_from] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [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_else] = ACTIONS(2339), + [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_except_STAR] = ACTIONS(2345), + [anon_sym_finally] = ACTIONS(2343), + [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(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(2317), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_lambda] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_None] = ACTIONS(2317), + [anon_sym_0x] = ACTIONS(2315), + [anon_sym_0X] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0O] = ACTIONS(2315), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0B] = ACTIONS(2315), + [aux_sym_integer_token4] = ACTIONS(2317), + [sym_float] = ACTIONS(2315), + [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_IF] = ACTIONS(2317), + [anon_sym_cdef] = ACTIONS(2317), + [anon_sym_cpdef] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_ctypedef] = 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(2315), + [sym_string_start] = ACTIONS(2315), + }, + [814] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [815] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [816] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [817] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [818] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [819] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [820] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [821] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [822] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [823] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [824] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4541), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6145), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6981), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [825] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4527), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6722), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [826] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4531), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6901), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [827] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5910), + [sym_parenthesized_list_splat] = STATE(5915), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4537), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5923), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6666), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [828] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4545), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6047), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6879), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [829] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat] = STATE(6007), + [sym_parenthesized_list_splat] = STATE(6007), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4590), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_yield] = STATE(6007), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym__collection_elements] = STATE(6938), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [830] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(5910), + [sym_parenthesized_list_splat] = STATE(5915), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4541), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6145), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6981), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [831] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6005), + [sym_parenthesized_list_splat] = STATE(6005), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4571), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(6123), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6805), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [832] = { + [sym_else_clause] = STATE(1152), + [sym_except_clause] = STATE(890), + [sym_finally_clause] = STATE(2184), + [aux_sym_try_statement_repeat1] = STATE(890), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2279), + [anon_sym_import] = ACTIONS(2279), + [anon_sym_cimport] = ACTIONS(2279), + [anon_sym_from] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [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_else] = ACTIONS(2281), + [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_except] = ACTIONS(2319), + [anon_sym_finally] = ACTIONS(2285), + [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(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(2279), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_lambda] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_None] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2277), + [anon_sym_0X] = ACTIONS(2277), + [anon_sym_0o] = ACTIONS(2277), + [anon_sym_0O] = ACTIONS(2277), + [anon_sym_0b] = ACTIONS(2277), + [anon_sym_0B] = ACTIONS(2277), + [aux_sym_integer_token4] = ACTIONS(2279), + [sym_float] = ACTIONS(2277), + [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_new] = ACTIONS(2279), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2277), + }, + [833] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [834] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [835] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_expression_list] = STATE(5491), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4698), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_from] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_COLON] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_EQ] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [sym_type_conversion] = ACTIONS(2421), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [836] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [837] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [838] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [839] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [840] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat] = STATE(6223), + [sym_parenthesized_list_splat] = STATE(6224), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4538), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_yield] = STATE(5860), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym__collection_elements] = STATE(6670), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [841] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5368), + [sym_expression] = STATE(4931), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5368), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [842] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6505), + [sym_dictionary_splat] = STATE(6505), + [sym_parenthesized_list_splat] = STATE(6521), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5243), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_keyword_argument] = STATE(6505), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_print] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1692), + [anon_sym_exec] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1720), + [anon_sym_api] = ACTIONS(1690), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [843] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat] = STATE(6407), + [sym_parenthesized_list_splat] = STATE(6407), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5282), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_yield] = STATE(6407), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [844] = { + [sym_pattern] = STATE(4064), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(3335), + [sym_primary_expression] = STATE(4079), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(3336), + [sym_subscript] = STATE(3336), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_print] = ACTIONS(2455), + [anon_sym_COLON] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_exec] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(2195), + [anon_sym_DASH_EQ] = ACTIONS(2195), + [anon_sym_STAR_EQ] = ACTIONS(2195), + [anon_sym_SLASH_EQ] = ACTIONS(2195), + [anon_sym_AT_EQ] = ACTIONS(2195), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2195), + [anon_sym_PERCENT_EQ] = ACTIONS(2195), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2195), + [anon_sym_GT_GT_EQ] = ACTIONS(2195), + [anon_sym_LT_LT_EQ] = ACTIONS(2195), + [anon_sym_AMP_EQ] = ACTIONS(2195), + [anon_sym_CARET_EQ] = ACTIONS(2195), + [anon_sym_PIPE_EQ] = ACTIONS(2195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2459), + [anon_sym_api] = ACTIONS(2455), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [845] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6387), + [sym_parenthesized_list_splat] = STATE(6387), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5255), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_yield] = STATE(6387), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [846] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_expression_list] = STATE(6513), + [sym_pattern] = STATE(5607), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(3161), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4796), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_pattern_list] = STATE(6539), + [sym_attribute] = STATE(3163), + [sym_subscript] = STATE(3163), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_exec] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2483), + [anon_sym_api] = ACTIONS(2473), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [847] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5472), + [sym_expression] = STATE(4857), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5472), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [848] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5472), + [sym_expression] = STATE(4857), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5472), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [849] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5332), + [sym_expression] = STATE(4855), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5332), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [850] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5332), + [sym_expression] = STATE(4855), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5332), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [851] = { + [sym_pattern] = STATE(4064), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(3335), + [sym_primary_expression] = STATE(4079), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(3336), + [sym_subscript] = STATE(3336), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_print] = ACTIONS(2455), + [anon_sym_COLON] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_exec] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(2207), + [anon_sym_DASH_EQ] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2207), + [anon_sym_SLASH_EQ] = ACTIONS(2207), + [anon_sym_AT_EQ] = ACTIONS(2207), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2207), + [anon_sym_PERCENT_EQ] = ACTIONS(2207), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2207), + [anon_sym_GT_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_LT_EQ] = ACTIONS(2207), + [anon_sym_AMP_EQ] = ACTIONS(2207), + [anon_sym_CARET_EQ] = ACTIONS(2207), + [anon_sym_PIPE_EQ] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2459), + [anon_sym_api] = ACTIONS(2455), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [852] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5472), + [sym_expression] = STATE(4857), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5472), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [853] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6387), + [sym_parenthesized_list_splat] = STATE(6387), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5255), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_yield] = STATE(6387), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [854] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat] = STATE(6407), + [sym_parenthesized_list_splat] = STATE(6407), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5282), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_yield] = STATE(6407), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [855] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5472), + [sym_expression] = STATE(4857), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5472), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(2503), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [856] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6431), + [sym_parenthesized_list_splat] = STATE(6431), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5153), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_yield] = STATE(6431), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [857] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_expression_list] = STATE(6368), + [sym_pattern] = STATE(5693), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(3161), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4890), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_pattern_list] = STATE(6575), + [sym_attribute] = STATE(3163), + [sym_subscript] = STATE(3163), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_exec] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2483), + [anon_sym_api] = ACTIONS(2473), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [858] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_expression_list] = STATE(6377), + [sym_pattern] = STATE(5531), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(3161), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4892), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_pattern_list] = STATE(6580), + [sym_attribute] = STATE(3163), + [sym_subscript] = STATE(3163), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_exec] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2483), + [anon_sym_api] = ACTIONS(2473), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [859] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5368), + [sym_expression] = STATE(4931), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5368), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [860] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6431), + [sym_parenthesized_list_splat] = STATE(6431), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5153), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_yield] = STATE(6431), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [861] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5368), + [sym_expression] = STATE(4931), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5368), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [862] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_expression_list] = STATE(6457), + [sym_pattern] = STATE(5580), + [sym_tuple_pattern] = STATE(4106), + [sym_list_pattern] = STATE(4106), + [sym_list_splat_pattern] = STATE(3161), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4901), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_pattern_list] = STATE(6466), + [sym_attribute] = STATE(3163), + [sym_subscript] = STATE(3163), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_exec] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2483), + [anon_sym_api] = ACTIONS(2473), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [863] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5332), + [sym_expression] = STATE(4855), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5332), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [864] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5368), + [sym_expression] = STATE(4931), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5368), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [865] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5332), + [sym_expression] = STATE(4855), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5332), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [866] = { + [sym_ELIF_clause] = STATE(1175), + [sym_ELSE_clause] = STATE(2019), + [aux_sym_IF_statement_repeat1] = STATE(900), + [ts_builtin_sym_end] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2517), + [anon_sym_import] = ACTIONS(2517), + [anon_sym_cimport] = ACTIONS(2517), + [anon_sym_from] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_print] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_del] = ACTIONS(2517), + [anon_sym_raise] = ACTIONS(2517), + [anon_sym_pass] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_def] = ACTIONS(2517), + [anon_sym_global] = ACTIONS(2517), + [anon_sym_nonlocal] = ACTIONS(2517), + [anon_sym_exec] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_not] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_lambda] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2515), + [anon_sym_None] = ACTIONS(2517), + [anon_sym_0x] = ACTIONS(2515), + [anon_sym_0X] = ACTIONS(2515), + [anon_sym_0o] = ACTIONS(2515), + [anon_sym_0O] = ACTIONS(2515), + [anon_sym_0b] = ACTIONS(2515), + [anon_sym_0B] = ACTIONS(2515), + [aux_sym_integer_token4] = ACTIONS(2517), + [sym_float] = ACTIONS(2515), + [anon_sym_await] = ACTIONS(2517), + [anon_sym_api] = ACTIONS(2517), + [sym_true] = ACTIONS(2517), + [sym_false] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2517), + [anon_sym_include] = ACTIONS(2517), + [anon_sym_DEF] = ACTIONS(2517), + [anon_sym_IF] = ACTIONS(2517), + [anon_sym_ELIF] = ACTIONS(2519), + [anon_sym_ELSE] = ACTIONS(2521), + [anon_sym_cdef] = ACTIONS(2517), + [anon_sym_cpdef] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_ctypedef] = ACTIONS(2517), + [anon_sym_public] = ACTIONS(2517), + [anon_sym_packed] = ACTIONS(2517), + [anon_sym_inline] = ACTIONS(2517), + [anon_sym_readonly] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2517), + [sym_string_start] = ACTIONS(2515), + }, + [867] = { + [sym_ELIF_clause] = STATE(1080), + [sym_ELSE_clause] = STATE(2103), + [aux_sym_IF_statement_repeat1] = STATE(942), + [sym_identifier] = ACTIONS(2523), + [anon_sym_import] = ACTIONS(2523), + [anon_sym_cimport] = ACTIONS(2523), + [anon_sym_from] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_print] = ACTIONS(2523), + [anon_sym_assert] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_del] = ACTIONS(2523), + [anon_sym_raise] = ACTIONS(2523), + [anon_sym_pass] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_match] = ACTIONS(2523), + [anon_sym_async] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2523), + [anon_sym_def] = ACTIONS(2523), + [anon_sym_global] = ACTIONS(2523), + [anon_sym_nonlocal] = ACTIONS(2523), + [anon_sym_exec] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2523), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_AT] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_lambda] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2523), + [anon_sym_0x] = ACTIONS(2525), + [anon_sym_0X] = ACTIONS(2525), + [anon_sym_0o] = ACTIONS(2525), + [anon_sym_0O] = ACTIONS(2525), + [anon_sym_0b] = ACTIONS(2525), + [anon_sym_0B] = ACTIONS(2525), + [aux_sym_integer_token4] = ACTIONS(2523), + [sym_float] = ACTIONS(2525), + [anon_sym_await] = ACTIONS(2523), + [anon_sym_api] = ACTIONS(2523), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2523), + [anon_sym_include] = ACTIONS(2523), + [anon_sym_DEF] = ACTIONS(2523), + [anon_sym_IF] = ACTIONS(2523), + [anon_sym_ELIF] = ACTIONS(2527), + [anon_sym_ELSE] = ACTIONS(2529), + [anon_sym_cdef] = ACTIONS(2523), + [anon_sym_cpdef] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_ctypedef] = ACTIONS(2523), + [anon_sym_public] = ACTIONS(2523), + [anon_sym_packed] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_readonly] = ACTIONS(2523), + [anon_sym_sizeof] = ACTIONS(2523), + [sym__dedent] = ACTIONS(2525), + [sym_string_start] = ACTIONS(2525), + }, + [868] = { + [sym_ELIF_clause] = STATE(1080), + [sym_ELSE_clause] = STATE(2104), + [aux_sym_IF_statement_repeat1] = STATE(893), + [sym_identifier] = ACTIONS(2531), + [anon_sym_import] = ACTIONS(2531), + [anon_sym_cimport] = ACTIONS(2531), + [anon_sym_from] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_print] = ACTIONS(2531), + [anon_sym_assert] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_del] = ACTIONS(2531), + [anon_sym_raise] = ACTIONS(2531), + [anon_sym_pass] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_with] = ACTIONS(2531), + [anon_sym_def] = ACTIONS(2531), + [anon_sym_global] = ACTIONS(2531), + [anon_sym_nonlocal] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_AT] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_not] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_lambda] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), + [anon_sym_None] = ACTIONS(2531), + [anon_sym_0x] = ACTIONS(2533), + [anon_sym_0X] = ACTIONS(2533), + [anon_sym_0o] = ACTIONS(2533), + [anon_sym_0O] = ACTIONS(2533), + [anon_sym_0b] = ACTIONS(2533), + [anon_sym_0B] = ACTIONS(2533), + [aux_sym_integer_token4] = ACTIONS(2531), + [sym_float] = ACTIONS(2533), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_api] = ACTIONS(2531), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2531), + [anon_sym_include] = ACTIONS(2531), + [anon_sym_DEF] = ACTIONS(2531), + [anon_sym_IF] = ACTIONS(2531), + [anon_sym_ELIF] = ACTIONS(2527), + [anon_sym_ELSE] = ACTIONS(2529), + [anon_sym_cdef] = ACTIONS(2531), + [anon_sym_cpdef] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_ctypedef] = ACTIONS(2531), + [anon_sym_public] = ACTIONS(2531), + [anon_sym_packed] = ACTIONS(2531), + [anon_sym_inline] = ACTIONS(2531), + [anon_sym_readonly] = ACTIONS(2531), + [anon_sym_sizeof] = ACTIONS(2531), + [sym__dedent] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2533), + }, + [869] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [870] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [871] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_expression_list] = STATE(6314), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4715), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_from] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2539), + [sym_string_start] = ACTIONS(117), + }, + [872] = { + [sym_ELIF_clause] = STATE(1175), + [sym_ELSE_clause] = STATE(2066), + [aux_sym_IF_statement_repeat1] = STATE(883), + [ts_builtin_sym_end] = ACTIONS(2533), + [sym_identifier] = ACTIONS(2531), + [anon_sym_import] = ACTIONS(2531), + [anon_sym_cimport] = ACTIONS(2531), + [anon_sym_from] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_print] = ACTIONS(2531), + [anon_sym_assert] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_del] = ACTIONS(2531), + [anon_sym_raise] = ACTIONS(2531), + [anon_sym_pass] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_with] = ACTIONS(2531), + [anon_sym_def] = ACTIONS(2531), + [anon_sym_global] = ACTIONS(2531), + [anon_sym_nonlocal] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_AT] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_not] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_lambda] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), + [anon_sym_None] = ACTIONS(2531), + [anon_sym_0x] = ACTIONS(2533), + [anon_sym_0X] = ACTIONS(2533), + [anon_sym_0o] = ACTIONS(2533), + [anon_sym_0O] = ACTIONS(2533), + [anon_sym_0b] = ACTIONS(2533), + [anon_sym_0B] = ACTIONS(2533), + [aux_sym_integer_token4] = ACTIONS(2531), + [sym_float] = ACTIONS(2533), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_api] = ACTIONS(2531), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2531), + [anon_sym_include] = ACTIONS(2531), + [anon_sym_DEF] = ACTIONS(2531), + [anon_sym_IF] = ACTIONS(2531), + [anon_sym_ELIF] = ACTIONS(2519), + [anon_sym_ELSE] = ACTIONS(2521), + [anon_sym_cdef] = ACTIONS(2531), + [anon_sym_cpdef] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_ctypedef] = ACTIONS(2531), + [anon_sym_public] = ACTIONS(2531), + [anon_sym_packed] = ACTIONS(2531), + [anon_sym_inline] = ACTIONS(2531), + [anon_sym_readonly] = ACTIONS(2531), + [anon_sym_sizeof] = ACTIONS(2531), + [sym_string_start] = ACTIONS(2533), + }, + [873] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [874] = { + [sym_ELIF_clause] = STATE(1080), + [sym_ELSE_clause] = STATE(2084), + [aux_sym_IF_statement_repeat1] = STATE(867), + [sym_identifier] = ACTIONS(2517), + [anon_sym_import] = ACTIONS(2517), + [anon_sym_cimport] = ACTIONS(2517), + [anon_sym_from] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_print] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_del] = ACTIONS(2517), + [anon_sym_raise] = ACTIONS(2517), + [anon_sym_pass] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_def] = ACTIONS(2517), + [anon_sym_global] = ACTIONS(2517), + [anon_sym_nonlocal] = ACTIONS(2517), + [anon_sym_exec] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_not] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_lambda] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2515), + [anon_sym_None] = ACTIONS(2517), + [anon_sym_0x] = ACTIONS(2515), + [anon_sym_0X] = ACTIONS(2515), + [anon_sym_0o] = ACTIONS(2515), + [anon_sym_0O] = ACTIONS(2515), + [anon_sym_0b] = ACTIONS(2515), + [anon_sym_0B] = ACTIONS(2515), + [aux_sym_integer_token4] = ACTIONS(2517), + [sym_float] = ACTIONS(2515), + [anon_sym_await] = ACTIONS(2517), + [anon_sym_api] = ACTIONS(2517), + [sym_true] = ACTIONS(2517), + [sym_false] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2517), + [anon_sym_include] = ACTIONS(2517), + [anon_sym_DEF] = ACTIONS(2517), + [anon_sym_IF] = ACTIONS(2517), + [anon_sym_ELIF] = ACTIONS(2527), + [anon_sym_ELSE] = ACTIONS(2529), + [anon_sym_cdef] = ACTIONS(2517), + [anon_sym_cpdef] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_ctypedef] = ACTIONS(2517), + [anon_sym_public] = ACTIONS(2517), + [anon_sym_packed] = ACTIONS(2517), + [anon_sym_inline] = ACTIONS(2517), + [anon_sym_readonly] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2517), + [sym__dedent] = ACTIONS(2515), + [sym_string_start] = ACTIONS(2515), + }, + [875] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [876] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [877] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6431), + [sym_parenthesized_list_splat] = STATE(6431), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5153), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_yield] = STATE(6431), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [878] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [879] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_expression_list] = STATE(6452), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5005), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_from] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [880] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [881] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [882] = { + [sym_elif_clause] = STATE(1072), + [sym_else_clause] = STATE(2088), + [aux_sym_if_statement_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(2569), + [anon_sym_import] = ACTIONS(2569), + [anon_sym_cimport] = ACTIONS(2569), + [anon_sym_from] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_print] = ACTIONS(2569), + [anon_sym_assert] = ACTIONS(2569), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_del] = ACTIONS(2569), + [anon_sym_raise] = ACTIONS(2569), + [anon_sym_pass] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_elif] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_with] = ACTIONS(2569), + [anon_sym_def] = ACTIONS(2569), + [anon_sym_global] = ACTIONS(2569), + [anon_sym_nonlocal] = ACTIONS(2569), + [anon_sym_exec] = ACTIONS(2569), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_lambda] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [anon_sym_None] = ACTIONS(2569), + [anon_sym_0x] = ACTIONS(2571), + [anon_sym_0X] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2571), + [anon_sym_0O] = ACTIONS(2571), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0B] = ACTIONS(2571), + [aux_sym_integer_token4] = ACTIONS(2569), + [sym_float] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2569), + [sym_true] = ACTIONS(2569), + [sym_false] = ACTIONS(2569), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2569), + [anon_sym_include] = ACTIONS(2569), + [anon_sym_DEF] = ACTIONS(2569), + [anon_sym_IF] = ACTIONS(2569), + [anon_sym_cdef] = ACTIONS(2569), + [anon_sym_cpdef] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_ctypedef] = ACTIONS(2569), + [anon_sym_public] = ACTIONS(2569), + [anon_sym_packed] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym_readonly] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2569), + [sym__dedent] = ACTIONS(2571), + [sym_string_start] = ACTIONS(2571), + }, + [883] = { + [sym_ELIF_clause] = STATE(1175), + [sym_ELSE_clause] = STATE(2150), + [aux_sym_IF_statement_repeat1] = STATE(913), + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2577), + [anon_sym_import] = ACTIONS(2577), + [anon_sym_cimport] = ACTIONS(2577), + [anon_sym_from] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_print] = ACTIONS(2577), + [anon_sym_assert] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_del] = ACTIONS(2577), + [anon_sym_raise] = ACTIONS(2577), + [anon_sym_pass] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_match] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_with] = ACTIONS(2577), + [anon_sym_def] = ACTIONS(2577), + [anon_sym_global] = ACTIONS(2577), + [anon_sym_nonlocal] = ACTIONS(2577), + [anon_sym_exec] = ACTIONS(2577), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_lambda] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [anon_sym_None] = ACTIONS(2577), + [anon_sym_0x] = ACTIONS(2575), + [anon_sym_0X] = ACTIONS(2575), + [anon_sym_0o] = ACTIONS(2575), + [anon_sym_0O] = ACTIONS(2575), + [anon_sym_0b] = ACTIONS(2575), + [anon_sym_0B] = ACTIONS(2575), + [aux_sym_integer_token4] = ACTIONS(2577), + [sym_float] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_api] = ACTIONS(2577), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2577), + [anon_sym_include] = ACTIONS(2577), + [anon_sym_DEF] = ACTIONS(2577), + [anon_sym_IF] = ACTIONS(2577), + [anon_sym_ELIF] = ACTIONS(2519), + [anon_sym_ELSE] = ACTIONS(2521), + [anon_sym_cdef] = ACTIONS(2577), + [anon_sym_cpdef] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_ctypedef] = ACTIONS(2577), + [anon_sym_public] = ACTIONS(2577), + [anon_sym_packed] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_readonly] = ACTIONS(2577), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_string_start] = ACTIONS(2575), + }, + [884] = { + [sym_elif_clause] = STATE(1072), + [sym_else_clause] = STATE(2089), + [aux_sym_if_statement_repeat1] = STATE(889), + [sym_identifier] = ACTIONS(2579), + [anon_sym_import] = ACTIONS(2579), + [anon_sym_cimport] = ACTIONS(2579), + [anon_sym_from] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_print] = ACTIONS(2579), + [anon_sym_assert] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_del] = ACTIONS(2579), + [anon_sym_raise] = ACTIONS(2579), + [anon_sym_pass] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_elif] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_async] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_with] = ACTIONS(2579), + [anon_sym_def] = ACTIONS(2579), + [anon_sym_global] = ACTIONS(2579), + [anon_sym_nonlocal] = ACTIONS(2579), + [anon_sym_exec] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_AT] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_lambda] = ACTIONS(2579), + [anon_sym_yield] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), + [anon_sym_None] = ACTIONS(2579), + [anon_sym_0x] = ACTIONS(2581), + [anon_sym_0X] = ACTIONS(2581), + [anon_sym_0o] = ACTIONS(2581), + [anon_sym_0O] = ACTIONS(2581), + [anon_sym_0b] = ACTIONS(2581), + [anon_sym_0B] = ACTIONS(2581), + [aux_sym_integer_token4] = ACTIONS(2579), + [sym_float] = ACTIONS(2581), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_api] = ACTIONS(2579), + [sym_true] = ACTIONS(2579), + [sym_false] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2579), + [anon_sym_include] = ACTIONS(2579), + [anon_sym_DEF] = ACTIONS(2579), + [anon_sym_IF] = ACTIONS(2579), + [anon_sym_cdef] = ACTIONS(2579), + [anon_sym_cpdef] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(2579), + [anon_sym_ctypedef] = ACTIONS(2579), + [anon_sym_public] = ACTIONS(2579), + [anon_sym_packed] = ACTIONS(2579), + [anon_sym_inline] = ACTIONS(2579), + [anon_sym_readonly] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2579), + [sym__dedent] = ACTIONS(2581), + [sym_string_start] = ACTIONS(2581), + }, + [885] = { + [sym_except_clause] = STATE(885), + [aux_sym_try_statement_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2583), + [anon_sym_cimport] = ACTIONS(2583), + [anon_sym_from] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_print] = ACTIONS(2583), + [anon_sym_assert] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_del] = ACTIONS(2583), + [anon_sym_raise] = ACTIONS(2583), + [anon_sym_pass] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_match] = ACTIONS(2583), + [anon_sym_async] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_except] = ACTIONS(2587), + [anon_sym_finally] = ACTIONS(2583), + [anon_sym_with] = ACTIONS(2583), + [anon_sym_def] = ACTIONS(2583), + [anon_sym_global] = ACTIONS(2583), + [anon_sym_nonlocal] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_lambda] = ACTIONS(2583), + [anon_sym_yield] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2585), + [anon_sym_None] = ACTIONS(2583), + [anon_sym_0x] = ACTIONS(2585), + [anon_sym_0X] = ACTIONS(2585), + [anon_sym_0o] = ACTIONS(2585), + [anon_sym_0O] = ACTIONS(2585), + [anon_sym_0b] = ACTIONS(2585), + [anon_sym_0B] = ACTIONS(2585), + [aux_sym_integer_token4] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2583), + [anon_sym_api] = ACTIONS(2583), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2583), + [anon_sym_include] = ACTIONS(2583), + [anon_sym_DEF] = ACTIONS(2583), + [anon_sym_IF] = ACTIONS(2583), + [anon_sym_cdef] = ACTIONS(2583), + [anon_sym_cpdef] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_ctypedef] = ACTIONS(2583), + [anon_sym_public] = ACTIONS(2583), + [anon_sym_packed] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_readonly] = ACTIONS(2583), + [anon_sym_sizeof] = ACTIONS(2583), + [sym__dedent] = ACTIONS(2585), + [sym_string_start] = ACTIONS(2585), + }, + [886] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_expression_list] = STATE(6570), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4888), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_from] = ACTIONS(2590), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2421), + [sym_string_start] = ACTIONS(117), + }, + [887] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_expression_list] = STATE(5491), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5019), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_from] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [888] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [889] = { + [sym_elif_clause] = STATE(1072), + [sym_else_clause] = STATE(2108), + [aux_sym_if_statement_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(2598), + [anon_sym_import] = ACTIONS(2598), + [anon_sym_cimport] = ACTIONS(2598), + [anon_sym_from] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_print] = ACTIONS(2598), + [anon_sym_assert] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_del] = ACTIONS(2598), + [anon_sym_raise] = ACTIONS(2598), + [anon_sym_pass] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_elif] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2598), + [anon_sym_async] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_try] = ACTIONS(2598), + [anon_sym_with] = ACTIONS(2598), + [anon_sym_def] = ACTIONS(2598), + [anon_sym_global] = ACTIONS(2598), + [anon_sym_nonlocal] = ACTIONS(2598), + [anon_sym_exec] = ACTIONS(2598), + [anon_sym_type] = ACTIONS(2598), + [anon_sym_class] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_not] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [anon_sym_LT] = ACTIONS(2600), + [anon_sym_lambda] = ACTIONS(2598), + [anon_sym_yield] = ACTIONS(2598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_None] = ACTIONS(2598), + [anon_sym_0x] = ACTIONS(2600), + [anon_sym_0X] = ACTIONS(2600), + [anon_sym_0o] = ACTIONS(2600), + [anon_sym_0O] = ACTIONS(2600), + [anon_sym_0b] = ACTIONS(2600), + [anon_sym_0B] = ACTIONS(2600), + [aux_sym_integer_token4] = ACTIONS(2598), + [sym_float] = ACTIONS(2600), + [anon_sym_await] = ACTIONS(2598), + [anon_sym_api] = ACTIONS(2598), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2598), + [anon_sym_include] = ACTIONS(2598), + [anon_sym_DEF] = ACTIONS(2598), + [anon_sym_IF] = ACTIONS(2598), + [anon_sym_cdef] = ACTIONS(2598), + [anon_sym_cpdef] = ACTIONS(2598), + [anon_sym_new] = ACTIONS(2598), + [anon_sym_ctypedef] = ACTIONS(2598), + [anon_sym_public] = ACTIONS(2598), + [anon_sym_packed] = ACTIONS(2598), + [anon_sym_inline] = ACTIONS(2598), + [anon_sym_readonly] = ACTIONS(2598), + [anon_sym_sizeof] = ACTIONS(2598), + [sym__dedent] = ACTIONS(2600), + [sym_string_start] = ACTIONS(2600), + }, + [890] = { + [sym_except_clause] = STATE(890), + [aux_sym_try_statement_repeat1] = STATE(890), + [ts_builtin_sym_end] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2583), + [anon_sym_cimport] = ACTIONS(2583), + [anon_sym_from] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_print] = ACTIONS(2583), + [anon_sym_assert] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_del] = ACTIONS(2583), + [anon_sym_raise] = ACTIONS(2583), + [anon_sym_pass] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_match] = ACTIONS(2583), + [anon_sym_async] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_except] = ACTIONS(2602), + [anon_sym_finally] = ACTIONS(2583), + [anon_sym_with] = ACTIONS(2583), + [anon_sym_def] = ACTIONS(2583), + [anon_sym_global] = ACTIONS(2583), + [anon_sym_nonlocal] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_lambda] = ACTIONS(2583), + [anon_sym_yield] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2585), + [anon_sym_None] = ACTIONS(2583), + [anon_sym_0x] = ACTIONS(2585), + [anon_sym_0X] = ACTIONS(2585), + [anon_sym_0o] = ACTIONS(2585), + [anon_sym_0O] = ACTIONS(2585), + [anon_sym_0b] = ACTIONS(2585), + [anon_sym_0B] = ACTIONS(2585), + [aux_sym_integer_token4] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2583), + [anon_sym_api] = ACTIONS(2583), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2583), + [anon_sym_include] = ACTIONS(2583), + [anon_sym_DEF] = ACTIONS(2583), + [anon_sym_IF] = ACTIONS(2583), + [anon_sym_cdef] = ACTIONS(2583), + [anon_sym_cpdef] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_ctypedef] = ACTIONS(2583), + [anon_sym_public] = ACTIONS(2583), + [anon_sym_packed] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_readonly] = ACTIONS(2583), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_string_start] = ACTIONS(2585), + }, + [891] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [892] = { + [sym_elif_clause] = STATE(1131), + [sym_else_clause] = STATE(2036), + [aux_sym_if_statement_repeat1] = STATE(896), + [ts_builtin_sym_end] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2579), + [anon_sym_import] = ACTIONS(2579), + [anon_sym_cimport] = ACTIONS(2579), + [anon_sym_from] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_print] = ACTIONS(2579), + [anon_sym_assert] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_del] = ACTIONS(2579), + [anon_sym_raise] = ACTIONS(2579), + [anon_sym_pass] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_elif] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_async] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_with] = ACTIONS(2579), + [anon_sym_def] = ACTIONS(2579), + [anon_sym_global] = ACTIONS(2579), + [anon_sym_nonlocal] = ACTIONS(2579), + [anon_sym_exec] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_AT] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_lambda] = ACTIONS(2579), + [anon_sym_yield] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), + [anon_sym_None] = ACTIONS(2579), + [anon_sym_0x] = ACTIONS(2581), + [anon_sym_0X] = ACTIONS(2581), + [anon_sym_0o] = ACTIONS(2581), + [anon_sym_0O] = ACTIONS(2581), + [anon_sym_0b] = ACTIONS(2581), + [anon_sym_0B] = ACTIONS(2581), + [aux_sym_integer_token4] = ACTIONS(2579), + [sym_float] = ACTIONS(2581), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_api] = ACTIONS(2579), + [sym_true] = ACTIONS(2579), + [sym_false] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2579), + [anon_sym_include] = ACTIONS(2579), + [anon_sym_DEF] = ACTIONS(2579), + [anon_sym_IF] = ACTIONS(2579), + [anon_sym_cdef] = ACTIONS(2579), + [anon_sym_cpdef] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(2579), + [anon_sym_ctypedef] = ACTIONS(2579), + [anon_sym_public] = ACTIONS(2579), + [anon_sym_packed] = ACTIONS(2579), + [anon_sym_inline] = ACTIONS(2579), + [anon_sym_readonly] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2579), + [sym_string_start] = ACTIONS(2581), + }, + [893] = { + [sym_ELIF_clause] = STATE(1080), + [sym_ELSE_clause] = STATE(2119), + [aux_sym_IF_statement_repeat1] = STATE(942), + [sym_identifier] = ACTIONS(2577), + [anon_sym_import] = ACTIONS(2577), + [anon_sym_cimport] = ACTIONS(2577), + [anon_sym_from] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_print] = ACTIONS(2577), + [anon_sym_assert] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_del] = ACTIONS(2577), + [anon_sym_raise] = ACTIONS(2577), + [anon_sym_pass] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_match] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_with] = ACTIONS(2577), + [anon_sym_def] = ACTIONS(2577), + [anon_sym_global] = ACTIONS(2577), + [anon_sym_nonlocal] = ACTIONS(2577), + [anon_sym_exec] = ACTIONS(2577), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_lambda] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [anon_sym_None] = ACTIONS(2577), + [anon_sym_0x] = ACTIONS(2575), + [anon_sym_0X] = ACTIONS(2575), + [anon_sym_0o] = ACTIONS(2575), + [anon_sym_0O] = ACTIONS(2575), + [anon_sym_0b] = ACTIONS(2575), + [anon_sym_0B] = ACTIONS(2575), + [aux_sym_integer_token4] = ACTIONS(2577), + [sym_float] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_api] = ACTIONS(2577), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2577), + [anon_sym_include] = ACTIONS(2577), + [anon_sym_DEF] = ACTIONS(2577), + [anon_sym_IF] = ACTIONS(2577), + [anon_sym_ELIF] = ACTIONS(2527), + [anon_sym_ELSE] = ACTIONS(2529), + [anon_sym_cdef] = ACTIONS(2577), + [anon_sym_cpdef] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_ctypedef] = ACTIONS(2577), + [anon_sym_public] = ACTIONS(2577), + [anon_sym_packed] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_readonly] = ACTIONS(2577), + [anon_sym_sizeof] = ACTIONS(2577), + [sym__dedent] = ACTIONS(2575), + [sym_string_start] = ACTIONS(2575), + }, + [894] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4777), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_COLON] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [sym_type_conversion] = ACTIONS(2609), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [895] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [896] = { + [sym_elif_clause] = STATE(1131), + [sym_else_clause] = STATE(2122), + [aux_sym_if_statement_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(2600), + [sym_identifier] = ACTIONS(2598), + [anon_sym_import] = ACTIONS(2598), + [anon_sym_cimport] = ACTIONS(2598), + [anon_sym_from] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_print] = ACTIONS(2598), + [anon_sym_assert] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_del] = ACTIONS(2598), + [anon_sym_raise] = ACTIONS(2598), + [anon_sym_pass] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_elif] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2598), + [anon_sym_async] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_try] = ACTIONS(2598), + [anon_sym_with] = ACTIONS(2598), + [anon_sym_def] = ACTIONS(2598), + [anon_sym_global] = ACTIONS(2598), + [anon_sym_nonlocal] = ACTIONS(2598), + [anon_sym_exec] = ACTIONS(2598), + [anon_sym_type] = ACTIONS(2598), + [anon_sym_class] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_not] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [anon_sym_LT] = ACTIONS(2600), + [anon_sym_lambda] = ACTIONS(2598), + [anon_sym_yield] = ACTIONS(2598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_None] = ACTIONS(2598), + [anon_sym_0x] = ACTIONS(2600), + [anon_sym_0X] = ACTIONS(2600), + [anon_sym_0o] = ACTIONS(2600), + [anon_sym_0O] = ACTIONS(2600), + [anon_sym_0b] = ACTIONS(2600), + [anon_sym_0B] = ACTIONS(2600), + [aux_sym_integer_token4] = ACTIONS(2598), + [sym_float] = ACTIONS(2600), + [anon_sym_await] = ACTIONS(2598), + [anon_sym_api] = ACTIONS(2598), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2598), + [anon_sym_include] = ACTIONS(2598), + [anon_sym_DEF] = ACTIONS(2598), + [anon_sym_IF] = ACTIONS(2598), + [anon_sym_cdef] = ACTIONS(2598), + [anon_sym_cpdef] = ACTIONS(2598), + [anon_sym_new] = ACTIONS(2598), + [anon_sym_ctypedef] = ACTIONS(2598), + [anon_sym_public] = ACTIONS(2598), + [anon_sym_packed] = ACTIONS(2598), + [anon_sym_inline] = ACTIONS(2598), + [anon_sym_readonly] = ACTIONS(2598), + [anon_sym_sizeof] = ACTIONS(2598), + [sym_string_start] = ACTIONS(2600), + }, + [897] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat] = STATE(6407), + [sym_parenthesized_list_splat] = STATE(6407), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5282), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_yield] = STATE(6407), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [898] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [899] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [900] = { + [sym_ELIF_clause] = STATE(1175), + [sym_ELSE_clause] = STATE(2064), + [aux_sym_IF_statement_repeat1] = STATE(913), + [ts_builtin_sym_end] = ACTIONS(2525), + [sym_identifier] = ACTIONS(2523), + [anon_sym_import] = ACTIONS(2523), + [anon_sym_cimport] = ACTIONS(2523), + [anon_sym_from] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_print] = ACTIONS(2523), + [anon_sym_assert] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_del] = ACTIONS(2523), + [anon_sym_raise] = ACTIONS(2523), + [anon_sym_pass] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_match] = ACTIONS(2523), + [anon_sym_async] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2523), + [anon_sym_def] = ACTIONS(2523), + [anon_sym_global] = ACTIONS(2523), + [anon_sym_nonlocal] = ACTIONS(2523), + [anon_sym_exec] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2523), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_AT] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_lambda] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2523), + [anon_sym_0x] = ACTIONS(2525), + [anon_sym_0X] = ACTIONS(2525), + [anon_sym_0o] = ACTIONS(2525), + [anon_sym_0O] = ACTIONS(2525), + [anon_sym_0b] = ACTIONS(2525), + [anon_sym_0B] = ACTIONS(2525), + [aux_sym_integer_token4] = ACTIONS(2523), + [sym_float] = ACTIONS(2525), + [anon_sym_await] = ACTIONS(2523), + [anon_sym_api] = ACTIONS(2523), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2523), + [anon_sym_include] = ACTIONS(2523), + [anon_sym_DEF] = ACTIONS(2523), + [anon_sym_IF] = ACTIONS(2523), + [anon_sym_ELIF] = ACTIONS(2519), + [anon_sym_ELSE] = ACTIONS(2521), + [anon_sym_cdef] = ACTIONS(2523), + [anon_sym_cpdef] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_ctypedef] = ACTIONS(2523), + [anon_sym_public] = ACTIONS(2523), + [anon_sym_packed] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_readonly] = ACTIONS(2523), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_string_start] = ACTIONS(2525), + }, + [901] = { + [sym_elif_clause] = STATE(1131), + [sym_else_clause] = STATE(2165), + [aux_sym_if_statement_repeat1] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_import] = ACTIONS(2619), + [anon_sym_cimport] = ACTIONS(2619), + [anon_sym_from] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_print] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_del] = ACTIONS(2619), + [anon_sym_raise] = ACTIONS(2619), + [anon_sym_pass] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_elif] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_async] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_def] = ACTIONS(2619), + [anon_sym_global] = ACTIONS(2619), + [anon_sym_nonlocal] = ACTIONS(2619), + [anon_sym_exec] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_lambda] = ACTIONS(2619), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [anon_sym_None] = ACTIONS(2619), + [anon_sym_0x] = ACTIONS(2617), + [anon_sym_0X] = ACTIONS(2617), + [anon_sym_0o] = ACTIONS(2617), + [anon_sym_0O] = ACTIONS(2617), + [anon_sym_0b] = ACTIONS(2617), + [anon_sym_0B] = ACTIONS(2617), + [aux_sym_integer_token4] = ACTIONS(2619), + [sym_float] = ACTIONS(2617), + [anon_sym_await] = ACTIONS(2619), + [anon_sym_api] = ACTIONS(2619), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2619), + [anon_sym_include] = ACTIONS(2619), + [anon_sym_DEF] = ACTIONS(2619), + [anon_sym_IF] = ACTIONS(2619), + [anon_sym_cdef] = ACTIONS(2619), + [anon_sym_cpdef] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_ctypedef] = ACTIONS(2619), + [anon_sym_public] = ACTIONS(2619), + [anon_sym_packed] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_readonly] = ACTIONS(2619), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_string_start] = ACTIONS(2617), + }, + [902] = { + [sym_except_group_clause] = STATE(902), + [aux_sym_try_statement_repeat2] = STATE(902), + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2623), + [anon_sym_import] = ACTIONS(2623), + [anon_sym_cimport] = ACTIONS(2623), + [anon_sym_from] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_assert] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_del] = ACTIONS(2623), + [anon_sym_raise] = ACTIONS(2623), + [anon_sym_pass] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_except_STAR] = ACTIONS(2625), + [anon_sym_finally] = ACTIONS(2623), + [anon_sym_with] = ACTIONS(2623), + [anon_sym_def] = ACTIONS(2623), + [anon_sym_global] = ACTIONS(2623), + [anon_sym_nonlocal] = ACTIONS(2623), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_type] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_lambda] = ACTIONS(2623), + [anon_sym_yield] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [anon_sym_None] = ACTIONS(2623), + [anon_sym_0x] = ACTIONS(2621), + [anon_sym_0X] = ACTIONS(2621), + [anon_sym_0o] = ACTIONS(2621), + [anon_sym_0O] = ACTIONS(2621), + [anon_sym_0b] = ACTIONS(2621), + [anon_sym_0B] = ACTIONS(2621), + [aux_sym_integer_token4] = ACTIONS(2623), + [sym_float] = ACTIONS(2621), + [anon_sym_await] = ACTIONS(2623), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2623), + [anon_sym_include] = ACTIONS(2623), + [anon_sym_DEF] = ACTIONS(2623), + [anon_sym_IF] = ACTIONS(2623), + [anon_sym_cdef] = ACTIONS(2623), + [anon_sym_cpdef] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_ctypedef] = ACTIONS(2623), + [anon_sym_public] = ACTIONS(2623), + [anon_sym_packed] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_readonly] = ACTIONS(2623), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_string_start] = ACTIONS(2621), + }, + [903] = { + [sym_elif_clause] = STATE(1131), + [sym_else_clause] = STATE(2035), + [aux_sym_if_statement_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2569), + [anon_sym_import] = ACTIONS(2569), + [anon_sym_cimport] = ACTIONS(2569), + [anon_sym_from] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_print] = ACTIONS(2569), + [anon_sym_assert] = ACTIONS(2569), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_del] = ACTIONS(2569), + [anon_sym_raise] = ACTIONS(2569), + [anon_sym_pass] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_elif] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_with] = ACTIONS(2569), + [anon_sym_def] = ACTIONS(2569), + [anon_sym_global] = ACTIONS(2569), + [anon_sym_nonlocal] = ACTIONS(2569), + [anon_sym_exec] = ACTIONS(2569), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_lambda] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [anon_sym_None] = ACTIONS(2569), + [anon_sym_0x] = ACTIONS(2571), + [anon_sym_0X] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2571), + [anon_sym_0O] = ACTIONS(2571), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0B] = ACTIONS(2571), + [aux_sym_integer_token4] = ACTIONS(2569), + [sym_float] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2569), + [sym_true] = ACTIONS(2569), + [sym_false] = ACTIONS(2569), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2569), + [anon_sym_include] = ACTIONS(2569), + [anon_sym_DEF] = ACTIONS(2569), + [anon_sym_IF] = ACTIONS(2569), + [anon_sym_cdef] = ACTIONS(2569), + [anon_sym_cpdef] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_ctypedef] = ACTIONS(2569), + [anon_sym_public] = ACTIONS(2569), + [anon_sym_packed] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym_readonly] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2569), + [sym_string_start] = ACTIONS(2571), + }, + [904] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4777), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_EQ] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [sym_type_conversion] = ACTIONS(2628), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [905] = { + [sym_except_group_clause] = STATE(905), + [aux_sym_try_statement_repeat2] = STATE(905), + [sym_identifier] = ACTIONS(2623), + [anon_sym_import] = ACTIONS(2623), + [anon_sym_cimport] = ACTIONS(2623), + [anon_sym_from] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_assert] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_del] = ACTIONS(2623), + [anon_sym_raise] = ACTIONS(2623), + [anon_sym_pass] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_except_STAR] = ACTIONS(2630), + [anon_sym_finally] = ACTIONS(2623), + [anon_sym_with] = ACTIONS(2623), + [anon_sym_def] = ACTIONS(2623), + [anon_sym_global] = ACTIONS(2623), + [anon_sym_nonlocal] = ACTIONS(2623), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_type] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_lambda] = ACTIONS(2623), + [anon_sym_yield] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [anon_sym_None] = ACTIONS(2623), + [anon_sym_0x] = ACTIONS(2621), + [anon_sym_0X] = ACTIONS(2621), + [anon_sym_0o] = ACTIONS(2621), + [anon_sym_0O] = ACTIONS(2621), + [anon_sym_0b] = ACTIONS(2621), + [anon_sym_0B] = ACTIONS(2621), + [aux_sym_integer_token4] = ACTIONS(2623), + [sym_float] = ACTIONS(2621), + [anon_sym_await] = ACTIONS(2623), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2623), + [anon_sym_include] = ACTIONS(2623), + [anon_sym_DEF] = ACTIONS(2623), + [anon_sym_IF] = ACTIONS(2623), + [anon_sym_cdef] = ACTIONS(2623), + [anon_sym_cpdef] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_ctypedef] = ACTIONS(2623), + [anon_sym_public] = ACTIONS(2623), + [anon_sym_packed] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_readonly] = ACTIONS(2623), + [anon_sym_sizeof] = ACTIONS(2623), + [sym__dedent] = ACTIONS(2621), + [sym_string_start] = ACTIONS(2621), + }, + [906] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [907] = { + [sym_elif_clause] = STATE(1072), + [sym_else_clause] = STATE(2071), + [aux_sym_if_statement_repeat1] = STATE(882), + [sym_identifier] = ACTIONS(2619), + [anon_sym_import] = ACTIONS(2619), + [anon_sym_cimport] = ACTIONS(2619), + [anon_sym_from] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_print] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_del] = ACTIONS(2619), + [anon_sym_raise] = ACTIONS(2619), + [anon_sym_pass] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_elif] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_async] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_def] = ACTIONS(2619), + [anon_sym_global] = ACTIONS(2619), + [anon_sym_nonlocal] = ACTIONS(2619), + [anon_sym_exec] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_lambda] = ACTIONS(2619), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [anon_sym_None] = ACTIONS(2619), + [anon_sym_0x] = ACTIONS(2617), + [anon_sym_0X] = ACTIONS(2617), + [anon_sym_0o] = ACTIONS(2617), + [anon_sym_0O] = ACTIONS(2617), + [anon_sym_0b] = ACTIONS(2617), + [anon_sym_0B] = ACTIONS(2617), + [aux_sym_integer_token4] = ACTIONS(2619), + [sym_float] = ACTIONS(2617), + [anon_sym_await] = ACTIONS(2619), + [anon_sym_api] = ACTIONS(2619), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2619), + [anon_sym_include] = ACTIONS(2619), + [anon_sym_DEF] = ACTIONS(2619), + [anon_sym_IF] = ACTIONS(2619), + [anon_sym_cdef] = ACTIONS(2619), + [anon_sym_cpdef] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_ctypedef] = ACTIONS(2619), + [anon_sym_public] = ACTIONS(2619), + [anon_sym_packed] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_readonly] = ACTIONS(2619), + [anon_sym_sizeof] = ACTIONS(2619), + [sym__dedent] = ACTIONS(2617), + [sym_string_start] = ACTIONS(2617), + }, + [908] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat] = STATE(6387), + [sym_parenthesized_list_splat] = STATE(6387), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5255), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_yield] = STATE(6387), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [909] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [910] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_expression_list] = STATE(6372), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5118), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_from] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [911] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [912] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5076), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2643), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [913] = { + [sym_ELIF_clause] = STATE(1175), + [aux_sym_IF_statement_repeat1] = STATE(913), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_cimport] = ACTIONS(2647), + [anon_sym_from] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_print] = ACTIONS(2647), + [anon_sym_assert] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_del] = ACTIONS(2647), + [anon_sym_raise] = ACTIONS(2647), + [anon_sym_pass] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_async] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_with] = ACTIONS(2647), + [anon_sym_def] = ACTIONS(2647), + [anon_sym_global] = ACTIONS(2647), + [anon_sym_nonlocal] = ACTIONS(2647), + [anon_sym_exec] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_lambda] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [anon_sym_None] = ACTIONS(2647), + [anon_sym_0x] = ACTIONS(2645), + [anon_sym_0X] = ACTIONS(2645), + [anon_sym_0o] = ACTIONS(2645), + [anon_sym_0O] = ACTIONS(2645), + [anon_sym_0b] = ACTIONS(2645), + [anon_sym_0B] = ACTIONS(2645), + [aux_sym_integer_token4] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_await] = ACTIONS(2647), + [anon_sym_api] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2647), + [anon_sym_include] = ACTIONS(2647), + [anon_sym_DEF] = ACTIONS(2647), + [anon_sym_IF] = ACTIONS(2647), + [anon_sym_ELIF] = ACTIONS(2649), + [anon_sym_ELSE] = ACTIONS(2647), + [anon_sym_cdef] = ACTIONS(2647), + [anon_sym_cpdef] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_ctypedef] = ACTIONS(2647), + [anon_sym_public] = ACTIONS(2647), + [anon_sym_packed] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym_readonly] = ACTIONS(2647), + [anon_sym_sizeof] = ACTIONS(2647), + [sym_string_start] = ACTIONS(2645), + }, + [914] = { + [sym_identifier] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_cimport] = ACTIONS(2652), + [anon_sym_from] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_print] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_del] = ACTIONS(2652), + [anon_sym_raise] = ACTIONS(2652), + [anon_sym_pass] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_finally] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_def] = ACTIONS(2652), + [anon_sym_global] = ACTIONS(2652), + [anon_sym_nonlocal] = ACTIONS(2652), + [anon_sym_exec] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_not] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2652), + [anon_sym_0x] = ACTIONS(2654), + [anon_sym_0X] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2654), + [anon_sym_0O] = ACTIONS(2654), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0B] = ACTIONS(2654), + [aux_sym_integer_token4] = ACTIONS(2652), + [sym_float] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_api] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2652), + [anon_sym_include] = ACTIONS(2652), + [anon_sym_DEF] = ACTIONS(2652), + [anon_sym_IF] = ACTIONS(2652), + [anon_sym_ELIF] = ACTIONS(2652), + [anon_sym_ELSE] = ACTIONS(2652), + [anon_sym_cdef] = ACTIONS(2652), + [anon_sym_cpdef] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_ctypedef] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_packed] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_sizeof] = ACTIONS(2652), + [sym__dedent] = ACTIONS(2654), + [sym_string_start] = ACTIONS(2654), + }, + [915] = { + [sym_identifier] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_print] = ACTIONS(2656), + [anon_sym_assert] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_del] = ACTIONS(2656), + [anon_sym_raise] = ACTIONS(2656), + [anon_sym_pass] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_finally] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_def] = ACTIONS(2656), + [anon_sym_global] = ACTIONS(2656), + [anon_sym_nonlocal] = ACTIONS(2656), + [anon_sym_exec] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_None] = ACTIONS(2656), + [anon_sym_0x] = ACTIONS(2658), + [anon_sym_0X] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2658), + [anon_sym_0O] = ACTIONS(2658), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0B] = ACTIONS(2658), + [aux_sym_integer_token4] = ACTIONS(2656), + [sym_float] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_api] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2656), + [anon_sym_include] = ACTIONS(2656), + [anon_sym_DEF] = ACTIONS(2656), + [anon_sym_IF] = ACTIONS(2656), + [anon_sym_ELIF] = ACTIONS(2656), + [anon_sym_ELSE] = ACTIONS(2656), + [anon_sym_cdef] = ACTIONS(2656), + [anon_sym_cpdef] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_ctypedef] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_packed] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_sizeof] = ACTIONS(2656), + [sym__dedent] = ACTIONS(2658), + [sym_string_start] = ACTIONS(2658), + }, + [916] = { + [sym_identifier] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_cimport] = ACTIONS(2660), + [anon_sym_from] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_print] = ACTIONS(2660), + [anon_sym_assert] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_del] = ACTIONS(2660), + [anon_sym_raise] = ACTIONS(2660), + [anon_sym_pass] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_finally] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_def] = ACTIONS(2660), + [anon_sym_global] = ACTIONS(2660), + [anon_sym_nonlocal] = ACTIONS(2660), + [anon_sym_exec] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_not] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_lambda] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_None] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2662), + [anon_sym_0X] = ACTIONS(2662), + [anon_sym_0o] = ACTIONS(2662), + [anon_sym_0O] = ACTIONS(2662), + [anon_sym_0b] = ACTIONS(2662), + [anon_sym_0B] = ACTIONS(2662), + [aux_sym_integer_token4] = ACTIONS(2660), + [sym_float] = ACTIONS(2662), + [anon_sym_await] = ACTIONS(2660), + [anon_sym_api] = ACTIONS(2660), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_DEF] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_ELIF] = ACTIONS(2660), + [anon_sym_ELSE] = ACTIONS(2660), + [anon_sym_cdef] = ACTIONS(2660), + [anon_sym_cpdef] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_ctypedef] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_packed] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_readonly] = ACTIONS(2660), + [anon_sym_sizeof] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2662), + [sym_string_start] = ACTIONS(2662), + }, + [917] = { + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_cimport] = ACTIONS(2666), + [anon_sym_from] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_print] = ACTIONS(2666), + [anon_sym_assert] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_del] = ACTIONS(2666), + [anon_sym_raise] = ACTIONS(2666), + [anon_sym_pass] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_finally] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_def] = ACTIONS(2666), + [anon_sym_global] = ACTIONS(2666), + [anon_sym_nonlocal] = ACTIONS(2666), + [anon_sym_exec] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_lambda] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_None] = ACTIONS(2666), + [anon_sym_0x] = ACTIONS(2664), + [anon_sym_0X] = ACTIONS(2664), + [anon_sym_0o] = ACTIONS(2664), + [anon_sym_0O] = ACTIONS(2664), + [anon_sym_0b] = ACTIONS(2664), + [anon_sym_0B] = ACTIONS(2664), + [aux_sym_integer_token4] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_api] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_DEF] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_ELIF] = ACTIONS(2666), + [anon_sym_ELSE] = ACTIONS(2666), + [anon_sym_cdef] = ACTIONS(2666), + [anon_sym_cpdef] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_ctypedef] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_packed] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2666), + [sym_string_start] = ACTIONS(2664), + }, + [918] = { + [sym_identifier] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_cimport] = ACTIONS(2668), + [anon_sym_from] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_print] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_del] = ACTIONS(2668), + [anon_sym_raise] = ACTIONS(2668), + [anon_sym_pass] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_finally] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_def] = ACTIONS(2668), + [anon_sym_global] = ACTIONS(2668), + [anon_sym_nonlocal] = ACTIONS(2668), + [anon_sym_exec] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_not] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_lambda] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_None] = ACTIONS(2668), + [anon_sym_0x] = ACTIONS(2670), + [anon_sym_0X] = ACTIONS(2670), + [anon_sym_0o] = ACTIONS(2670), + [anon_sym_0O] = ACTIONS(2670), + [anon_sym_0b] = ACTIONS(2670), + [anon_sym_0B] = ACTIONS(2670), + [aux_sym_integer_token4] = ACTIONS(2668), + [sym_float] = ACTIONS(2670), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_api] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2668), + [anon_sym_include] = ACTIONS(2668), + [anon_sym_DEF] = ACTIONS(2668), + [anon_sym_IF] = ACTIONS(2668), + [anon_sym_ELIF] = ACTIONS(2668), + [anon_sym_ELSE] = ACTIONS(2668), + [anon_sym_cdef] = ACTIONS(2668), + [anon_sym_cpdef] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_ctypedef] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_packed] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_readonly] = ACTIONS(2668), + [anon_sym_sizeof] = ACTIONS(2668), + [sym__dedent] = ACTIONS(2670), + [sym_string_start] = ACTIONS(2670), + }, + [919] = { + [sym_identifier] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_cimport] = ACTIONS(2666), + [anon_sym_from] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_print] = ACTIONS(2666), + [anon_sym_assert] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_del] = ACTIONS(2666), + [anon_sym_raise] = ACTIONS(2666), + [anon_sym_pass] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_finally] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_def] = ACTIONS(2666), + [anon_sym_global] = ACTIONS(2666), + [anon_sym_nonlocal] = ACTIONS(2666), + [anon_sym_exec] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_lambda] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_None] = ACTIONS(2666), + [anon_sym_0x] = ACTIONS(2664), + [anon_sym_0X] = ACTIONS(2664), + [anon_sym_0o] = ACTIONS(2664), + [anon_sym_0O] = ACTIONS(2664), + [anon_sym_0b] = ACTIONS(2664), + [anon_sym_0B] = ACTIONS(2664), + [aux_sym_integer_token4] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_api] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_DEF] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_ELIF] = ACTIONS(2666), + [anon_sym_ELSE] = ACTIONS(2666), + [anon_sym_cdef] = ACTIONS(2666), + [anon_sym_cpdef] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_ctypedef] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_packed] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2666), + [sym__dedent] = ACTIONS(2664), + [sym_string_start] = ACTIONS(2664), + }, + [920] = { + [ts_builtin_sym_end] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_cimport] = ACTIONS(2660), + [anon_sym_from] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_print] = ACTIONS(2660), + [anon_sym_assert] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_del] = ACTIONS(2660), + [anon_sym_raise] = ACTIONS(2660), + [anon_sym_pass] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_finally] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_def] = ACTIONS(2660), + [anon_sym_global] = ACTIONS(2660), + [anon_sym_nonlocal] = ACTIONS(2660), + [anon_sym_exec] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_not] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_lambda] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_None] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2662), + [anon_sym_0X] = ACTIONS(2662), + [anon_sym_0o] = ACTIONS(2662), + [anon_sym_0O] = ACTIONS(2662), + [anon_sym_0b] = ACTIONS(2662), + [anon_sym_0B] = ACTIONS(2662), + [aux_sym_integer_token4] = ACTIONS(2660), + [sym_float] = ACTIONS(2662), + [anon_sym_await] = ACTIONS(2660), + [anon_sym_api] = ACTIONS(2660), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_DEF] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_ELIF] = ACTIONS(2660), + [anon_sym_ELSE] = ACTIONS(2660), + [anon_sym_cdef] = ACTIONS(2660), + [anon_sym_cpdef] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_ctypedef] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_packed] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_readonly] = ACTIONS(2660), + [anon_sym_sizeof] = ACTIONS(2660), + [sym_string_start] = ACTIONS(2662), + }, + [921] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [922] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5134), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2678), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [923] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [924] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [925] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [926] = { + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_print] = ACTIONS(2656), + [anon_sym_assert] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_del] = ACTIONS(2656), + [anon_sym_raise] = ACTIONS(2656), + [anon_sym_pass] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_finally] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_def] = ACTIONS(2656), + [anon_sym_global] = ACTIONS(2656), + [anon_sym_nonlocal] = ACTIONS(2656), + [anon_sym_exec] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_None] = ACTIONS(2656), + [anon_sym_0x] = ACTIONS(2658), + [anon_sym_0X] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2658), + [anon_sym_0O] = ACTIONS(2658), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0B] = ACTIONS(2658), + [aux_sym_integer_token4] = ACTIONS(2656), + [sym_float] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_api] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2656), + [anon_sym_include] = ACTIONS(2656), + [anon_sym_DEF] = ACTIONS(2656), + [anon_sym_IF] = ACTIONS(2656), + [anon_sym_ELIF] = ACTIONS(2656), + [anon_sym_ELSE] = ACTIONS(2656), + [anon_sym_cdef] = ACTIONS(2656), + [anon_sym_cpdef] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_ctypedef] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_packed] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_sizeof] = ACTIONS(2656), + [sym_string_start] = ACTIONS(2658), + }, + [927] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4968), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [928] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_dictionary_splat] = STATE(6595), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_pair] = STATE(6595), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [929] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [930] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [931] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [932] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [933] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [934] = { + [sym_elif_clause] = STATE(1131), + [aux_sym_if_statement_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(2700), + [sym_identifier] = ACTIONS(2702), + [anon_sym_import] = ACTIONS(2702), + [anon_sym_cimport] = ACTIONS(2702), + [anon_sym_from] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_print] = ACTIONS(2702), + [anon_sym_assert] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2702), + [anon_sym_del] = ACTIONS(2702), + [anon_sym_raise] = ACTIONS(2702), + [anon_sym_pass] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_elif] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2702), + [anon_sym_async] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2702), + [anon_sym_with] = ACTIONS(2702), + [anon_sym_def] = ACTIONS(2702), + [anon_sym_global] = ACTIONS(2702), + [anon_sym_nonlocal] = ACTIONS(2702), + [anon_sym_exec] = ACTIONS(2702), + [anon_sym_type] = ACTIONS(2702), + [anon_sym_class] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_not] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_lambda] = ACTIONS(2702), + [anon_sym_yield] = ACTIONS(2702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), + [anon_sym_None] = ACTIONS(2702), + [anon_sym_0x] = ACTIONS(2700), + [anon_sym_0X] = ACTIONS(2700), + [anon_sym_0o] = ACTIONS(2700), + [anon_sym_0O] = ACTIONS(2700), + [anon_sym_0b] = ACTIONS(2700), + [anon_sym_0B] = ACTIONS(2700), + [aux_sym_integer_token4] = ACTIONS(2702), + [sym_float] = ACTIONS(2700), + [anon_sym_await] = ACTIONS(2702), + [anon_sym_api] = ACTIONS(2702), + [sym_true] = ACTIONS(2702), + [sym_false] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2702), + [anon_sym_include] = ACTIONS(2702), + [anon_sym_DEF] = ACTIONS(2702), + [anon_sym_IF] = ACTIONS(2702), + [anon_sym_cdef] = ACTIONS(2702), + [anon_sym_cpdef] = ACTIONS(2702), + [anon_sym_new] = ACTIONS(2702), + [anon_sym_ctypedef] = ACTIONS(2702), + [anon_sym_public] = ACTIONS(2702), + [anon_sym_packed] = ACTIONS(2702), + [anon_sym_inline] = ACTIONS(2702), + [anon_sym_readonly] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2702), + [sym_string_start] = ACTIONS(2700), + }, + [935] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4906), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_from] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2628), + [sym_string_start] = ACTIONS(117), + }, + [936] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4906), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_from] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2609), + [sym_string_start] = ACTIONS(117), + }, + [937] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [938] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [939] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [940] = { + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_cimport] = ACTIONS(2668), + [anon_sym_from] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_print] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_del] = ACTIONS(2668), + [anon_sym_raise] = ACTIONS(2668), + [anon_sym_pass] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_finally] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_def] = ACTIONS(2668), + [anon_sym_global] = ACTIONS(2668), + [anon_sym_nonlocal] = ACTIONS(2668), + [anon_sym_exec] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_not] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_lambda] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_None] = ACTIONS(2668), + [anon_sym_0x] = ACTIONS(2670), + [anon_sym_0X] = ACTIONS(2670), + [anon_sym_0o] = ACTIONS(2670), + [anon_sym_0O] = ACTIONS(2670), + [anon_sym_0b] = ACTIONS(2670), + [anon_sym_0B] = ACTIONS(2670), + [aux_sym_integer_token4] = ACTIONS(2668), + [sym_float] = ACTIONS(2670), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_api] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2668), + [anon_sym_include] = ACTIONS(2668), + [anon_sym_DEF] = ACTIONS(2668), + [anon_sym_IF] = ACTIONS(2668), + [anon_sym_ELIF] = ACTIONS(2668), + [anon_sym_ELSE] = ACTIONS(2668), + [anon_sym_cdef] = ACTIONS(2668), + [anon_sym_cpdef] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_ctypedef] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_packed] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_readonly] = ACTIONS(2668), + [anon_sym_sizeof] = ACTIONS(2668), + [sym_string_start] = ACTIONS(2670), + }, + [941] = { + [sym_elif_clause] = STATE(1072), + [aux_sym_if_statement_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(2702), + [anon_sym_import] = ACTIONS(2702), + [anon_sym_cimport] = ACTIONS(2702), + [anon_sym_from] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_print] = ACTIONS(2702), + [anon_sym_assert] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2702), + [anon_sym_del] = ACTIONS(2702), + [anon_sym_raise] = ACTIONS(2702), + [anon_sym_pass] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_elif] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2702), + [anon_sym_async] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2702), + [anon_sym_with] = ACTIONS(2702), + [anon_sym_def] = ACTIONS(2702), + [anon_sym_global] = ACTIONS(2702), + [anon_sym_nonlocal] = ACTIONS(2702), + [anon_sym_exec] = ACTIONS(2702), + [anon_sym_type] = ACTIONS(2702), + [anon_sym_class] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_not] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_lambda] = ACTIONS(2702), + [anon_sym_yield] = ACTIONS(2702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), + [anon_sym_None] = ACTIONS(2702), + [anon_sym_0x] = ACTIONS(2700), + [anon_sym_0X] = ACTIONS(2700), + [anon_sym_0o] = ACTIONS(2700), + [anon_sym_0O] = ACTIONS(2700), + [anon_sym_0b] = ACTIONS(2700), + [anon_sym_0B] = ACTIONS(2700), + [aux_sym_integer_token4] = ACTIONS(2702), + [sym_float] = ACTIONS(2700), + [anon_sym_await] = ACTIONS(2702), + [anon_sym_api] = ACTIONS(2702), + [sym_true] = ACTIONS(2702), + [sym_false] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2702), + [anon_sym_include] = ACTIONS(2702), + [anon_sym_DEF] = ACTIONS(2702), + [anon_sym_IF] = ACTIONS(2702), + [anon_sym_cdef] = ACTIONS(2702), + [anon_sym_cpdef] = ACTIONS(2702), + [anon_sym_new] = ACTIONS(2702), + [anon_sym_ctypedef] = ACTIONS(2702), + [anon_sym_public] = ACTIONS(2702), + [anon_sym_packed] = ACTIONS(2702), + [anon_sym_inline] = ACTIONS(2702), + [anon_sym_readonly] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2702), + [sym__dedent] = ACTIONS(2700), + [sym_string_start] = ACTIONS(2700), + }, + [942] = { + [sym_ELIF_clause] = STATE(1080), + [aux_sym_IF_statement_repeat1] = STATE(942), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_cimport] = ACTIONS(2647), + [anon_sym_from] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_print] = ACTIONS(2647), + [anon_sym_assert] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_del] = ACTIONS(2647), + [anon_sym_raise] = ACTIONS(2647), + [anon_sym_pass] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_async] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_with] = ACTIONS(2647), + [anon_sym_def] = ACTIONS(2647), + [anon_sym_global] = ACTIONS(2647), + [anon_sym_nonlocal] = ACTIONS(2647), + [anon_sym_exec] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_lambda] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [anon_sym_None] = ACTIONS(2647), + [anon_sym_0x] = ACTIONS(2645), + [anon_sym_0X] = ACTIONS(2645), + [anon_sym_0o] = ACTIONS(2645), + [anon_sym_0O] = ACTIONS(2645), + [anon_sym_0b] = ACTIONS(2645), + [anon_sym_0B] = ACTIONS(2645), + [aux_sym_integer_token4] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_await] = ACTIONS(2647), + [anon_sym_api] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2647), + [anon_sym_include] = ACTIONS(2647), + [anon_sym_DEF] = ACTIONS(2647), + [anon_sym_IF] = ACTIONS(2647), + [anon_sym_ELIF] = ACTIONS(2720), + [anon_sym_ELSE] = ACTIONS(2647), + [anon_sym_cdef] = ACTIONS(2647), + [anon_sym_cpdef] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_ctypedef] = ACTIONS(2647), + [anon_sym_public] = ACTIONS(2647), + [anon_sym_packed] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym_readonly] = ACTIONS(2647), + [anon_sym_sizeof] = ACTIONS(2647), + [sym__dedent] = ACTIONS(2645), + [sym_string_start] = ACTIONS(2645), + }, + [943] = { + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_cimport] = ACTIONS(2652), + [anon_sym_from] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_print] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_del] = ACTIONS(2652), + [anon_sym_raise] = ACTIONS(2652), + [anon_sym_pass] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_finally] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_def] = ACTIONS(2652), + [anon_sym_global] = ACTIONS(2652), + [anon_sym_nonlocal] = ACTIONS(2652), + [anon_sym_exec] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_not] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2652), + [anon_sym_0x] = ACTIONS(2654), + [anon_sym_0X] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2654), + [anon_sym_0O] = ACTIONS(2654), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0B] = ACTIONS(2654), + [aux_sym_integer_token4] = ACTIONS(2652), + [sym_float] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_api] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2652), + [anon_sym_include] = ACTIONS(2652), + [anon_sym_DEF] = ACTIONS(2652), + [anon_sym_IF] = ACTIONS(2652), + [anon_sym_ELIF] = ACTIONS(2652), + [anon_sym_ELSE] = ACTIONS(2652), + [anon_sym_cdef] = ACTIONS(2652), + [anon_sym_cpdef] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_ctypedef] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_packed] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_sizeof] = ACTIONS(2652), + [sym_string_start] = ACTIONS(2654), + }, + [944] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [945] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [946] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [947] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [948] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [949] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [950] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [951] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [952] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [953] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [954] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [955] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [956] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [957] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [958] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [959] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [960] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [961] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [962] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [963] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [964] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [965] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [966] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [967] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [968] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_expression_list] = STATE(6440), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4837), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2771), + [sym_string_start] = ACTIONS(117), + }, + [969] = { + [ts_builtin_sym_end] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_cimport] = ACTIONS(2660), + [anon_sym_from] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_print] = ACTIONS(2660), + [anon_sym_assert] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_del] = ACTIONS(2660), + [anon_sym_raise] = ACTIONS(2660), + [anon_sym_pass] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_except_STAR] = ACTIONS(2662), + [anon_sym_finally] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_def] = ACTIONS(2660), + [anon_sym_global] = ACTIONS(2660), + [anon_sym_nonlocal] = ACTIONS(2660), + [anon_sym_exec] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_not] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_lambda] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_None] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2662), + [anon_sym_0X] = ACTIONS(2662), + [anon_sym_0o] = ACTIONS(2662), + [anon_sym_0O] = ACTIONS(2662), + [anon_sym_0b] = ACTIONS(2662), + [anon_sym_0B] = ACTIONS(2662), + [aux_sym_integer_token4] = ACTIONS(2660), + [sym_float] = ACTIONS(2662), + [anon_sym_await] = ACTIONS(2660), + [anon_sym_api] = ACTIONS(2660), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_DEF] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_cdef] = ACTIONS(2660), + [anon_sym_cpdef] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_ctypedef] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_packed] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_readonly] = ACTIONS(2660), + [anon_sym_sizeof] = ACTIONS(2660), + [sym_string_start] = ACTIONS(2662), + }, + [970] = { + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2775), + [anon_sym_import] = ACTIONS(2775), + [anon_sym_cimport] = ACTIONS(2775), + [anon_sym_from] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_print] = ACTIONS(2775), + [anon_sym_assert] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_del] = ACTIONS(2775), + [anon_sym_raise] = ACTIONS(2775), + [anon_sym_pass] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_async] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_except] = ACTIONS(2775), + [anon_sym_finally] = ACTIONS(2775), + [anon_sym_with] = ACTIONS(2775), + [anon_sym_def] = ACTIONS(2775), + [anon_sym_global] = ACTIONS(2775), + [anon_sym_nonlocal] = ACTIONS(2775), + [anon_sym_exec] = ACTIONS(2775), + [anon_sym_type] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_AT] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2773), + [anon_sym_lambda] = ACTIONS(2775), + [anon_sym_yield] = ACTIONS(2775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2773), + [anon_sym_None] = ACTIONS(2775), + [anon_sym_0x] = ACTIONS(2773), + [anon_sym_0X] = ACTIONS(2773), + [anon_sym_0o] = ACTIONS(2773), + [anon_sym_0O] = ACTIONS(2773), + [anon_sym_0b] = ACTIONS(2773), + [anon_sym_0B] = ACTIONS(2773), + [aux_sym_integer_token4] = ACTIONS(2775), + [sym_float] = ACTIONS(2773), + [anon_sym_await] = ACTIONS(2775), + [anon_sym_api] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2775), + [anon_sym_include] = ACTIONS(2775), + [anon_sym_DEF] = ACTIONS(2775), + [anon_sym_IF] = ACTIONS(2775), + [anon_sym_cdef] = ACTIONS(2775), + [anon_sym_cpdef] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_ctypedef] = ACTIONS(2775), + [anon_sym_public] = ACTIONS(2775), + [anon_sym_packed] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym_readonly] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2775), + [sym_string_start] = ACTIONS(2773), + }, + [971] = { + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_cimport] = ACTIONS(2666), + [anon_sym_from] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_print] = ACTIONS(2666), + [anon_sym_assert] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_del] = ACTIONS(2666), + [anon_sym_raise] = ACTIONS(2666), + [anon_sym_pass] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_except] = ACTIONS(2666), + [anon_sym_finally] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_def] = ACTIONS(2666), + [anon_sym_global] = ACTIONS(2666), + [anon_sym_nonlocal] = ACTIONS(2666), + [anon_sym_exec] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_lambda] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_None] = ACTIONS(2666), + [anon_sym_0x] = ACTIONS(2664), + [anon_sym_0X] = ACTIONS(2664), + [anon_sym_0o] = ACTIONS(2664), + [anon_sym_0O] = ACTIONS(2664), + [anon_sym_0b] = ACTIONS(2664), + [anon_sym_0B] = ACTIONS(2664), + [aux_sym_integer_token4] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_api] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_DEF] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_cdef] = ACTIONS(2666), + [anon_sym_cpdef] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_ctypedef] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_packed] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2666), + [sym_string_start] = ACTIONS(2664), + }, + [972] = { + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2779), + [anon_sym_import] = ACTIONS(2779), + [anon_sym_cimport] = ACTIONS(2779), + [anon_sym_from] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_print] = ACTIONS(2779), + [anon_sym_assert] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_del] = ACTIONS(2779), + [anon_sym_raise] = ACTIONS(2779), + [anon_sym_pass] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_else] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_except_STAR] = ACTIONS(2777), + [anon_sym_finally] = ACTIONS(2779), + [anon_sym_with] = ACTIONS(2779), + [anon_sym_def] = ACTIONS(2779), + [anon_sym_global] = ACTIONS(2779), + [anon_sym_nonlocal] = ACTIONS(2779), + [anon_sym_exec] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_lambda] = ACTIONS(2779), + [anon_sym_yield] = ACTIONS(2779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2777), + [anon_sym_None] = ACTIONS(2779), + [anon_sym_0x] = ACTIONS(2777), + [anon_sym_0X] = ACTIONS(2777), + [anon_sym_0o] = ACTIONS(2777), + [anon_sym_0O] = ACTIONS(2777), + [anon_sym_0b] = ACTIONS(2777), + [anon_sym_0B] = ACTIONS(2777), + [aux_sym_integer_token4] = ACTIONS(2779), + [sym_float] = ACTIONS(2777), + [anon_sym_await] = ACTIONS(2779), + [anon_sym_api] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2779), + [anon_sym_include] = ACTIONS(2779), + [anon_sym_DEF] = ACTIONS(2779), + [anon_sym_IF] = ACTIONS(2779), + [anon_sym_cdef] = ACTIONS(2779), + [anon_sym_cpdef] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_ctypedef] = ACTIONS(2779), + [anon_sym_public] = ACTIONS(2779), + [anon_sym_packed] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym_readonly] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2779), + [sym_string_start] = ACTIONS(2777), + }, + [973] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5024), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2781), + [sym_string_start] = ACTIONS(117), + }, + [974] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5182), + [sym_expression] = STATE(4931), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5182), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [975] = { + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_cimport] = ACTIONS(2652), + [anon_sym_from] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_print] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_del] = ACTIONS(2652), + [anon_sym_raise] = ACTIONS(2652), + [anon_sym_pass] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_else] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_except] = ACTIONS(2652), + [anon_sym_finally] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_def] = ACTIONS(2652), + [anon_sym_global] = ACTIONS(2652), + [anon_sym_nonlocal] = ACTIONS(2652), + [anon_sym_exec] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_not] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2652), + [anon_sym_0x] = ACTIONS(2654), + [anon_sym_0X] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2654), + [anon_sym_0O] = ACTIONS(2654), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0B] = ACTIONS(2654), + [aux_sym_integer_token4] = ACTIONS(2652), + [sym_float] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_api] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2652), + [anon_sym_include] = ACTIONS(2652), + [anon_sym_DEF] = ACTIONS(2652), + [anon_sym_IF] = ACTIONS(2652), + [anon_sym_cdef] = ACTIONS(2652), + [anon_sym_cpdef] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_ctypedef] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_packed] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_sizeof] = ACTIONS(2652), + [sym_string_start] = ACTIONS(2654), + }, + [976] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5220), + [sym_expression] = STATE(4857), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5220), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [977] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5218), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [978] = { + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_print] = ACTIONS(2656), + [anon_sym_assert] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_del] = ACTIONS(2656), + [anon_sym_raise] = ACTIONS(2656), + [anon_sym_pass] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_except] = ACTIONS(2656), + [anon_sym_finally] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_def] = ACTIONS(2656), + [anon_sym_global] = ACTIONS(2656), + [anon_sym_nonlocal] = ACTIONS(2656), + [anon_sym_exec] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_None] = ACTIONS(2656), + [anon_sym_0x] = ACTIONS(2658), + [anon_sym_0X] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2658), + [anon_sym_0O] = ACTIONS(2658), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0B] = ACTIONS(2658), + [aux_sym_integer_token4] = ACTIONS(2656), + [sym_float] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_api] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2656), + [anon_sym_include] = ACTIONS(2656), + [anon_sym_DEF] = ACTIONS(2656), + [anon_sym_IF] = ACTIONS(2656), + [anon_sym_cdef] = ACTIONS(2656), + [anon_sym_cpdef] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_ctypedef] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_packed] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_sizeof] = ACTIONS(2656), + [sym_string_start] = ACTIONS(2658), + }, + [979] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5249), + [sym_expression] = STATE(4857), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5249), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [980] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5512), + [sym_expression] = STATE(4927), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5512), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [981] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5218), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_COMMA] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [982] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4880), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6037), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [983] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5024), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2783), + [sym_string_start] = ACTIONS(117), + }, + [984] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_with_clause] = STATE(6734), + [sym_with_item] = STATE(5727), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5174), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [985] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_with_item] = STATE(6483), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5267), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [986] = { + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2793), + [anon_sym_import] = ACTIONS(2793), + [anon_sym_cimport] = ACTIONS(2793), + [anon_sym_from] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_assert] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_del] = ACTIONS(2793), + [anon_sym_raise] = ACTIONS(2793), + [anon_sym_pass] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_else] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_except] = ACTIONS(2793), + [anon_sym_finally] = ACTIONS(2793), + [anon_sym_with] = ACTIONS(2793), + [anon_sym_def] = ACTIONS(2793), + [anon_sym_global] = ACTIONS(2793), + [anon_sym_nonlocal] = ACTIONS(2793), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_type] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_AT] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_lambda] = ACTIONS(2793), + [anon_sym_yield] = ACTIONS(2793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), + [anon_sym_None] = ACTIONS(2793), + [anon_sym_0x] = ACTIONS(2791), + [anon_sym_0X] = ACTIONS(2791), + [anon_sym_0o] = ACTIONS(2791), + [anon_sym_0O] = ACTIONS(2791), + [anon_sym_0b] = ACTIONS(2791), + [anon_sym_0B] = ACTIONS(2791), + [aux_sym_integer_token4] = ACTIONS(2793), + [sym_float] = ACTIONS(2791), + [anon_sym_await] = ACTIONS(2793), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2793), + [anon_sym_include] = ACTIONS(2793), + [anon_sym_DEF] = ACTIONS(2793), + [anon_sym_IF] = ACTIONS(2793), + [anon_sym_cdef] = ACTIONS(2793), + [anon_sym_cpdef] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_ctypedef] = ACTIONS(2793), + [anon_sym_public] = ACTIONS(2793), + [anon_sym_packed] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_readonly] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_string_start] = ACTIONS(2791), + }, + [987] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5470), + [sym_expression] = STATE(4911), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5470), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [988] = { + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2797), + [anon_sym_import] = ACTIONS(2797), + [anon_sym_cimport] = ACTIONS(2797), + [anon_sym_from] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_print] = ACTIONS(2797), + [anon_sym_assert] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_del] = ACTIONS(2797), + [anon_sym_raise] = ACTIONS(2797), + [anon_sym_pass] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_else] = ACTIONS(2797), + [anon_sym_match] = ACTIONS(2797), + [anon_sym_async] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_except_STAR] = ACTIONS(2795), + [anon_sym_finally] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2797), + [anon_sym_def] = ACTIONS(2797), + [anon_sym_global] = ACTIONS(2797), + [anon_sym_nonlocal] = ACTIONS(2797), + [anon_sym_exec] = ACTIONS(2797), + [anon_sym_type] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_AT] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_lambda] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), + [anon_sym_None] = ACTIONS(2797), + [anon_sym_0x] = ACTIONS(2795), + [anon_sym_0X] = ACTIONS(2795), + [anon_sym_0o] = ACTIONS(2795), + [anon_sym_0O] = ACTIONS(2795), + [anon_sym_0b] = ACTIONS(2795), + [anon_sym_0B] = ACTIONS(2795), + [aux_sym_integer_token4] = ACTIONS(2797), + [sym_float] = ACTIONS(2795), + [anon_sym_await] = ACTIONS(2797), + [anon_sym_api] = ACTIONS(2797), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2797), + [anon_sym_include] = ACTIONS(2797), + [anon_sym_DEF] = ACTIONS(2797), + [anon_sym_IF] = ACTIONS(2797), + [anon_sym_cdef] = ACTIONS(2797), + [anon_sym_cpdef] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_ctypedef] = ACTIONS(2797), + [anon_sym_public] = ACTIONS(2797), + [anon_sym_packed] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_readonly] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_string_start] = ACTIONS(2795), + }, + [989] = { + [ts_builtin_sym_end] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_cimport] = ACTIONS(2660), + [anon_sym_from] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_print] = ACTIONS(2660), + [anon_sym_assert] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_del] = ACTIONS(2660), + [anon_sym_raise] = ACTIONS(2660), + [anon_sym_pass] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_except] = ACTIONS(2660), + [anon_sym_finally] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_def] = ACTIONS(2660), + [anon_sym_global] = ACTIONS(2660), + [anon_sym_nonlocal] = ACTIONS(2660), + [anon_sym_exec] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_not] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_lambda] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_None] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2662), + [anon_sym_0X] = ACTIONS(2662), + [anon_sym_0o] = ACTIONS(2662), + [anon_sym_0O] = ACTIONS(2662), + [anon_sym_0b] = ACTIONS(2662), + [anon_sym_0B] = ACTIONS(2662), + [aux_sym_integer_token4] = ACTIONS(2660), + [sym_float] = ACTIONS(2662), + [anon_sym_await] = ACTIONS(2660), + [anon_sym_api] = ACTIONS(2660), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_DEF] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_cdef] = ACTIONS(2660), + [anon_sym_cpdef] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_ctypedef] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_packed] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_readonly] = ACTIONS(2660), + [anon_sym_sizeof] = ACTIONS(2660), + [sym_string_start] = ACTIONS(2662), + }, + [990] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_with_clause] = STATE(6942), + [sym_with_item] = STATE(5727), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5174), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [991] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5102), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2799), + [sym_string_start] = ACTIONS(117), + }, + [992] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5102), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2801), + [sym_string_start] = ACTIONS(117), + }, + [993] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5024), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2609), + [sym_string_start] = ACTIONS(117), + }, + [994] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5304), + [sym_expression] = STATE(4847), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5304), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [995] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5273), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [996] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym__expression_within_for_in_clause] = STATE(5472), + [sym_expression] = STATE(4857), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_lambda_within_for_in_clause] = STATE(5472), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [997] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5368), + [sym_expression] = STATE(4931), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5368), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [998] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5102), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2805), + [sym_string_start] = ACTIONS(117), + }, + [999] = { + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2809), + [anon_sym_import] = ACTIONS(2809), + [anon_sym_cimport] = ACTIONS(2809), + [anon_sym_from] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_print] = ACTIONS(2809), + [anon_sym_assert] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_del] = ACTIONS(2809), + [anon_sym_raise] = ACTIONS(2809), + [anon_sym_pass] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2809), + [anon_sym_match] = ACTIONS(2809), + [anon_sym_async] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_except] = ACTIONS(2809), + [anon_sym_finally] = ACTIONS(2809), + [anon_sym_with] = ACTIONS(2809), + [anon_sym_def] = ACTIONS(2809), + [anon_sym_global] = ACTIONS(2809), + [anon_sym_nonlocal] = ACTIONS(2809), + [anon_sym_exec] = ACTIONS(2809), + [anon_sym_type] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_AT] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2807), + [anon_sym_lambda] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2807), + [anon_sym_None] = ACTIONS(2809), + [anon_sym_0x] = ACTIONS(2807), + [anon_sym_0X] = ACTIONS(2807), + [anon_sym_0o] = ACTIONS(2807), + [anon_sym_0O] = ACTIONS(2807), + [anon_sym_0b] = ACTIONS(2807), + [anon_sym_0B] = ACTIONS(2807), + [aux_sym_integer_token4] = ACTIONS(2809), + [sym_float] = ACTIONS(2807), + [anon_sym_await] = ACTIONS(2809), + [anon_sym_api] = ACTIONS(2809), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2809), + [anon_sym_include] = ACTIONS(2809), + [anon_sym_DEF] = ACTIONS(2809), + [anon_sym_IF] = ACTIONS(2809), + [anon_sym_cdef] = ACTIONS(2809), + [anon_sym_cpdef] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_ctypedef] = ACTIONS(2809), + [anon_sym_public] = ACTIONS(2809), + [anon_sym_packed] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_readonly] = ACTIONS(2809), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_string_start] = ACTIONS(2807), + }, + [1000] = { + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2813), + [anon_sym_import] = ACTIONS(2813), + [anon_sym_cimport] = ACTIONS(2813), + [anon_sym_from] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_print] = ACTIONS(2813), + [anon_sym_assert] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_del] = ACTIONS(2813), + [anon_sym_raise] = ACTIONS(2813), + [anon_sym_pass] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_else] = ACTIONS(2813), + [anon_sym_match] = ACTIONS(2813), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_except_STAR] = ACTIONS(2811), + [anon_sym_finally] = ACTIONS(2813), + [anon_sym_with] = ACTIONS(2813), + [anon_sym_def] = ACTIONS(2813), + [anon_sym_global] = ACTIONS(2813), + [anon_sym_nonlocal] = ACTIONS(2813), + [anon_sym_exec] = ACTIONS(2813), + [anon_sym_type] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_AT] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_lambda] = ACTIONS(2813), + [anon_sym_yield] = ACTIONS(2813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2811), + [anon_sym_None] = ACTIONS(2813), + [anon_sym_0x] = ACTIONS(2811), + [anon_sym_0X] = ACTIONS(2811), + [anon_sym_0o] = ACTIONS(2811), + [anon_sym_0O] = ACTIONS(2811), + [anon_sym_0b] = ACTIONS(2811), + [anon_sym_0B] = ACTIONS(2811), + [aux_sym_integer_token4] = ACTIONS(2813), + [sym_float] = ACTIONS(2811), + [anon_sym_await] = ACTIONS(2813), + [anon_sym_api] = ACTIONS(2813), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2813), + [anon_sym_include] = ACTIONS(2813), + [anon_sym_DEF] = ACTIONS(2813), + [anon_sym_IF] = ACTIONS(2813), + [anon_sym_cdef] = ACTIONS(2813), + [anon_sym_cpdef] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_ctypedef] = ACTIONS(2813), + [anon_sym_public] = ACTIONS(2813), + [anon_sym_packed] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_readonly] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_string_start] = ACTIONS(2811), + }, + [1001] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5102), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2815), + [sym_string_start] = ACTIONS(117), + }, + [1002] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5167), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1003] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5231), + [sym_expression] = STATE(4855), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5231), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1004] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5024), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2628), + [sym_string_start] = ACTIONS(117), + }, + [1005] = { + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2819), + [anon_sym_import] = ACTIONS(2819), + [anon_sym_cimport] = ACTIONS(2819), + [anon_sym_from] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_assert] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_del] = ACTIONS(2819), + [anon_sym_raise] = ACTIONS(2819), + [anon_sym_pass] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_else] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_except] = ACTIONS(2819), + [anon_sym_finally] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2819), + [anon_sym_def] = ACTIONS(2819), + [anon_sym_global] = ACTIONS(2819), + [anon_sym_nonlocal] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_type] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_AT] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_lambda] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2817), + [anon_sym_None] = ACTIONS(2819), + [anon_sym_0x] = ACTIONS(2817), + [anon_sym_0X] = ACTIONS(2817), + [anon_sym_0o] = ACTIONS(2817), + [anon_sym_0O] = ACTIONS(2817), + [anon_sym_0b] = ACTIONS(2817), + [anon_sym_0B] = ACTIONS(2817), + [aux_sym_integer_token4] = ACTIONS(2819), + [sym_float] = ACTIONS(2817), + [anon_sym_await] = ACTIONS(2819), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2819), + [anon_sym_include] = ACTIONS(2819), + [anon_sym_DEF] = ACTIONS(2819), + [anon_sym_IF] = ACTIONS(2819), + [anon_sym_cdef] = ACTIONS(2819), + [anon_sym_cpdef] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_ctypedef] = ACTIONS(2819), + [anon_sym_public] = ACTIONS(2819), + [anon_sym_packed] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym_readonly] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2819), + [sym_string_start] = ACTIONS(2817), + }, + [1006] = { + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2823), + [anon_sym_import] = ACTIONS(2823), + [anon_sym_cimport] = ACTIONS(2823), + [anon_sym_from] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_print] = ACTIONS(2823), + [anon_sym_assert] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_del] = ACTIONS(2823), + [anon_sym_raise] = ACTIONS(2823), + [anon_sym_pass] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_else] = ACTIONS(2823), + [anon_sym_match] = ACTIONS(2823), + [anon_sym_async] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_except_STAR] = ACTIONS(2821), + [anon_sym_finally] = ACTIONS(2823), + [anon_sym_with] = ACTIONS(2823), + [anon_sym_def] = ACTIONS(2823), + [anon_sym_global] = ACTIONS(2823), + [anon_sym_nonlocal] = ACTIONS(2823), + [anon_sym_exec] = ACTIONS(2823), + [anon_sym_type] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_AT] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_lambda] = ACTIONS(2823), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2821), + [anon_sym_None] = ACTIONS(2823), + [anon_sym_0x] = ACTIONS(2821), + [anon_sym_0X] = ACTIONS(2821), + [anon_sym_0o] = ACTIONS(2821), + [anon_sym_0O] = ACTIONS(2821), + [anon_sym_0b] = ACTIONS(2821), + [anon_sym_0B] = ACTIONS(2821), + [aux_sym_integer_token4] = ACTIONS(2823), + [sym_float] = ACTIONS(2821), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2823), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2823), + [anon_sym_include] = ACTIONS(2823), + [anon_sym_DEF] = ACTIONS(2823), + [anon_sym_IF] = ACTIONS(2823), + [anon_sym_cdef] = ACTIONS(2823), + [anon_sym_cpdef] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_ctypedef] = ACTIONS(2823), + [anon_sym_public] = ACTIONS(2823), + [anon_sym_packed] = ACTIONS(2823), + [anon_sym_inline] = ACTIONS(2823), + [anon_sym_readonly] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2823), + [sym_string_start] = ACTIONS(2821), + }, + [1007] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [sym_type_conversion] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1008] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5167), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1009] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5271), + [sym_expression] = STATE(4855), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5271), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1010] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5516), + [sym_expression] = STATE(4805), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5516), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1011] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5284), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1012] = { + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2668), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_cimport] = ACTIONS(2668), + [anon_sym_from] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_print] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_del] = ACTIONS(2668), + [anon_sym_raise] = ACTIONS(2668), + [anon_sym_pass] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_except_STAR] = ACTIONS(2670), + [anon_sym_finally] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_def] = ACTIONS(2668), + [anon_sym_global] = ACTIONS(2668), + [anon_sym_nonlocal] = ACTIONS(2668), + [anon_sym_exec] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_not] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_lambda] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_None] = ACTIONS(2668), + [anon_sym_0x] = ACTIONS(2670), + [anon_sym_0X] = ACTIONS(2670), + [anon_sym_0o] = ACTIONS(2670), + [anon_sym_0O] = ACTIONS(2670), + [anon_sym_0b] = ACTIONS(2670), + [anon_sym_0B] = ACTIONS(2670), + [aux_sym_integer_token4] = ACTIONS(2668), + [sym_float] = ACTIONS(2670), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_api] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2668), + [anon_sym_include] = ACTIONS(2668), + [anon_sym_DEF] = ACTIONS(2668), + [anon_sym_IF] = ACTIONS(2668), + [anon_sym_cdef] = ACTIONS(2668), + [anon_sym_cpdef] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_ctypedef] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_packed] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_readonly] = ACTIONS(2668), + [anon_sym_sizeof] = ACTIONS(2668), + [sym_string_start] = ACTIONS(2670), + }, + [1013] = { + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_cimport] = ACTIONS(2666), + [anon_sym_from] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_print] = ACTIONS(2666), + [anon_sym_assert] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_del] = ACTIONS(2666), + [anon_sym_raise] = ACTIONS(2666), + [anon_sym_pass] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_except_STAR] = ACTIONS(2664), + [anon_sym_finally] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_def] = ACTIONS(2666), + [anon_sym_global] = ACTIONS(2666), + [anon_sym_nonlocal] = ACTIONS(2666), + [anon_sym_exec] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_lambda] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_None] = ACTIONS(2666), + [anon_sym_0x] = ACTIONS(2664), + [anon_sym_0X] = ACTIONS(2664), + [anon_sym_0o] = ACTIONS(2664), + [anon_sym_0O] = ACTIONS(2664), + [anon_sym_0b] = ACTIONS(2664), + [anon_sym_0B] = ACTIONS(2664), + [aux_sym_integer_token4] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_api] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_DEF] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_cdef] = ACTIONS(2666), + [anon_sym_cpdef] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_ctypedef] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_packed] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2666), + [sym_string_start] = ACTIONS(2664), + }, + [1014] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5490), + [sym_expression] = STATE(4825), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5490), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1015] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym__expression_within_for_in_clause] = STATE(5332), + [sym_expression] = STATE(4855), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_lambda_within_for_in_clause] = STATE(5332), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1016] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_with_item] = STATE(6483), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5267), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(2827), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1017] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5163), + [sym_expression] = STATE(4931), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5163), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1018] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_with_item] = STATE(6496), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5174), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1019] = { + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_cimport] = ACTIONS(2652), + [anon_sym_from] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_print] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_del] = ACTIONS(2652), + [anon_sym_raise] = ACTIONS(2652), + [anon_sym_pass] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_else] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_except_STAR] = ACTIONS(2654), + [anon_sym_finally] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_def] = ACTIONS(2652), + [anon_sym_global] = ACTIONS(2652), + [anon_sym_nonlocal] = ACTIONS(2652), + [anon_sym_exec] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_not] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2652), + [anon_sym_0x] = ACTIONS(2654), + [anon_sym_0X] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2654), + [anon_sym_0O] = ACTIONS(2654), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0B] = ACTIONS(2654), + [aux_sym_integer_token4] = ACTIONS(2652), + [sym_float] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_api] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2652), + [anon_sym_include] = ACTIONS(2652), + [anon_sym_DEF] = ACTIONS(2652), + [anon_sym_IF] = ACTIONS(2652), + [anon_sym_cdef] = ACTIONS(2652), + [anon_sym_cpdef] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_ctypedef] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_packed] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_sizeof] = ACTIONS(2652), + [sym_string_start] = ACTIONS(2654), + }, + [1020] = { + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_print] = ACTIONS(2656), + [anon_sym_assert] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_del] = ACTIONS(2656), + [anon_sym_raise] = ACTIONS(2656), + [anon_sym_pass] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_except_STAR] = ACTIONS(2658), + [anon_sym_finally] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_def] = ACTIONS(2656), + [anon_sym_global] = ACTIONS(2656), + [anon_sym_nonlocal] = ACTIONS(2656), + [anon_sym_exec] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_None] = ACTIONS(2656), + [anon_sym_0x] = ACTIONS(2658), + [anon_sym_0X] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2658), + [anon_sym_0O] = ACTIONS(2658), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0B] = ACTIONS(2658), + [aux_sym_integer_token4] = ACTIONS(2656), + [sym_float] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_api] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2656), + [anon_sym_include] = ACTIONS(2656), + [anon_sym_DEF] = ACTIONS(2656), + [anon_sym_IF] = ACTIONS(2656), + [anon_sym_cdef] = ACTIONS(2656), + [anon_sym_cpdef] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_ctypedef] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_packed] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_sizeof] = ACTIONS(2656), + [sym_string_start] = ACTIONS(2658), + }, + [1021] = { + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_import] = ACTIONS(2833), + [anon_sym_cimport] = ACTIONS(2833), + [anon_sym_from] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_print] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_del] = ACTIONS(2833), + [anon_sym_raise] = ACTIONS(2833), + [anon_sym_pass] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_else] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_async] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_except] = ACTIONS(2833), + [anon_sym_finally] = ACTIONS(2833), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_def] = ACTIONS(2833), + [anon_sym_global] = ACTIONS(2833), + [anon_sym_nonlocal] = ACTIONS(2833), + [anon_sym_exec] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_AT] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2831), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_PLUS] = ACTIONS(2831), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_lambda] = ACTIONS(2833), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2831), + [anon_sym_None] = ACTIONS(2833), + [anon_sym_0x] = ACTIONS(2831), + [anon_sym_0X] = ACTIONS(2831), + [anon_sym_0o] = ACTIONS(2831), + [anon_sym_0O] = ACTIONS(2831), + [anon_sym_0b] = ACTIONS(2831), + [anon_sym_0B] = ACTIONS(2831), + [aux_sym_integer_token4] = ACTIONS(2833), + [sym_float] = ACTIONS(2831), + [anon_sym_await] = ACTIONS(2833), + [anon_sym_api] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2833), + [anon_sym_include] = ACTIONS(2833), + [anon_sym_DEF] = ACTIONS(2833), + [anon_sym_IF] = ACTIONS(2833), + [anon_sym_cdef] = ACTIONS(2833), + [anon_sym_cpdef] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_ctypedef] = ACTIONS(2833), + [anon_sym_public] = ACTIONS(2833), + [anon_sym_packed] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_string_start] = ACTIONS(2831), + }, + [1022] = { + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2837), + [anon_sym_import] = ACTIONS(2837), + [anon_sym_cimport] = ACTIONS(2837), + [anon_sym_from] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2837), + [anon_sym_assert] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_del] = ACTIONS(2837), + [anon_sym_raise] = ACTIONS(2837), + [anon_sym_pass] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_else] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_async] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_except] = ACTIONS(2837), + [anon_sym_finally] = ACTIONS(2837), + [anon_sym_with] = ACTIONS(2837), + [anon_sym_def] = ACTIONS(2837), + [anon_sym_global] = ACTIONS(2837), + [anon_sym_nonlocal] = ACTIONS(2837), + [anon_sym_exec] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_AT] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2835), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_lambda] = ACTIONS(2837), + [anon_sym_yield] = ACTIONS(2837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2835), + [anon_sym_None] = ACTIONS(2837), + [anon_sym_0x] = ACTIONS(2835), + [anon_sym_0X] = ACTIONS(2835), + [anon_sym_0o] = ACTIONS(2835), + [anon_sym_0O] = ACTIONS(2835), + [anon_sym_0b] = ACTIONS(2835), + [anon_sym_0B] = ACTIONS(2835), + [aux_sym_integer_token4] = ACTIONS(2837), + [sym_float] = ACTIONS(2835), + [anon_sym_await] = ACTIONS(2837), + [anon_sym_api] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2837), + [anon_sym_include] = ACTIONS(2837), + [anon_sym_DEF] = ACTIONS(2837), + [anon_sym_IF] = ACTIONS(2837), + [anon_sym_cdef] = ACTIONS(2837), + [anon_sym_cpdef] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_ctypedef] = ACTIONS(2837), + [anon_sym_public] = ACTIONS(2837), + [anon_sym_packed] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_readonly] = ACTIONS(2837), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_string_start] = ACTIONS(2835), + }, + [1023] = { + [sym_identifier] = ACTIONS(2837), + [anon_sym_import] = ACTIONS(2837), + [anon_sym_cimport] = ACTIONS(2837), + [anon_sym_from] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2837), + [anon_sym_assert] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_del] = ACTIONS(2837), + [anon_sym_raise] = ACTIONS(2837), + [anon_sym_pass] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_else] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_async] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_except] = ACTIONS(2837), + [anon_sym_finally] = ACTIONS(2837), + [anon_sym_with] = ACTIONS(2837), + [anon_sym_def] = ACTIONS(2837), + [anon_sym_global] = ACTIONS(2837), + [anon_sym_nonlocal] = ACTIONS(2837), + [anon_sym_exec] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_AT] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2835), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_lambda] = ACTIONS(2837), + [anon_sym_yield] = ACTIONS(2837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2835), + [anon_sym_None] = ACTIONS(2837), + [anon_sym_0x] = ACTIONS(2835), + [anon_sym_0X] = ACTIONS(2835), + [anon_sym_0o] = ACTIONS(2835), + [anon_sym_0O] = ACTIONS(2835), + [anon_sym_0b] = ACTIONS(2835), + [anon_sym_0B] = ACTIONS(2835), + [aux_sym_integer_token4] = ACTIONS(2837), + [sym_float] = ACTIONS(2835), + [anon_sym_await] = ACTIONS(2837), + [anon_sym_api] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2837), + [anon_sym_include] = ACTIONS(2837), + [anon_sym_DEF] = ACTIONS(2837), + [anon_sym_IF] = ACTIONS(2837), + [anon_sym_cdef] = ACTIONS(2837), + [anon_sym_cpdef] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_ctypedef] = ACTIONS(2837), + [anon_sym_public] = ACTIONS(2837), + [anon_sym_packed] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_readonly] = ACTIONS(2837), + [anon_sym_sizeof] = ACTIONS(2837), + [sym__dedent] = ACTIONS(2835), + [sym_string_start] = ACTIONS(2835), + }, + [1024] = { + [sym_identifier] = ACTIONS(2833), + [anon_sym_import] = ACTIONS(2833), + [anon_sym_cimport] = ACTIONS(2833), + [anon_sym_from] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_print] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_del] = ACTIONS(2833), + [anon_sym_raise] = ACTIONS(2833), + [anon_sym_pass] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_else] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_async] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_except] = ACTIONS(2833), + [anon_sym_finally] = ACTIONS(2833), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_def] = ACTIONS(2833), + [anon_sym_global] = ACTIONS(2833), + [anon_sym_nonlocal] = ACTIONS(2833), + [anon_sym_exec] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_AT] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2831), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_PLUS] = ACTIONS(2831), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_lambda] = ACTIONS(2833), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2831), + [anon_sym_None] = ACTIONS(2833), + [anon_sym_0x] = ACTIONS(2831), + [anon_sym_0X] = ACTIONS(2831), + [anon_sym_0o] = ACTIONS(2831), + [anon_sym_0O] = ACTIONS(2831), + [anon_sym_0b] = ACTIONS(2831), + [anon_sym_0B] = ACTIONS(2831), + [aux_sym_integer_token4] = ACTIONS(2833), + [sym_float] = ACTIONS(2831), + [anon_sym_await] = ACTIONS(2833), + [anon_sym_api] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2833), + [anon_sym_include] = ACTIONS(2833), + [anon_sym_DEF] = ACTIONS(2833), + [anon_sym_IF] = ACTIONS(2833), + [anon_sym_cdef] = ACTIONS(2833), + [anon_sym_cpdef] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_ctypedef] = ACTIONS(2833), + [anon_sym_public] = ACTIONS(2833), + [anon_sym_packed] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_sizeof] = ACTIONS(2833), + [sym__dedent] = ACTIONS(2831), + [sym_string_start] = ACTIONS(2831), + }, + [1025] = { + [sym_identifier] = ACTIONS(2775), + [anon_sym_import] = ACTIONS(2775), + [anon_sym_cimport] = ACTIONS(2775), + [anon_sym_from] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_print] = ACTIONS(2775), + [anon_sym_assert] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_del] = ACTIONS(2775), + [anon_sym_raise] = ACTIONS(2775), + [anon_sym_pass] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_async] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_except] = ACTIONS(2775), + [anon_sym_finally] = ACTIONS(2775), + [anon_sym_with] = ACTIONS(2775), + [anon_sym_def] = ACTIONS(2775), + [anon_sym_global] = ACTIONS(2775), + [anon_sym_nonlocal] = ACTIONS(2775), + [anon_sym_exec] = ACTIONS(2775), + [anon_sym_type] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_AT] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2773), + [anon_sym_lambda] = ACTIONS(2775), + [anon_sym_yield] = ACTIONS(2775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2773), + [anon_sym_None] = ACTIONS(2775), + [anon_sym_0x] = ACTIONS(2773), + [anon_sym_0X] = ACTIONS(2773), + [anon_sym_0o] = ACTIONS(2773), + [anon_sym_0O] = ACTIONS(2773), + [anon_sym_0b] = ACTIONS(2773), + [anon_sym_0B] = ACTIONS(2773), + [aux_sym_integer_token4] = ACTIONS(2775), + [sym_float] = ACTIONS(2773), + [anon_sym_await] = ACTIONS(2775), + [anon_sym_api] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2775), + [anon_sym_include] = ACTIONS(2775), + [anon_sym_DEF] = ACTIONS(2775), + [anon_sym_IF] = ACTIONS(2775), + [anon_sym_cdef] = ACTIONS(2775), + [anon_sym_cpdef] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_ctypedef] = ACTIONS(2775), + [anon_sym_public] = ACTIONS(2775), + [anon_sym_packed] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym_readonly] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2775), + [sym__dedent] = ACTIONS(2773), + [sym_string_start] = ACTIONS(2773), + }, + [1026] = { + [sym_identifier] = ACTIONS(2779), + [anon_sym_import] = ACTIONS(2779), + [anon_sym_cimport] = ACTIONS(2779), + [anon_sym_from] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_print] = ACTIONS(2779), + [anon_sym_assert] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_del] = ACTIONS(2779), + [anon_sym_raise] = ACTIONS(2779), + [anon_sym_pass] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_else] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_except_STAR] = ACTIONS(2777), + [anon_sym_finally] = ACTIONS(2779), + [anon_sym_with] = ACTIONS(2779), + [anon_sym_def] = ACTIONS(2779), + [anon_sym_global] = ACTIONS(2779), + [anon_sym_nonlocal] = ACTIONS(2779), + [anon_sym_exec] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_lambda] = ACTIONS(2779), + [anon_sym_yield] = ACTIONS(2779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2777), + [anon_sym_None] = ACTIONS(2779), + [anon_sym_0x] = ACTIONS(2777), + [anon_sym_0X] = ACTIONS(2777), + [anon_sym_0o] = ACTIONS(2777), + [anon_sym_0O] = ACTIONS(2777), + [anon_sym_0b] = ACTIONS(2777), + [anon_sym_0B] = ACTIONS(2777), + [aux_sym_integer_token4] = ACTIONS(2779), + [sym_float] = ACTIONS(2777), + [anon_sym_await] = ACTIONS(2779), + [anon_sym_api] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2779), + [anon_sym_include] = ACTIONS(2779), + [anon_sym_DEF] = ACTIONS(2779), + [anon_sym_IF] = ACTIONS(2779), + [anon_sym_cdef] = ACTIONS(2779), + [anon_sym_cpdef] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_ctypedef] = ACTIONS(2779), + [anon_sym_public] = ACTIONS(2779), + [anon_sym_packed] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym_readonly] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2779), + [sym__dedent] = ACTIONS(2777), + [sym_string_start] = ACTIONS(2777), + }, + [1027] = { + [sym_identifier] = ACTIONS(2793), + [anon_sym_import] = ACTIONS(2793), + [anon_sym_cimport] = ACTIONS(2793), + [anon_sym_from] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_assert] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_del] = ACTIONS(2793), + [anon_sym_raise] = ACTIONS(2793), + [anon_sym_pass] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_else] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_except] = ACTIONS(2793), + [anon_sym_finally] = ACTIONS(2793), + [anon_sym_with] = ACTIONS(2793), + [anon_sym_def] = ACTIONS(2793), + [anon_sym_global] = ACTIONS(2793), + [anon_sym_nonlocal] = ACTIONS(2793), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_type] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_AT] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_lambda] = ACTIONS(2793), + [anon_sym_yield] = ACTIONS(2793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), + [anon_sym_None] = ACTIONS(2793), + [anon_sym_0x] = ACTIONS(2791), + [anon_sym_0X] = ACTIONS(2791), + [anon_sym_0o] = ACTIONS(2791), + [anon_sym_0O] = ACTIONS(2791), + [anon_sym_0b] = ACTIONS(2791), + [anon_sym_0B] = ACTIONS(2791), + [aux_sym_integer_token4] = ACTIONS(2793), + [sym_float] = ACTIONS(2791), + [anon_sym_await] = ACTIONS(2793), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2793), + [anon_sym_include] = ACTIONS(2793), + [anon_sym_DEF] = ACTIONS(2793), + [anon_sym_IF] = ACTIONS(2793), + [anon_sym_cdef] = ACTIONS(2793), + [anon_sym_cpdef] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_ctypedef] = ACTIONS(2793), + [anon_sym_public] = ACTIONS(2793), + [anon_sym_packed] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_readonly] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2793), + [sym__dedent] = ACTIONS(2791), + [sym_string_start] = ACTIONS(2791), + }, + [1028] = { + [sym_identifier] = ACTIONS(2797), + [anon_sym_import] = ACTIONS(2797), + [anon_sym_cimport] = ACTIONS(2797), + [anon_sym_from] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_print] = ACTIONS(2797), + [anon_sym_assert] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_del] = ACTIONS(2797), + [anon_sym_raise] = ACTIONS(2797), + [anon_sym_pass] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_else] = ACTIONS(2797), + [anon_sym_match] = ACTIONS(2797), + [anon_sym_async] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_except_STAR] = ACTIONS(2795), + [anon_sym_finally] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2797), + [anon_sym_def] = ACTIONS(2797), + [anon_sym_global] = ACTIONS(2797), + [anon_sym_nonlocal] = ACTIONS(2797), + [anon_sym_exec] = ACTIONS(2797), + [anon_sym_type] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_AT] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_lambda] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), + [anon_sym_None] = ACTIONS(2797), + [anon_sym_0x] = ACTIONS(2795), + [anon_sym_0X] = ACTIONS(2795), + [anon_sym_0o] = ACTIONS(2795), + [anon_sym_0O] = ACTIONS(2795), + [anon_sym_0b] = ACTIONS(2795), + [anon_sym_0B] = ACTIONS(2795), + [aux_sym_integer_token4] = ACTIONS(2797), + [sym_float] = ACTIONS(2795), + [anon_sym_await] = ACTIONS(2797), + [anon_sym_api] = ACTIONS(2797), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2797), + [anon_sym_include] = ACTIONS(2797), + [anon_sym_DEF] = ACTIONS(2797), + [anon_sym_IF] = ACTIONS(2797), + [anon_sym_cdef] = ACTIONS(2797), + [anon_sym_cpdef] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_ctypedef] = ACTIONS(2797), + [anon_sym_public] = ACTIONS(2797), + [anon_sym_packed] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_readonly] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2797), + [sym__dedent] = ACTIONS(2795), + [sym_string_start] = ACTIONS(2795), + }, + [1029] = { + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2668), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_cimport] = ACTIONS(2668), + [anon_sym_from] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_print] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_del] = ACTIONS(2668), + [anon_sym_raise] = ACTIONS(2668), + [anon_sym_pass] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_except] = ACTIONS(2668), + [anon_sym_finally] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_def] = ACTIONS(2668), + [anon_sym_global] = ACTIONS(2668), + [anon_sym_nonlocal] = ACTIONS(2668), + [anon_sym_exec] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_not] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_lambda] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_None] = ACTIONS(2668), + [anon_sym_0x] = ACTIONS(2670), + [anon_sym_0X] = ACTIONS(2670), + [anon_sym_0o] = ACTIONS(2670), + [anon_sym_0O] = ACTIONS(2670), + [anon_sym_0b] = ACTIONS(2670), + [anon_sym_0B] = ACTIONS(2670), + [aux_sym_integer_token4] = ACTIONS(2668), + [sym_float] = ACTIONS(2670), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_api] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2668), + [anon_sym_include] = ACTIONS(2668), + [anon_sym_DEF] = ACTIONS(2668), + [anon_sym_IF] = ACTIONS(2668), + [anon_sym_cdef] = ACTIONS(2668), + [anon_sym_cpdef] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_ctypedef] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_packed] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_readonly] = ACTIONS(2668), + [anon_sym_sizeof] = ACTIONS(2668), + [sym_string_start] = ACTIONS(2670), + }, + [1030] = { + [sym_identifier] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_cimport] = ACTIONS(2652), + [anon_sym_from] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_print] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_del] = ACTIONS(2652), + [anon_sym_raise] = ACTIONS(2652), + [anon_sym_pass] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_else] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_except] = ACTIONS(2652), + [anon_sym_finally] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_def] = ACTIONS(2652), + [anon_sym_global] = ACTIONS(2652), + [anon_sym_nonlocal] = ACTIONS(2652), + [anon_sym_exec] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_not] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2652), + [anon_sym_0x] = ACTIONS(2654), + [anon_sym_0X] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2654), + [anon_sym_0O] = ACTIONS(2654), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0B] = ACTIONS(2654), + [aux_sym_integer_token4] = ACTIONS(2652), + [sym_float] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_api] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2652), + [anon_sym_include] = ACTIONS(2652), + [anon_sym_DEF] = ACTIONS(2652), + [anon_sym_IF] = ACTIONS(2652), + [anon_sym_cdef] = ACTIONS(2652), + [anon_sym_cpdef] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_ctypedef] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_packed] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_sizeof] = ACTIONS(2652), + [sym__dedent] = ACTIONS(2654), + [sym_string_start] = ACTIONS(2654), + }, + [1031] = { + [sym_identifier] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_print] = ACTIONS(2656), + [anon_sym_assert] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_del] = ACTIONS(2656), + [anon_sym_raise] = ACTIONS(2656), + [anon_sym_pass] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_except] = ACTIONS(2656), + [anon_sym_finally] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_def] = ACTIONS(2656), + [anon_sym_global] = ACTIONS(2656), + [anon_sym_nonlocal] = ACTIONS(2656), + [anon_sym_exec] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_None] = ACTIONS(2656), + [anon_sym_0x] = ACTIONS(2658), + [anon_sym_0X] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2658), + [anon_sym_0O] = ACTIONS(2658), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0B] = ACTIONS(2658), + [aux_sym_integer_token4] = ACTIONS(2656), + [sym_float] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_api] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2656), + [anon_sym_include] = ACTIONS(2656), + [anon_sym_DEF] = ACTIONS(2656), + [anon_sym_IF] = ACTIONS(2656), + [anon_sym_cdef] = ACTIONS(2656), + [anon_sym_cpdef] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_ctypedef] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_packed] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_sizeof] = ACTIONS(2656), + [sym__dedent] = ACTIONS(2658), + [sym_string_start] = ACTIONS(2658), + }, + [1032] = { + [sym_identifier] = ACTIONS(2668), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_cimport] = ACTIONS(2668), + [anon_sym_from] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_print] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_del] = ACTIONS(2668), + [anon_sym_raise] = ACTIONS(2668), + [anon_sym_pass] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_except] = ACTIONS(2668), + [anon_sym_finally] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_def] = ACTIONS(2668), + [anon_sym_global] = ACTIONS(2668), + [anon_sym_nonlocal] = ACTIONS(2668), + [anon_sym_exec] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_not] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_lambda] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_None] = ACTIONS(2668), + [anon_sym_0x] = ACTIONS(2670), + [anon_sym_0X] = ACTIONS(2670), + [anon_sym_0o] = ACTIONS(2670), + [anon_sym_0O] = ACTIONS(2670), + [anon_sym_0b] = ACTIONS(2670), + [anon_sym_0B] = ACTIONS(2670), + [aux_sym_integer_token4] = ACTIONS(2668), + [sym_float] = ACTIONS(2670), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_api] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2668), + [anon_sym_include] = ACTIONS(2668), + [anon_sym_DEF] = ACTIONS(2668), + [anon_sym_IF] = ACTIONS(2668), + [anon_sym_cdef] = ACTIONS(2668), + [anon_sym_cpdef] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_ctypedef] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_packed] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_readonly] = ACTIONS(2668), + [anon_sym_sizeof] = ACTIONS(2668), + [sym__dedent] = ACTIONS(2670), + [sym_string_start] = ACTIONS(2670), + }, + [1033] = { + [sym_identifier] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_cimport] = ACTIONS(2660), + [anon_sym_from] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_print] = ACTIONS(2660), + [anon_sym_assert] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_del] = ACTIONS(2660), + [anon_sym_raise] = ACTIONS(2660), + [anon_sym_pass] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_except] = ACTIONS(2660), + [anon_sym_finally] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_def] = ACTIONS(2660), + [anon_sym_global] = ACTIONS(2660), + [anon_sym_nonlocal] = ACTIONS(2660), + [anon_sym_exec] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_not] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_lambda] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_None] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2662), + [anon_sym_0X] = ACTIONS(2662), + [anon_sym_0o] = ACTIONS(2662), + [anon_sym_0O] = ACTIONS(2662), + [anon_sym_0b] = ACTIONS(2662), + [anon_sym_0B] = ACTIONS(2662), + [aux_sym_integer_token4] = ACTIONS(2660), + [sym_float] = ACTIONS(2662), + [anon_sym_await] = ACTIONS(2660), + [anon_sym_api] = ACTIONS(2660), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_DEF] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_cdef] = ACTIONS(2660), + [anon_sym_cpdef] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_ctypedef] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_packed] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_readonly] = ACTIONS(2660), + [anon_sym_sizeof] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2662), + [sym_string_start] = ACTIONS(2662), + }, + [1034] = { + [sym_identifier] = ACTIONS(2809), + [anon_sym_import] = ACTIONS(2809), + [anon_sym_cimport] = ACTIONS(2809), + [anon_sym_from] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_print] = ACTIONS(2809), + [anon_sym_assert] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_del] = ACTIONS(2809), + [anon_sym_raise] = ACTIONS(2809), + [anon_sym_pass] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2809), + [anon_sym_match] = ACTIONS(2809), + [anon_sym_async] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_except] = ACTIONS(2809), + [anon_sym_finally] = ACTIONS(2809), + [anon_sym_with] = ACTIONS(2809), + [anon_sym_def] = ACTIONS(2809), + [anon_sym_global] = ACTIONS(2809), + [anon_sym_nonlocal] = ACTIONS(2809), + [anon_sym_exec] = ACTIONS(2809), + [anon_sym_type] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_AT] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2807), + [anon_sym_lambda] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2807), + [anon_sym_None] = ACTIONS(2809), + [anon_sym_0x] = ACTIONS(2807), + [anon_sym_0X] = ACTIONS(2807), + [anon_sym_0o] = ACTIONS(2807), + [anon_sym_0O] = ACTIONS(2807), + [anon_sym_0b] = ACTIONS(2807), + [anon_sym_0B] = ACTIONS(2807), + [aux_sym_integer_token4] = ACTIONS(2809), + [sym_float] = ACTIONS(2807), + [anon_sym_await] = ACTIONS(2809), + [anon_sym_api] = ACTIONS(2809), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2809), + [anon_sym_include] = ACTIONS(2809), + [anon_sym_DEF] = ACTIONS(2809), + [anon_sym_IF] = ACTIONS(2809), + [anon_sym_cdef] = ACTIONS(2809), + [anon_sym_cpdef] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_ctypedef] = ACTIONS(2809), + [anon_sym_public] = ACTIONS(2809), + [anon_sym_packed] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_readonly] = ACTIONS(2809), + [anon_sym_sizeof] = ACTIONS(2809), + [sym__dedent] = ACTIONS(2807), + [sym_string_start] = ACTIONS(2807), + }, + [1035] = { + [sym_identifier] = ACTIONS(2813), + [anon_sym_import] = ACTIONS(2813), + [anon_sym_cimport] = ACTIONS(2813), + [anon_sym_from] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_print] = ACTIONS(2813), + [anon_sym_assert] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_del] = ACTIONS(2813), + [anon_sym_raise] = ACTIONS(2813), + [anon_sym_pass] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_else] = ACTIONS(2813), + [anon_sym_match] = ACTIONS(2813), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_except_STAR] = ACTIONS(2811), + [anon_sym_finally] = ACTIONS(2813), + [anon_sym_with] = ACTIONS(2813), + [anon_sym_def] = ACTIONS(2813), + [anon_sym_global] = ACTIONS(2813), + [anon_sym_nonlocal] = ACTIONS(2813), + [anon_sym_exec] = ACTIONS(2813), + [anon_sym_type] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_AT] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_lambda] = ACTIONS(2813), + [anon_sym_yield] = ACTIONS(2813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2811), + [anon_sym_None] = ACTIONS(2813), + [anon_sym_0x] = ACTIONS(2811), + [anon_sym_0X] = ACTIONS(2811), + [anon_sym_0o] = ACTIONS(2811), + [anon_sym_0O] = ACTIONS(2811), + [anon_sym_0b] = ACTIONS(2811), + [anon_sym_0B] = ACTIONS(2811), + [aux_sym_integer_token4] = ACTIONS(2813), + [sym_float] = ACTIONS(2811), + [anon_sym_await] = ACTIONS(2813), + [anon_sym_api] = ACTIONS(2813), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2813), + [anon_sym_include] = ACTIONS(2813), + [anon_sym_DEF] = ACTIONS(2813), + [anon_sym_IF] = ACTIONS(2813), + [anon_sym_cdef] = ACTIONS(2813), + [anon_sym_cpdef] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_ctypedef] = ACTIONS(2813), + [anon_sym_public] = ACTIONS(2813), + [anon_sym_packed] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_readonly] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2813), + [sym__dedent] = ACTIONS(2811), + [sym_string_start] = ACTIONS(2811), + }, + [1036] = { + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_cimport] = ACTIONS(2666), + [anon_sym_from] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_print] = ACTIONS(2666), + [anon_sym_assert] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_del] = ACTIONS(2666), + [anon_sym_raise] = ACTIONS(2666), + [anon_sym_pass] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_except] = ACTIONS(2666), + [anon_sym_finally] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_def] = ACTIONS(2666), + [anon_sym_global] = ACTIONS(2666), + [anon_sym_nonlocal] = ACTIONS(2666), + [anon_sym_exec] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_lambda] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_None] = ACTIONS(2666), + [anon_sym_0x] = ACTIONS(2664), + [anon_sym_0X] = ACTIONS(2664), + [anon_sym_0o] = ACTIONS(2664), + [anon_sym_0O] = ACTIONS(2664), + [anon_sym_0b] = ACTIONS(2664), + [anon_sym_0B] = ACTIONS(2664), + [aux_sym_integer_token4] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_api] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_DEF] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_cdef] = ACTIONS(2666), + [anon_sym_cpdef] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_ctypedef] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_packed] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2666), + [sym__dedent] = ACTIONS(2664), + [sym_string_start] = ACTIONS(2664), + }, + [1037] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5235), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2839), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1038] = { + [sym_identifier] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_cimport] = ACTIONS(2652), + [anon_sym_from] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_print] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_del] = ACTIONS(2652), + [anon_sym_raise] = ACTIONS(2652), + [anon_sym_pass] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_else] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_except_STAR] = ACTIONS(2654), + [anon_sym_finally] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_def] = ACTIONS(2652), + [anon_sym_global] = ACTIONS(2652), + [anon_sym_nonlocal] = ACTIONS(2652), + [anon_sym_exec] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_not] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2652), + [anon_sym_0x] = ACTIONS(2654), + [anon_sym_0X] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2654), + [anon_sym_0O] = ACTIONS(2654), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0B] = ACTIONS(2654), + [aux_sym_integer_token4] = ACTIONS(2652), + [sym_float] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_api] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2652), + [anon_sym_include] = ACTIONS(2652), + [anon_sym_DEF] = ACTIONS(2652), + [anon_sym_IF] = ACTIONS(2652), + [anon_sym_cdef] = ACTIONS(2652), + [anon_sym_cpdef] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_ctypedef] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_packed] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_sizeof] = ACTIONS(2652), + [sym__dedent] = ACTIONS(2654), + [sym_string_start] = ACTIONS(2654), + }, + [1039] = { + [sym_identifier] = ACTIONS(2819), + [anon_sym_import] = ACTIONS(2819), + [anon_sym_cimport] = ACTIONS(2819), + [anon_sym_from] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_assert] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_del] = ACTIONS(2819), + [anon_sym_raise] = ACTIONS(2819), + [anon_sym_pass] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_else] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_except] = ACTIONS(2819), + [anon_sym_finally] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2819), + [anon_sym_def] = ACTIONS(2819), + [anon_sym_global] = ACTIONS(2819), + [anon_sym_nonlocal] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_type] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_AT] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_lambda] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2817), + [anon_sym_None] = ACTIONS(2819), + [anon_sym_0x] = ACTIONS(2817), + [anon_sym_0X] = ACTIONS(2817), + [anon_sym_0o] = ACTIONS(2817), + [anon_sym_0O] = ACTIONS(2817), + [anon_sym_0b] = ACTIONS(2817), + [anon_sym_0B] = ACTIONS(2817), + [aux_sym_integer_token4] = ACTIONS(2819), + [sym_float] = ACTIONS(2817), + [anon_sym_await] = ACTIONS(2819), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2819), + [anon_sym_include] = ACTIONS(2819), + [anon_sym_DEF] = ACTIONS(2819), + [anon_sym_IF] = ACTIONS(2819), + [anon_sym_cdef] = ACTIONS(2819), + [anon_sym_cpdef] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_ctypedef] = ACTIONS(2819), + [anon_sym_public] = ACTIONS(2819), + [anon_sym_packed] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym_readonly] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2819), + [sym__dedent] = ACTIONS(2817), + [sym_string_start] = ACTIONS(2817), + }, + [1040] = { + [sym_identifier] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_print] = ACTIONS(2656), + [anon_sym_assert] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_del] = ACTIONS(2656), + [anon_sym_raise] = ACTIONS(2656), + [anon_sym_pass] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_except_STAR] = ACTIONS(2658), + [anon_sym_finally] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_def] = ACTIONS(2656), + [anon_sym_global] = ACTIONS(2656), + [anon_sym_nonlocal] = ACTIONS(2656), + [anon_sym_exec] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_None] = ACTIONS(2656), + [anon_sym_0x] = ACTIONS(2658), + [anon_sym_0X] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2658), + [anon_sym_0O] = ACTIONS(2658), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0B] = ACTIONS(2658), + [aux_sym_integer_token4] = ACTIONS(2656), + [sym_float] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_api] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2656), + [anon_sym_include] = ACTIONS(2656), + [anon_sym_DEF] = ACTIONS(2656), + [anon_sym_IF] = ACTIONS(2656), + [anon_sym_cdef] = ACTIONS(2656), + [anon_sym_cpdef] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_ctypedef] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_packed] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_sizeof] = ACTIONS(2656), + [sym__dedent] = ACTIONS(2658), + [sym_string_start] = ACTIONS(2658), + }, + [1041] = { + [sym_identifier] = ACTIONS(2823), + [anon_sym_import] = ACTIONS(2823), + [anon_sym_cimport] = ACTIONS(2823), + [anon_sym_from] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_print] = ACTIONS(2823), + [anon_sym_assert] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_del] = ACTIONS(2823), + [anon_sym_raise] = ACTIONS(2823), + [anon_sym_pass] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_else] = ACTIONS(2823), + [anon_sym_match] = ACTIONS(2823), + [anon_sym_async] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_except_STAR] = ACTIONS(2821), + [anon_sym_finally] = ACTIONS(2823), + [anon_sym_with] = ACTIONS(2823), + [anon_sym_def] = ACTIONS(2823), + [anon_sym_global] = ACTIONS(2823), + [anon_sym_nonlocal] = ACTIONS(2823), + [anon_sym_exec] = ACTIONS(2823), + [anon_sym_type] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_AT] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_lambda] = ACTIONS(2823), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2821), + [anon_sym_None] = ACTIONS(2823), + [anon_sym_0x] = ACTIONS(2821), + [anon_sym_0X] = ACTIONS(2821), + [anon_sym_0o] = ACTIONS(2821), + [anon_sym_0O] = ACTIONS(2821), + [anon_sym_0b] = ACTIONS(2821), + [anon_sym_0B] = ACTIONS(2821), + [aux_sym_integer_token4] = ACTIONS(2823), + [sym_float] = ACTIONS(2821), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2823), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2823), + [anon_sym_include] = ACTIONS(2823), + [anon_sym_DEF] = ACTIONS(2823), + [anon_sym_IF] = ACTIONS(2823), + [anon_sym_cdef] = ACTIONS(2823), + [anon_sym_cpdef] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_ctypedef] = ACTIONS(2823), + [anon_sym_public] = ACTIONS(2823), + [anon_sym_packed] = ACTIONS(2823), + [anon_sym_inline] = ACTIONS(2823), + [anon_sym_readonly] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2823), + [sym__dedent] = ACTIONS(2821), + [sym_string_start] = ACTIONS(2821), + }, + [1042] = { + [sym_identifier] = ACTIONS(2668), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_cimport] = ACTIONS(2668), + [anon_sym_from] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_print] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_del] = ACTIONS(2668), + [anon_sym_raise] = ACTIONS(2668), + [anon_sym_pass] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_except_STAR] = ACTIONS(2670), + [anon_sym_finally] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_def] = ACTIONS(2668), + [anon_sym_global] = ACTIONS(2668), + [anon_sym_nonlocal] = ACTIONS(2668), + [anon_sym_exec] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_not] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_lambda] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_None] = ACTIONS(2668), + [anon_sym_0x] = ACTIONS(2670), + [anon_sym_0X] = ACTIONS(2670), + [anon_sym_0o] = ACTIONS(2670), + [anon_sym_0O] = ACTIONS(2670), + [anon_sym_0b] = ACTIONS(2670), + [anon_sym_0B] = ACTIONS(2670), + [aux_sym_integer_token4] = ACTIONS(2668), + [sym_float] = ACTIONS(2670), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_api] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2668), + [anon_sym_include] = ACTIONS(2668), + [anon_sym_DEF] = ACTIONS(2668), + [anon_sym_IF] = ACTIONS(2668), + [anon_sym_cdef] = ACTIONS(2668), + [anon_sym_cpdef] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_ctypedef] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_packed] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_readonly] = ACTIONS(2668), + [anon_sym_sizeof] = ACTIONS(2668), + [sym__dedent] = ACTIONS(2670), + [sym_string_start] = ACTIONS(2670), + }, + [1043] = { + [sym_identifier] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_cimport] = ACTIONS(2660), + [anon_sym_from] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_print] = ACTIONS(2660), + [anon_sym_assert] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_del] = ACTIONS(2660), + [anon_sym_raise] = ACTIONS(2660), + [anon_sym_pass] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_except_STAR] = ACTIONS(2662), + [anon_sym_finally] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_def] = ACTIONS(2660), + [anon_sym_global] = ACTIONS(2660), + [anon_sym_nonlocal] = ACTIONS(2660), + [anon_sym_exec] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_not] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_lambda] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_None] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2662), + [anon_sym_0X] = ACTIONS(2662), + [anon_sym_0o] = ACTIONS(2662), + [anon_sym_0O] = ACTIONS(2662), + [anon_sym_0b] = ACTIONS(2662), + [anon_sym_0B] = ACTIONS(2662), + [aux_sym_integer_token4] = ACTIONS(2660), + [sym_float] = ACTIONS(2662), + [anon_sym_await] = ACTIONS(2660), + [anon_sym_api] = ACTIONS(2660), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_DEF] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_cdef] = ACTIONS(2660), + [anon_sym_cpdef] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_ctypedef] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_packed] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_readonly] = ACTIONS(2660), + [anon_sym_sizeof] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2662), + [sym_string_start] = ACTIONS(2662), + }, + [1044] = { + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_cimport] = ACTIONS(2666), + [anon_sym_from] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_print] = ACTIONS(2666), + [anon_sym_assert] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_del] = ACTIONS(2666), + [anon_sym_raise] = ACTIONS(2666), + [anon_sym_pass] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_except_STAR] = ACTIONS(2664), + [anon_sym_finally] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_def] = ACTIONS(2666), + [anon_sym_global] = ACTIONS(2666), + [anon_sym_nonlocal] = ACTIONS(2666), + [anon_sym_exec] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_lambda] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_None] = ACTIONS(2666), + [anon_sym_0x] = ACTIONS(2664), + [anon_sym_0X] = ACTIONS(2664), + [anon_sym_0o] = ACTIONS(2664), + [anon_sym_0O] = ACTIONS(2664), + [anon_sym_0b] = ACTIONS(2664), + [anon_sym_0B] = ACTIONS(2664), + [aux_sym_integer_token4] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_api] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_DEF] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_cdef] = ACTIONS(2666), + [anon_sym_cpdef] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_ctypedef] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_packed] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2666), + [sym__dedent] = ACTIONS(2664), + [sym_string_start] = ACTIONS(2664), + }, + [1045] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5130), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6511), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1046] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [sym_type_conversion] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1047] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym__expression_within_for_in_clause] = STATE(5365), + [sym_expression] = STATE(4883), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_lambda_within_for_in_clause] = STATE(5365), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1048] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5200), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1049] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4908), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6213), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1050] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4811), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6298), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1051] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5106), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_by] = ACTIONS(2707), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1052] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4806), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6230), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1053] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4844), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(5870), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1054] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4851), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(5903), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1055] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4856), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(5936), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1056] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4862), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(5973), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1057] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4869), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6002), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1058] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4879), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6025), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1059] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4881), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6043), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1060] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4884), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_slice] = STATE(6064), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1061] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_with_clause] = STATE(6698), + [sym_with_item] = STATE(5727), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5174), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1062] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_with_clause] = STATE(6757), + [sym_with_item] = STATE(5727), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5174), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1063] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5106), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_by] = ACTIONS(2709), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1064] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5283), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1065] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5297), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1066] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5297), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1067] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_with_item] = STATE(6496), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5174), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1068] = { + [sym_identifier] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_print] = ACTIONS(2656), + [anon_sym_assert] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_del] = ACTIONS(2656), + [anon_sym_raise] = ACTIONS(2656), + [anon_sym_pass] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_elif] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_def] = ACTIONS(2656), + [anon_sym_global] = ACTIONS(2656), + [anon_sym_nonlocal] = ACTIONS(2656), + [anon_sym_exec] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_None] = ACTIONS(2656), + [anon_sym_0x] = ACTIONS(2658), + [anon_sym_0X] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2658), + [anon_sym_0O] = ACTIONS(2658), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0B] = ACTIONS(2658), + [aux_sym_integer_token4] = ACTIONS(2656), + [sym_float] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_api] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2656), + [anon_sym_include] = ACTIONS(2656), + [anon_sym_DEF] = ACTIONS(2656), + [anon_sym_IF] = ACTIONS(2656), + [anon_sym_cdef] = ACTIONS(2656), + [anon_sym_cpdef] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_ctypedef] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_packed] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_sizeof] = ACTIONS(2656), + [sym__dedent] = ACTIONS(2658), + [sym_string_start] = ACTIONS(2658), + }, + [1069] = { + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2668), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_cimport] = ACTIONS(2668), + [anon_sym_from] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_print] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_del] = ACTIONS(2668), + [anon_sym_raise] = ACTIONS(2668), + [anon_sym_pass] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_elif] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_def] = ACTIONS(2668), + [anon_sym_global] = ACTIONS(2668), + [anon_sym_nonlocal] = ACTIONS(2668), + [anon_sym_exec] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_not] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_lambda] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_None] = ACTIONS(2668), + [anon_sym_0x] = ACTIONS(2670), + [anon_sym_0X] = ACTIONS(2670), + [anon_sym_0o] = ACTIONS(2670), + [anon_sym_0O] = ACTIONS(2670), + [anon_sym_0b] = ACTIONS(2670), + [anon_sym_0B] = ACTIONS(2670), + [aux_sym_integer_token4] = ACTIONS(2668), + [sym_float] = ACTIONS(2670), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_api] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2668), + [anon_sym_include] = ACTIONS(2668), + [anon_sym_DEF] = ACTIONS(2668), + [anon_sym_IF] = ACTIONS(2668), + [anon_sym_cdef] = ACTIONS(2668), + [anon_sym_cpdef] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_ctypedef] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_packed] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_readonly] = ACTIONS(2668), + [anon_sym_sizeof] = ACTIONS(2668), + [sym_string_start] = ACTIONS(2670), + }, + [1070] = { + [sym_identifier] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_import] = ACTIONS(2849), + [anon_sym_cimport] = ACTIONS(2849), + [anon_sym_from] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_print] = ACTIONS(2849), + [anon_sym_assert] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_del] = ACTIONS(2849), + [anon_sym_raise] = ACTIONS(2849), + [anon_sym_pass] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_COLON] = ACTIONS(2853), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_async] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_with] = ACTIONS(2849), + [anon_sym_def] = ACTIONS(2849), + [anon_sym_global] = ACTIONS(2849), + [anon_sym_nonlocal] = ACTIONS(2849), + [anon_sym_exec] = ACTIONS(2849), + [anon_sym_type] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_AT] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_lambda] = ACTIONS(2849), + [anon_sym_yield] = ACTIONS(2849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), + [anon_sym_None] = ACTIONS(2849), + [anon_sym_0x] = ACTIONS(2851), + [anon_sym_0X] = ACTIONS(2851), + [anon_sym_0o] = ACTIONS(2851), + [anon_sym_0O] = ACTIONS(2851), + [anon_sym_0b] = ACTIONS(2851), + [anon_sym_0B] = ACTIONS(2851), + [aux_sym_integer_token4] = ACTIONS(2849), + [sym_float] = ACTIONS(2851), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2849), + [anon_sym_include] = ACTIONS(2849), + [anon_sym_DEF] = ACTIONS(2849), + [anon_sym_IF] = ACTIONS(2849), + [anon_sym_cdef] = ACTIONS(2849), + [anon_sym_cpdef] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_ctypedef] = ACTIONS(2849), + [anon_sym_public] = ACTIONS(2849), + [anon_sym_packed] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_readonly] = ACTIONS(2849), + [anon_sym_sizeof] = ACTIONS(2849), + [sym__dedent] = ACTIONS(2851), + [sym_string_start] = ACTIONS(2851), + }, + [1071] = { + [sym_identifier] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_import] = ACTIONS(2855), + [anon_sym_cimport] = ACTIONS(2855), + [anon_sym_from] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_print] = ACTIONS(2855), + [anon_sym_assert] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_del] = ACTIONS(2855), + [anon_sym_raise] = ACTIONS(2855), + [anon_sym_pass] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_COLON] = ACTIONS(2859), + [anon_sym_match] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_with] = ACTIONS(2855), + [anon_sym_def] = ACTIONS(2855), + [anon_sym_global] = ACTIONS(2855), + [anon_sym_nonlocal] = ACTIONS(2855), + [anon_sym_exec] = ACTIONS(2855), + [anon_sym_type] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_AT] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_lambda] = ACTIONS(2855), + [anon_sym_yield] = ACTIONS(2855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2857), + [anon_sym_None] = ACTIONS(2855), + [anon_sym_0x] = ACTIONS(2857), + [anon_sym_0X] = ACTIONS(2857), + [anon_sym_0o] = ACTIONS(2857), + [anon_sym_0O] = ACTIONS(2857), + [anon_sym_0b] = ACTIONS(2857), + [anon_sym_0B] = ACTIONS(2857), + [aux_sym_integer_token4] = ACTIONS(2855), + [sym_float] = ACTIONS(2857), + [anon_sym_await] = ACTIONS(2855), + [anon_sym_api] = ACTIONS(2855), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2855), + [anon_sym_include] = ACTIONS(2855), + [anon_sym_DEF] = ACTIONS(2855), + [anon_sym_IF] = ACTIONS(2855), + [anon_sym_cdef] = ACTIONS(2855), + [anon_sym_cpdef] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_ctypedef] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_packed] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym_readonly] = ACTIONS(2855), + [anon_sym_sizeof] = ACTIONS(2855), + [sym__dedent] = ACTIONS(2857), + [sym_string_start] = ACTIONS(2857), + }, + [1072] = { + [sym_identifier] = ACTIONS(2861), + [anon_sym_import] = ACTIONS(2861), + [anon_sym_cimport] = ACTIONS(2861), + [anon_sym_from] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_print] = ACTIONS(2861), + [anon_sym_assert] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_del] = ACTIONS(2861), + [anon_sym_raise] = ACTIONS(2861), + [anon_sym_pass] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_elif] = ACTIONS(2861), + [anon_sym_else] = ACTIONS(2861), + [anon_sym_match] = ACTIONS(2861), + [anon_sym_async] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_with] = ACTIONS(2861), + [anon_sym_def] = ACTIONS(2861), + [anon_sym_global] = ACTIONS(2861), + [anon_sym_nonlocal] = ACTIONS(2861), + [anon_sym_exec] = ACTIONS(2861), + [anon_sym_type] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_AT] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_lambda] = ACTIONS(2861), + [anon_sym_yield] = ACTIONS(2861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2863), + [anon_sym_None] = ACTIONS(2861), + [anon_sym_0x] = ACTIONS(2863), + [anon_sym_0X] = ACTIONS(2863), + [anon_sym_0o] = ACTIONS(2863), + [anon_sym_0O] = ACTIONS(2863), + [anon_sym_0b] = ACTIONS(2863), + [anon_sym_0B] = ACTIONS(2863), + [aux_sym_integer_token4] = ACTIONS(2861), + [sym_float] = ACTIONS(2863), + [anon_sym_await] = ACTIONS(2861), + [anon_sym_api] = ACTIONS(2861), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2861), + [anon_sym_include] = ACTIONS(2861), + [anon_sym_DEF] = ACTIONS(2861), + [anon_sym_IF] = ACTIONS(2861), + [anon_sym_cdef] = ACTIONS(2861), + [anon_sym_cpdef] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_ctypedef] = ACTIONS(2861), + [anon_sym_public] = ACTIONS(2861), + [anon_sym_packed] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2861), + [anon_sym_sizeof] = ACTIONS(2861), + [sym__dedent] = ACTIONS(2863), + [sym_string_start] = ACTIONS(2863), + }, + [1073] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_expression_list] = STATE(6494), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4841), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1074] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5215), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1075] = { + [sym_else_clause] = STATE(2092), + [sym_identifier] = ACTIONS(2865), + [anon_sym_import] = ACTIONS(2865), + [anon_sym_cimport] = ACTIONS(2865), + [anon_sym_from] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_print] = ACTIONS(2865), + [anon_sym_assert] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_del] = ACTIONS(2865), + [anon_sym_raise] = ACTIONS(2865), + [anon_sym_pass] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2865), + [anon_sym_async] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_with] = ACTIONS(2865), + [anon_sym_def] = ACTIONS(2865), + [anon_sym_global] = ACTIONS(2865), + [anon_sym_nonlocal] = ACTIONS(2865), + [anon_sym_exec] = ACTIONS(2865), + [anon_sym_type] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_AT] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_lambda] = ACTIONS(2865), + [anon_sym_yield] = ACTIONS(2865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), + [anon_sym_None] = ACTIONS(2865), + [anon_sym_0x] = ACTIONS(2867), + [anon_sym_0X] = ACTIONS(2867), + [anon_sym_0o] = ACTIONS(2867), + [anon_sym_0O] = ACTIONS(2867), + [anon_sym_0b] = ACTIONS(2867), + [anon_sym_0B] = ACTIONS(2867), + [aux_sym_integer_token4] = ACTIONS(2865), + [sym_float] = ACTIONS(2867), + [anon_sym_await] = ACTIONS(2865), + [anon_sym_api] = ACTIONS(2865), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2865), + [anon_sym_include] = ACTIONS(2865), + [anon_sym_DEF] = ACTIONS(2865), + [anon_sym_IF] = ACTIONS(2865), + [anon_sym_cdef] = ACTIONS(2865), + [anon_sym_cpdef] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), + [anon_sym_ctypedef] = ACTIONS(2865), + [anon_sym_public] = ACTIONS(2865), + [anon_sym_packed] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2865), + [sym__dedent] = ACTIONS(2867), + [sym_string_start] = ACTIONS(2867), + }, + [1076] = { + [sym_else_clause] = STATE(2095), + [sym_identifier] = ACTIONS(2869), + [anon_sym_import] = ACTIONS(2869), + [anon_sym_cimport] = ACTIONS(2869), + [anon_sym_from] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_print] = ACTIONS(2869), + [anon_sym_assert] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_del] = ACTIONS(2869), + [anon_sym_raise] = ACTIONS(2869), + [anon_sym_pass] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2869), + [anon_sym_async] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_with] = ACTIONS(2869), + [anon_sym_def] = ACTIONS(2869), + [anon_sym_global] = ACTIONS(2869), + [anon_sym_nonlocal] = ACTIONS(2869), + [anon_sym_exec] = ACTIONS(2869), + [anon_sym_type] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_lambda] = ACTIONS(2869), + [anon_sym_yield] = ACTIONS(2869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2871), + [anon_sym_None] = ACTIONS(2869), + [anon_sym_0x] = ACTIONS(2871), + [anon_sym_0X] = ACTIONS(2871), + [anon_sym_0o] = ACTIONS(2871), + [anon_sym_0O] = ACTIONS(2871), + [anon_sym_0b] = ACTIONS(2871), + [anon_sym_0B] = ACTIONS(2871), + [aux_sym_integer_token4] = ACTIONS(2869), + [sym_float] = ACTIONS(2871), + [anon_sym_await] = ACTIONS(2869), + [anon_sym_api] = ACTIONS(2869), + [sym_true] = ACTIONS(2869), + [sym_false] = ACTIONS(2869), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2869), + [anon_sym_include] = ACTIONS(2869), + [anon_sym_DEF] = ACTIONS(2869), + [anon_sym_IF] = ACTIONS(2869), + [anon_sym_cdef] = ACTIONS(2869), + [anon_sym_cpdef] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_ctypedef] = ACTIONS(2869), + [anon_sym_public] = ACTIONS(2869), + [anon_sym_packed] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2869), + [anon_sym_readonly] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2869), + [sym__dedent] = ACTIONS(2871), + [sym_string_start] = ACTIONS(2871), + }, + [1077] = { + [sym_else_clause] = STATE(2096), + [sym_identifier] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_cimport] = ACTIONS(2873), + [anon_sym_from] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2875), + [anon_sym_print] = ACTIONS(2873), + [anon_sym_assert] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_del] = ACTIONS(2873), + [anon_sym_raise] = ACTIONS(2873), + [anon_sym_pass] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_with] = ACTIONS(2873), + [anon_sym_def] = ACTIONS(2873), + [anon_sym_global] = ACTIONS(2873), + [anon_sym_nonlocal] = ACTIONS(2873), + [anon_sym_exec] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_AT] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2875), + [anon_sym_lambda] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2875), + [anon_sym_None] = ACTIONS(2873), + [anon_sym_0x] = ACTIONS(2875), + [anon_sym_0X] = ACTIONS(2875), + [anon_sym_0o] = ACTIONS(2875), + [anon_sym_0O] = ACTIONS(2875), + [anon_sym_0b] = ACTIONS(2875), + [anon_sym_0B] = ACTIONS(2875), + [aux_sym_integer_token4] = ACTIONS(2873), + [sym_float] = ACTIONS(2875), + [anon_sym_await] = ACTIONS(2873), + [anon_sym_api] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2873), + [anon_sym_include] = ACTIONS(2873), + [anon_sym_DEF] = ACTIONS(2873), + [anon_sym_IF] = ACTIONS(2873), + [anon_sym_cdef] = ACTIONS(2873), + [anon_sym_cpdef] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_ctypedef] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_packed] = ACTIONS(2873), + [anon_sym_inline] = ACTIONS(2873), + [anon_sym_readonly] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2873), + [sym__dedent] = ACTIONS(2875), + [sym_string_start] = ACTIONS(2875), + }, + [1078] = { + [sym_finally_clause] = STATE(2098), + [sym_identifier] = ACTIONS(2877), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_cimport] = ACTIONS(2877), + [anon_sym_from] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2879), + [anon_sym_print] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_del] = ACTIONS(2877), + [anon_sym_raise] = ACTIONS(2877), + [anon_sym_pass] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_async] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2877), + [anon_sym_try] = ACTIONS(2877), + [anon_sym_finally] = ACTIONS(2343), + [anon_sym_with] = ACTIONS(2877), + [anon_sym_def] = ACTIONS(2877), + [anon_sym_global] = ACTIONS(2877), + [anon_sym_nonlocal] = ACTIONS(2877), + [anon_sym_exec] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_class] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_AT] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_TILDE] = ACTIONS(2879), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_lambda] = ACTIONS(2877), + [anon_sym_yield] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2879), + [anon_sym_None] = ACTIONS(2877), + [anon_sym_0x] = ACTIONS(2879), + [anon_sym_0X] = ACTIONS(2879), + [anon_sym_0o] = ACTIONS(2879), + [anon_sym_0O] = ACTIONS(2879), + [anon_sym_0b] = ACTIONS(2879), + [anon_sym_0B] = ACTIONS(2879), + [aux_sym_integer_token4] = ACTIONS(2877), + [sym_float] = ACTIONS(2879), + [anon_sym_await] = ACTIONS(2877), + [anon_sym_api] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2877), + [anon_sym_include] = ACTIONS(2877), + [anon_sym_DEF] = ACTIONS(2877), + [anon_sym_IF] = ACTIONS(2877), + [anon_sym_cdef] = ACTIONS(2877), + [anon_sym_cpdef] = ACTIONS(2877), + [anon_sym_new] = ACTIONS(2877), + [anon_sym_ctypedef] = ACTIONS(2877), + [anon_sym_public] = ACTIONS(2877), + [anon_sym_packed] = ACTIONS(2877), + [anon_sym_inline] = ACTIONS(2877), + [anon_sym_readonly] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2877), + [sym__dedent] = ACTIONS(2879), + [sym_string_start] = ACTIONS(2879), + }, + [1079] = { + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_cimport] = ACTIONS(2666), + [anon_sym_from] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_print] = ACTIONS(2666), + [anon_sym_assert] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_del] = ACTIONS(2666), + [anon_sym_raise] = ACTIONS(2666), + [anon_sym_pass] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_elif] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_def] = ACTIONS(2666), + [anon_sym_global] = ACTIONS(2666), + [anon_sym_nonlocal] = ACTIONS(2666), + [anon_sym_exec] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_lambda] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_None] = ACTIONS(2666), + [anon_sym_0x] = ACTIONS(2664), + [anon_sym_0X] = ACTIONS(2664), + [anon_sym_0o] = ACTIONS(2664), + [anon_sym_0O] = ACTIONS(2664), + [anon_sym_0b] = ACTIONS(2664), + [anon_sym_0B] = ACTIONS(2664), + [aux_sym_integer_token4] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_api] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_DEF] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_cdef] = ACTIONS(2666), + [anon_sym_cpdef] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_ctypedef] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_packed] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2666), + [sym_string_start] = ACTIONS(2664), + }, + [1080] = { + [sym_identifier] = ACTIONS(2881), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_cimport] = ACTIONS(2881), + [anon_sym_from] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_print] = ACTIONS(2881), + [anon_sym_assert] = ACTIONS(2881), + [anon_sym_return] = ACTIONS(2881), + [anon_sym_del] = ACTIONS(2881), + [anon_sym_raise] = ACTIONS(2881), + [anon_sym_pass] = ACTIONS(2881), + [anon_sym_break] = ACTIONS(2881), + [anon_sym_continue] = ACTIONS(2881), + [anon_sym_if] = ACTIONS(2881), + [anon_sym_match] = ACTIONS(2881), + [anon_sym_async] = ACTIONS(2881), + [anon_sym_for] = ACTIONS(2881), + [anon_sym_while] = ACTIONS(2881), + [anon_sym_try] = ACTIONS(2881), + [anon_sym_with] = ACTIONS(2881), + [anon_sym_def] = ACTIONS(2881), + [anon_sym_global] = ACTIONS(2881), + [anon_sym_nonlocal] = ACTIONS(2881), + [anon_sym_exec] = ACTIONS(2881), + [anon_sym_type] = ACTIONS(2881), + [anon_sym_class] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_AT] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_lambda] = ACTIONS(2881), + [anon_sym_yield] = ACTIONS(2881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2883), + [anon_sym_None] = ACTIONS(2881), + [anon_sym_0x] = ACTIONS(2883), + [anon_sym_0X] = ACTIONS(2883), + [anon_sym_0o] = ACTIONS(2883), + [anon_sym_0O] = ACTIONS(2883), + [anon_sym_0b] = ACTIONS(2883), + [anon_sym_0B] = ACTIONS(2883), + [aux_sym_integer_token4] = ACTIONS(2881), + [sym_float] = ACTIONS(2883), + [anon_sym_await] = ACTIONS(2881), + [anon_sym_api] = ACTIONS(2881), + [sym_true] = ACTIONS(2881), + [sym_false] = ACTIONS(2881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2881), + [anon_sym_include] = ACTIONS(2881), + [anon_sym_DEF] = ACTIONS(2881), + [anon_sym_IF] = ACTIONS(2881), + [anon_sym_ELIF] = ACTIONS(2881), + [anon_sym_ELSE] = ACTIONS(2881), + [anon_sym_cdef] = ACTIONS(2881), + [anon_sym_cpdef] = ACTIONS(2881), + [anon_sym_new] = ACTIONS(2881), + [anon_sym_ctypedef] = ACTIONS(2881), + [anon_sym_public] = ACTIONS(2881), + [anon_sym_packed] = ACTIONS(2881), + [anon_sym_inline] = ACTIONS(2881), + [anon_sym_readonly] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2881), + [sym__dedent] = ACTIONS(2883), + [sym_string_start] = ACTIONS(2883), + }, + [1081] = { + [sym_identifier] = ACTIONS(2668), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_cimport] = ACTIONS(2668), + [anon_sym_from] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_print] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_del] = ACTIONS(2668), + [anon_sym_raise] = ACTIONS(2668), + [anon_sym_pass] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_elif] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_with] = ACTIONS(2668), + [anon_sym_def] = ACTIONS(2668), + [anon_sym_global] = ACTIONS(2668), + [anon_sym_nonlocal] = ACTIONS(2668), + [anon_sym_exec] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_not] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_lambda] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_None] = ACTIONS(2668), + [anon_sym_0x] = ACTIONS(2670), + [anon_sym_0X] = ACTIONS(2670), + [anon_sym_0o] = ACTIONS(2670), + [anon_sym_0O] = ACTIONS(2670), + [anon_sym_0b] = ACTIONS(2670), + [anon_sym_0B] = ACTIONS(2670), + [aux_sym_integer_token4] = ACTIONS(2668), + [sym_float] = ACTIONS(2670), + [anon_sym_await] = ACTIONS(2668), + [anon_sym_api] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2668), + [anon_sym_include] = ACTIONS(2668), + [anon_sym_DEF] = ACTIONS(2668), + [anon_sym_IF] = ACTIONS(2668), + [anon_sym_cdef] = ACTIONS(2668), + [anon_sym_cpdef] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_ctypedef] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_packed] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_readonly] = ACTIONS(2668), + [anon_sym_sizeof] = ACTIONS(2668), + [sym__dedent] = ACTIONS(2670), + [sym_string_start] = ACTIONS(2670), + }, + [1082] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1083] = { + [ts_builtin_sym_end] = ACTIONS(2851), + [sym_identifier] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_import] = ACTIONS(2849), + [anon_sym_cimport] = ACTIONS(2849), + [anon_sym_from] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_print] = ACTIONS(2849), + [anon_sym_assert] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_del] = ACTIONS(2849), + [anon_sym_raise] = ACTIONS(2849), + [anon_sym_pass] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_COLON] = ACTIONS(2889), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_async] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_with] = ACTIONS(2849), + [anon_sym_def] = ACTIONS(2849), + [anon_sym_global] = ACTIONS(2849), + [anon_sym_nonlocal] = ACTIONS(2849), + [anon_sym_exec] = ACTIONS(2849), + [anon_sym_type] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_AT] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_lambda] = ACTIONS(2849), + [anon_sym_yield] = ACTIONS(2849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), + [anon_sym_None] = ACTIONS(2849), + [anon_sym_0x] = ACTIONS(2851), + [anon_sym_0X] = ACTIONS(2851), + [anon_sym_0o] = ACTIONS(2851), + [anon_sym_0O] = ACTIONS(2851), + [anon_sym_0b] = ACTIONS(2851), + [anon_sym_0B] = ACTIONS(2851), + [aux_sym_integer_token4] = ACTIONS(2849), + [sym_float] = ACTIONS(2851), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2849), + [anon_sym_include] = ACTIONS(2849), + [anon_sym_DEF] = ACTIONS(2849), + [anon_sym_IF] = ACTIONS(2849), + [anon_sym_cdef] = ACTIONS(2849), + [anon_sym_cpdef] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_ctypedef] = ACTIONS(2849), + [anon_sym_public] = ACTIONS(2849), + [anon_sym_packed] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_readonly] = ACTIONS(2849), + [anon_sym_sizeof] = ACTIONS(2849), + [sym_string_start] = ACTIONS(2851), + }, + [1084] = { + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_cimport] = ACTIONS(2666), + [anon_sym_from] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_print] = ACTIONS(2666), + [anon_sym_assert] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_del] = ACTIONS(2666), + [anon_sym_raise] = ACTIONS(2666), + [anon_sym_pass] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_elif] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_def] = ACTIONS(2666), + [anon_sym_global] = ACTIONS(2666), + [anon_sym_nonlocal] = ACTIONS(2666), + [anon_sym_exec] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_lambda] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_None] = ACTIONS(2666), + [anon_sym_0x] = ACTIONS(2664), + [anon_sym_0X] = ACTIONS(2664), + [anon_sym_0o] = ACTIONS(2664), + [anon_sym_0O] = ACTIONS(2664), + [anon_sym_0b] = ACTIONS(2664), + [anon_sym_0B] = ACTIONS(2664), + [aux_sym_integer_token4] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_api] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_DEF] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_cdef] = ACTIONS(2666), + [anon_sym_cpdef] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_ctypedef] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_packed] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_sizeof] = ACTIONS(2666), + [sym__dedent] = ACTIONS(2664), + [sym_string_start] = ACTIONS(2664), + }, + [1085] = { + [sym_identifier] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_import] = ACTIONS(2891), + [anon_sym_cimport] = ACTIONS(2891), + [anon_sym_from] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_print] = ACTIONS(2891), + [anon_sym_assert] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_del] = ACTIONS(2891), + [anon_sym_raise] = ACTIONS(2891), + [anon_sym_pass] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_COLON] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_with] = ACTIONS(2891), + [anon_sym_def] = ACTIONS(2891), + [anon_sym_global] = ACTIONS(2891), + [anon_sym_nonlocal] = ACTIONS(2891), + [anon_sym_exec] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_AT] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_lambda] = ACTIONS(2891), + [anon_sym_yield] = ACTIONS(2891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2893), + [anon_sym_None] = ACTIONS(2891), + [anon_sym_0x] = ACTIONS(2893), + [anon_sym_0X] = ACTIONS(2893), + [anon_sym_0o] = ACTIONS(2893), + [anon_sym_0O] = ACTIONS(2893), + [anon_sym_0b] = ACTIONS(2893), + [anon_sym_0B] = ACTIONS(2893), + [aux_sym_integer_token4] = ACTIONS(2891), + [sym_float] = ACTIONS(2893), + [anon_sym_await] = ACTIONS(2891), + [anon_sym_api] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2891), + [anon_sym_include] = ACTIONS(2891), + [anon_sym_DEF] = ACTIONS(2891), + [anon_sym_IF] = ACTIONS(2891), + [anon_sym_cdef] = ACTIONS(2891), + [anon_sym_cpdef] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_ctypedef] = ACTIONS(2891), + [anon_sym_public] = ACTIONS(2891), + [anon_sym_packed] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym_readonly] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2891), + [sym__dedent] = ACTIONS(2893), + [sym_string_start] = ACTIONS(2893), + }, + [1086] = { + [sym_identifier] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_cimport] = ACTIONS(2652), + [anon_sym_from] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_print] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_del] = ACTIONS(2652), + [anon_sym_raise] = ACTIONS(2652), + [anon_sym_pass] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_elif] = ACTIONS(2652), + [anon_sym_else] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_def] = ACTIONS(2652), + [anon_sym_global] = ACTIONS(2652), + [anon_sym_nonlocal] = ACTIONS(2652), + [anon_sym_exec] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_not] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2652), + [anon_sym_0x] = ACTIONS(2654), + [anon_sym_0X] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2654), + [anon_sym_0O] = ACTIONS(2654), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0B] = ACTIONS(2654), + [aux_sym_integer_token4] = ACTIONS(2652), + [sym_float] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_api] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2652), + [anon_sym_include] = ACTIONS(2652), + [anon_sym_DEF] = ACTIONS(2652), + [anon_sym_IF] = ACTIONS(2652), + [anon_sym_cdef] = ACTIONS(2652), + [anon_sym_cpdef] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_ctypedef] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_packed] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_sizeof] = ACTIONS(2652), + [sym__dedent] = ACTIONS(2654), + [sym_string_start] = ACTIONS(2654), + }, + [1087] = { + [sym_finally_clause] = STATE(2140), + [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_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_finally] = ACTIONS(2285), + [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), + [anon_sym_0x] = ACTIONS(2897), + [anon_sym_0X] = ACTIONS(2897), + [anon_sym_0o] = ACTIONS(2897), + [anon_sym_0O] = ACTIONS(2897), + [anon_sym_0b] = ACTIONS(2897), + [anon_sym_0B] = ACTIONS(2897), + [aux_sym_integer_token4] = 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), + }, + [1088] = { + [sym_else_clause] = STATE(2109), + [sym_identifier] = ACTIONS(2901), + [anon_sym_import] = ACTIONS(2901), + [anon_sym_cimport] = ACTIONS(2901), + [anon_sym_from] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_print] = ACTIONS(2901), + [anon_sym_assert] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_del] = ACTIONS(2901), + [anon_sym_raise] = ACTIONS(2901), + [anon_sym_pass] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2901), + [anon_sym_async] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_with] = ACTIONS(2901), + [anon_sym_def] = ACTIONS(2901), + [anon_sym_global] = ACTIONS(2901), + [anon_sym_nonlocal] = ACTIONS(2901), + [anon_sym_exec] = ACTIONS(2901), + [anon_sym_type] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_AT] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_lambda] = ACTIONS(2901), + [anon_sym_yield] = ACTIONS(2901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2903), + [anon_sym_None] = ACTIONS(2901), + [anon_sym_0x] = ACTIONS(2903), + [anon_sym_0X] = ACTIONS(2903), + [anon_sym_0o] = ACTIONS(2903), + [anon_sym_0O] = ACTIONS(2903), + [anon_sym_0b] = ACTIONS(2903), + [anon_sym_0B] = ACTIONS(2903), + [aux_sym_integer_token4] = ACTIONS(2901), + [sym_float] = ACTIONS(2903), + [anon_sym_await] = ACTIONS(2901), + [anon_sym_api] = ACTIONS(2901), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2901), + [anon_sym_include] = ACTIONS(2901), + [anon_sym_DEF] = ACTIONS(2901), + [anon_sym_IF] = ACTIONS(2901), + [anon_sym_cdef] = ACTIONS(2901), + [anon_sym_cpdef] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_ctypedef] = ACTIONS(2901), + [anon_sym_public] = ACTIONS(2901), + [anon_sym_packed] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym_readonly] = ACTIONS(2901), + [anon_sym_sizeof] = ACTIONS(2901), + [sym__dedent] = ACTIONS(2903), + [sym_string_start] = ACTIONS(2903), + }, + [1089] = { + [sym_else_clause] = STATE(2112), + [sym_identifier] = ACTIONS(2905), + [anon_sym_import] = ACTIONS(2905), + [anon_sym_cimport] = ACTIONS(2905), + [anon_sym_from] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_print] = ACTIONS(2905), + [anon_sym_assert] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_del] = ACTIONS(2905), + [anon_sym_raise] = ACTIONS(2905), + [anon_sym_pass] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2905), + [anon_sym_async] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_with] = ACTIONS(2905), + [anon_sym_def] = ACTIONS(2905), + [anon_sym_global] = ACTIONS(2905), + [anon_sym_nonlocal] = ACTIONS(2905), + [anon_sym_exec] = ACTIONS(2905), + [anon_sym_type] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_AT] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_lambda] = ACTIONS(2905), + [anon_sym_yield] = ACTIONS(2905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2907), + [anon_sym_None] = ACTIONS(2905), + [anon_sym_0x] = ACTIONS(2907), + [anon_sym_0X] = ACTIONS(2907), + [anon_sym_0o] = ACTIONS(2907), + [anon_sym_0O] = ACTIONS(2907), + [anon_sym_0b] = ACTIONS(2907), + [anon_sym_0B] = ACTIONS(2907), + [aux_sym_integer_token4] = ACTIONS(2905), + [sym_float] = ACTIONS(2907), + [anon_sym_await] = ACTIONS(2905), + [anon_sym_api] = ACTIONS(2905), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2905), + [anon_sym_include] = ACTIONS(2905), + [anon_sym_DEF] = ACTIONS(2905), + [anon_sym_IF] = ACTIONS(2905), + [anon_sym_cdef] = ACTIONS(2905), + [anon_sym_cpdef] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_ctypedef] = ACTIONS(2905), + [anon_sym_public] = ACTIONS(2905), + [anon_sym_packed] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym_readonly] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2905), + [sym__dedent] = ACTIONS(2907), + [sym_string_start] = ACTIONS(2907), + }, + [1090] = { + [sym_else_clause] = STATE(2113), + [sym_identifier] = ACTIONS(2909), + [anon_sym_import] = ACTIONS(2909), + [anon_sym_cimport] = ACTIONS(2909), + [anon_sym_from] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_print] = ACTIONS(2909), + [anon_sym_assert] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_del] = ACTIONS(2909), + [anon_sym_raise] = ACTIONS(2909), + [anon_sym_pass] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2909), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_with] = ACTIONS(2909), + [anon_sym_def] = ACTIONS(2909), + [anon_sym_global] = ACTIONS(2909), + [anon_sym_nonlocal] = ACTIONS(2909), + [anon_sym_exec] = ACTIONS(2909), + [anon_sym_type] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_AT] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_lambda] = ACTIONS(2909), + [anon_sym_yield] = ACTIONS(2909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2911), + [anon_sym_None] = ACTIONS(2909), + [anon_sym_0x] = ACTIONS(2911), + [anon_sym_0X] = ACTIONS(2911), + [anon_sym_0o] = ACTIONS(2911), + [anon_sym_0O] = ACTIONS(2911), + [anon_sym_0b] = ACTIONS(2911), + [anon_sym_0B] = ACTIONS(2911), + [aux_sym_integer_token4] = ACTIONS(2909), + [sym_float] = ACTIONS(2911), + [anon_sym_await] = ACTIONS(2909), + [anon_sym_api] = ACTIONS(2909), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2909), + [anon_sym_include] = ACTIONS(2909), + [anon_sym_DEF] = ACTIONS(2909), + [anon_sym_IF] = ACTIONS(2909), + [anon_sym_cdef] = ACTIONS(2909), + [anon_sym_cpdef] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_ctypedef] = ACTIONS(2909), + [anon_sym_public] = ACTIONS(2909), + [anon_sym_packed] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym_readonly] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2909), + [sym__dedent] = ACTIONS(2911), + [sym_string_start] = ACTIONS(2911), + }, + [1091] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_expression_list] = STATE(6802), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5012), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1092] = { + [sym_finally_clause] = STATE(2115), + [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_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_finally] = ACTIONS(2343), + [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), + [anon_sym_0x] = ACTIONS(2897), + [anon_sym_0X] = ACTIONS(2897), + [anon_sym_0o] = ACTIONS(2897), + [anon_sym_0O] = ACTIONS(2897), + [anon_sym_0b] = ACTIONS(2897), + [anon_sym_0B] = ACTIONS(2897), + [aux_sym_integer_token4] = 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), + }, + [1093] = { + [sym_identifier] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_cimport] = ACTIONS(2913), + [anon_sym_from] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_print] = ACTIONS(2913), + [anon_sym_assert] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_del] = ACTIONS(2913), + [anon_sym_raise] = ACTIONS(2913), + [anon_sym_pass] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_COLON] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2913), + [anon_sym_async] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_with] = ACTIONS(2913), + [anon_sym_def] = ACTIONS(2913), + [anon_sym_global] = ACTIONS(2913), + [anon_sym_nonlocal] = ACTIONS(2913), + [anon_sym_exec] = ACTIONS(2913), + [anon_sym_type] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_AT] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_lambda] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2915), + [anon_sym_None] = ACTIONS(2913), + [anon_sym_0x] = ACTIONS(2915), + [anon_sym_0X] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2915), + [anon_sym_0O] = ACTIONS(2915), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0B] = ACTIONS(2915), + [aux_sym_integer_token4] = ACTIONS(2913), + [sym_float] = ACTIONS(2915), + [anon_sym_await] = ACTIONS(2913), + [anon_sym_api] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2913), + [anon_sym_include] = ACTIONS(2913), + [anon_sym_DEF] = ACTIONS(2913), + [anon_sym_IF] = ACTIONS(2913), + [anon_sym_cdef] = ACTIONS(2913), + [anon_sym_cpdef] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_ctypedef] = ACTIONS(2913), + [anon_sym_public] = ACTIONS(2913), + [anon_sym_packed] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym_readonly] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2913), + [sym__dedent] = ACTIONS(2915), + [sym_string_start] = ACTIONS(2915), + }, + [1094] = { + [sym_identifier] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_import] = ACTIONS(2919), + [anon_sym_cimport] = ACTIONS(2919), + [anon_sym_from] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_print] = ACTIONS(2919), + [anon_sym_assert] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_del] = ACTIONS(2919), + [anon_sym_raise] = ACTIONS(2919), + [anon_sym_pass] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_COLON] = ACTIONS(2921), + [anon_sym_match] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_with] = ACTIONS(2919), + [anon_sym_def] = ACTIONS(2919), + [anon_sym_global] = ACTIONS(2919), + [anon_sym_nonlocal] = ACTIONS(2919), + [anon_sym_exec] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2921), + [anon_sym_None] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2921), + [anon_sym_0X] = ACTIONS(2921), + [anon_sym_0o] = ACTIONS(2921), + [anon_sym_0O] = ACTIONS(2921), + [anon_sym_0b] = ACTIONS(2921), + [anon_sym_0B] = ACTIONS(2921), + [aux_sym_integer_token4] = ACTIONS(2919), + [sym_float] = ACTIONS(2921), + [anon_sym_await] = ACTIONS(2919), + [anon_sym_api] = ACTIONS(2919), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2919), + [anon_sym_include] = ACTIONS(2919), + [anon_sym_DEF] = ACTIONS(2919), + [anon_sym_IF] = ACTIONS(2919), + [anon_sym_cdef] = ACTIONS(2919), + [anon_sym_cpdef] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_ctypedef] = ACTIONS(2919), + [anon_sym_public] = ACTIONS(2919), + [anon_sym_packed] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2919), + [sym__dedent] = ACTIONS(2921), + [sym_string_start] = ACTIONS(2921), + }, + [1095] = { + [sym_else_clause] = STATE(2125), + [sym_identifier] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_cimport] = ACTIONS(2923), + [anon_sym_from] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_print] = ACTIONS(2923), + [anon_sym_assert] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_del] = ACTIONS(2923), + [anon_sym_raise] = ACTIONS(2923), + [anon_sym_pass] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_with] = ACTIONS(2923), + [anon_sym_def] = ACTIONS(2923), + [anon_sym_global] = ACTIONS(2923), + [anon_sym_nonlocal] = ACTIONS(2923), + [anon_sym_exec] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_yield] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2925), + [anon_sym_None] = ACTIONS(2923), + [anon_sym_0x] = ACTIONS(2925), + [anon_sym_0X] = ACTIONS(2925), + [anon_sym_0o] = ACTIONS(2925), + [anon_sym_0O] = ACTIONS(2925), + [anon_sym_0b] = ACTIONS(2925), + [anon_sym_0B] = ACTIONS(2925), + [aux_sym_integer_token4] = ACTIONS(2923), + [sym_float] = ACTIONS(2925), + [anon_sym_await] = ACTIONS(2923), + [anon_sym_api] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2923), + [anon_sym_include] = ACTIONS(2923), + [anon_sym_DEF] = ACTIONS(2923), + [anon_sym_IF] = ACTIONS(2923), + [anon_sym_cdef] = ACTIONS(2923), + [anon_sym_cpdef] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_ctypedef] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_packed] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym_readonly] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2923), + [sym__dedent] = ACTIONS(2925), + [sym_string_start] = ACTIONS(2925), + }, + [1096] = { + [sym_else_clause] = STATE(2126), + [sym_identifier] = ACTIONS(2927), + [anon_sym_import] = ACTIONS(2927), + [anon_sym_cimport] = ACTIONS(2927), + [anon_sym_from] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_assert] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_del] = ACTIONS(2927), + [anon_sym_raise] = ACTIONS(2927), + [anon_sym_pass] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_with] = ACTIONS(2927), + [anon_sym_def] = ACTIONS(2927), + [anon_sym_global] = ACTIONS(2927), + [anon_sym_nonlocal] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_type] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_AT] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_not] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_lambda] = ACTIONS(2927), + [anon_sym_yield] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2929), + [anon_sym_None] = ACTIONS(2927), + [anon_sym_0x] = ACTIONS(2929), + [anon_sym_0X] = ACTIONS(2929), + [anon_sym_0o] = ACTIONS(2929), + [anon_sym_0O] = ACTIONS(2929), + [anon_sym_0b] = ACTIONS(2929), + [anon_sym_0B] = ACTIONS(2929), + [aux_sym_integer_token4] = ACTIONS(2927), + [sym_float] = ACTIONS(2929), + [anon_sym_await] = ACTIONS(2927), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2927), + [anon_sym_include] = ACTIONS(2927), + [anon_sym_DEF] = ACTIONS(2927), + [anon_sym_IF] = ACTIONS(2927), + [anon_sym_cdef] = ACTIONS(2927), + [anon_sym_cpdef] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_ctypedef] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_packed] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym_readonly] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2927), + [sym__dedent] = ACTIONS(2929), + [sym_string_start] = ACTIONS(2929), + }, + [1097] = { + [sym_else_clause] = STATE(2130), + [sym_identifier] = ACTIONS(2931), + [anon_sym_import] = ACTIONS(2931), + [anon_sym_cimport] = ACTIONS(2931), + [anon_sym_from] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_print] = ACTIONS(2931), + [anon_sym_assert] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_del] = ACTIONS(2931), + [anon_sym_raise] = ACTIONS(2931), + [anon_sym_pass] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2931), + [anon_sym_async] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_with] = ACTIONS(2931), + [anon_sym_def] = ACTIONS(2931), + [anon_sym_global] = ACTIONS(2931), + [anon_sym_nonlocal] = ACTIONS(2931), + [anon_sym_exec] = ACTIONS(2931), + [anon_sym_type] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_AT] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_lambda] = ACTIONS(2931), + [anon_sym_yield] = ACTIONS(2931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2933), + [anon_sym_None] = ACTIONS(2931), + [anon_sym_0x] = ACTIONS(2933), + [anon_sym_0X] = ACTIONS(2933), + [anon_sym_0o] = ACTIONS(2933), + [anon_sym_0O] = ACTIONS(2933), + [anon_sym_0b] = ACTIONS(2933), + [anon_sym_0B] = ACTIONS(2933), + [aux_sym_integer_token4] = ACTIONS(2931), + [sym_float] = ACTIONS(2933), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2931), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2931), + [anon_sym_include] = ACTIONS(2931), + [anon_sym_DEF] = ACTIONS(2931), + [anon_sym_IF] = ACTIONS(2931), + [anon_sym_cdef] = ACTIONS(2931), + [anon_sym_cpdef] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_ctypedef] = ACTIONS(2931), + [anon_sym_public] = ACTIONS(2931), + [anon_sym_packed] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym_readonly] = ACTIONS(2931), + [anon_sym_sizeof] = ACTIONS(2931), + [sym__dedent] = ACTIONS(2933), + [sym_string_start] = ACTIONS(2933), + }, + [1098] = { + [sym_else_clause] = STATE(2131), + [sym_identifier] = ACTIONS(2935), + [anon_sym_import] = ACTIONS(2935), + [anon_sym_cimport] = ACTIONS(2935), + [anon_sym_from] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_print] = ACTIONS(2935), + [anon_sym_assert] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_del] = ACTIONS(2935), + [anon_sym_raise] = ACTIONS(2935), + [anon_sym_pass] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_async] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_while] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2935), + [anon_sym_def] = ACTIONS(2935), + [anon_sym_global] = ACTIONS(2935), + [anon_sym_nonlocal] = ACTIONS(2935), + [anon_sym_exec] = ACTIONS(2935), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_AT] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_not] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_lambda] = ACTIONS(2935), + [anon_sym_yield] = ACTIONS(2935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2937), + [anon_sym_None] = ACTIONS(2935), + [anon_sym_0x] = ACTIONS(2937), + [anon_sym_0X] = ACTIONS(2937), + [anon_sym_0o] = ACTIONS(2937), + [anon_sym_0O] = ACTIONS(2937), + [anon_sym_0b] = ACTIONS(2937), + [anon_sym_0B] = ACTIONS(2937), + [aux_sym_integer_token4] = ACTIONS(2935), + [sym_float] = ACTIONS(2937), + [anon_sym_await] = ACTIONS(2935), + [anon_sym_api] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2935), + [anon_sym_include] = ACTIONS(2935), + [anon_sym_DEF] = ACTIONS(2935), + [anon_sym_IF] = ACTIONS(2935), + [anon_sym_cdef] = ACTIONS(2935), + [anon_sym_cpdef] = ACTIONS(2935), + [anon_sym_new] = ACTIONS(2935), + [anon_sym_ctypedef] = ACTIONS(2935), + [anon_sym_public] = ACTIONS(2935), + [anon_sym_packed] = ACTIONS(2935), + [anon_sym_inline] = ACTIONS(2935), + [anon_sym_readonly] = ACTIONS(2935), + [anon_sym_sizeof] = ACTIONS(2935), + [sym__dedent] = ACTIONS(2937), + [sym_string_start] = ACTIONS(2937), + }, + [1099] = { + [sym_else_clause] = STATE(2031), + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2941), + [anon_sym_import] = ACTIONS(2941), + [anon_sym_cimport] = ACTIONS(2941), + [anon_sym_from] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_print] = ACTIONS(2941), + [anon_sym_assert] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_del] = ACTIONS(2941), + [anon_sym_raise] = ACTIONS(2941), + [anon_sym_pass] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_async] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_with] = ACTIONS(2941), + [anon_sym_def] = ACTIONS(2941), + [anon_sym_global] = ACTIONS(2941), + [anon_sym_nonlocal] = ACTIONS(2941), + [anon_sym_exec] = ACTIONS(2941), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_AT] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2939), + [anon_sym_lambda] = ACTIONS(2941), + [anon_sym_yield] = ACTIONS(2941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2939), + [anon_sym_None] = ACTIONS(2941), + [anon_sym_0x] = ACTIONS(2939), + [anon_sym_0X] = ACTIONS(2939), + [anon_sym_0o] = ACTIONS(2939), + [anon_sym_0O] = ACTIONS(2939), + [anon_sym_0b] = ACTIONS(2939), + [anon_sym_0B] = ACTIONS(2939), + [aux_sym_integer_token4] = ACTIONS(2941), + [sym_float] = ACTIONS(2939), + [anon_sym_await] = ACTIONS(2941), + [anon_sym_api] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2941), + [anon_sym_include] = ACTIONS(2941), + [anon_sym_DEF] = ACTIONS(2941), + [anon_sym_IF] = ACTIONS(2941), + [anon_sym_cdef] = ACTIONS(2941), + [anon_sym_cpdef] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_ctypedef] = ACTIONS(2941), + [anon_sym_public] = ACTIONS(2941), + [anon_sym_packed] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2941), + [sym_string_start] = ACTIONS(2939), + }, + [1100] = { + [sym_else_clause] = STATE(2033), + [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_else] = ACTIONS(2281), + [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), + [anon_sym_0x] = ACTIONS(2943), + [anon_sym_0X] = ACTIONS(2943), + [anon_sym_0o] = ACTIONS(2943), + [anon_sym_0O] = ACTIONS(2943), + [anon_sym_0b] = ACTIONS(2943), + [anon_sym_0B] = ACTIONS(2943), + [aux_sym_integer_token4] = 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_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), + }, + [1101] = { + [sym_else_clause] = STATE(2040), + [ts_builtin_sym_end] = ACTIONS(2867), + [sym_identifier] = ACTIONS(2865), + [anon_sym_import] = ACTIONS(2865), + [anon_sym_cimport] = ACTIONS(2865), + [anon_sym_from] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_print] = ACTIONS(2865), + [anon_sym_assert] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_del] = ACTIONS(2865), + [anon_sym_raise] = ACTIONS(2865), + [anon_sym_pass] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2865), + [anon_sym_async] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_with] = ACTIONS(2865), + [anon_sym_def] = ACTIONS(2865), + [anon_sym_global] = ACTIONS(2865), + [anon_sym_nonlocal] = ACTIONS(2865), + [anon_sym_exec] = ACTIONS(2865), + [anon_sym_type] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_AT] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_lambda] = ACTIONS(2865), + [anon_sym_yield] = ACTIONS(2865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), + [anon_sym_None] = ACTIONS(2865), + [anon_sym_0x] = ACTIONS(2867), + [anon_sym_0X] = ACTIONS(2867), + [anon_sym_0o] = ACTIONS(2867), + [anon_sym_0O] = ACTIONS(2867), + [anon_sym_0b] = ACTIONS(2867), + [anon_sym_0B] = ACTIONS(2867), + [aux_sym_integer_token4] = ACTIONS(2865), + [sym_float] = ACTIONS(2867), + [anon_sym_await] = ACTIONS(2865), + [anon_sym_api] = ACTIONS(2865), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2865), + [anon_sym_include] = ACTIONS(2865), + [anon_sym_DEF] = ACTIONS(2865), + [anon_sym_IF] = ACTIONS(2865), + [anon_sym_cdef] = ACTIONS(2865), + [anon_sym_cpdef] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), + [anon_sym_ctypedef] = ACTIONS(2865), + [anon_sym_public] = ACTIONS(2865), + [anon_sym_packed] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2865), + [sym_string_start] = ACTIONS(2867), + }, + [1102] = { + [sym_identifier] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_import] = ACTIONS(2947), + [anon_sym_cimport] = ACTIONS(2947), + [anon_sym_from] = ACTIONS(2947), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_print] = ACTIONS(2947), + [anon_sym_assert] = ACTIONS(2947), + [anon_sym_return] = ACTIONS(2947), + [anon_sym_del] = ACTIONS(2947), + [anon_sym_raise] = ACTIONS(2947), + [anon_sym_pass] = ACTIONS(2947), + [anon_sym_break] = ACTIONS(2947), + [anon_sym_continue] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2947), + [anon_sym_async] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2947), + [anon_sym_while] = ACTIONS(2947), + [anon_sym_try] = ACTIONS(2947), + [anon_sym_with] = ACTIONS(2947), + [anon_sym_def] = ACTIONS(2947), + [anon_sym_global] = ACTIONS(2947), + [anon_sym_nonlocal] = ACTIONS(2947), + [anon_sym_exec] = ACTIONS(2947), + [anon_sym_type] = ACTIONS(2947), + [anon_sym_class] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_AT] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_not] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_lambda] = ACTIONS(2947), + [anon_sym_yield] = ACTIONS(2947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2949), + [anon_sym_None] = ACTIONS(2947), + [anon_sym_0x] = ACTIONS(2949), + [anon_sym_0X] = ACTIONS(2949), + [anon_sym_0o] = ACTIONS(2949), + [anon_sym_0O] = ACTIONS(2949), + [anon_sym_0b] = ACTIONS(2949), + [anon_sym_0B] = ACTIONS(2949), + [aux_sym_integer_token4] = ACTIONS(2947), + [sym_float] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2947), + [anon_sym_api] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2947), + [anon_sym_include] = ACTIONS(2947), + [anon_sym_DEF] = ACTIONS(2947), + [anon_sym_IF] = ACTIONS(2947), + [anon_sym_cdef] = ACTIONS(2947), + [anon_sym_cpdef] = ACTIONS(2947), + [anon_sym_new] = ACTIONS(2947), + [anon_sym_ctypedef] = ACTIONS(2947), + [anon_sym_public] = ACTIONS(2947), + [anon_sym_packed] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2947), + [anon_sym_readonly] = ACTIONS(2947), + [anon_sym_sizeof] = ACTIONS(2947), + [sym__dedent] = ACTIONS(2949), + [sym_string_start] = ACTIONS(2949), + }, + [1103] = { + [sym_identifier] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_import] = ACTIONS(2953), + [anon_sym_cimport] = ACTIONS(2953), + [anon_sym_from] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2955), + [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_COLON] = ACTIONS(2957), + [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(2955), + [anon_sym_AT] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_not] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_lambda] = ACTIONS(2953), + [anon_sym_yield] = ACTIONS(2953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2955), + [anon_sym_None] = ACTIONS(2953), + [anon_sym_0x] = ACTIONS(2955), + [anon_sym_0X] = ACTIONS(2955), + [anon_sym_0o] = ACTIONS(2955), + [anon_sym_0O] = ACTIONS(2955), + [anon_sym_0b] = ACTIONS(2955), + [anon_sym_0B] = ACTIONS(2955), + [aux_sym_integer_token4] = ACTIONS(2953), + [sym_float] = ACTIONS(2955), + [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_IF] = 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(2955), + [sym_string_start] = ACTIONS(2955), + }, + [1104] = { + [sym_identifier] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2959), + [anon_sym_cimport] = ACTIONS(2959), + [anon_sym_from] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [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_COLON] = ACTIONS(2961), + [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(2961), + [anon_sym_AT] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_not] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_lambda] = ACTIONS(2959), + [anon_sym_yield] = ACTIONS(2959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2961), + [anon_sym_None] = ACTIONS(2959), + [anon_sym_0x] = ACTIONS(2961), + [anon_sym_0X] = ACTIONS(2961), + [anon_sym_0o] = ACTIONS(2961), + [anon_sym_0O] = ACTIONS(2961), + [anon_sym_0b] = ACTIONS(2961), + [anon_sym_0B] = ACTIONS(2961), + [aux_sym_integer_token4] = ACTIONS(2959), + [sym_float] = ACTIONS(2961), + [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_IF] = 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(2961), + [sym_string_start] = ACTIONS(2961), + }, + [1105] = { + [sym_identifier] = ACTIONS(2963), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_cimport] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_print] = ACTIONS(2963), + [anon_sym_assert] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_del] = ACTIONS(2963), + [anon_sym_raise] = ACTIONS(2963), + [anon_sym_pass] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_elif] = ACTIONS(2963), + [anon_sym_else] = ACTIONS(2963), + [anon_sym_match] = ACTIONS(2963), + [anon_sym_async] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_with] = ACTIONS(2963), + [anon_sym_def] = ACTIONS(2963), + [anon_sym_global] = ACTIONS(2963), + [anon_sym_nonlocal] = ACTIONS(2963), + [anon_sym_exec] = ACTIONS(2963), + [anon_sym_type] = ACTIONS(2963), + [anon_sym_class] = ACTIONS(2963), + [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(2963), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_lambda] = ACTIONS(2963), + [anon_sym_yield] = ACTIONS(2963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_None] = ACTIONS(2963), + [anon_sym_0x] = ACTIONS(2965), + [anon_sym_0X] = ACTIONS(2965), + [anon_sym_0o] = ACTIONS(2965), + [anon_sym_0O] = ACTIONS(2965), + [anon_sym_0b] = ACTIONS(2965), + [anon_sym_0B] = ACTIONS(2965), + [aux_sym_integer_token4] = ACTIONS(2963), + [sym_float] = ACTIONS(2965), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2963), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2963), + [anon_sym_include] = ACTIONS(2963), + [anon_sym_DEF] = ACTIONS(2963), + [anon_sym_IF] = ACTIONS(2963), + [anon_sym_cdef] = ACTIONS(2963), + [anon_sym_cpdef] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(2963), + [anon_sym_ctypedef] = ACTIONS(2963), + [anon_sym_public] = ACTIONS(2963), + [anon_sym_packed] = ACTIONS(2963), + [anon_sym_inline] = ACTIONS(2963), + [anon_sym_readonly] = ACTIONS(2963), + [anon_sym_sizeof] = ACTIONS(2963), + [sym__dedent] = ACTIONS(2965), + [sym_string_start] = ACTIONS(2965), + }, + [1106] = { + [sym_else_clause] = STATE(2143), + [sym_identifier] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2967), + [anon_sym_cimport] = ACTIONS(2967), + [anon_sym_from] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [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_else] = ACTIONS(2339), + [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(2969), + [anon_sym_AT] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_lambda] = ACTIONS(2967), + [anon_sym_yield] = ACTIONS(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2969), + [anon_sym_None] = ACTIONS(2967), + [anon_sym_0x] = ACTIONS(2969), + [anon_sym_0X] = ACTIONS(2969), + [anon_sym_0o] = ACTIONS(2969), + [anon_sym_0O] = ACTIONS(2969), + [anon_sym_0b] = ACTIONS(2969), + [anon_sym_0B] = ACTIONS(2969), + [aux_sym_integer_token4] = ACTIONS(2967), + [sym_float] = ACTIONS(2969), + [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(2969), + [sym_string_start] = ACTIONS(2969), + }, + [1107] = { + [sym_else_clause] = STATE(2144), + [sym_identifier] = ACTIONS(2971), + [anon_sym_import] = ACTIONS(2971), + [anon_sym_cimport] = ACTIONS(2971), + [anon_sym_from] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_print] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_del] = ACTIONS(2971), + [anon_sym_raise] = ACTIONS(2971), + [anon_sym_pass] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_with] = ACTIONS(2971), + [anon_sym_def] = ACTIONS(2971), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_nonlocal] = ACTIONS(2971), + [anon_sym_exec] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_class] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_AT] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_lambda] = ACTIONS(2971), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2973), + [anon_sym_None] = ACTIONS(2971), + [anon_sym_0x] = ACTIONS(2973), + [anon_sym_0X] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2973), + [anon_sym_0O] = ACTIONS(2973), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0B] = ACTIONS(2973), + [aux_sym_integer_token4] = ACTIONS(2971), + [sym_float] = ACTIONS(2973), + [anon_sym_await] = ACTIONS(2971), + [anon_sym_api] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2971), + [anon_sym_include] = ACTIONS(2971), + [anon_sym_DEF] = ACTIONS(2971), + [anon_sym_IF] = ACTIONS(2971), + [anon_sym_cdef] = ACTIONS(2971), + [anon_sym_cpdef] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_ctypedef] = ACTIONS(2971), + [anon_sym_public] = ACTIONS(2971), + [anon_sym_packed] = ACTIONS(2971), + [anon_sym_inline] = ACTIONS(2971), + [anon_sym_readonly] = ACTIONS(2971), + [anon_sym_sizeof] = ACTIONS(2971), + [sym__dedent] = ACTIONS(2973), + [sym_string_start] = ACTIONS(2973), + }, + [1108] = { + [sym_else_clause] = STATE(2147), + [sym_identifier] = ACTIONS(2975), + [anon_sym_import] = ACTIONS(2975), + [anon_sym_cimport] = ACTIONS(2975), + [anon_sym_from] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_print] = ACTIONS(2975), + [anon_sym_assert] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_del] = ACTIONS(2975), + [anon_sym_raise] = ACTIONS(2975), + [anon_sym_pass] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2975), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_with] = ACTIONS(2975), + [anon_sym_def] = ACTIONS(2975), + [anon_sym_global] = ACTIONS(2975), + [anon_sym_nonlocal] = ACTIONS(2975), + [anon_sym_exec] = ACTIONS(2975), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_AT] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_not] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_lambda] = ACTIONS(2975), + [anon_sym_yield] = ACTIONS(2975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2977), + [anon_sym_None] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2977), + [anon_sym_0X] = ACTIONS(2977), + [anon_sym_0o] = ACTIONS(2977), + [anon_sym_0O] = ACTIONS(2977), + [anon_sym_0b] = ACTIONS(2977), + [anon_sym_0B] = ACTIONS(2977), + [aux_sym_integer_token4] = ACTIONS(2975), + [sym_float] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2975), + [anon_sym_api] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2975), + [anon_sym_include] = ACTIONS(2975), + [anon_sym_DEF] = ACTIONS(2975), + [anon_sym_IF] = ACTIONS(2975), + [anon_sym_cdef] = ACTIONS(2975), + [anon_sym_cpdef] = ACTIONS(2975), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_ctypedef] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_packed] = ACTIONS(2975), + [anon_sym_inline] = ACTIONS(2975), + [anon_sym_readonly] = ACTIONS(2975), + [anon_sym_sizeof] = ACTIONS(2975), + [sym__dedent] = ACTIONS(2977), + [sym_string_start] = ACTIONS(2977), + }, + [1109] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_with_item] = STATE(6483), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5267), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1110] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_expression_list] = STATE(6538), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4845), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1111] = { + [sym_identifier] = ACTIONS(2979), + [anon_sym_import] = ACTIONS(2979), + [anon_sym_cimport] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_print] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_del] = ACTIONS(2979), + [anon_sym_raise] = ACTIONS(2979), + [anon_sym_pass] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_def] = ACTIONS(2979), + [anon_sym_global] = ACTIONS(2979), + [anon_sym_nonlocal] = ACTIONS(2979), + [anon_sym_exec] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_class] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_AT] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_not] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_lambda] = ACTIONS(2979), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2981), + [anon_sym_None] = ACTIONS(2979), + [anon_sym_0x] = ACTIONS(2981), + [anon_sym_0X] = ACTIONS(2981), + [anon_sym_0o] = ACTIONS(2981), + [anon_sym_0O] = ACTIONS(2981), + [anon_sym_0b] = ACTIONS(2981), + [anon_sym_0B] = ACTIONS(2981), + [aux_sym_integer_token4] = ACTIONS(2979), + [sym_float] = ACTIONS(2981), + [anon_sym_await] = ACTIONS(2979), + [anon_sym_api] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2979), + [anon_sym_include] = ACTIONS(2979), + [anon_sym_DEF] = ACTIONS(2979), + [anon_sym_IF] = ACTIONS(2979), + [anon_sym_ELIF] = ACTIONS(2979), + [anon_sym_ELSE] = ACTIONS(2979), + [anon_sym_cdef] = ACTIONS(2979), + [anon_sym_cpdef] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_ctypedef] = ACTIONS(2979), + [anon_sym_public] = ACTIONS(2979), + [anon_sym_packed] = ACTIONS(2979), + [anon_sym_inline] = ACTIONS(2979), + [anon_sym_readonly] = ACTIONS(2979), + [anon_sym_sizeof] = ACTIONS(2979), + [sym__dedent] = ACTIONS(2981), + [sym_string_start] = ACTIONS(2981), + }, + [1112] = { + [sym_identifier] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_cimport] = ACTIONS(2660), + [anon_sym_from] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_print] = ACTIONS(2660), + [anon_sym_assert] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_del] = ACTIONS(2660), + [anon_sym_raise] = ACTIONS(2660), + [anon_sym_pass] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_elif] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_def] = ACTIONS(2660), + [anon_sym_global] = ACTIONS(2660), + [anon_sym_nonlocal] = ACTIONS(2660), + [anon_sym_exec] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_not] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_lambda] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_None] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2662), + [anon_sym_0X] = ACTIONS(2662), + [anon_sym_0o] = ACTIONS(2662), + [anon_sym_0O] = ACTIONS(2662), + [anon_sym_0b] = ACTIONS(2662), + [anon_sym_0B] = ACTIONS(2662), + [aux_sym_integer_token4] = ACTIONS(2660), + [sym_float] = ACTIONS(2662), + [anon_sym_await] = ACTIONS(2660), + [anon_sym_api] = ACTIONS(2660), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_DEF] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_cdef] = ACTIONS(2660), + [anon_sym_cpdef] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_ctypedef] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_packed] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_readonly] = ACTIONS(2660), + [anon_sym_sizeof] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2662), + [sym_string_start] = ACTIONS(2662), + }, + [1113] = { + [sym_else_clause] = STATE(2026), + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2975), + [anon_sym_import] = ACTIONS(2975), + [anon_sym_cimport] = ACTIONS(2975), + [anon_sym_from] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_print] = ACTIONS(2975), + [anon_sym_assert] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_del] = ACTIONS(2975), + [anon_sym_raise] = ACTIONS(2975), + [anon_sym_pass] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2975), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_with] = ACTIONS(2975), + [anon_sym_def] = ACTIONS(2975), + [anon_sym_global] = ACTIONS(2975), + [anon_sym_nonlocal] = ACTIONS(2975), + [anon_sym_exec] = ACTIONS(2975), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_AT] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_not] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_lambda] = ACTIONS(2975), + [anon_sym_yield] = ACTIONS(2975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2977), + [anon_sym_None] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2977), + [anon_sym_0X] = ACTIONS(2977), + [anon_sym_0o] = ACTIONS(2977), + [anon_sym_0O] = ACTIONS(2977), + [anon_sym_0b] = ACTIONS(2977), + [anon_sym_0B] = ACTIONS(2977), + [aux_sym_integer_token4] = ACTIONS(2975), + [sym_float] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2975), + [anon_sym_api] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2975), + [anon_sym_include] = ACTIONS(2975), + [anon_sym_DEF] = ACTIONS(2975), + [anon_sym_IF] = ACTIONS(2975), + [anon_sym_cdef] = ACTIONS(2975), + [anon_sym_cpdef] = ACTIONS(2975), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_ctypedef] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_packed] = ACTIONS(2975), + [anon_sym_inline] = ACTIONS(2975), + [anon_sym_readonly] = ACTIONS(2975), + [anon_sym_sizeof] = ACTIONS(2975), + [sym_string_start] = ACTIONS(2977), + }, + [1114] = { + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_import] = ACTIONS(2985), + [anon_sym_cimport] = ACTIONS(2985), + [anon_sym_from] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_print] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_del] = ACTIONS(2985), + [anon_sym_raise] = ACTIONS(2985), + [anon_sym_pass] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_async] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2985), + [anon_sym_def] = ACTIONS(2985), + [anon_sym_global] = ACTIONS(2985), + [anon_sym_nonlocal] = ACTIONS(2985), + [anon_sym_exec] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_AT] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_lambda] = ACTIONS(2985), + [anon_sym_yield] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_None] = ACTIONS(2985), + [anon_sym_0x] = ACTIONS(2983), + [anon_sym_0X] = ACTIONS(2983), + [anon_sym_0o] = ACTIONS(2983), + [anon_sym_0O] = ACTIONS(2983), + [anon_sym_0b] = ACTIONS(2983), + [anon_sym_0B] = ACTIONS(2983), + [aux_sym_integer_token4] = ACTIONS(2985), + [sym_float] = ACTIONS(2983), + [anon_sym_await] = ACTIONS(2985), + [anon_sym_api] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2985), + [anon_sym_include] = ACTIONS(2985), + [anon_sym_DEF] = ACTIONS(2985), + [anon_sym_IF] = ACTIONS(2985), + [anon_sym_ELIF] = ACTIONS(2985), + [anon_sym_ELSE] = ACTIONS(2985), + [anon_sym_cdef] = ACTIONS(2985), + [anon_sym_cpdef] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_ctypedef] = ACTIONS(2985), + [anon_sym_public] = ACTIONS(2985), + [anon_sym_packed] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym_readonly] = ACTIONS(2985), + [anon_sym_sizeof] = ACTIONS(2985), + [sym_string_start] = ACTIONS(2983), + }, + [1115] = { + [sym_identifier] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(2987), + [anon_sym_cimport] = ACTIONS(2987), + [anon_sym_from] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [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_COLON] = ACTIONS(2991), + [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(2989), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_lambda] = ACTIONS(2987), + [anon_sym_yield] = ACTIONS(2987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2989), + [anon_sym_None] = ACTIONS(2987), + [anon_sym_0x] = ACTIONS(2989), + [anon_sym_0X] = ACTIONS(2989), + [anon_sym_0o] = ACTIONS(2989), + [anon_sym_0O] = ACTIONS(2989), + [anon_sym_0b] = ACTIONS(2989), + [anon_sym_0B] = ACTIONS(2989), + [aux_sym_integer_token4] = ACTIONS(2987), + [sym_float] = ACTIONS(2989), + [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_IF] = 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(2989), + [sym_string_start] = ACTIONS(2989), + }, + [1116] = { + [sym_else_clause] = STATE(2180), + [ts_builtin_sym_end] = ACTIONS(2993), + [sym_identifier] = ACTIONS(2995), + [anon_sym_import] = ACTIONS(2995), + [anon_sym_cimport] = ACTIONS(2995), + [anon_sym_from] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_print] = ACTIONS(2995), + [anon_sym_assert] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_del] = ACTIONS(2995), + [anon_sym_raise] = ACTIONS(2995), + [anon_sym_pass] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2995), + [anon_sym_async] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_with] = ACTIONS(2995), + [anon_sym_def] = ACTIONS(2995), + [anon_sym_global] = ACTIONS(2995), + [anon_sym_nonlocal] = ACTIONS(2995), + [anon_sym_exec] = ACTIONS(2995), + [anon_sym_type] = ACTIONS(2995), + [anon_sym_class] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_AT] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_lambda] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2993), + [anon_sym_None] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2993), + [anon_sym_0X] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2993), + [anon_sym_0O] = ACTIONS(2993), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0B] = ACTIONS(2993), + [aux_sym_integer_token4] = ACTIONS(2995), + [sym_float] = ACTIONS(2993), + [anon_sym_await] = ACTIONS(2995), + [anon_sym_api] = ACTIONS(2995), + [sym_true] = ACTIONS(2995), + [sym_false] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2995), + [anon_sym_include] = ACTIONS(2995), + [anon_sym_DEF] = ACTIONS(2995), + [anon_sym_IF] = ACTIONS(2995), + [anon_sym_cdef] = ACTIONS(2995), + [anon_sym_cpdef] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2995), + [anon_sym_ctypedef] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_packed] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_readonly] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2995), + [sym_string_start] = ACTIONS(2993), + }, + [1117] = { + [sym_identifier] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2997), + [anon_sym_cimport] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_print] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_del] = ACTIONS(2997), + [anon_sym_raise] = ACTIONS(2997), + [anon_sym_pass] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_elif] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_async] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_def] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_nonlocal] = ACTIONS(2997), + [anon_sym_exec] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_lambda] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2999), + [anon_sym_None] = ACTIONS(2997), + [anon_sym_0x] = ACTIONS(2999), + [anon_sym_0X] = ACTIONS(2999), + [anon_sym_0o] = ACTIONS(2999), + [anon_sym_0O] = ACTIONS(2999), + [anon_sym_0b] = ACTIONS(2999), + [anon_sym_0B] = ACTIONS(2999), + [aux_sym_integer_token4] = ACTIONS(2997), + [sym_float] = ACTIONS(2999), + [anon_sym_await] = ACTIONS(2997), + [anon_sym_api] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2997), + [anon_sym_include] = ACTIONS(2997), + [anon_sym_DEF] = ACTIONS(2997), + [anon_sym_IF] = ACTIONS(2997), + [anon_sym_cdef] = ACTIONS(2997), + [anon_sym_cpdef] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_ctypedef] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_packed] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_sizeof] = ACTIONS(2997), + [sym__dedent] = ACTIONS(2999), + [sym_string_start] = ACTIONS(2999), + }, + [1118] = { + [sym_else_clause] = STATE(2153), + [sym_identifier] = ACTIONS(2941), + [anon_sym_import] = ACTIONS(2941), + [anon_sym_cimport] = ACTIONS(2941), + [anon_sym_from] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_print] = ACTIONS(2941), + [anon_sym_assert] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_del] = ACTIONS(2941), + [anon_sym_raise] = ACTIONS(2941), + [anon_sym_pass] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_async] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_with] = ACTIONS(2941), + [anon_sym_def] = ACTIONS(2941), + [anon_sym_global] = ACTIONS(2941), + [anon_sym_nonlocal] = ACTIONS(2941), + [anon_sym_exec] = ACTIONS(2941), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_AT] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2939), + [anon_sym_lambda] = ACTIONS(2941), + [anon_sym_yield] = ACTIONS(2941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2939), + [anon_sym_None] = ACTIONS(2941), + [anon_sym_0x] = ACTIONS(2939), + [anon_sym_0X] = ACTIONS(2939), + [anon_sym_0o] = ACTIONS(2939), + [anon_sym_0O] = ACTIONS(2939), + [anon_sym_0b] = ACTIONS(2939), + [anon_sym_0B] = ACTIONS(2939), + [aux_sym_integer_token4] = ACTIONS(2941), + [sym_float] = ACTIONS(2939), + [anon_sym_await] = ACTIONS(2941), + [anon_sym_api] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2941), + [anon_sym_include] = ACTIONS(2941), + [anon_sym_DEF] = ACTIONS(2941), + [anon_sym_IF] = ACTIONS(2941), + [anon_sym_cdef] = ACTIONS(2941), + [anon_sym_cpdef] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_ctypedef] = ACTIONS(2941), + [anon_sym_public] = ACTIONS(2941), + [anon_sym_packed] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2941), + [sym__dedent] = ACTIONS(2939), + [sym_string_start] = ACTIONS(2939), + }, + [1119] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5266), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1120] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_with_item] = STATE(6496), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5174), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1121] = { + [sym_else_clause] = STATE(2155), + [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_else] = ACTIONS(2339), + [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), + [anon_sym_0x] = ACTIONS(2943), + [anon_sym_0X] = ACTIONS(2943), + [anon_sym_0o] = ACTIONS(2943), + [anon_sym_0O] = ACTIONS(2943), + [anon_sym_0b] = ACTIONS(2943), + [anon_sym_0B] = ACTIONS(2943), + [aux_sym_integer_token4] = 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_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), + }, + [1122] = { + [sym_else_clause] = STATE(2181), + [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_else] = ACTIONS(2281), + [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), + [anon_sym_0x] = ACTIONS(3003), + [anon_sym_0X] = ACTIONS(3003), + [anon_sym_0o] = ACTIONS(3003), + [anon_sym_0O] = ACTIONS(3003), + [anon_sym_0b] = ACTIONS(3003), + [anon_sym_0B] = ACTIONS(3003), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1123] = { + [ts_builtin_sym_end] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2959), + [anon_sym_cimport] = ACTIONS(2959), + [anon_sym_from] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [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_COLON] = ACTIONS(2961), + [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(2961), + [anon_sym_AT] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_not] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_lambda] = ACTIONS(2959), + [anon_sym_yield] = ACTIONS(2959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2961), + [anon_sym_None] = ACTIONS(2959), + [anon_sym_0x] = ACTIONS(2961), + [anon_sym_0X] = ACTIONS(2961), + [anon_sym_0o] = ACTIONS(2961), + [anon_sym_0O] = ACTIONS(2961), + [anon_sym_0b] = ACTIONS(2961), + [anon_sym_0B] = ACTIONS(2961), + [aux_sym_integer_token4] = ACTIONS(2959), + [sym_float] = ACTIONS(2961), + [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_IF] = 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(2961), + }, + [1124] = { + [sym_else_clause] = STATE(2136), + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2909), + [anon_sym_import] = ACTIONS(2909), + [anon_sym_cimport] = ACTIONS(2909), + [anon_sym_from] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_print] = ACTIONS(2909), + [anon_sym_assert] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_del] = ACTIONS(2909), + [anon_sym_raise] = ACTIONS(2909), + [anon_sym_pass] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2909), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_with] = ACTIONS(2909), + [anon_sym_def] = ACTIONS(2909), + [anon_sym_global] = ACTIONS(2909), + [anon_sym_nonlocal] = ACTIONS(2909), + [anon_sym_exec] = ACTIONS(2909), + [anon_sym_type] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_AT] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_lambda] = ACTIONS(2909), + [anon_sym_yield] = ACTIONS(2909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2911), + [anon_sym_None] = ACTIONS(2909), + [anon_sym_0x] = ACTIONS(2911), + [anon_sym_0X] = ACTIONS(2911), + [anon_sym_0o] = ACTIONS(2911), + [anon_sym_0O] = ACTIONS(2911), + [anon_sym_0b] = ACTIONS(2911), + [anon_sym_0B] = ACTIONS(2911), + [aux_sym_integer_token4] = ACTIONS(2909), + [sym_float] = ACTIONS(2911), + [anon_sym_await] = ACTIONS(2909), + [anon_sym_api] = ACTIONS(2909), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2909), + [anon_sym_include] = ACTIONS(2909), + [anon_sym_DEF] = ACTIONS(2909), + [anon_sym_IF] = ACTIONS(2909), + [anon_sym_cdef] = ACTIONS(2909), + [anon_sym_cpdef] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_ctypedef] = ACTIONS(2909), + [anon_sym_public] = ACTIONS(2909), + [anon_sym_packed] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym_readonly] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2909), + [sym_string_start] = ACTIONS(2911), + }, + [1125] = { + [sym_else_clause] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3009), + [anon_sym_import] = ACTIONS(3009), + [anon_sym_cimport] = ACTIONS(3009), + [anon_sym_from] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_print] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_del] = ACTIONS(3009), + [anon_sym_raise] = ACTIONS(3009), + [anon_sym_pass] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_with] = ACTIONS(3009), + [anon_sym_def] = ACTIONS(3009), + [anon_sym_global] = ACTIONS(3009), + [anon_sym_nonlocal] = ACTIONS(3009), + [anon_sym_exec] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_AT] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_not] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_lambda] = ACTIONS(3009), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), + [anon_sym_None] = ACTIONS(3009), + [anon_sym_0x] = ACTIONS(3007), + [anon_sym_0X] = ACTIONS(3007), + [anon_sym_0o] = ACTIONS(3007), + [anon_sym_0O] = ACTIONS(3007), + [anon_sym_0b] = ACTIONS(3007), + [anon_sym_0B] = ACTIONS(3007), + [aux_sym_integer_token4] = ACTIONS(3009), + [sym_float] = ACTIONS(3007), + [anon_sym_await] = ACTIONS(3009), + [anon_sym_api] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3009), + [anon_sym_include] = ACTIONS(3009), + [anon_sym_DEF] = ACTIONS(3009), + [anon_sym_IF] = ACTIONS(3009), + [anon_sym_cdef] = ACTIONS(3009), + [anon_sym_cpdef] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_ctypedef] = ACTIONS(3009), + [anon_sym_public] = ACTIONS(3009), + [anon_sym_packed] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym_readonly] = ACTIONS(3009), + [anon_sym_sizeof] = ACTIONS(3009), + [sym_string_start] = ACTIONS(3007), + }, + [1126] = { + [ts_builtin_sym_end] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_import] = ACTIONS(2947), + [anon_sym_cimport] = ACTIONS(2947), + [anon_sym_from] = ACTIONS(2947), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_print] = ACTIONS(2947), + [anon_sym_assert] = ACTIONS(2947), + [anon_sym_return] = ACTIONS(2947), + [anon_sym_del] = ACTIONS(2947), + [anon_sym_raise] = ACTIONS(2947), + [anon_sym_pass] = ACTIONS(2947), + [anon_sym_break] = ACTIONS(2947), + [anon_sym_continue] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(2947), + [anon_sym_async] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2947), + [anon_sym_while] = ACTIONS(2947), + [anon_sym_try] = ACTIONS(2947), + [anon_sym_with] = ACTIONS(2947), + [anon_sym_def] = ACTIONS(2947), + [anon_sym_global] = ACTIONS(2947), + [anon_sym_nonlocal] = ACTIONS(2947), + [anon_sym_exec] = ACTIONS(2947), + [anon_sym_type] = ACTIONS(2947), + [anon_sym_class] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_AT] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_not] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_lambda] = ACTIONS(2947), + [anon_sym_yield] = ACTIONS(2947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2949), + [anon_sym_None] = ACTIONS(2947), + [anon_sym_0x] = ACTIONS(2949), + [anon_sym_0X] = ACTIONS(2949), + [anon_sym_0o] = ACTIONS(2949), + [anon_sym_0O] = ACTIONS(2949), + [anon_sym_0b] = ACTIONS(2949), + [anon_sym_0B] = ACTIONS(2949), + [aux_sym_integer_token4] = ACTIONS(2947), + [sym_float] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2947), + [anon_sym_api] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2947), + [anon_sym_include] = ACTIONS(2947), + [anon_sym_DEF] = ACTIONS(2947), + [anon_sym_IF] = ACTIONS(2947), + [anon_sym_cdef] = ACTIONS(2947), + [anon_sym_cpdef] = ACTIONS(2947), + [anon_sym_new] = ACTIONS(2947), + [anon_sym_ctypedef] = ACTIONS(2947), + [anon_sym_public] = ACTIONS(2947), + [anon_sym_packed] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2947), + [anon_sym_readonly] = ACTIONS(2947), + [anon_sym_sizeof] = ACTIONS(2947), + [sym_string_start] = ACTIONS(2949), + }, + [1127] = { + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_import] = ACTIONS(2953), + [anon_sym_cimport] = ACTIONS(2953), + [anon_sym_from] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2955), + [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_COLON] = ACTIONS(3013), + [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(2955), + [anon_sym_AT] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_not] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_lambda] = ACTIONS(2953), + [anon_sym_yield] = ACTIONS(2953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2955), + [anon_sym_None] = ACTIONS(2953), + [anon_sym_0x] = ACTIONS(2955), + [anon_sym_0X] = ACTIONS(2955), + [anon_sym_0o] = ACTIONS(2955), + [anon_sym_0O] = ACTIONS(2955), + [anon_sym_0b] = ACTIONS(2955), + [anon_sym_0B] = ACTIONS(2955), + [aux_sym_integer_token4] = ACTIONS(2953), + [sym_float] = ACTIONS(2955), + [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_IF] = 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(2955), + }, + [1128] = { + [sym_else_clause] = STATE(2159), + [sym_identifier] = ACTIONS(3009), + [anon_sym_import] = ACTIONS(3009), + [anon_sym_cimport] = ACTIONS(3009), + [anon_sym_from] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_print] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_del] = ACTIONS(3009), + [anon_sym_raise] = ACTIONS(3009), + [anon_sym_pass] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_with] = ACTIONS(3009), + [anon_sym_def] = ACTIONS(3009), + [anon_sym_global] = ACTIONS(3009), + [anon_sym_nonlocal] = ACTIONS(3009), + [anon_sym_exec] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_AT] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_not] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_lambda] = ACTIONS(3009), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), + [anon_sym_None] = ACTIONS(3009), + [anon_sym_0x] = ACTIONS(3007), + [anon_sym_0X] = ACTIONS(3007), + [anon_sym_0o] = ACTIONS(3007), + [anon_sym_0O] = ACTIONS(3007), + [anon_sym_0b] = ACTIONS(3007), + [anon_sym_0B] = ACTIONS(3007), + [aux_sym_integer_token4] = ACTIONS(3009), + [sym_float] = ACTIONS(3007), + [anon_sym_await] = ACTIONS(3009), + [anon_sym_api] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3009), + [anon_sym_include] = ACTIONS(3009), + [anon_sym_DEF] = ACTIONS(3009), + [anon_sym_IF] = ACTIONS(3009), + [anon_sym_cdef] = ACTIONS(3009), + [anon_sym_cpdef] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_ctypedef] = ACTIONS(3009), + [anon_sym_public] = ACTIONS(3009), + [anon_sym_packed] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym_readonly] = ACTIONS(3009), + [anon_sym_sizeof] = ACTIONS(3009), + [sym__dedent] = ACTIONS(3007), + [sym_string_start] = ACTIONS(3007), + }, + [1129] = { + [sym_else_clause] = STATE(2043), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2869), + [anon_sym_import] = ACTIONS(2869), + [anon_sym_cimport] = ACTIONS(2869), + [anon_sym_from] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_print] = ACTIONS(2869), + [anon_sym_assert] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_del] = ACTIONS(2869), + [anon_sym_raise] = ACTIONS(2869), + [anon_sym_pass] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2869), + [anon_sym_async] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_with] = ACTIONS(2869), + [anon_sym_def] = ACTIONS(2869), + [anon_sym_global] = ACTIONS(2869), + [anon_sym_nonlocal] = ACTIONS(2869), + [anon_sym_exec] = ACTIONS(2869), + [anon_sym_type] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_lambda] = ACTIONS(2869), + [anon_sym_yield] = ACTIONS(2869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2871), + [anon_sym_None] = ACTIONS(2869), + [anon_sym_0x] = ACTIONS(2871), + [anon_sym_0X] = ACTIONS(2871), + [anon_sym_0o] = ACTIONS(2871), + [anon_sym_0O] = ACTIONS(2871), + [anon_sym_0b] = ACTIONS(2871), + [anon_sym_0B] = ACTIONS(2871), + [aux_sym_integer_token4] = ACTIONS(2869), + [sym_float] = ACTIONS(2871), + [anon_sym_await] = ACTIONS(2869), + [anon_sym_api] = ACTIONS(2869), + [sym_true] = ACTIONS(2869), + [sym_false] = ACTIONS(2869), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2869), + [anon_sym_include] = ACTIONS(2869), + [anon_sym_DEF] = ACTIONS(2869), + [anon_sym_IF] = ACTIONS(2869), + [anon_sym_cdef] = ACTIONS(2869), + [anon_sym_cpdef] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_ctypedef] = ACTIONS(2869), + [anon_sym_public] = ACTIONS(2869), + [anon_sym_packed] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2869), + [anon_sym_readonly] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2869), + [sym_string_start] = ACTIONS(2871), + }, + [1130] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_expression_list] = STATE(6659), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5040), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1131] = { + [ts_builtin_sym_end] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2861), + [anon_sym_import] = ACTIONS(2861), + [anon_sym_cimport] = ACTIONS(2861), + [anon_sym_from] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_print] = ACTIONS(2861), + [anon_sym_assert] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_del] = ACTIONS(2861), + [anon_sym_raise] = ACTIONS(2861), + [anon_sym_pass] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_elif] = ACTIONS(2861), + [anon_sym_else] = ACTIONS(2861), + [anon_sym_match] = ACTIONS(2861), + [anon_sym_async] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_with] = ACTIONS(2861), + [anon_sym_def] = ACTIONS(2861), + [anon_sym_global] = ACTIONS(2861), + [anon_sym_nonlocal] = ACTIONS(2861), + [anon_sym_exec] = ACTIONS(2861), + [anon_sym_type] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_AT] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_lambda] = ACTIONS(2861), + [anon_sym_yield] = ACTIONS(2861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2863), + [anon_sym_None] = ACTIONS(2861), + [anon_sym_0x] = ACTIONS(2863), + [anon_sym_0X] = ACTIONS(2863), + [anon_sym_0o] = ACTIONS(2863), + [anon_sym_0O] = ACTIONS(2863), + [anon_sym_0b] = ACTIONS(2863), + [anon_sym_0B] = ACTIONS(2863), + [aux_sym_integer_token4] = ACTIONS(2861), + [sym_float] = ACTIONS(2863), + [anon_sym_await] = ACTIONS(2861), + [anon_sym_api] = ACTIONS(2861), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2861), + [anon_sym_include] = ACTIONS(2861), + [anon_sym_DEF] = ACTIONS(2861), + [anon_sym_IF] = ACTIONS(2861), + [anon_sym_cdef] = ACTIONS(2861), + [anon_sym_cpdef] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_ctypedef] = ACTIONS(2861), + [anon_sym_public] = ACTIONS(2861), + [anon_sym_packed] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2861), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_string_start] = ACTIONS(2863), + }, + [1132] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5208), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1133] = { + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2979), + [anon_sym_import] = ACTIONS(2979), + [anon_sym_cimport] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_print] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_del] = ACTIONS(2979), + [anon_sym_raise] = ACTIONS(2979), + [anon_sym_pass] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_def] = ACTIONS(2979), + [anon_sym_global] = ACTIONS(2979), + [anon_sym_nonlocal] = ACTIONS(2979), + [anon_sym_exec] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_class] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_AT] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_not] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_lambda] = ACTIONS(2979), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2981), + [anon_sym_None] = ACTIONS(2979), + [anon_sym_0x] = ACTIONS(2981), + [anon_sym_0X] = ACTIONS(2981), + [anon_sym_0o] = ACTIONS(2981), + [anon_sym_0O] = ACTIONS(2981), + [anon_sym_0b] = ACTIONS(2981), + [anon_sym_0B] = ACTIONS(2981), + [aux_sym_integer_token4] = ACTIONS(2979), + [sym_float] = ACTIONS(2981), + [anon_sym_await] = ACTIONS(2979), + [anon_sym_api] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2979), + [anon_sym_include] = ACTIONS(2979), + [anon_sym_DEF] = ACTIONS(2979), + [anon_sym_IF] = ACTIONS(2979), + [anon_sym_ELIF] = ACTIONS(2979), + [anon_sym_ELSE] = ACTIONS(2979), + [anon_sym_cdef] = ACTIONS(2979), + [anon_sym_cpdef] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_ctypedef] = ACTIONS(2979), + [anon_sym_public] = ACTIONS(2979), + [anon_sym_packed] = ACTIONS(2979), + [anon_sym_inline] = ACTIONS(2979), + [anon_sym_readonly] = ACTIONS(2979), + [anon_sym_sizeof] = ACTIONS(2979), + [sym_string_start] = ACTIONS(2981), + }, + [1134] = { + [sym_else_clause] = STATE(2045), + [ts_builtin_sym_end] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_cimport] = ACTIONS(2873), + [anon_sym_from] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2875), + [anon_sym_print] = ACTIONS(2873), + [anon_sym_assert] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_del] = ACTIONS(2873), + [anon_sym_raise] = ACTIONS(2873), + [anon_sym_pass] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_with] = ACTIONS(2873), + [anon_sym_def] = ACTIONS(2873), + [anon_sym_global] = ACTIONS(2873), + [anon_sym_nonlocal] = ACTIONS(2873), + [anon_sym_exec] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_AT] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2875), + [anon_sym_lambda] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2875), + [anon_sym_None] = ACTIONS(2873), + [anon_sym_0x] = ACTIONS(2875), + [anon_sym_0X] = ACTIONS(2875), + [anon_sym_0o] = ACTIONS(2875), + [anon_sym_0O] = ACTIONS(2875), + [anon_sym_0b] = ACTIONS(2875), + [anon_sym_0B] = ACTIONS(2875), + [aux_sym_integer_token4] = ACTIONS(2873), + [sym_float] = ACTIONS(2875), + [anon_sym_await] = ACTIONS(2873), + [anon_sym_api] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2873), + [anon_sym_include] = ACTIONS(2873), + [anon_sym_DEF] = ACTIONS(2873), + [anon_sym_IF] = ACTIONS(2873), + [anon_sym_cdef] = ACTIONS(2873), + [anon_sym_cpdef] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_ctypedef] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_packed] = ACTIONS(2873), + [anon_sym_inline] = ACTIONS(2873), + [anon_sym_readonly] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2873), + [sym_string_start] = ACTIONS(2875), + }, + [1135] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2963), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_cimport] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_print] = ACTIONS(2963), + [anon_sym_assert] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_del] = ACTIONS(2963), + [anon_sym_raise] = ACTIONS(2963), + [anon_sym_pass] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_elif] = ACTIONS(2963), + [anon_sym_else] = ACTIONS(2963), + [anon_sym_match] = ACTIONS(2963), + [anon_sym_async] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_with] = ACTIONS(2963), + [anon_sym_def] = ACTIONS(2963), + [anon_sym_global] = ACTIONS(2963), + [anon_sym_nonlocal] = ACTIONS(2963), + [anon_sym_exec] = ACTIONS(2963), + [anon_sym_type] = ACTIONS(2963), + [anon_sym_class] = ACTIONS(2963), + [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(2963), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_lambda] = ACTIONS(2963), + [anon_sym_yield] = ACTIONS(2963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_None] = ACTIONS(2963), + [anon_sym_0x] = ACTIONS(2965), + [anon_sym_0X] = ACTIONS(2965), + [anon_sym_0o] = ACTIONS(2965), + [anon_sym_0O] = ACTIONS(2965), + [anon_sym_0b] = ACTIONS(2965), + [anon_sym_0B] = ACTIONS(2965), + [aux_sym_integer_token4] = ACTIONS(2963), + [sym_float] = ACTIONS(2965), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2963), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2963), + [anon_sym_include] = ACTIONS(2963), + [anon_sym_DEF] = ACTIONS(2963), + [anon_sym_IF] = ACTIONS(2963), + [anon_sym_cdef] = ACTIONS(2963), + [anon_sym_cpdef] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(2963), + [anon_sym_ctypedef] = ACTIONS(2963), + [anon_sym_public] = ACTIONS(2963), + [anon_sym_packed] = ACTIONS(2963), + [anon_sym_inline] = ACTIONS(2963), + [anon_sym_readonly] = ACTIONS(2963), + [anon_sym_sizeof] = ACTIONS(2963), + [sym_string_start] = ACTIONS(2965), + }, + [1136] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1137] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4801), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1138] = { + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_import] = ACTIONS(2855), + [anon_sym_cimport] = ACTIONS(2855), + [anon_sym_from] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_print] = ACTIONS(2855), + [anon_sym_assert] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_del] = ACTIONS(2855), + [anon_sym_raise] = ACTIONS(2855), + [anon_sym_pass] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_with] = ACTIONS(2855), + [anon_sym_def] = ACTIONS(2855), + [anon_sym_global] = ACTIONS(2855), + [anon_sym_nonlocal] = ACTIONS(2855), + [anon_sym_exec] = ACTIONS(2855), + [anon_sym_type] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_AT] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_lambda] = ACTIONS(2855), + [anon_sym_yield] = ACTIONS(2855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2857), + [anon_sym_None] = ACTIONS(2855), + [anon_sym_0x] = ACTIONS(2857), + [anon_sym_0X] = ACTIONS(2857), + [anon_sym_0o] = ACTIONS(2857), + [anon_sym_0O] = ACTIONS(2857), + [anon_sym_0b] = ACTIONS(2857), + [anon_sym_0B] = ACTIONS(2857), + [aux_sym_integer_token4] = ACTIONS(2855), + [sym_float] = ACTIONS(2857), + [anon_sym_await] = ACTIONS(2855), + [anon_sym_api] = ACTIONS(2855), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2855), + [anon_sym_include] = ACTIONS(2855), + [anon_sym_DEF] = ACTIONS(2855), + [anon_sym_IF] = ACTIONS(2855), + [anon_sym_cdef] = ACTIONS(2855), + [anon_sym_cpdef] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_ctypedef] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_packed] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym_readonly] = ACTIONS(2855), + [anon_sym_sizeof] = ACTIONS(2855), + [sym_string_start] = ACTIONS(2857), + }, + [1139] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(1602), + [anon_sym_or] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1140] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5266), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(3033), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1141] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5266), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1142] = { + [sym_else_clause] = STATE(2166), + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_cimport] = ACTIONS(2923), + [anon_sym_from] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_print] = ACTIONS(2923), + [anon_sym_assert] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_del] = ACTIONS(2923), + [anon_sym_raise] = ACTIONS(2923), + [anon_sym_pass] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_with] = ACTIONS(2923), + [anon_sym_def] = ACTIONS(2923), + [anon_sym_global] = ACTIONS(2923), + [anon_sym_nonlocal] = ACTIONS(2923), + [anon_sym_exec] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_yield] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2925), + [anon_sym_None] = ACTIONS(2923), + [anon_sym_0x] = ACTIONS(2925), + [anon_sym_0X] = ACTIONS(2925), + [anon_sym_0o] = ACTIONS(2925), + [anon_sym_0O] = ACTIONS(2925), + [anon_sym_0b] = ACTIONS(2925), + [anon_sym_0B] = ACTIONS(2925), + [aux_sym_integer_token4] = ACTIONS(2923), + [sym_float] = ACTIONS(2925), + [anon_sym_await] = ACTIONS(2923), + [anon_sym_api] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2923), + [anon_sym_include] = ACTIONS(2923), + [anon_sym_DEF] = ACTIONS(2923), + [anon_sym_IF] = ACTIONS(2923), + [anon_sym_cdef] = ACTIONS(2923), + [anon_sym_cpdef] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_ctypedef] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_packed] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym_readonly] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2923), + [sym_string_start] = ACTIONS(2925), + }, + [1143] = { + [sym_else_clause] = STATE(2167), + [ts_builtin_sym_end] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2927), + [anon_sym_import] = ACTIONS(2927), + [anon_sym_cimport] = ACTIONS(2927), + [anon_sym_from] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_assert] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_del] = ACTIONS(2927), + [anon_sym_raise] = ACTIONS(2927), + [anon_sym_pass] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_with] = ACTIONS(2927), + [anon_sym_def] = ACTIONS(2927), + [anon_sym_global] = ACTIONS(2927), + [anon_sym_nonlocal] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_type] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_AT] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_not] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_lambda] = ACTIONS(2927), + [anon_sym_yield] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2929), + [anon_sym_None] = ACTIONS(2927), + [anon_sym_0x] = ACTIONS(2929), + [anon_sym_0X] = ACTIONS(2929), + [anon_sym_0o] = ACTIONS(2929), + [anon_sym_0O] = ACTIONS(2929), + [anon_sym_0b] = ACTIONS(2929), + [anon_sym_0B] = ACTIONS(2929), + [aux_sym_integer_token4] = ACTIONS(2927), + [sym_float] = ACTIONS(2929), + [anon_sym_await] = ACTIONS(2927), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2927), + [anon_sym_include] = ACTIONS(2927), + [anon_sym_DEF] = ACTIONS(2927), + [anon_sym_IF] = ACTIONS(2927), + [anon_sym_cdef] = ACTIONS(2927), + [anon_sym_cpdef] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_ctypedef] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_packed] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym_readonly] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2927), + [sym_string_start] = ACTIONS(2929), + }, + [1144] = { + [sym_else_clause] = STATE(2173), + [ts_builtin_sym_end] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2931), + [anon_sym_import] = ACTIONS(2931), + [anon_sym_cimport] = ACTIONS(2931), + [anon_sym_from] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_print] = ACTIONS(2931), + [anon_sym_assert] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_del] = ACTIONS(2931), + [anon_sym_raise] = ACTIONS(2931), + [anon_sym_pass] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2931), + [anon_sym_async] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_with] = ACTIONS(2931), + [anon_sym_def] = ACTIONS(2931), + [anon_sym_global] = ACTIONS(2931), + [anon_sym_nonlocal] = ACTIONS(2931), + [anon_sym_exec] = ACTIONS(2931), + [anon_sym_type] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_AT] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_lambda] = ACTIONS(2931), + [anon_sym_yield] = ACTIONS(2931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2933), + [anon_sym_None] = ACTIONS(2931), + [anon_sym_0x] = ACTIONS(2933), + [anon_sym_0X] = ACTIONS(2933), + [anon_sym_0o] = ACTIONS(2933), + [anon_sym_0O] = ACTIONS(2933), + [anon_sym_0b] = ACTIONS(2933), + [anon_sym_0B] = ACTIONS(2933), + [aux_sym_integer_token4] = ACTIONS(2931), + [sym_float] = ACTIONS(2933), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2931), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2931), + [anon_sym_include] = ACTIONS(2931), + [anon_sym_DEF] = ACTIONS(2931), + [anon_sym_IF] = ACTIONS(2931), + [anon_sym_cdef] = ACTIONS(2931), + [anon_sym_cpdef] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_ctypedef] = ACTIONS(2931), + [anon_sym_public] = ACTIONS(2931), + [anon_sym_packed] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym_readonly] = ACTIONS(2931), + [anon_sym_sizeof] = ACTIONS(2931), + [sym_string_start] = ACTIONS(2933), + }, + [1145] = { + [sym_else_clause] = STATE(2174), + [ts_builtin_sym_end] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2935), + [anon_sym_import] = ACTIONS(2935), + [anon_sym_cimport] = ACTIONS(2935), + [anon_sym_from] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_print] = ACTIONS(2935), + [anon_sym_assert] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_del] = ACTIONS(2935), + [anon_sym_raise] = ACTIONS(2935), + [anon_sym_pass] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_async] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_while] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2935), + [anon_sym_def] = ACTIONS(2935), + [anon_sym_global] = ACTIONS(2935), + [anon_sym_nonlocal] = ACTIONS(2935), + [anon_sym_exec] = ACTIONS(2935), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_AT] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_not] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_lambda] = ACTIONS(2935), + [anon_sym_yield] = ACTIONS(2935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2937), + [anon_sym_None] = ACTIONS(2935), + [anon_sym_0x] = ACTIONS(2937), + [anon_sym_0X] = ACTIONS(2937), + [anon_sym_0o] = ACTIONS(2937), + [anon_sym_0O] = ACTIONS(2937), + [anon_sym_0b] = ACTIONS(2937), + [anon_sym_0B] = ACTIONS(2937), + [aux_sym_integer_token4] = ACTIONS(2935), + [sym_float] = ACTIONS(2937), + [anon_sym_await] = ACTIONS(2935), + [anon_sym_api] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2935), + [anon_sym_include] = ACTIONS(2935), + [anon_sym_DEF] = ACTIONS(2935), + [anon_sym_IF] = ACTIONS(2935), + [anon_sym_cdef] = ACTIONS(2935), + [anon_sym_cpdef] = ACTIONS(2935), + [anon_sym_new] = ACTIONS(2935), + [anon_sym_ctypedef] = ACTIONS(2935), + [anon_sym_public] = ACTIONS(2935), + [anon_sym_packed] = ACTIONS(2935), + [anon_sym_inline] = ACTIONS(2935), + [anon_sym_readonly] = ACTIONS(2935), + [anon_sym_sizeof] = ACTIONS(2935), + [sym_string_start] = ACTIONS(2937), + }, + [1146] = { + [ts_builtin_sym_end] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_cimport] = ACTIONS(2913), + [anon_sym_from] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_print] = ACTIONS(2913), + [anon_sym_assert] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_del] = ACTIONS(2913), + [anon_sym_raise] = ACTIONS(2913), + [anon_sym_pass] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_COLON] = ACTIONS(3037), + [anon_sym_match] = ACTIONS(2913), + [anon_sym_async] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_with] = ACTIONS(2913), + [anon_sym_def] = ACTIONS(2913), + [anon_sym_global] = ACTIONS(2913), + [anon_sym_nonlocal] = ACTIONS(2913), + [anon_sym_exec] = ACTIONS(2913), + [anon_sym_type] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_AT] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_lambda] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2915), + [anon_sym_None] = ACTIONS(2913), + [anon_sym_0x] = ACTIONS(2915), + [anon_sym_0X] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2915), + [anon_sym_0O] = ACTIONS(2915), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0B] = ACTIONS(2915), + [aux_sym_integer_token4] = ACTIONS(2913), + [sym_float] = ACTIONS(2915), + [anon_sym_await] = ACTIONS(2913), + [anon_sym_api] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2913), + [anon_sym_include] = ACTIONS(2913), + [anon_sym_DEF] = ACTIONS(2913), + [anon_sym_IF] = ACTIONS(2913), + [anon_sym_cdef] = ACTIONS(2913), + [anon_sym_cpdef] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_ctypedef] = ACTIONS(2913), + [anon_sym_public] = ACTIONS(2913), + [anon_sym_packed] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym_readonly] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2913), + [sym_string_start] = ACTIONS(2915), + }, + [1147] = { + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_import] = ACTIONS(2919), + [anon_sym_cimport] = ACTIONS(2919), + [anon_sym_from] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_print] = ACTIONS(2919), + [anon_sym_assert] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_del] = ACTIONS(2919), + [anon_sym_raise] = ACTIONS(2919), + [anon_sym_pass] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_COLON] = ACTIONS(2921), + [anon_sym_match] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_with] = ACTIONS(2919), + [anon_sym_def] = ACTIONS(2919), + [anon_sym_global] = ACTIONS(2919), + [anon_sym_nonlocal] = ACTIONS(2919), + [anon_sym_exec] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2921), + [anon_sym_None] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2921), + [anon_sym_0X] = ACTIONS(2921), + [anon_sym_0o] = ACTIONS(2921), + [anon_sym_0O] = ACTIONS(2921), + [anon_sym_0b] = ACTIONS(2921), + [anon_sym_0B] = ACTIONS(2921), + [aux_sym_integer_token4] = ACTIONS(2919), + [sym_float] = ACTIONS(2921), + [anon_sym_await] = ACTIONS(2919), + [anon_sym_api] = ACTIONS(2919), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2919), + [anon_sym_include] = ACTIONS(2919), + [anon_sym_DEF] = ACTIONS(2919), + [anon_sym_IF] = ACTIONS(2919), + [anon_sym_cdef] = ACTIONS(2919), + [anon_sym_cpdef] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_ctypedef] = ACTIONS(2919), + [anon_sym_public] = ACTIONS(2919), + [anon_sym_packed] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2919), + [sym_string_start] = ACTIONS(2921), + }, + [1148] = { + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_cimport] = ACTIONS(2652), + [anon_sym_from] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_print] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_del] = ACTIONS(2652), + [anon_sym_raise] = ACTIONS(2652), + [anon_sym_pass] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_elif] = ACTIONS(2652), + [anon_sym_else] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_def] = ACTIONS(2652), + [anon_sym_global] = ACTIONS(2652), + [anon_sym_nonlocal] = ACTIONS(2652), + [anon_sym_exec] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_not] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2652), + [anon_sym_0x] = ACTIONS(2654), + [anon_sym_0X] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2654), + [anon_sym_0O] = ACTIONS(2654), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0B] = ACTIONS(2654), + [aux_sym_integer_token4] = ACTIONS(2652), + [sym_float] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_api] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2652), + [anon_sym_include] = ACTIONS(2652), + [anon_sym_DEF] = ACTIONS(2652), + [anon_sym_IF] = ACTIONS(2652), + [anon_sym_cdef] = ACTIONS(2652), + [anon_sym_cpdef] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_ctypedef] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_packed] = ACTIONS(2652), + [anon_sym_inline] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_sizeof] = ACTIONS(2652), + [sym_string_start] = ACTIONS(2654), + }, + [1149] = { + [ts_builtin_sym_end] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3041), + [anon_sym_SEMI] = ACTIONS(3039), + [anon_sym_import] = ACTIONS(3041), + [anon_sym_cimport] = ACTIONS(3041), + [anon_sym_from] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_print] = ACTIONS(3041), + [anon_sym_assert] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_del] = ACTIONS(3041), + [anon_sym_raise] = ACTIONS(3041), + [anon_sym_pass] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_async] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_while] = ACTIONS(3041), + [anon_sym_try] = ACTIONS(3041), + [anon_sym_with] = ACTIONS(3041), + [anon_sym_def] = ACTIONS(3041), + [anon_sym_global] = ACTIONS(3041), + [anon_sym_nonlocal] = ACTIONS(3041), + [anon_sym_exec] = ACTIONS(3041), + [anon_sym_type] = ACTIONS(3041), + [anon_sym_class] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_AT] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_not] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3039), + [anon_sym_lambda] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3039), + [anon_sym_None] = ACTIONS(3041), + [anon_sym_0x] = ACTIONS(3039), + [anon_sym_0X] = ACTIONS(3039), + [anon_sym_0o] = ACTIONS(3039), + [anon_sym_0O] = ACTIONS(3039), + [anon_sym_0b] = ACTIONS(3039), + [anon_sym_0B] = ACTIONS(3039), + [aux_sym_integer_token4] = ACTIONS(3041), + [sym_float] = ACTIONS(3039), + [anon_sym_await] = ACTIONS(3041), + [anon_sym_api] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3041), + [anon_sym_include] = ACTIONS(3041), + [anon_sym_DEF] = ACTIONS(3041), + [anon_sym_IF] = ACTIONS(3041), + [anon_sym_cdef] = ACTIONS(3041), + [anon_sym_cpdef] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3041), + [anon_sym_ctypedef] = ACTIONS(3041), + [anon_sym_public] = ACTIONS(3041), + [anon_sym_packed] = ACTIONS(3041), + [anon_sym_inline] = ACTIONS(3041), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3041), + [sym_string_start] = ACTIONS(3039), + }, + [1150] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5266), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1151] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5258), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1152] = { + [sym_finally_clause] = STATE(2051), + [ts_builtin_sym_end] = ACTIONS(2879), + [sym_identifier] = ACTIONS(2877), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_cimport] = ACTIONS(2877), + [anon_sym_from] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2879), + [anon_sym_print] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_del] = ACTIONS(2877), + [anon_sym_raise] = ACTIONS(2877), + [anon_sym_pass] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_async] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2877), + [anon_sym_try] = ACTIONS(2877), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2877), + [anon_sym_def] = ACTIONS(2877), + [anon_sym_global] = ACTIONS(2877), + [anon_sym_nonlocal] = ACTIONS(2877), + [anon_sym_exec] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_class] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_AT] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_TILDE] = ACTIONS(2879), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_lambda] = ACTIONS(2877), + [anon_sym_yield] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2879), + [anon_sym_None] = ACTIONS(2877), + [anon_sym_0x] = ACTIONS(2879), + [anon_sym_0X] = ACTIONS(2879), + [anon_sym_0o] = ACTIONS(2879), + [anon_sym_0O] = ACTIONS(2879), + [anon_sym_0b] = ACTIONS(2879), + [anon_sym_0B] = ACTIONS(2879), + [aux_sym_integer_token4] = ACTIONS(2877), + [sym_float] = ACTIONS(2879), + [anon_sym_await] = ACTIONS(2877), + [anon_sym_api] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2877), + [anon_sym_include] = ACTIONS(2877), + [anon_sym_DEF] = ACTIONS(2877), + [anon_sym_IF] = ACTIONS(2877), + [anon_sym_cdef] = ACTIONS(2877), + [anon_sym_cpdef] = ACTIONS(2877), + [anon_sym_new] = ACTIONS(2877), + [anon_sym_ctypedef] = ACTIONS(2877), + [anon_sym_public] = ACTIONS(2877), + [anon_sym_packed] = ACTIONS(2877), + [anon_sym_inline] = ACTIONS(2877), + [anon_sym_readonly] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2877), + [sym_string_start] = ACTIONS(2879), + }, + [1153] = { + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_import] = ACTIONS(2891), + [anon_sym_cimport] = ACTIONS(2891), + [anon_sym_from] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_print] = ACTIONS(2891), + [anon_sym_assert] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_del] = ACTIONS(2891), + [anon_sym_raise] = ACTIONS(2891), + [anon_sym_pass] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_COLON] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_with] = ACTIONS(2891), + [anon_sym_def] = ACTIONS(2891), + [anon_sym_global] = ACTIONS(2891), + [anon_sym_nonlocal] = ACTIONS(2891), + [anon_sym_exec] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_AT] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_lambda] = ACTIONS(2891), + [anon_sym_yield] = ACTIONS(2891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2893), + [anon_sym_None] = ACTIONS(2891), + [anon_sym_0x] = ACTIONS(2893), + [anon_sym_0X] = ACTIONS(2893), + [anon_sym_0o] = ACTIONS(2893), + [anon_sym_0O] = ACTIONS(2893), + [anon_sym_0b] = ACTIONS(2893), + [anon_sym_0B] = ACTIONS(2893), + [aux_sym_integer_token4] = ACTIONS(2891), + [sym_float] = ACTIONS(2893), + [anon_sym_await] = ACTIONS(2891), + [anon_sym_api] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2891), + [anon_sym_include] = ACTIONS(2891), + [anon_sym_DEF] = ACTIONS(2891), + [anon_sym_IF] = ACTIONS(2891), + [anon_sym_cdef] = ACTIONS(2891), + [anon_sym_cpdef] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_ctypedef] = ACTIONS(2891), + [anon_sym_public] = ACTIONS(2891), + [anon_sym_packed] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym_readonly] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2891), + [sym_string_start] = ACTIONS(2893), + }, + [1154] = { + [ts_builtin_sym_end] = ACTIONS(2989), + [sym_identifier] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(2987), + [anon_sym_cimport] = ACTIONS(2987), + [anon_sym_from] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [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_COLON] = ACTIONS(3051), + [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(2989), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_lambda] = ACTIONS(2987), + [anon_sym_yield] = ACTIONS(2987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2989), + [anon_sym_None] = ACTIONS(2987), + [anon_sym_0x] = ACTIONS(2989), + [anon_sym_0X] = ACTIONS(2989), + [anon_sym_0o] = ACTIONS(2989), + [anon_sym_0O] = ACTIONS(2989), + [anon_sym_0b] = ACTIONS(2989), + [anon_sym_0B] = ACTIONS(2989), + [aux_sym_integer_token4] = ACTIONS(2987), + [sym_float] = ACTIONS(2989), + [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_IF] = 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(2989), + }, + [1155] = { + [sym_else_clause] = STATE(2020), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2967), + [anon_sym_cimport] = ACTIONS(2967), + [anon_sym_from] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [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_else] = ACTIONS(2281), + [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(2969), + [anon_sym_AT] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_lambda] = ACTIONS(2967), + [anon_sym_yield] = ACTIONS(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2969), + [anon_sym_None] = ACTIONS(2967), + [anon_sym_0x] = ACTIONS(2969), + [anon_sym_0X] = ACTIONS(2969), + [anon_sym_0o] = ACTIONS(2969), + [anon_sym_0O] = ACTIONS(2969), + [anon_sym_0b] = ACTIONS(2969), + [anon_sym_0B] = ACTIONS(2969), + [aux_sym_integer_token4] = ACTIONS(2967), + [sym_float] = ACTIONS(2969), + [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(2969), + }, + [1156] = { + [sym_else_clause] = STATE(2021), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2971), + [anon_sym_import] = ACTIONS(2971), + [anon_sym_cimport] = ACTIONS(2971), + [anon_sym_from] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_print] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_del] = ACTIONS(2971), + [anon_sym_raise] = ACTIONS(2971), + [anon_sym_pass] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_with] = ACTIONS(2971), + [anon_sym_def] = ACTIONS(2971), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_nonlocal] = ACTIONS(2971), + [anon_sym_exec] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_class] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_AT] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_lambda] = ACTIONS(2971), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2973), + [anon_sym_None] = ACTIONS(2971), + [anon_sym_0x] = ACTIONS(2973), + [anon_sym_0X] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2973), + [anon_sym_0O] = ACTIONS(2973), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0B] = ACTIONS(2973), + [aux_sym_integer_token4] = ACTIONS(2971), + [sym_float] = ACTIONS(2973), + [anon_sym_await] = ACTIONS(2971), + [anon_sym_api] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2971), + [anon_sym_include] = ACTIONS(2971), + [anon_sym_DEF] = ACTIONS(2971), + [anon_sym_IF] = ACTIONS(2971), + [anon_sym_cdef] = ACTIONS(2971), + [anon_sym_cpdef] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_ctypedef] = ACTIONS(2971), + [anon_sym_public] = ACTIONS(2971), + [anon_sym_packed] = ACTIONS(2971), + [anon_sym_inline] = ACTIONS(2971), + [anon_sym_readonly] = ACTIONS(2971), + [anon_sym_sizeof] = ACTIONS(2971), + [sym_string_start] = ACTIONS(2973), + }, + [1157] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_expression_list] = STATE(6874), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5133), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1158] = { + [sym_else_clause] = STATE(2123), + [ts_builtin_sym_end] = ACTIONS(2903), + [sym_identifier] = ACTIONS(2901), + [anon_sym_import] = ACTIONS(2901), + [anon_sym_cimport] = ACTIONS(2901), + [anon_sym_from] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_print] = ACTIONS(2901), + [anon_sym_assert] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_del] = ACTIONS(2901), + [anon_sym_raise] = ACTIONS(2901), + [anon_sym_pass] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2901), + [anon_sym_async] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_with] = ACTIONS(2901), + [anon_sym_def] = ACTIONS(2901), + [anon_sym_global] = ACTIONS(2901), + [anon_sym_nonlocal] = ACTIONS(2901), + [anon_sym_exec] = ACTIONS(2901), + [anon_sym_type] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_AT] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_lambda] = ACTIONS(2901), + [anon_sym_yield] = ACTIONS(2901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2903), + [anon_sym_None] = ACTIONS(2901), + [anon_sym_0x] = ACTIONS(2903), + [anon_sym_0X] = ACTIONS(2903), + [anon_sym_0o] = ACTIONS(2903), + [anon_sym_0O] = ACTIONS(2903), + [anon_sym_0b] = ACTIONS(2903), + [anon_sym_0B] = ACTIONS(2903), + [aux_sym_integer_token4] = ACTIONS(2901), + [sym_float] = ACTIONS(2903), + [anon_sym_await] = ACTIONS(2901), + [anon_sym_api] = ACTIONS(2901), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2901), + [anon_sym_include] = ACTIONS(2901), + [anon_sym_DEF] = ACTIONS(2901), + [anon_sym_IF] = ACTIONS(2901), + [anon_sym_cdef] = ACTIONS(2901), + [anon_sym_cpdef] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_ctypedef] = ACTIONS(2901), + [anon_sym_public] = ACTIONS(2901), + [anon_sym_packed] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym_readonly] = ACTIONS(2901), + [anon_sym_sizeof] = ACTIONS(2901), + [sym_string_start] = ACTIONS(2903), + }, + [1159] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5215), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1160] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_expression_list] = STATE(6568), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4926), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1161] = { + [sym_identifier] = ACTIONS(3041), + [anon_sym_SEMI] = ACTIONS(3039), + [anon_sym_import] = ACTIONS(3041), + [anon_sym_cimport] = ACTIONS(3041), + [anon_sym_from] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_print] = ACTIONS(3041), + [anon_sym_assert] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_del] = ACTIONS(3041), + [anon_sym_raise] = ACTIONS(3041), + [anon_sym_pass] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3053), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_async] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_while] = ACTIONS(3041), + [anon_sym_try] = ACTIONS(3041), + [anon_sym_with] = ACTIONS(3041), + [anon_sym_def] = ACTIONS(3041), + [anon_sym_global] = ACTIONS(3041), + [anon_sym_nonlocal] = ACTIONS(3041), + [anon_sym_exec] = ACTIONS(3041), + [anon_sym_type] = ACTIONS(3041), + [anon_sym_class] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_AT] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_not] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3039), + [anon_sym_lambda] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3039), + [anon_sym_None] = ACTIONS(3041), + [anon_sym_0x] = ACTIONS(3039), + [anon_sym_0X] = ACTIONS(3039), + [anon_sym_0o] = ACTIONS(3039), + [anon_sym_0O] = ACTIONS(3039), + [anon_sym_0b] = ACTIONS(3039), + [anon_sym_0B] = ACTIONS(3039), + [aux_sym_integer_token4] = ACTIONS(3041), + [sym_float] = ACTIONS(3039), + [anon_sym_await] = ACTIONS(3041), + [anon_sym_api] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3041), + [anon_sym_include] = ACTIONS(3041), + [anon_sym_DEF] = ACTIONS(3041), + [anon_sym_IF] = ACTIONS(3041), + [anon_sym_cdef] = ACTIONS(3041), + [anon_sym_cpdef] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3041), + [anon_sym_ctypedef] = ACTIONS(3041), + [anon_sym_public] = ACTIONS(3041), + [anon_sym_packed] = ACTIONS(3041), + [anon_sym_inline] = ACTIONS(3041), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3041), + [sym__dedent] = ACTIONS(3039), + [sym_string_start] = ACTIONS(3039), + }, + [1162] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_expression_list] = STATE(6909), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4978), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1163] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1164] = { + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2997), + [anon_sym_cimport] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_print] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_del] = ACTIONS(2997), + [anon_sym_raise] = ACTIONS(2997), + [anon_sym_pass] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_elif] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_async] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_def] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_nonlocal] = ACTIONS(2997), + [anon_sym_exec] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_lambda] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2999), + [anon_sym_None] = ACTIONS(2997), + [anon_sym_0x] = ACTIONS(2999), + [anon_sym_0X] = ACTIONS(2999), + [anon_sym_0o] = ACTIONS(2999), + [anon_sym_0O] = ACTIONS(2999), + [anon_sym_0b] = ACTIONS(2999), + [anon_sym_0B] = ACTIONS(2999), + [aux_sym_integer_token4] = ACTIONS(2997), + [sym_float] = ACTIONS(2999), + [anon_sym_await] = ACTIONS(2997), + [anon_sym_api] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2997), + [anon_sym_include] = ACTIONS(2997), + [anon_sym_DEF] = ACTIONS(2997), + [anon_sym_IF] = ACTIONS(2997), + [anon_sym_cdef] = ACTIONS(2997), + [anon_sym_cpdef] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_ctypedef] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_packed] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_sizeof] = ACTIONS(2997), + [sym_string_start] = ACTIONS(2999), + }, + [1165] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_expression_list] = STATE(6812), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5090), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1166] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_expression_list] = STATE(6395), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4894), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1167] = { + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_print] = ACTIONS(2656), + [anon_sym_assert] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_del] = ACTIONS(2656), + [anon_sym_raise] = ACTIONS(2656), + [anon_sym_pass] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_elif] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_def] = ACTIONS(2656), + [anon_sym_global] = ACTIONS(2656), + [anon_sym_nonlocal] = ACTIONS(2656), + [anon_sym_exec] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_None] = ACTIONS(2656), + [anon_sym_0x] = ACTIONS(2658), + [anon_sym_0X] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2658), + [anon_sym_0O] = ACTIONS(2658), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0B] = ACTIONS(2658), + [aux_sym_integer_token4] = ACTIONS(2656), + [sym_float] = ACTIONS(2658), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_api] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2656), + [anon_sym_include] = ACTIONS(2656), + [anon_sym_DEF] = ACTIONS(2656), + [anon_sym_IF] = ACTIONS(2656), + [anon_sym_cdef] = ACTIONS(2656), + [anon_sym_cpdef] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_ctypedef] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_packed] = ACTIONS(2656), + [anon_sym_inline] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_sizeof] = ACTIONS(2656), + [sym_string_start] = ACTIONS(2658), + }, + [1168] = { + [sym_else_clause] = STATE(2132), + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2905), + [anon_sym_import] = ACTIONS(2905), + [anon_sym_cimport] = ACTIONS(2905), + [anon_sym_from] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_print] = ACTIONS(2905), + [anon_sym_assert] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_del] = ACTIONS(2905), + [anon_sym_raise] = ACTIONS(2905), + [anon_sym_pass] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2905), + [anon_sym_async] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_with] = ACTIONS(2905), + [anon_sym_def] = ACTIONS(2905), + [anon_sym_global] = ACTIONS(2905), + [anon_sym_nonlocal] = ACTIONS(2905), + [anon_sym_exec] = ACTIONS(2905), + [anon_sym_type] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_AT] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_lambda] = ACTIONS(2905), + [anon_sym_yield] = ACTIONS(2905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2907), + [anon_sym_None] = ACTIONS(2905), + [anon_sym_0x] = ACTIONS(2907), + [anon_sym_0X] = ACTIONS(2907), + [anon_sym_0o] = ACTIONS(2907), + [anon_sym_0O] = ACTIONS(2907), + [anon_sym_0b] = ACTIONS(2907), + [anon_sym_0B] = ACTIONS(2907), + [aux_sym_integer_token4] = ACTIONS(2905), + [sym_float] = ACTIONS(2907), + [anon_sym_await] = ACTIONS(2905), + [anon_sym_api] = ACTIONS(2905), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2905), + [anon_sym_include] = ACTIONS(2905), + [anon_sym_DEF] = ACTIONS(2905), + [anon_sym_IF] = ACTIONS(2905), + [anon_sym_cdef] = ACTIONS(2905), + [anon_sym_cpdef] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_ctypedef] = ACTIONS(2905), + [anon_sym_public] = ACTIONS(2905), + [anon_sym_packed] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym_readonly] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2905), + [sym_string_start] = ACTIONS(2907), + }, + [1169] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_expression_list] = STATE(6858), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5092), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1170] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_expression_list] = STATE(6404), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4895), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1171] = { + [sym_else_clause] = STATE(2076), + [sym_identifier] = ACTIONS(2995), + [anon_sym_import] = ACTIONS(2995), + [anon_sym_cimport] = ACTIONS(2995), + [anon_sym_from] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_print] = ACTIONS(2995), + [anon_sym_assert] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_del] = ACTIONS(2995), + [anon_sym_raise] = ACTIONS(2995), + [anon_sym_pass] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2995), + [anon_sym_async] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_with] = ACTIONS(2995), + [anon_sym_def] = ACTIONS(2995), + [anon_sym_global] = ACTIONS(2995), + [anon_sym_nonlocal] = ACTIONS(2995), + [anon_sym_exec] = ACTIONS(2995), + [anon_sym_type] = ACTIONS(2995), + [anon_sym_class] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_AT] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_lambda] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2993), + [anon_sym_None] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2993), + [anon_sym_0X] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2993), + [anon_sym_0O] = ACTIONS(2993), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0B] = ACTIONS(2993), + [aux_sym_integer_token4] = ACTIONS(2995), + [sym_float] = ACTIONS(2993), + [anon_sym_await] = ACTIONS(2995), + [anon_sym_api] = ACTIONS(2995), + [sym_true] = ACTIONS(2995), + [sym_false] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2995), + [anon_sym_include] = ACTIONS(2995), + [anon_sym_DEF] = ACTIONS(2995), + [anon_sym_IF] = ACTIONS(2995), + [anon_sym_cdef] = ACTIONS(2995), + [anon_sym_cpdef] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2995), + [anon_sym_ctypedef] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_packed] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_readonly] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2995), + [sym__dedent] = ACTIONS(2993), + [sym_string_start] = ACTIONS(2993), + }, + [1172] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_expression_list] = STATE(6908), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5095), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1173] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_expression_list] = STATE(6939), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5096), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1174] = { + [sym_else_clause] = STATE(2077), + [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_else] = ACTIONS(2339), + [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), + [anon_sym_0x] = ACTIONS(3003), + [anon_sym_0X] = ACTIONS(3003), + [anon_sym_0o] = ACTIONS(3003), + [anon_sym_0O] = ACTIONS(3003), + [anon_sym_0b] = ACTIONS(3003), + [anon_sym_0B] = ACTIONS(3003), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1175] = { + [ts_builtin_sym_end] = ACTIONS(2883), + [sym_identifier] = ACTIONS(2881), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_cimport] = ACTIONS(2881), + [anon_sym_from] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_print] = ACTIONS(2881), + [anon_sym_assert] = ACTIONS(2881), + [anon_sym_return] = ACTIONS(2881), + [anon_sym_del] = ACTIONS(2881), + [anon_sym_raise] = ACTIONS(2881), + [anon_sym_pass] = ACTIONS(2881), + [anon_sym_break] = ACTIONS(2881), + [anon_sym_continue] = ACTIONS(2881), + [anon_sym_if] = ACTIONS(2881), + [anon_sym_match] = ACTIONS(2881), + [anon_sym_async] = ACTIONS(2881), + [anon_sym_for] = ACTIONS(2881), + [anon_sym_while] = ACTIONS(2881), + [anon_sym_try] = ACTIONS(2881), + [anon_sym_with] = ACTIONS(2881), + [anon_sym_def] = ACTIONS(2881), + [anon_sym_global] = ACTIONS(2881), + [anon_sym_nonlocal] = ACTIONS(2881), + [anon_sym_exec] = ACTIONS(2881), + [anon_sym_type] = ACTIONS(2881), + [anon_sym_class] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_AT] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_lambda] = ACTIONS(2881), + [anon_sym_yield] = ACTIONS(2881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2883), + [anon_sym_None] = ACTIONS(2881), + [anon_sym_0x] = ACTIONS(2883), + [anon_sym_0X] = ACTIONS(2883), + [anon_sym_0o] = ACTIONS(2883), + [anon_sym_0O] = ACTIONS(2883), + [anon_sym_0b] = ACTIONS(2883), + [anon_sym_0B] = ACTIONS(2883), + [aux_sym_integer_token4] = ACTIONS(2881), + [sym_float] = ACTIONS(2883), + [anon_sym_await] = ACTIONS(2881), + [anon_sym_api] = ACTIONS(2881), + [sym_true] = ACTIONS(2881), + [sym_false] = ACTIONS(2881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2881), + [anon_sym_include] = ACTIONS(2881), + [anon_sym_DEF] = ACTIONS(2881), + [anon_sym_IF] = ACTIONS(2881), + [anon_sym_ELIF] = ACTIONS(2881), + [anon_sym_ELSE] = ACTIONS(2881), + [anon_sym_cdef] = ACTIONS(2881), + [anon_sym_cpdef] = ACTIONS(2881), + [anon_sym_new] = ACTIONS(2881), + [anon_sym_ctypedef] = ACTIONS(2881), + [anon_sym_public] = ACTIONS(2881), + [anon_sym_packed] = ACTIONS(2881), + [anon_sym_inline] = ACTIONS(2881), + [anon_sym_readonly] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2881), + [sym_string_start] = ACTIONS(2883), + }, + [1176] = { + [ts_builtin_sym_end] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_cimport] = ACTIONS(2660), + [anon_sym_from] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_print] = ACTIONS(2660), + [anon_sym_assert] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_del] = ACTIONS(2660), + [anon_sym_raise] = ACTIONS(2660), + [anon_sym_pass] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_elif] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_def] = ACTIONS(2660), + [anon_sym_global] = ACTIONS(2660), + [anon_sym_nonlocal] = ACTIONS(2660), + [anon_sym_exec] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_not] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_lambda] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_None] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2662), + [anon_sym_0X] = ACTIONS(2662), + [anon_sym_0o] = ACTIONS(2662), + [anon_sym_0O] = ACTIONS(2662), + [anon_sym_0b] = ACTIONS(2662), + [anon_sym_0B] = ACTIONS(2662), + [aux_sym_integer_token4] = ACTIONS(2660), + [sym_float] = ACTIONS(2662), + [anon_sym_await] = ACTIONS(2660), + [anon_sym_api] = ACTIONS(2660), + [sym_true] = ACTIONS(2660), + [sym_false] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_DEF] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_cdef] = ACTIONS(2660), + [anon_sym_cpdef] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_ctypedef] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_packed] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_readonly] = ACTIONS(2660), + [anon_sym_sizeof] = ACTIONS(2660), + [sym_string_start] = ACTIONS(2662), + }, + [1177] = { + [sym_identifier] = ACTIONS(2985), + [anon_sym_import] = ACTIONS(2985), + [anon_sym_cimport] = ACTIONS(2985), + [anon_sym_from] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_print] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_del] = ACTIONS(2985), + [anon_sym_raise] = ACTIONS(2985), + [anon_sym_pass] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_async] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2985), + [anon_sym_def] = ACTIONS(2985), + [anon_sym_global] = ACTIONS(2985), + [anon_sym_nonlocal] = ACTIONS(2985), + [anon_sym_exec] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_AT] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_lambda] = ACTIONS(2985), + [anon_sym_yield] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_None] = ACTIONS(2985), + [anon_sym_0x] = ACTIONS(2983), + [anon_sym_0X] = ACTIONS(2983), + [anon_sym_0o] = ACTIONS(2983), + [anon_sym_0O] = ACTIONS(2983), + [anon_sym_0b] = ACTIONS(2983), + [anon_sym_0B] = ACTIONS(2983), + [aux_sym_integer_token4] = ACTIONS(2985), + [sym_float] = ACTIONS(2983), + [anon_sym_await] = ACTIONS(2985), + [anon_sym_api] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2985), + [anon_sym_include] = ACTIONS(2985), + [anon_sym_DEF] = ACTIONS(2985), + [anon_sym_IF] = ACTIONS(2985), + [anon_sym_ELIF] = ACTIONS(2985), + [anon_sym_ELSE] = ACTIONS(2985), + [anon_sym_cdef] = ACTIONS(2985), + [anon_sym_cpdef] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_ctypedef] = ACTIONS(2985), + [anon_sym_public] = ACTIONS(2985), + [anon_sym_packed] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym_readonly] = ACTIONS(2985), + [anon_sym_sizeof] = ACTIONS(2985), + [sym__dedent] = ACTIONS(2983), + [sym_string_start] = ACTIONS(2983), + }, + [1178] = { + [sym_identifier] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym_import] = ACTIONS(3055), + [anon_sym_cimport] = ACTIONS(3055), + [anon_sym_from] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_print] = ACTIONS(3055), + [anon_sym_assert] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_del] = ACTIONS(3055), + [anon_sym_raise] = ACTIONS(3055), + [anon_sym_pass] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_async] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_while] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3055), + [anon_sym_with] = ACTIONS(3055), + [anon_sym_def] = ACTIONS(3055), + [anon_sym_global] = ACTIONS(3055), + [anon_sym_nonlocal] = ACTIONS(3055), + [anon_sym_exec] = ACTIONS(3055), + [anon_sym_type] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_AT] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_not] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_lambda] = ACTIONS(3055), + [anon_sym_yield] = ACTIONS(3055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3057), + [anon_sym_None] = ACTIONS(3055), + [anon_sym_0x] = ACTIONS(3057), + [anon_sym_0X] = ACTIONS(3057), + [anon_sym_0o] = ACTIONS(3057), + [anon_sym_0O] = ACTIONS(3057), + [anon_sym_0b] = ACTIONS(3057), + [anon_sym_0B] = ACTIONS(3057), + [aux_sym_integer_token4] = ACTIONS(3055), + [sym_float] = ACTIONS(3057), + [anon_sym_await] = ACTIONS(3055), + [anon_sym_api] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3055), + [anon_sym_include] = ACTIONS(3055), + [anon_sym_DEF] = ACTIONS(3055), + [anon_sym_IF] = ACTIONS(3055), + [anon_sym_cdef] = ACTIONS(3055), + [anon_sym_cpdef] = ACTIONS(3055), + [anon_sym_new] = ACTIONS(3055), + [anon_sym_ctypedef] = ACTIONS(3055), + [anon_sym_public] = ACTIONS(3055), + [anon_sym_packed] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_sizeof] = ACTIONS(3055), + [sym__dedent] = ACTIONS(3057), + [sym_string_start] = ACTIONS(3057), + }, + [1179] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4887), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1180] = { + [ts_builtin_sym_end] = ACTIONS(3059), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_import] = ACTIONS(3061), + [anon_sym_cimport] = ACTIONS(3061), + [anon_sym_from] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_print] = ACTIONS(3061), + [anon_sym_assert] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_del] = ACTIONS(3061), + [anon_sym_raise] = ACTIONS(3061), + [anon_sym_pass] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_def] = ACTIONS(3061), + [anon_sym_global] = ACTIONS(3061), + [anon_sym_nonlocal] = ACTIONS(3061), + [anon_sym_exec] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_class] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_AT] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_not] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_lambda] = ACTIONS(3061), + [anon_sym_yield] = ACTIONS(3061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), + [anon_sym_None] = ACTIONS(3061), + [anon_sym_0x] = ACTIONS(3059), + [anon_sym_0X] = ACTIONS(3059), + [anon_sym_0o] = ACTIONS(3059), + [anon_sym_0O] = ACTIONS(3059), + [anon_sym_0b] = ACTIONS(3059), + [anon_sym_0B] = ACTIONS(3059), + [aux_sym_integer_token4] = ACTIONS(3061), + [sym_float] = ACTIONS(3059), + [anon_sym_await] = ACTIONS(3061), + [anon_sym_api] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3061), + [anon_sym_include] = ACTIONS(3061), + [anon_sym_DEF] = ACTIONS(3061), + [anon_sym_IF] = ACTIONS(3061), + [anon_sym_cdef] = ACTIONS(3061), + [anon_sym_cpdef] = ACTIONS(3061), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_ctypedef] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_packed] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_readonly] = ACTIONS(3061), + [anon_sym_sizeof] = ACTIONS(3061), + [sym_string_start] = ACTIONS(3059), + }, + [1181] = { + [ts_builtin_sym_end] = ACTIONS(3063), + [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_import] = ACTIONS(3065), + [anon_sym_cimport] = ACTIONS(3065), + [anon_sym_from] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3063), + [anon_sym_print] = ACTIONS(3065), + [anon_sym_assert] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_del] = ACTIONS(3065), + [anon_sym_raise] = ACTIONS(3065), + [anon_sym_pass] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_async] = ACTIONS(3065), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_with] = ACTIONS(3065), + [anon_sym_def] = ACTIONS(3065), + [anon_sym_global] = ACTIONS(3065), + [anon_sym_nonlocal] = ACTIONS(3065), + [anon_sym_exec] = ACTIONS(3065), + [anon_sym_type] = ACTIONS(3065), + [anon_sym_class] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_not] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3063), + [anon_sym_lambda] = ACTIONS(3065), + [anon_sym_yield] = ACTIONS(3065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3063), + [anon_sym_None] = ACTIONS(3065), + [anon_sym_0x] = ACTIONS(3063), + [anon_sym_0X] = ACTIONS(3063), + [anon_sym_0o] = ACTIONS(3063), + [anon_sym_0O] = ACTIONS(3063), + [anon_sym_0b] = ACTIONS(3063), + [anon_sym_0B] = ACTIONS(3063), + [aux_sym_integer_token4] = ACTIONS(3065), + [sym_float] = ACTIONS(3063), + [anon_sym_await] = ACTIONS(3065), + [anon_sym_api] = ACTIONS(3065), + [sym_true] = ACTIONS(3065), + [sym_false] = ACTIONS(3065), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3065), + [anon_sym_include] = ACTIONS(3065), + [anon_sym_DEF] = ACTIONS(3065), + [anon_sym_IF] = ACTIONS(3065), + [anon_sym_cdef] = ACTIONS(3065), + [anon_sym_cpdef] = ACTIONS(3065), + [anon_sym_new] = ACTIONS(3065), + [anon_sym_ctypedef] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_packed] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_readonly] = ACTIONS(3065), + [anon_sym_sizeof] = ACTIONS(3065), + [sym_string_start] = ACTIONS(3063), + }, + [1182] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2907), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1183] = { + [ts_builtin_sym_end] = ACTIONS(3073), + [sym_identifier] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_import] = ACTIONS(3075), + [anon_sym_cimport] = ACTIONS(3075), + [anon_sym_from] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(3075), + [anon_sym_assert] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_del] = ACTIONS(3075), + [anon_sym_raise] = ACTIONS(3075), + [anon_sym_pass] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_match] = ACTIONS(3075), + [anon_sym_async] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_with] = ACTIONS(3075), + [anon_sym_def] = ACTIONS(3075), + [anon_sym_global] = ACTIONS(3075), + [anon_sym_nonlocal] = ACTIONS(3075), + [anon_sym_exec] = ACTIONS(3075), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_AT] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_lambda] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3073), + [anon_sym_None] = ACTIONS(3075), + [anon_sym_0x] = ACTIONS(3073), + [anon_sym_0X] = ACTIONS(3073), + [anon_sym_0o] = ACTIONS(3073), + [anon_sym_0O] = ACTIONS(3073), + [anon_sym_0b] = ACTIONS(3073), + [anon_sym_0B] = ACTIONS(3073), + [aux_sym_integer_token4] = ACTIONS(3075), + [sym_float] = ACTIONS(3073), + [anon_sym_await] = ACTIONS(3075), + [anon_sym_api] = ACTIONS(3075), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3075), + [anon_sym_include] = ACTIONS(3075), + [anon_sym_DEF] = ACTIONS(3075), + [anon_sym_IF] = ACTIONS(3075), + [anon_sym_cdef] = ACTIONS(3075), + [anon_sym_cpdef] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_ctypedef] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_packed] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_sizeof] = ACTIONS(3075), + [sym_string_start] = ACTIONS(3073), + }, + [1184] = { + [ts_builtin_sym_end] = ACTIONS(3077), + [sym_identifier] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_cimport] = ACTIONS(3079), + [anon_sym_from] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_print] = ACTIONS(3079), + [anon_sym_assert] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_del] = ACTIONS(3079), + [anon_sym_raise] = ACTIONS(3079), + [anon_sym_pass] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_match] = ACTIONS(3079), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3079), + [anon_sym_def] = ACTIONS(3079), + [anon_sym_global] = ACTIONS(3079), + [anon_sym_nonlocal] = ACTIONS(3079), + [anon_sym_exec] = ACTIONS(3079), + [anon_sym_type] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3077), + [anon_sym_lambda] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3077), + [anon_sym_None] = ACTIONS(3079), + [anon_sym_0x] = ACTIONS(3077), + [anon_sym_0X] = ACTIONS(3077), + [anon_sym_0o] = ACTIONS(3077), + [anon_sym_0O] = ACTIONS(3077), + [anon_sym_0b] = ACTIONS(3077), + [anon_sym_0B] = ACTIONS(3077), + [aux_sym_integer_token4] = ACTIONS(3079), + [sym_float] = ACTIONS(3077), + [anon_sym_await] = ACTIONS(3079), + [anon_sym_api] = ACTIONS(3079), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3079), + [anon_sym_include] = ACTIONS(3079), + [anon_sym_DEF] = ACTIONS(3079), + [anon_sym_IF] = ACTIONS(3079), + [anon_sym_cdef] = ACTIONS(3079), + [anon_sym_cpdef] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_ctypedef] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_packed] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_sizeof] = ACTIONS(3079), + [sym_string_start] = ACTIONS(3077), + }, + [1185] = { + [sym_identifier] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3083), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_cimport] = ACTIONS(3081), + [anon_sym_from] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3083), + [anon_sym_print] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_del] = ACTIONS(3081), + [anon_sym_raise] = ACTIONS(3081), + [anon_sym_pass] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_def] = ACTIONS(3081), + [anon_sym_global] = ACTIONS(3081), + [anon_sym_nonlocal] = ACTIONS(3081), + [anon_sym_exec] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_AT] = ACTIONS(3083), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_TILDE] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_lambda] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), + [anon_sym_None] = ACTIONS(3081), + [anon_sym_0x] = ACTIONS(3083), + [anon_sym_0X] = ACTIONS(3083), + [anon_sym_0o] = ACTIONS(3083), + [anon_sym_0O] = ACTIONS(3083), + [anon_sym_0b] = ACTIONS(3083), + [anon_sym_0B] = ACTIONS(3083), + [aux_sym_integer_token4] = ACTIONS(3081), + [sym_float] = ACTIONS(3083), + [anon_sym_await] = ACTIONS(3081), + [anon_sym_api] = ACTIONS(3081), + [sym_true] = ACTIONS(3081), + [sym_false] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3081), + [anon_sym_include] = ACTIONS(3081), + [anon_sym_DEF] = ACTIONS(3081), + [anon_sym_IF] = ACTIONS(3081), + [anon_sym_cdef] = ACTIONS(3081), + [anon_sym_cpdef] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_ctypedef] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_packed] = ACTIONS(3081), + [anon_sym_inline] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3081), + [sym__dedent] = ACTIONS(3083), + [sym_string_start] = ACTIONS(3083), + }, + [1186] = { + [ts_builtin_sym_end] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3087), + [anon_sym_cimport] = ACTIONS(3087), + [anon_sym_from] = ACTIONS(3087), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_print] = ACTIONS(3087), + [anon_sym_assert] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_del] = ACTIONS(3087), + [anon_sym_raise] = ACTIONS(3087), + [anon_sym_pass] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_match] = ACTIONS(3087), + [anon_sym_async] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_with] = ACTIONS(3087), + [anon_sym_def] = ACTIONS(3087), + [anon_sym_global] = ACTIONS(3087), + [anon_sym_nonlocal] = ACTIONS(3087), + [anon_sym_exec] = ACTIONS(3087), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_AT] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_lambda] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [anon_sym_None] = ACTIONS(3087), + [anon_sym_0x] = ACTIONS(3085), + [anon_sym_0X] = ACTIONS(3085), + [anon_sym_0o] = ACTIONS(3085), + [anon_sym_0O] = ACTIONS(3085), + [anon_sym_0b] = ACTIONS(3085), + [anon_sym_0B] = ACTIONS(3085), + [aux_sym_integer_token4] = ACTIONS(3087), + [sym_float] = ACTIONS(3085), + [anon_sym_await] = ACTIONS(3087), + [anon_sym_api] = ACTIONS(3087), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3087), + [anon_sym_include] = ACTIONS(3087), + [anon_sym_DEF] = ACTIONS(3087), + [anon_sym_IF] = ACTIONS(3087), + [anon_sym_cdef] = ACTIONS(3087), + [anon_sym_cpdef] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_ctypedef] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_packed] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3087), + [sym_string_start] = ACTIONS(3085), + }, + [1187] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5266), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1188] = { + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_import] = ACTIONS(3091), + [anon_sym_cimport] = ACTIONS(3091), + [anon_sym_from] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [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_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(3089), + [anon_sym_AT] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_lambda] = ACTIONS(3091), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_None] = ACTIONS(3091), + [anon_sym_0x] = ACTIONS(3089), + [anon_sym_0X] = ACTIONS(3089), + [anon_sym_0o] = ACTIONS(3089), + [anon_sym_0O] = ACTIONS(3089), + [anon_sym_0b] = ACTIONS(3089), + [anon_sym_0B] = ACTIONS(3089), + [aux_sym_integer_token4] = ACTIONS(3091), + [sym_float] = ACTIONS(3089), + [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_IF] = 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(3089), + }, + [1189] = { + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_import] = ACTIONS(3095), + [anon_sym_cimport] = ACTIONS(3095), + [anon_sym_from] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_print] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_del] = ACTIONS(3095), + [anon_sym_raise] = ACTIONS(3095), + [anon_sym_pass] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_async] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_with] = ACTIONS(3095), + [anon_sym_def] = ACTIONS(3095), + [anon_sym_global] = ACTIONS(3095), + [anon_sym_nonlocal] = ACTIONS(3095), + [anon_sym_exec] = ACTIONS(3095), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [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(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_lambda] = ACTIONS(3095), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [anon_sym_None] = ACTIONS(3095), + [anon_sym_0x] = ACTIONS(3093), + [anon_sym_0X] = ACTIONS(3093), + [anon_sym_0o] = ACTIONS(3093), + [anon_sym_0O] = ACTIONS(3093), + [anon_sym_0b] = ACTIONS(3093), + [anon_sym_0B] = ACTIONS(3093), + [aux_sym_integer_token4] = ACTIONS(3095), + [sym_float] = ACTIONS(3093), + [anon_sym_await] = ACTIONS(3095), + [anon_sym_api] = ACTIONS(3095), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3095), + [anon_sym_include] = ACTIONS(3095), + [anon_sym_DEF] = ACTIONS(3095), + [anon_sym_IF] = ACTIONS(3095), + [anon_sym_cdef] = ACTIONS(3095), + [anon_sym_cpdef] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_ctypedef] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_packed] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym_readonly] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3095), + [sym_string_start] = ACTIONS(3093), + }, + [1190] = { + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_import] = ACTIONS(3099), + [anon_sym_cimport] = ACTIONS(3099), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_print] = ACTIONS(3099), + [anon_sym_assert] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_del] = ACTIONS(3099), + [anon_sym_raise] = ACTIONS(3099), + [anon_sym_pass] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_match] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_with] = ACTIONS(3099), + [anon_sym_def] = ACTIONS(3099), + [anon_sym_global] = ACTIONS(3099), + [anon_sym_nonlocal] = ACTIONS(3099), + [anon_sym_exec] = ACTIONS(3099), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_AT] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_lambda] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [anon_sym_None] = ACTIONS(3099), + [anon_sym_0x] = ACTIONS(3097), + [anon_sym_0X] = ACTIONS(3097), + [anon_sym_0o] = ACTIONS(3097), + [anon_sym_0O] = ACTIONS(3097), + [anon_sym_0b] = ACTIONS(3097), + [anon_sym_0B] = ACTIONS(3097), + [aux_sym_integer_token4] = ACTIONS(3099), + [sym_float] = ACTIONS(3097), + [anon_sym_await] = ACTIONS(3099), + [anon_sym_api] = ACTIONS(3099), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3099), + [anon_sym_include] = ACTIONS(3099), + [anon_sym_DEF] = ACTIONS(3099), + [anon_sym_IF] = ACTIONS(3099), + [anon_sym_cdef] = ACTIONS(3099), + [anon_sym_cpdef] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_ctypedef] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_packed] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3099), + [sym_string_start] = ACTIONS(3097), + }, + [1191] = { + [ts_builtin_sym_end] = ACTIONS(3101), + [sym_identifier] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3103), + [anon_sym_cimport] = ACTIONS(3103), + [anon_sym_from] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_print] = ACTIONS(3103), + [anon_sym_assert] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_del] = ACTIONS(3103), + [anon_sym_raise] = ACTIONS(3103), + [anon_sym_pass] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_match] = ACTIONS(3103), + [anon_sym_async] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_with] = ACTIONS(3103), + [anon_sym_def] = ACTIONS(3103), + [anon_sym_global] = ACTIONS(3103), + [anon_sym_nonlocal] = ACTIONS(3103), + [anon_sym_exec] = ACTIONS(3103), + [anon_sym_type] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_AT] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_lambda] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [anon_sym_None] = ACTIONS(3103), + [anon_sym_0x] = ACTIONS(3101), + [anon_sym_0X] = ACTIONS(3101), + [anon_sym_0o] = ACTIONS(3101), + [anon_sym_0O] = ACTIONS(3101), + [anon_sym_0b] = ACTIONS(3101), + [anon_sym_0B] = ACTIONS(3101), + [aux_sym_integer_token4] = ACTIONS(3103), + [sym_float] = ACTIONS(3101), + [anon_sym_await] = ACTIONS(3103), + [anon_sym_api] = ACTIONS(3103), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3103), + [anon_sym_include] = ACTIONS(3103), + [anon_sym_DEF] = ACTIONS(3103), + [anon_sym_IF] = ACTIONS(3103), + [anon_sym_cdef] = ACTIONS(3103), + [anon_sym_cpdef] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_ctypedef] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_packed] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_readonly] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3103), + [sym_string_start] = ACTIONS(3101), + }, + [1192] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5265), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1193] = { + [ts_builtin_sym_end] = ACTIONS(3107), + [sym_identifier] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_import] = ACTIONS(3109), + [anon_sym_cimport] = ACTIONS(3109), + [anon_sym_from] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_print] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_del] = ACTIONS(3109), + [anon_sym_raise] = ACTIONS(3109), + [anon_sym_pass] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_async] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_with] = ACTIONS(3109), + [anon_sym_def] = ACTIONS(3109), + [anon_sym_global] = ACTIONS(3109), + [anon_sym_nonlocal] = ACTIONS(3109), + [anon_sym_exec] = ACTIONS(3109), + [anon_sym_type] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_lambda] = ACTIONS(3109), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), + [anon_sym_None] = ACTIONS(3109), + [anon_sym_0x] = ACTIONS(3107), + [anon_sym_0X] = ACTIONS(3107), + [anon_sym_0o] = ACTIONS(3107), + [anon_sym_0O] = ACTIONS(3107), + [anon_sym_0b] = ACTIONS(3107), + [anon_sym_0B] = ACTIONS(3107), + [aux_sym_integer_token4] = ACTIONS(3109), + [sym_float] = ACTIONS(3107), + [anon_sym_await] = ACTIONS(3109), + [anon_sym_api] = ACTIONS(3109), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3109), + [anon_sym_include] = ACTIONS(3109), + [anon_sym_DEF] = ACTIONS(3109), + [anon_sym_IF] = ACTIONS(3109), + [anon_sym_cdef] = ACTIONS(3109), + [anon_sym_cpdef] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_ctypedef] = ACTIONS(3109), + [anon_sym_public] = ACTIONS(3109), + [anon_sym_packed] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3109), + [sym_string_start] = ACTIONS(3107), + }, + [1194] = { + [ts_builtin_sym_end] = ACTIONS(3111), + [sym_identifier] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_import] = ACTIONS(3113), + [anon_sym_cimport] = ACTIONS(3113), + [anon_sym_from] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_print] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_del] = ACTIONS(3113), + [anon_sym_raise] = ACTIONS(3113), + [anon_sym_pass] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_async] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_with] = ACTIONS(3113), + [anon_sym_def] = ACTIONS(3113), + [anon_sym_global] = ACTIONS(3113), + [anon_sym_nonlocal] = ACTIONS(3113), + [anon_sym_exec] = ACTIONS(3113), + [anon_sym_type] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_AT] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_lambda] = ACTIONS(3113), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), + [anon_sym_None] = ACTIONS(3113), + [anon_sym_0x] = ACTIONS(3111), + [anon_sym_0X] = ACTIONS(3111), + [anon_sym_0o] = ACTIONS(3111), + [anon_sym_0O] = ACTIONS(3111), + [anon_sym_0b] = ACTIONS(3111), + [anon_sym_0B] = ACTIONS(3111), + [aux_sym_integer_token4] = ACTIONS(3113), + [sym_float] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3113), + [anon_sym_api] = ACTIONS(3113), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3113), + [anon_sym_include] = ACTIONS(3113), + [anon_sym_DEF] = ACTIONS(3113), + [anon_sym_IF] = ACTIONS(3113), + [anon_sym_cdef] = ACTIONS(3113), + [anon_sym_cpdef] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_ctypedef] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_packed] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_readonly] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(3113), + [sym_string_start] = ACTIONS(3111), + }, + [1195] = { + [ts_builtin_sym_end] = ACTIONS(3115), + [sym_identifier] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_import] = ACTIONS(3117), + [anon_sym_cimport] = ACTIONS(3117), + [anon_sym_from] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_print] = ACTIONS(3117), + [anon_sym_assert] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_del] = ACTIONS(3117), + [anon_sym_raise] = ACTIONS(3117), + [anon_sym_pass] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_match] = ACTIONS(3117), + [anon_sym_async] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_with] = ACTIONS(3117), + [anon_sym_def] = ACTIONS(3117), + [anon_sym_global] = ACTIONS(3117), + [anon_sym_nonlocal] = ACTIONS(3117), + [anon_sym_exec] = ACTIONS(3117), + [anon_sym_type] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_lambda] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), + [anon_sym_None] = ACTIONS(3117), + [anon_sym_0x] = ACTIONS(3115), + [anon_sym_0X] = ACTIONS(3115), + [anon_sym_0o] = ACTIONS(3115), + [anon_sym_0O] = ACTIONS(3115), + [anon_sym_0b] = ACTIONS(3115), + [anon_sym_0B] = ACTIONS(3115), + [aux_sym_integer_token4] = ACTIONS(3117), + [sym_float] = ACTIONS(3115), + [anon_sym_await] = ACTIONS(3117), + [anon_sym_api] = ACTIONS(3117), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3117), + [anon_sym_include] = ACTIONS(3117), + [anon_sym_DEF] = ACTIONS(3117), + [anon_sym_IF] = ACTIONS(3117), + [anon_sym_cdef] = ACTIONS(3117), + [anon_sym_cpdef] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_ctypedef] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_packed] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_readonly] = ACTIONS(3117), + [anon_sym_sizeof] = ACTIONS(3117), + [sym_string_start] = ACTIONS(3115), + }, + [1196] = { + [sym_identifier] = ACTIONS(3119), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym_import] = ACTIONS(3119), + [anon_sym_cimport] = ACTIONS(3119), + [anon_sym_from] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3121), + [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_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_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(3121), + [anon_sym_AT] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_lambda] = ACTIONS(3119), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [anon_sym_None] = ACTIONS(3119), + [anon_sym_0x] = ACTIONS(3121), + [anon_sym_0X] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0O] = ACTIONS(3121), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0B] = ACTIONS(3121), + [aux_sym_integer_token4] = ACTIONS(3119), + [sym_float] = ACTIONS(3121), + [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_IF] = 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(3121), + [sym_string_start] = ACTIONS(3121), + }, + [1197] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4663), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1198] = { + [ts_builtin_sym_end] = ACTIONS(3123), + [sym_identifier] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3125), + [anon_sym_cimport] = ACTIONS(3125), + [anon_sym_from] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_STAR] = ACTIONS(3123), + [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_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(3123), + [anon_sym_AT] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_not] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_lambda] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), + [anon_sym_None] = ACTIONS(3125), + [anon_sym_0x] = ACTIONS(3123), + [anon_sym_0X] = ACTIONS(3123), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0O] = ACTIONS(3123), + [anon_sym_0b] = ACTIONS(3123), + [anon_sym_0B] = ACTIONS(3123), + [aux_sym_integer_token4] = ACTIONS(3125), + [sym_float] = ACTIONS(3123), + [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(3123), + }, + [1199] = { + [ts_builtin_sym_end] = ACTIONS(3127), + [sym_identifier] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_cimport] = ACTIONS(3129), + [anon_sym_from] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_STAR] = ACTIONS(3127), + [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_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_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(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(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3127), + [anon_sym_lambda] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), + [anon_sym_None] = ACTIONS(3129), + [anon_sym_0x] = ACTIONS(3127), + [anon_sym_0X] = ACTIONS(3127), + [anon_sym_0o] = ACTIONS(3127), + [anon_sym_0O] = ACTIONS(3127), + [anon_sym_0b] = ACTIONS(3127), + [anon_sym_0B] = ACTIONS(3127), + [aux_sym_integer_token4] = ACTIONS(3129), + [sym_float] = ACTIONS(3127), + [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_IF] = 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(3127), + }, + [1200] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5268), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1201] = { + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_import] = ACTIONS(3133), + [anon_sym_cimport] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_print] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_del] = ACTIONS(3133), + [anon_sym_raise] = ACTIONS(3133), + [anon_sym_pass] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_def] = ACTIONS(3133), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_nonlocal] = ACTIONS(3133), + [anon_sym_exec] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [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(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_lambda] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), + [anon_sym_None] = ACTIONS(3133), + [anon_sym_0x] = ACTIONS(3131), + [anon_sym_0X] = ACTIONS(3131), + [anon_sym_0o] = ACTIONS(3131), + [anon_sym_0O] = ACTIONS(3131), + [anon_sym_0b] = ACTIONS(3131), + [anon_sym_0B] = ACTIONS(3131), + [aux_sym_integer_token4] = ACTIONS(3133), + [sym_float] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_api] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_include] = ACTIONS(3133), + [anon_sym_DEF] = ACTIONS(3133), + [anon_sym_IF] = ACTIONS(3133), + [anon_sym_cdef] = ACTIONS(3133), + [anon_sym_cpdef] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_ctypedef] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_packed] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [sym_string_start] = ACTIONS(3131), + }, + [1202] = { + [ts_builtin_sym_end] = ACTIONS(3135), + [sym_identifier] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_cimport] = ACTIONS(3137), + [anon_sym_from] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_STAR] = ACTIONS(3135), + [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_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_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(3135), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_not] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3135), + [anon_sym_lambda] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), + [anon_sym_None] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3135), + [anon_sym_0X] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3135), + [anon_sym_0O] = ACTIONS(3135), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0B] = ACTIONS(3135), + [aux_sym_integer_token4] = ACTIONS(3137), + [sym_float] = ACTIONS(3135), + [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_IF] = 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(3135), + }, + [1203] = { + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_cimport] = ACTIONS(3141), + [anon_sym_from] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_print] = ACTIONS(3141), + [anon_sym_assert] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_del] = ACTIONS(3141), + [anon_sym_raise] = ACTIONS(3141), + [anon_sym_pass] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_def] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_nonlocal] = ACTIONS(3141), + [anon_sym_exec] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [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(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_lambda] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), + [anon_sym_None] = ACTIONS(3141), + [anon_sym_0x] = ACTIONS(3139), + [anon_sym_0X] = ACTIONS(3139), + [anon_sym_0o] = ACTIONS(3139), + [anon_sym_0O] = ACTIONS(3139), + [anon_sym_0b] = ACTIONS(3139), + [anon_sym_0B] = ACTIONS(3139), + [aux_sym_integer_token4] = ACTIONS(3141), + [sym_float] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_api] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3141), + [anon_sym_include] = ACTIONS(3141), + [anon_sym_DEF] = ACTIONS(3141), + [anon_sym_IF] = ACTIONS(3141), + [anon_sym_cdef] = ACTIONS(3141), + [anon_sym_cpdef] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_ctypedef] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_packed] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_sizeof] = ACTIONS(3141), + [sym_string_start] = ACTIONS(3139), + }, + [1204] = { + [ts_builtin_sym_end] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_cimport] = ACTIONS(3145), + [anon_sym_from] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_print] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_del] = ACTIONS(3145), + [anon_sym_raise] = ACTIONS(3145), + [anon_sym_pass] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_def] = ACTIONS(3145), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_nonlocal] = ACTIONS(3145), + [anon_sym_exec] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_AT] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_not] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3143), + [anon_sym_lambda] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3143), + [anon_sym_None] = ACTIONS(3145), + [anon_sym_0x] = ACTIONS(3143), + [anon_sym_0X] = ACTIONS(3143), + [anon_sym_0o] = ACTIONS(3143), + [anon_sym_0O] = ACTIONS(3143), + [anon_sym_0b] = ACTIONS(3143), + [anon_sym_0B] = ACTIONS(3143), + [aux_sym_integer_token4] = ACTIONS(3145), + [sym_float] = ACTIONS(3143), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_api] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3145), + [anon_sym_include] = ACTIONS(3145), + [anon_sym_DEF] = ACTIONS(3145), + [anon_sym_IF] = ACTIONS(3145), + [anon_sym_cdef] = ACTIONS(3145), + [anon_sym_cpdef] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_ctypedef] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_packed] = ACTIONS(3145), + [anon_sym_inline] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3145), + [sym_string_start] = ACTIONS(3143), + }, + [1205] = { + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_cimport] = ACTIONS(3149), + [anon_sym_from] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_print] = ACTIONS(3149), + [anon_sym_assert] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_del] = ACTIONS(3149), + [anon_sym_raise] = ACTIONS(3149), + [anon_sym_pass] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3149), + [anon_sym_def] = ACTIONS(3149), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_nonlocal] = ACTIONS(3149), + [anon_sym_exec] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_lambda] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), + [anon_sym_None] = ACTIONS(3149), + [anon_sym_0x] = ACTIONS(3147), + [anon_sym_0X] = ACTIONS(3147), + [anon_sym_0o] = ACTIONS(3147), + [anon_sym_0O] = ACTIONS(3147), + [anon_sym_0b] = ACTIONS(3147), + [anon_sym_0B] = ACTIONS(3147), + [aux_sym_integer_token4] = ACTIONS(3149), + [sym_float] = ACTIONS(3147), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_api] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3149), + [anon_sym_include] = ACTIONS(3149), + [anon_sym_DEF] = ACTIONS(3149), + [anon_sym_IF] = ACTIONS(3149), + [anon_sym_cdef] = ACTIONS(3149), + [anon_sym_cpdef] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_ctypedef] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_packed] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3149), + [sym_string_start] = ACTIONS(3147), + }, + [1206] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5236), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1207] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5108), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1208] = { + [ts_builtin_sym_end] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3151), + [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_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_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), + [anon_sym_0x] = ACTIONS(3151), + [anon_sym_0X] = ACTIONS(3151), + [anon_sym_0o] = ACTIONS(3151), + [anon_sym_0O] = ACTIONS(3151), + [anon_sym_0b] = ACTIONS(3151), + [anon_sym_0B] = ACTIONS(3151), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1209] = { + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_import] = ACTIONS(3133), + [anon_sym_cimport] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_print] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_del] = ACTIONS(3133), + [anon_sym_raise] = ACTIONS(3133), + [anon_sym_pass] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_def] = ACTIONS(3133), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_nonlocal] = ACTIONS(3133), + [anon_sym_exec] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [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(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_lambda] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), + [anon_sym_None] = ACTIONS(3133), + [anon_sym_0x] = ACTIONS(3131), + [anon_sym_0X] = ACTIONS(3131), + [anon_sym_0o] = ACTIONS(3131), + [anon_sym_0O] = ACTIONS(3131), + [anon_sym_0b] = ACTIONS(3131), + [anon_sym_0B] = ACTIONS(3131), + [aux_sym_integer_token4] = ACTIONS(3133), + [sym_float] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_api] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_include] = ACTIONS(3133), + [anon_sym_DEF] = ACTIONS(3133), + [anon_sym_IF] = ACTIONS(3133), + [anon_sym_cdef] = ACTIONS(3133), + [anon_sym_cpdef] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_ctypedef] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_packed] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [sym_string_start] = ACTIONS(3131), + }, + [1210] = { + [ts_builtin_sym_end] = ACTIONS(3155), + [sym_identifier] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_cimport] = ACTIONS(3157), + [anon_sym_from] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_print] = ACTIONS(3157), + [anon_sym_assert] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_del] = ACTIONS(3157), + [anon_sym_raise] = ACTIONS(3157), + [anon_sym_pass] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_def] = ACTIONS(3157), + [anon_sym_global] = ACTIONS(3157), + [anon_sym_nonlocal] = ACTIONS(3157), + [anon_sym_exec] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_lambda] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), + [anon_sym_None] = ACTIONS(3157), + [anon_sym_0x] = ACTIONS(3155), + [anon_sym_0X] = ACTIONS(3155), + [anon_sym_0o] = ACTIONS(3155), + [anon_sym_0O] = ACTIONS(3155), + [anon_sym_0b] = ACTIONS(3155), + [anon_sym_0B] = ACTIONS(3155), + [aux_sym_integer_token4] = ACTIONS(3157), + [sym_float] = ACTIONS(3155), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_api] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3157), + [anon_sym_include] = ACTIONS(3157), + [anon_sym_DEF] = ACTIONS(3157), + [anon_sym_IF] = ACTIONS(3157), + [anon_sym_cdef] = ACTIONS(3157), + [anon_sym_cpdef] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_ctypedef] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_packed] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_sizeof] = ACTIONS(3157), + [sym_string_start] = ACTIONS(3155), + }, + [1211] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5109), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1212] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5116), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1213] = { + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_cimport] = ACTIONS(3141), + [anon_sym_from] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_print] = ACTIONS(3141), + [anon_sym_assert] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_del] = ACTIONS(3141), + [anon_sym_raise] = ACTIONS(3141), + [anon_sym_pass] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_def] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_nonlocal] = ACTIONS(3141), + [anon_sym_exec] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [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(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_lambda] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), + [anon_sym_None] = ACTIONS(3141), + [anon_sym_0x] = ACTIONS(3139), + [anon_sym_0X] = ACTIONS(3139), + [anon_sym_0o] = ACTIONS(3139), + [anon_sym_0O] = ACTIONS(3139), + [anon_sym_0b] = ACTIONS(3139), + [anon_sym_0B] = ACTIONS(3139), + [aux_sym_integer_token4] = ACTIONS(3141), + [sym_float] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_api] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3141), + [anon_sym_include] = ACTIONS(3141), + [anon_sym_DEF] = ACTIONS(3141), + [anon_sym_IF] = ACTIONS(3141), + [anon_sym_cdef] = ACTIONS(3141), + [anon_sym_cpdef] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_ctypedef] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_packed] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_sizeof] = ACTIONS(3141), + [sym_string_start] = ACTIONS(3139), + }, + [1214] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1215] = { + [sym_identifier] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_import] = ACTIONS(3091), + [anon_sym_cimport] = ACTIONS(3091), + [anon_sym_from] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [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_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(3089), + [anon_sym_AT] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_lambda] = ACTIONS(3091), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_None] = ACTIONS(3091), + [anon_sym_0x] = ACTIONS(3089), + [anon_sym_0X] = ACTIONS(3089), + [anon_sym_0o] = ACTIONS(3089), + [anon_sym_0O] = ACTIONS(3089), + [anon_sym_0b] = ACTIONS(3089), + [anon_sym_0B] = ACTIONS(3089), + [aux_sym_integer_token4] = ACTIONS(3091), + [sym_float] = ACTIONS(3089), + [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_IF] = 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(3089), + [sym_string_start] = ACTIONS(3089), + }, + [1216] = { + [ts_builtin_sym_end] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3163), + [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_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_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), + [anon_sym_0x] = ACTIONS(3163), + [anon_sym_0X] = ACTIONS(3163), + [anon_sym_0o] = ACTIONS(3163), + [anon_sym_0O] = ACTIONS(3163), + [anon_sym_0b] = ACTIONS(3163), + [anon_sym_0B] = ACTIONS(3163), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1217] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5117), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1218] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5121), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1219] = { + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_import] = ACTIONS(3133), + [anon_sym_cimport] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_print] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_del] = ACTIONS(3133), + [anon_sym_raise] = ACTIONS(3133), + [anon_sym_pass] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_def] = ACTIONS(3133), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_nonlocal] = ACTIONS(3133), + [anon_sym_exec] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [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(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_lambda] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), + [anon_sym_None] = ACTIONS(3133), + [anon_sym_0x] = ACTIONS(3131), + [anon_sym_0X] = ACTIONS(3131), + [anon_sym_0o] = ACTIONS(3131), + [anon_sym_0O] = ACTIONS(3131), + [anon_sym_0b] = ACTIONS(3131), + [anon_sym_0B] = ACTIONS(3131), + [aux_sym_integer_token4] = ACTIONS(3133), + [sym_float] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_api] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_include] = ACTIONS(3133), + [anon_sym_DEF] = ACTIONS(3133), + [anon_sym_IF] = ACTIONS(3133), + [anon_sym_cdef] = ACTIONS(3133), + [anon_sym_cpdef] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_ctypedef] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_packed] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [sym_string_start] = ACTIONS(3131), + }, + [1220] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4893), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1221] = { + [ts_builtin_sym_end] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3167), + [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_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_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), + [anon_sym_0x] = ACTIONS(3167), + [anon_sym_0X] = ACTIONS(3167), + [anon_sym_0o] = ACTIONS(3167), + [anon_sym_0O] = ACTIONS(3167), + [anon_sym_0b] = ACTIONS(3167), + [anon_sym_0B] = ACTIONS(3167), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1222] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5522), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1223] = { + [sym_identifier] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_import] = ACTIONS(3099), + [anon_sym_cimport] = ACTIONS(3099), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_print] = ACTIONS(3099), + [anon_sym_assert] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_del] = ACTIONS(3099), + [anon_sym_raise] = ACTIONS(3099), + [anon_sym_pass] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_match] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_with] = ACTIONS(3099), + [anon_sym_def] = ACTIONS(3099), + [anon_sym_global] = ACTIONS(3099), + [anon_sym_nonlocal] = ACTIONS(3099), + [anon_sym_exec] = ACTIONS(3099), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_AT] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_lambda] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [anon_sym_None] = ACTIONS(3099), + [anon_sym_0x] = ACTIONS(3097), + [anon_sym_0X] = ACTIONS(3097), + [anon_sym_0o] = ACTIONS(3097), + [anon_sym_0O] = ACTIONS(3097), + [anon_sym_0b] = ACTIONS(3097), + [anon_sym_0B] = ACTIONS(3097), + [aux_sym_integer_token4] = ACTIONS(3099), + [sym_float] = ACTIONS(3097), + [anon_sym_await] = ACTIONS(3099), + [anon_sym_api] = ACTIONS(3099), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3099), + [anon_sym_include] = ACTIONS(3099), + [anon_sym_DEF] = ACTIONS(3099), + [anon_sym_IF] = ACTIONS(3099), + [anon_sym_cdef] = ACTIONS(3099), + [anon_sym_cpdef] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_ctypedef] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_packed] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3099), + [sym__dedent] = ACTIONS(3097), + [sym_string_start] = ACTIONS(3097), + }, + [1224] = { + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3181), + [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_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_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), + [anon_sym_0x] = ACTIONS(3181), + [anon_sym_0X] = ACTIONS(3181), + [anon_sym_0o] = ACTIONS(3181), + [anon_sym_0O] = ACTIONS(3181), + [anon_sym_0b] = ACTIONS(3181), + [anon_sym_0B] = ACTIONS(3181), + [aux_sym_integer_token4] = 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), + }, + [1225] = { + [ts_builtin_sym_end] = ACTIONS(3185), + [sym_identifier] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_cimport] = ACTIONS(3187), + [anon_sym_from] = ACTIONS(3187), + [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), + [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_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_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(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(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(3185), + [anon_sym_None] = ACTIONS(3187), + [anon_sym_0x] = ACTIONS(3185), + [anon_sym_0X] = ACTIONS(3185), + [anon_sym_0o] = ACTIONS(3185), + [anon_sym_0O] = ACTIONS(3185), + [anon_sym_0b] = ACTIONS(3185), + [anon_sym_0B] = ACTIONS(3185), + [aux_sym_integer_token4] = ACTIONS(3187), + [sym_float] = ACTIONS(3185), + [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_IF] = 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(3185), + }, + [1226] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5039), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1227] = { + [ts_builtin_sym_end] = ACTIONS(3189), + [sym_identifier] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3189), + [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_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_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), + [anon_sym_0x] = ACTIONS(3189), + [anon_sym_0X] = ACTIONS(3189), + [anon_sym_0o] = ACTIONS(3189), + [anon_sym_0O] = ACTIONS(3189), + [anon_sym_0b] = ACTIONS(3189), + [anon_sym_0B] = ACTIONS(3189), + [aux_sym_integer_token4] = 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_string_start] = ACTIONS(3189), + }, + [1228] = { + [ts_builtin_sym_end] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3193), + [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(3195), + [anon_sym_assert] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_del] = ACTIONS(3195), + [anon_sym_raise] = ACTIONS(3195), + [anon_sym_pass] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_match] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_def] = ACTIONS(3195), + [anon_sym_global] = ACTIONS(3195), + [anon_sym_nonlocal] = ACTIONS(3195), + [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_not] = ACTIONS(3195), + [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(3193), + [anon_sym_None] = ACTIONS(3195), + [anon_sym_0x] = ACTIONS(3193), + [anon_sym_0X] = ACTIONS(3193), + [anon_sym_0o] = ACTIONS(3193), + [anon_sym_0O] = ACTIONS(3193), + [anon_sym_0b] = ACTIONS(3193), + [anon_sym_0B] = ACTIONS(3193), + [aux_sym_integer_token4] = ACTIONS(3195), + [sym_float] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_api] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [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), + [anon_sym_ctypedef] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_packed] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_sizeof] = ACTIONS(3195), + [sym_string_start] = ACTIONS(3193), + }, + [1229] = { + [ts_builtin_sym_end] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3197), + [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_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_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), + [anon_sym_0x] = ACTIONS(3197), + [anon_sym_0X] = ACTIONS(3197), + [anon_sym_0o] = ACTIONS(3197), + [anon_sym_0O] = ACTIONS(3197), + [anon_sym_0b] = ACTIONS(3197), + [anon_sym_0B] = ACTIONS(3197), + [aux_sym_integer_token4] = 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), + }, + [1230] = { + [ts_builtin_sym_end] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_import] = ACTIONS(3203), + [anon_sym_cimport] = ACTIONS(3203), + [anon_sym_from] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_print] = ACTIONS(3203), + [anon_sym_assert] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_del] = ACTIONS(3203), + [anon_sym_raise] = ACTIONS(3203), + [anon_sym_pass] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_match] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3203), + [anon_sym_def] = ACTIONS(3203), + [anon_sym_global] = ACTIONS(3203), + [anon_sym_nonlocal] = ACTIONS(3203), + [anon_sym_exec] = ACTIONS(3203), + [anon_sym_type] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_AT] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_not] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_lambda] = ACTIONS(3203), + [anon_sym_yield] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3201), + [anon_sym_None] = ACTIONS(3203), + [anon_sym_0x] = ACTIONS(3201), + [anon_sym_0X] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0O] = ACTIONS(3201), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0B] = ACTIONS(3201), + [aux_sym_integer_token4] = ACTIONS(3203), + [sym_float] = ACTIONS(3201), + [anon_sym_await] = ACTIONS(3203), + [anon_sym_api] = ACTIONS(3203), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3203), + [anon_sym_include] = ACTIONS(3203), + [anon_sym_DEF] = ACTIONS(3203), + [anon_sym_IF] = ACTIONS(3203), + [anon_sym_cdef] = ACTIONS(3203), + [anon_sym_cpdef] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_ctypedef] = ACTIONS(3203), + [anon_sym_public] = ACTIONS(3203), + [anon_sym_packed] = ACTIONS(3203), + [anon_sym_inline] = ACTIONS(3203), + [anon_sym_readonly] = ACTIONS(3203), + [anon_sym_sizeof] = ACTIONS(3203), + [sym_string_start] = ACTIONS(3201), + }, + [1231] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4302), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1232] = { + [ts_builtin_sym_end] = ACTIONS(3205), + [sym_identifier] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_cimport] = ACTIONS(3207), + [anon_sym_from] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_print] = ACTIONS(3207), + [anon_sym_assert] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_del] = ACTIONS(3207), + [anon_sym_raise] = ACTIONS(3207), + [anon_sym_pass] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_match] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_with] = ACTIONS(3207), + [anon_sym_def] = ACTIONS(3207), + [anon_sym_global] = ACTIONS(3207), + [anon_sym_nonlocal] = ACTIONS(3207), + [anon_sym_exec] = ACTIONS(3207), + [anon_sym_type] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_lambda] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), + [anon_sym_None] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3205), + [anon_sym_0X] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3205), + [anon_sym_0O] = ACTIONS(3205), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0B] = ACTIONS(3205), + [aux_sym_integer_token4] = ACTIONS(3207), + [sym_float] = ACTIONS(3205), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_api] = ACTIONS(3207), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3207), + [anon_sym_include] = ACTIONS(3207), + [anon_sym_DEF] = ACTIONS(3207), + [anon_sym_IF] = ACTIONS(3207), + [anon_sym_cdef] = ACTIONS(3207), + [anon_sym_cpdef] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_ctypedef] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_packed] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3207), + [sym_string_start] = ACTIONS(3205), + }, + [1233] = { + [ts_builtin_sym_end] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_cimport] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_print] = ACTIONS(3211), + [anon_sym_assert] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_del] = ACTIONS(3211), + [anon_sym_raise] = ACTIONS(3211), + [anon_sym_pass] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_match] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_def] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_nonlocal] = ACTIONS(3211), + [anon_sym_exec] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_AT] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_not] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3209), + [anon_sym_lambda] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [anon_sym_None] = ACTIONS(3211), + [anon_sym_0x] = ACTIONS(3209), + [anon_sym_0X] = ACTIONS(3209), + [anon_sym_0o] = ACTIONS(3209), + [anon_sym_0O] = ACTIONS(3209), + [anon_sym_0b] = ACTIONS(3209), + [anon_sym_0B] = ACTIONS(3209), + [aux_sym_integer_token4] = ACTIONS(3211), + [sym_float] = ACTIONS(3209), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_api] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3211), + [anon_sym_include] = ACTIONS(3211), + [anon_sym_DEF] = ACTIONS(3211), + [anon_sym_IF] = ACTIONS(3211), + [anon_sym_cdef] = ACTIONS(3211), + [anon_sym_cpdef] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_ctypedef] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_packed] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_sizeof] = ACTIONS(3211), + [sym_string_start] = ACTIONS(3209), + }, + [1234] = { + [sym_identifier] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [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_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_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), + [anon_sym_0x] = ACTIONS(3215), + [anon_sym_0X] = ACTIONS(3215), + [anon_sym_0o] = ACTIONS(3215), + [anon_sym_0O] = ACTIONS(3215), + [anon_sym_0b] = ACTIONS(3215), + [anon_sym_0B] = ACTIONS(3215), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1235] = { + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [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_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_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), + [anon_sym_0x] = ACTIONS(3215), + [anon_sym_0X] = ACTIONS(3215), + [anon_sym_0o] = ACTIONS(3215), + [anon_sym_0O] = ACTIONS(3215), + [anon_sym_0b] = ACTIONS(3215), + [anon_sym_0B] = ACTIONS(3215), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1236] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5211), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1237] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5004), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1238] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4669), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1239] = { + [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_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_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), + [anon_sym_0x] = ACTIONS(3217), + [anon_sym_0X] = ACTIONS(3217), + [anon_sym_0o] = ACTIONS(3217), + [anon_sym_0O] = ACTIONS(3217), + [anon_sym_0b] = ACTIONS(3217), + [anon_sym_0B] = ACTIONS(3217), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1240] = { + [sym_identifier] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_cimport] = ACTIONS(3221), + [anon_sym_from] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_print] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_del] = ACTIONS(3221), + [anon_sym_raise] = ACTIONS(3221), + [anon_sym_pass] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_def] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3221), + [anon_sym_nonlocal] = ACTIONS(3221), + [anon_sym_exec] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_lambda] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3223), + [anon_sym_None] = ACTIONS(3221), + [anon_sym_0x] = ACTIONS(3223), + [anon_sym_0X] = ACTIONS(3223), + [anon_sym_0o] = ACTIONS(3223), + [anon_sym_0O] = ACTIONS(3223), + [anon_sym_0b] = ACTIONS(3223), + [anon_sym_0B] = ACTIONS(3223), + [aux_sym_integer_token4] = ACTIONS(3221), + [sym_float] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_api] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3221), + [anon_sym_include] = ACTIONS(3221), + [anon_sym_DEF] = ACTIONS(3221), + [anon_sym_IF] = ACTIONS(3221), + [anon_sym_cdef] = ACTIONS(3221), + [anon_sym_cpdef] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_ctypedef] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_packed] = ACTIONS(3221), + [anon_sym_inline] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(3221), + [sym__dedent] = ACTIONS(3223), + [sym_string_start] = ACTIONS(3223), + }, + [1241] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5010), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1242] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5303), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1243] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5029), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1244] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3952), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1245] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5030), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1246] = { + [ts_builtin_sym_end] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_cimport] = ACTIONS(3221), + [anon_sym_from] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_print] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_del] = ACTIONS(3221), + [anon_sym_raise] = ACTIONS(3221), + [anon_sym_pass] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_def] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3221), + [anon_sym_nonlocal] = ACTIONS(3221), + [anon_sym_exec] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_lambda] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3223), + [anon_sym_None] = ACTIONS(3221), + [anon_sym_0x] = ACTIONS(3223), + [anon_sym_0X] = ACTIONS(3223), + [anon_sym_0o] = ACTIONS(3223), + [anon_sym_0O] = ACTIONS(3223), + [anon_sym_0b] = ACTIONS(3223), + [anon_sym_0B] = ACTIONS(3223), + [aux_sym_integer_token4] = ACTIONS(3221), + [sym_float] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_api] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3221), + [anon_sym_include] = ACTIONS(3221), + [anon_sym_DEF] = ACTIONS(3221), + [anon_sym_IF] = ACTIONS(3221), + [anon_sym_cdef] = ACTIONS(3221), + [anon_sym_cpdef] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_ctypedef] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_packed] = ACTIONS(3221), + [anon_sym_inline] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(3221), + [sym_string_start] = ACTIONS(3223), + }, + [1247] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5215), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1248] = { + [sym_identifier] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_cimport] = ACTIONS(3225), + [anon_sym_from] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_print] = ACTIONS(3225), + [anon_sym_assert] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_del] = ACTIONS(3225), + [anon_sym_raise] = ACTIONS(3225), + [anon_sym_pass] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_match] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_def] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3225), + [anon_sym_nonlocal] = ACTIONS(3225), + [anon_sym_exec] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_not] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_lambda] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), + [anon_sym_None] = ACTIONS(3225), + [anon_sym_0x] = ACTIONS(3227), + [anon_sym_0X] = ACTIONS(3227), + [anon_sym_0o] = ACTIONS(3227), + [anon_sym_0O] = ACTIONS(3227), + [anon_sym_0b] = ACTIONS(3227), + [anon_sym_0B] = ACTIONS(3227), + [aux_sym_integer_token4] = ACTIONS(3225), + [sym_float] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_api] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3225), + [anon_sym_include] = ACTIONS(3225), + [anon_sym_DEF] = ACTIONS(3225), + [anon_sym_IF] = ACTIONS(3225), + [anon_sym_cdef] = ACTIONS(3225), + [anon_sym_cpdef] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_ctypedef] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_packed] = ACTIONS(3225), + [anon_sym_inline] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3225), + [sym__dedent] = ACTIONS(3227), + [sym_string_start] = ACTIONS(3227), + }, + [1249] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1250] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5058), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1251] = { + [sym_identifier] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_cimport] = ACTIONS(3235), + [anon_sym_from] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_print] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_del] = ACTIONS(3235), + [anon_sym_raise] = ACTIONS(3235), + [anon_sym_pass] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_def] = ACTIONS(3235), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_nonlocal] = ACTIONS(3235), + [anon_sym_exec] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_not] = ACTIONS(3235), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_lambda] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), + [anon_sym_None] = ACTIONS(3235), + [anon_sym_0x] = ACTIONS(3237), + [anon_sym_0X] = ACTIONS(3237), + [anon_sym_0o] = ACTIONS(3237), + [anon_sym_0O] = ACTIONS(3237), + [anon_sym_0b] = ACTIONS(3237), + [anon_sym_0B] = ACTIONS(3237), + [aux_sym_integer_token4] = ACTIONS(3235), + [sym_float] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_api] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3235), + [anon_sym_include] = ACTIONS(3235), + [anon_sym_DEF] = ACTIONS(3235), + [anon_sym_IF] = ACTIONS(3235), + [anon_sym_cdef] = ACTIONS(3235), + [anon_sym_cpdef] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_ctypedef] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_packed] = ACTIONS(3235), + [anon_sym_inline] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_sizeof] = ACTIONS(3235), + [sym__dedent] = ACTIONS(3237), + [sym_string_start] = ACTIONS(3237), + }, + [1252] = { + [sym_identifier] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_cimport] = ACTIONS(3239), + [anon_sym_from] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_print] = ACTIONS(3239), + [anon_sym_assert] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_del] = ACTIONS(3239), + [anon_sym_raise] = ACTIONS(3239), + [anon_sym_pass] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_match] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_def] = ACTIONS(3239), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_nonlocal] = ACTIONS(3239), + [anon_sym_exec] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [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(3239), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_lambda] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_None] = ACTIONS(3239), + [anon_sym_0x] = ACTIONS(3241), + [anon_sym_0X] = ACTIONS(3241), + [anon_sym_0o] = ACTIONS(3241), + [anon_sym_0O] = ACTIONS(3241), + [anon_sym_0b] = ACTIONS(3241), + [anon_sym_0B] = ACTIONS(3241), + [aux_sym_integer_token4] = ACTIONS(3239), + [sym_float] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_api] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3239), + [anon_sym_include] = ACTIONS(3239), + [anon_sym_DEF] = ACTIONS(3239), + [anon_sym_IF] = ACTIONS(3239), + [anon_sym_cdef] = ACTIONS(3239), + [anon_sym_cpdef] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_ctypedef] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_packed] = ACTIONS(3239), + [anon_sym_inline] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_sizeof] = ACTIONS(3239), + [sym__dedent] = ACTIONS(3241), + [sym_string_start] = ACTIONS(3241), + }, + [1253] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1254] = { + [sym_identifier] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_cimport] = ACTIONS(3243), + [anon_sym_from] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [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_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_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(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_not] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_lambda] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3245), + [anon_sym_None] = ACTIONS(3243), + [anon_sym_0x] = ACTIONS(3245), + [anon_sym_0X] = ACTIONS(3245), + [anon_sym_0o] = ACTIONS(3245), + [anon_sym_0O] = ACTIONS(3245), + [anon_sym_0b] = ACTIONS(3245), + [anon_sym_0B] = ACTIONS(3245), + [aux_sym_integer_token4] = ACTIONS(3243), + [sym_float] = ACTIONS(3245), + [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(3245), + [sym_string_start] = ACTIONS(3245), + }, + [1255] = { + [ts_builtin_sym_end] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_cimport] = ACTIONS(3249), + [anon_sym_from] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_STAR] = ACTIONS(3247), + [anon_sym_print] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_del] = ACTIONS(3249), + [anon_sym_raise] = ACTIONS(3249), + [anon_sym_pass] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_def] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3249), + [anon_sym_nonlocal] = ACTIONS(3249), + [anon_sym_exec] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_not] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_lambda] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), + [anon_sym_None] = ACTIONS(3249), + [anon_sym_0x] = ACTIONS(3247), + [anon_sym_0X] = ACTIONS(3247), + [anon_sym_0o] = ACTIONS(3247), + [anon_sym_0O] = ACTIONS(3247), + [anon_sym_0b] = ACTIONS(3247), + [anon_sym_0B] = ACTIONS(3247), + [aux_sym_integer_token4] = ACTIONS(3249), + [sym_float] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_api] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3249), + [anon_sym_include] = ACTIONS(3249), + [anon_sym_DEF] = ACTIONS(3249), + [anon_sym_IF] = ACTIONS(3249), + [anon_sym_cdef] = ACTIONS(3249), + [anon_sym_cpdef] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_ctypedef] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_packed] = ACTIONS(3249), + [anon_sym_inline] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_sizeof] = ACTIONS(3249), + [sym_string_start] = ACTIONS(3247), + }, + [1256] = { + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3253), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3253), + [anon_sym_cimport] = ACTIONS(3253), + [anon_sym_from] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3251), + [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(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_not] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_lambda] = ACTIONS(3253), + [anon_sym_yield] = ACTIONS(3253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), + [anon_sym_None] = ACTIONS(3253), + [anon_sym_0x] = ACTIONS(3251), + [anon_sym_0X] = ACTIONS(3251), + [anon_sym_0o] = ACTIONS(3251), + [anon_sym_0O] = ACTIONS(3251), + [anon_sym_0b] = ACTIONS(3251), + [anon_sym_0B] = ACTIONS(3251), + [aux_sym_integer_token4] = ACTIONS(3253), + [sym_float] = ACTIONS(3251), + [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_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(3251), + }, + [1257] = { + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_cimport] = ACTIONS(3257), + [anon_sym_from] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_print] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_del] = ACTIONS(3257), + [anon_sym_raise] = ACTIONS(3257), + [anon_sym_pass] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_def] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3257), + [anon_sym_nonlocal] = ACTIONS(3257), + [anon_sym_exec] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [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(3257), + [anon_sym_AMP] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_lambda] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_None] = ACTIONS(3257), + [anon_sym_0x] = ACTIONS(3255), + [anon_sym_0X] = ACTIONS(3255), + [anon_sym_0o] = ACTIONS(3255), + [anon_sym_0O] = ACTIONS(3255), + [anon_sym_0b] = ACTIONS(3255), + [anon_sym_0B] = ACTIONS(3255), + [aux_sym_integer_token4] = ACTIONS(3257), + [sym_float] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_api] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3257), + [anon_sym_include] = ACTIONS(3257), + [anon_sym_DEF] = ACTIONS(3257), + [anon_sym_IF] = ACTIONS(3257), + [anon_sym_cdef] = ACTIONS(3257), + [anon_sym_cpdef] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_ctypedef] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_packed] = ACTIONS(3257), + [anon_sym_inline] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_sizeof] = ACTIONS(3257), + [sym_string_start] = ACTIONS(3255), + }, + [1258] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5071), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1259] = { + [ts_builtin_sym_end] = ACTIONS(3261), + [sym_identifier] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_import] = ACTIONS(3263), + [anon_sym_cimport] = ACTIONS(3263), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_print] = ACTIONS(3263), + [anon_sym_assert] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_del] = ACTIONS(3263), + [anon_sym_raise] = ACTIONS(3263), + [anon_sym_pass] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_match] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_with] = ACTIONS(3263), + [anon_sym_def] = ACTIONS(3263), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_nonlocal] = ACTIONS(3263), + [anon_sym_exec] = ACTIONS(3263), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_not] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_lambda] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_None] = ACTIONS(3263), + [anon_sym_0x] = ACTIONS(3261), + [anon_sym_0X] = ACTIONS(3261), + [anon_sym_0o] = ACTIONS(3261), + [anon_sym_0O] = ACTIONS(3261), + [anon_sym_0b] = ACTIONS(3261), + [anon_sym_0B] = ACTIONS(3261), + [aux_sym_integer_token4] = ACTIONS(3263), + [sym_float] = ACTIONS(3261), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_api] = ACTIONS(3263), + [sym_true] = ACTIONS(3263), + [sym_false] = ACTIONS(3263), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_include] = ACTIONS(3263), + [anon_sym_DEF] = ACTIONS(3263), + [anon_sym_IF] = ACTIONS(3263), + [anon_sym_cdef] = ACTIONS(3263), + [anon_sym_cpdef] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_ctypedef] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_packed] = ACTIONS(3263), + [anon_sym_inline] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_sizeof] = ACTIONS(3263), + [sym_string_start] = ACTIONS(3261), + }, + [1260] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4996), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1261] = { + [ts_builtin_sym_end] = ACTIONS(3265), + [sym_identifier] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3265), + [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_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), + [anon_sym_0x] = ACTIONS(3265), + [anon_sym_0X] = ACTIONS(3265), + [anon_sym_0o] = ACTIONS(3265), + [anon_sym_0O] = ACTIONS(3265), + [anon_sym_0b] = ACTIONS(3265), + [anon_sym_0B] = ACTIONS(3265), + [aux_sym_integer_token4] = 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), + }, + [1262] = { + [ts_builtin_sym_end] = ACTIONS(3269), + [sym_identifier] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3269), + [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_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), + [anon_sym_0x] = ACTIONS(3269), + [anon_sym_0X] = ACTIONS(3269), + [anon_sym_0o] = ACTIONS(3269), + [anon_sym_0O] = ACTIONS(3269), + [anon_sym_0b] = ACTIONS(3269), + [anon_sym_0B] = ACTIONS(3269), + [aux_sym_integer_token4] = 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), + }, + [1263] = { + [ts_builtin_sym_end] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_cimport] = ACTIONS(3275), + [anon_sym_from] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_print] = ACTIONS(3275), + [anon_sym_assert] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_del] = ACTIONS(3275), + [anon_sym_raise] = ACTIONS(3275), + [anon_sym_pass] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_match] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_def] = ACTIONS(3275), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_nonlocal] = ACTIONS(3275), + [anon_sym_exec] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_not] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_lambda] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3273), + [anon_sym_None] = ACTIONS(3275), + [anon_sym_0x] = ACTIONS(3273), + [anon_sym_0X] = ACTIONS(3273), + [anon_sym_0o] = ACTIONS(3273), + [anon_sym_0O] = ACTIONS(3273), + [anon_sym_0b] = ACTIONS(3273), + [anon_sym_0B] = ACTIONS(3273), + [aux_sym_integer_token4] = ACTIONS(3275), + [sym_float] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_api] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3275), + [anon_sym_include] = ACTIONS(3275), + [anon_sym_DEF] = ACTIONS(3275), + [anon_sym_IF] = ACTIONS(3275), + [anon_sym_cdef] = ACTIONS(3275), + [anon_sym_cpdef] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_ctypedef] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_packed] = ACTIONS(3275), + [anon_sym_inline] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(3275), + [sym_string_start] = ACTIONS(3273), + }, + [1264] = { + [ts_builtin_sym_end] = ACTIONS(3227), + [sym_identifier] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_cimport] = ACTIONS(3225), + [anon_sym_from] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_print] = ACTIONS(3225), + [anon_sym_assert] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_del] = ACTIONS(3225), + [anon_sym_raise] = ACTIONS(3225), + [anon_sym_pass] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_match] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_def] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3225), + [anon_sym_nonlocal] = ACTIONS(3225), + [anon_sym_exec] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_not] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_lambda] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), + [anon_sym_None] = ACTIONS(3225), + [anon_sym_0x] = ACTIONS(3227), + [anon_sym_0X] = ACTIONS(3227), + [anon_sym_0o] = ACTIONS(3227), + [anon_sym_0O] = ACTIONS(3227), + [anon_sym_0b] = ACTIONS(3227), + [anon_sym_0B] = ACTIONS(3227), + [aux_sym_integer_token4] = ACTIONS(3225), + [sym_float] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_api] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3225), + [anon_sym_include] = ACTIONS(3225), + [anon_sym_DEF] = ACTIONS(3225), + [anon_sym_IF] = ACTIONS(3225), + [anon_sym_cdef] = ACTIONS(3225), + [anon_sym_cpdef] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_ctypedef] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_packed] = ACTIONS(3225), + [anon_sym_inline] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3225), + [sym_string_start] = ACTIONS(3227), + }, + [1265] = { + [ts_builtin_sym_end] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_cimport] = ACTIONS(3279), + [anon_sym_from] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), + [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_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(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_not] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_lambda] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3277), + [anon_sym_None] = ACTIONS(3279), + [anon_sym_0x] = ACTIONS(3277), + [anon_sym_0X] = ACTIONS(3277), + [anon_sym_0o] = ACTIONS(3277), + [anon_sym_0O] = ACTIONS(3277), + [anon_sym_0b] = ACTIONS(3277), + [anon_sym_0B] = ACTIONS(3277), + [aux_sym_integer_token4] = ACTIONS(3279), + [sym_float] = ACTIONS(3277), + [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(3277), + }, + [1266] = { + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_cimport] = ACTIONS(3283), + [anon_sym_from] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_print] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_del] = ACTIONS(3283), + [anon_sym_raise] = ACTIONS(3283), + [anon_sym_pass] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_def] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_nonlocal] = ACTIONS(3283), + [anon_sym_exec] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [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(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_lambda] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), + [anon_sym_None] = ACTIONS(3283), + [anon_sym_0x] = ACTIONS(3281), + [anon_sym_0X] = ACTIONS(3281), + [anon_sym_0o] = ACTIONS(3281), + [anon_sym_0O] = ACTIONS(3281), + [anon_sym_0b] = ACTIONS(3281), + [anon_sym_0B] = ACTIONS(3281), + [aux_sym_integer_token4] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_api] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3283), + [anon_sym_include] = ACTIONS(3283), + [anon_sym_DEF] = ACTIONS(3283), + [anon_sym_IF] = ACTIONS(3283), + [anon_sym_cdef] = ACTIONS(3283), + [anon_sym_cpdef] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_ctypedef] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_packed] = ACTIONS(3283), + [anon_sym_inline] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_sizeof] = ACTIONS(3283), + [sym_string_start] = ACTIONS(3281), + }, + [1267] = { + [ts_builtin_sym_end] = ACTIONS(3237), + [sym_identifier] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_cimport] = ACTIONS(3235), + [anon_sym_from] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_print] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_del] = ACTIONS(3235), + [anon_sym_raise] = ACTIONS(3235), + [anon_sym_pass] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_def] = ACTIONS(3235), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_nonlocal] = ACTIONS(3235), + [anon_sym_exec] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_not] = ACTIONS(3235), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_lambda] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), + [anon_sym_None] = ACTIONS(3235), + [anon_sym_0x] = ACTIONS(3237), + [anon_sym_0X] = ACTIONS(3237), + [anon_sym_0o] = ACTIONS(3237), + [anon_sym_0O] = ACTIONS(3237), + [anon_sym_0b] = ACTIONS(3237), + [anon_sym_0B] = ACTIONS(3237), + [aux_sym_integer_token4] = ACTIONS(3235), + [sym_float] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_api] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3235), + [anon_sym_include] = ACTIONS(3235), + [anon_sym_DEF] = ACTIONS(3235), + [anon_sym_IF] = ACTIONS(3235), + [anon_sym_cdef] = ACTIONS(3235), + [anon_sym_cpdef] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_ctypedef] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_packed] = ACTIONS(3235), + [anon_sym_inline] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_sizeof] = ACTIONS(3235), + [sym_string_start] = ACTIONS(3237), + }, + [1268] = { + [ts_builtin_sym_end] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_cimport] = ACTIONS(3287), + [anon_sym_from] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3285), + [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(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_not] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_lambda] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3285), + [anon_sym_None] = ACTIONS(3287), + [anon_sym_0x] = ACTIONS(3285), + [anon_sym_0X] = ACTIONS(3285), + [anon_sym_0o] = ACTIONS(3285), + [anon_sym_0O] = ACTIONS(3285), + [anon_sym_0b] = ACTIONS(3285), + [anon_sym_0B] = ACTIONS(3285), + [aux_sym_integer_token4] = ACTIONS(3287), + [sym_float] = ACTIONS(3285), + [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_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(3285), + }, + [1269] = { + [ts_builtin_sym_end] = ACTIONS(3289), + [sym_identifier] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_cimport] = ACTIONS(3291), + [anon_sym_from] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_print] = ACTIONS(3291), + [anon_sym_assert] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_del] = ACTIONS(3291), + [anon_sym_raise] = ACTIONS(3291), + [anon_sym_pass] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_match] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_def] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_nonlocal] = ACTIONS(3291), + [anon_sym_exec] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [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(3291), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_lambda] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3289), + [anon_sym_None] = ACTIONS(3291), + [anon_sym_0x] = ACTIONS(3289), + [anon_sym_0X] = ACTIONS(3289), + [anon_sym_0o] = ACTIONS(3289), + [anon_sym_0O] = ACTIONS(3289), + [anon_sym_0b] = ACTIONS(3289), + [anon_sym_0B] = ACTIONS(3289), + [aux_sym_integer_token4] = ACTIONS(3291), + [sym_float] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_api] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3291), + [anon_sym_include] = ACTIONS(3291), + [anon_sym_DEF] = ACTIONS(3291), + [anon_sym_IF] = ACTIONS(3291), + [anon_sym_cdef] = ACTIONS(3291), + [anon_sym_cpdef] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_ctypedef] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_packed] = ACTIONS(3291), + [anon_sym_inline] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_sizeof] = ACTIONS(3291), + [sym_string_start] = ACTIONS(3289), + }, + [1270] = { + [ts_builtin_sym_end] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_cimport] = ACTIONS(3295), + [anon_sym_from] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_print] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_del] = ACTIONS(3295), + [anon_sym_raise] = ACTIONS(3295), + [anon_sym_pass] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_match] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_def] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_nonlocal] = ACTIONS(3295), + [anon_sym_exec] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_not] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_lambda] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_None] = ACTIONS(3295), + [anon_sym_0x] = ACTIONS(3293), + [anon_sym_0X] = ACTIONS(3293), + [anon_sym_0o] = ACTIONS(3293), + [anon_sym_0O] = ACTIONS(3293), + [anon_sym_0b] = ACTIONS(3293), + [anon_sym_0B] = ACTIONS(3293), + [aux_sym_integer_token4] = ACTIONS(3295), + [sym_float] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_api] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3295), + [anon_sym_include] = ACTIONS(3295), + [anon_sym_DEF] = ACTIONS(3295), + [anon_sym_IF] = ACTIONS(3295), + [anon_sym_cdef] = ACTIONS(3295), + [anon_sym_cpdef] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_ctypedef] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_packed] = ACTIONS(3295), + [anon_sym_inline] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_sizeof] = ACTIONS(3295), + [sym_string_start] = ACTIONS(3293), + }, + [1271] = { + [ts_builtin_sym_end] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_cimport] = ACTIONS(3299), + [anon_sym_from] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_print] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_del] = ACTIONS(3299), + [anon_sym_raise] = ACTIONS(3299), + [anon_sym_pass] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_def] = ACTIONS(3299), + [anon_sym_global] = ACTIONS(3299), + [anon_sym_nonlocal] = ACTIONS(3299), + [anon_sym_exec] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_not] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_lambda] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), + [anon_sym_None] = ACTIONS(3299), + [anon_sym_0x] = ACTIONS(3297), + [anon_sym_0X] = ACTIONS(3297), + [anon_sym_0o] = ACTIONS(3297), + [anon_sym_0O] = ACTIONS(3297), + [anon_sym_0b] = ACTIONS(3297), + [anon_sym_0B] = ACTIONS(3297), + [aux_sym_integer_token4] = ACTIONS(3299), + [sym_float] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_api] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3299), + [anon_sym_include] = ACTIONS(3299), + [anon_sym_DEF] = ACTIONS(3299), + [anon_sym_IF] = ACTIONS(3299), + [anon_sym_cdef] = ACTIONS(3299), + [anon_sym_cpdef] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_ctypedef] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_packed] = ACTIONS(3299), + [anon_sym_inline] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3299), + [sym_string_start] = ACTIONS(3297), + }, + [1272] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4643), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1273] = { + [ts_builtin_sym_end] = ACTIONS(3301), + [sym_identifier] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_cimport] = ACTIONS(3303), + [anon_sym_from] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_print] = ACTIONS(3303), + [anon_sym_assert] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_del] = ACTIONS(3303), + [anon_sym_raise] = ACTIONS(3303), + [anon_sym_pass] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_match] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_def] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3303), + [anon_sym_nonlocal] = ACTIONS(3303), + [anon_sym_exec] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_not] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_lambda] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), + [anon_sym_None] = ACTIONS(3303), + [anon_sym_0x] = ACTIONS(3301), + [anon_sym_0X] = ACTIONS(3301), + [anon_sym_0o] = ACTIONS(3301), + [anon_sym_0O] = ACTIONS(3301), + [anon_sym_0b] = ACTIONS(3301), + [anon_sym_0B] = ACTIONS(3301), + [aux_sym_integer_token4] = ACTIONS(3303), + [sym_float] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_api] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3303), + [anon_sym_include] = ACTIONS(3303), + [anon_sym_DEF] = ACTIONS(3303), + [anon_sym_IF] = ACTIONS(3303), + [anon_sym_cdef] = ACTIONS(3303), + [anon_sym_cpdef] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_ctypedef] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_packed] = ACTIONS(3303), + [anon_sym_inline] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_sizeof] = ACTIONS(3303), + [sym_string_start] = ACTIONS(3301), + }, + [1274] = { + [ts_builtin_sym_end] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_cimport] = ACTIONS(3307), + [anon_sym_from] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_print] = ACTIONS(3307), + [anon_sym_assert] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_del] = ACTIONS(3307), + [anon_sym_raise] = ACTIONS(3307), + [anon_sym_pass] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_def] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_nonlocal] = ACTIONS(3307), + [anon_sym_exec] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_not] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_lambda] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), + [anon_sym_None] = ACTIONS(3307), + [anon_sym_0x] = ACTIONS(3305), + [anon_sym_0X] = ACTIONS(3305), + [anon_sym_0o] = ACTIONS(3305), + [anon_sym_0O] = ACTIONS(3305), + [anon_sym_0b] = ACTIONS(3305), + [anon_sym_0B] = ACTIONS(3305), + [aux_sym_integer_token4] = ACTIONS(3307), + [sym_float] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_api] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3307), + [anon_sym_include] = ACTIONS(3307), + [anon_sym_DEF] = ACTIONS(3307), + [anon_sym_IF] = ACTIONS(3307), + [anon_sym_cdef] = ACTIONS(3307), + [anon_sym_cpdef] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_ctypedef] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_packed] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_sizeof] = ACTIONS(3307), + [sym_string_start] = ACTIONS(3305), + }, + [1275] = { + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_cimport] = ACTIONS(3311), + [anon_sym_from] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_print] = ACTIONS(3311), + [anon_sym_assert] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_del] = ACTIONS(3311), + [anon_sym_raise] = ACTIONS(3311), + [anon_sym_pass] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_def] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_nonlocal] = ACTIONS(3311), + [anon_sym_exec] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_not] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_lambda] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3309), + [anon_sym_None] = ACTIONS(3311), + [anon_sym_0x] = ACTIONS(3309), + [anon_sym_0X] = ACTIONS(3309), + [anon_sym_0o] = ACTIONS(3309), + [anon_sym_0O] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(3309), + [anon_sym_0B] = ACTIONS(3309), + [aux_sym_integer_token4] = ACTIONS(3311), + [sym_float] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_api] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3311), + [anon_sym_include] = ACTIONS(3311), + [anon_sym_DEF] = ACTIONS(3311), + [anon_sym_IF] = ACTIONS(3311), + [anon_sym_cdef] = ACTIONS(3311), + [anon_sym_cpdef] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_ctypedef] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_packed] = ACTIONS(3311), + [anon_sym_inline] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_sizeof] = ACTIONS(3311), + [sym_string_start] = ACTIONS(3309), + }, + [1276] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4829), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1277] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5482), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1278] = { + [ts_builtin_sym_end] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3313), + [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_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), + [anon_sym_0x] = ACTIONS(3313), + [anon_sym_0X] = ACTIONS(3313), + [anon_sym_0o] = ACTIONS(3313), + [anon_sym_0O] = ACTIONS(3313), + [anon_sym_0b] = ACTIONS(3313), + [anon_sym_0B] = ACTIONS(3313), + [aux_sym_integer_token4] = 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), + }, + [1279] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_cimport] = ACTIONS(3319), + [anon_sym_from] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_print] = ACTIONS(3319), + [anon_sym_assert] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_del] = ACTIONS(3319), + [anon_sym_raise] = ACTIONS(3319), + [anon_sym_pass] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_def] = ACTIONS(3319), + [anon_sym_global] = ACTIONS(3319), + [anon_sym_nonlocal] = ACTIONS(3319), + [anon_sym_exec] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_not] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_lambda] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), + [anon_sym_None] = ACTIONS(3319), + [anon_sym_0x] = ACTIONS(3317), + [anon_sym_0X] = ACTIONS(3317), + [anon_sym_0o] = ACTIONS(3317), + [anon_sym_0O] = ACTIONS(3317), + [anon_sym_0b] = ACTIONS(3317), + [anon_sym_0B] = ACTIONS(3317), + [aux_sym_integer_token4] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_api] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3319), + [anon_sym_include] = ACTIONS(3319), + [anon_sym_DEF] = ACTIONS(3319), + [anon_sym_IF] = ACTIONS(3319), + [anon_sym_cdef] = ACTIONS(3319), + [anon_sym_cpdef] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_ctypedef] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_packed] = ACTIONS(3319), + [anon_sym_inline] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3319), + [sym_string_start] = ACTIONS(3317), + }, + [1280] = { + [ts_builtin_sym_end] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_cimport] = ACTIONS(3323), + [anon_sym_from] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_print] = ACTIONS(3323), + [anon_sym_assert] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_del] = ACTIONS(3323), + [anon_sym_raise] = ACTIONS(3323), + [anon_sym_pass] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_match] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_def] = ACTIONS(3323), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_nonlocal] = ACTIONS(3323), + [anon_sym_exec] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_lambda] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_None] = ACTIONS(3323), + [anon_sym_0x] = ACTIONS(3321), + [anon_sym_0X] = ACTIONS(3321), + [anon_sym_0o] = ACTIONS(3321), + [anon_sym_0O] = ACTIONS(3321), + [anon_sym_0b] = ACTIONS(3321), + [anon_sym_0B] = ACTIONS(3321), + [aux_sym_integer_token4] = ACTIONS(3323), + [sym_float] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_api] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3323), + [anon_sym_include] = ACTIONS(3323), + [anon_sym_DEF] = ACTIONS(3323), + [anon_sym_IF] = ACTIONS(3323), + [anon_sym_cdef] = ACTIONS(3323), + [anon_sym_cpdef] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_ctypedef] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_packed] = ACTIONS(3323), + [anon_sym_inline] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_sizeof] = ACTIONS(3323), + [sym_string_start] = ACTIONS(3321), + }, + [1281] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4794), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1282] = { + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_cimport] = ACTIONS(3327), + [anon_sym_from] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_print] = ACTIONS(3327), + [anon_sym_assert] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_del] = ACTIONS(3327), + [anon_sym_raise] = ACTIONS(3327), + [anon_sym_pass] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_def] = ACTIONS(3327), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_nonlocal] = ACTIONS(3327), + [anon_sym_exec] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_not] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_lambda] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), + [anon_sym_None] = ACTIONS(3327), + [anon_sym_0x] = ACTIONS(3325), + [anon_sym_0X] = ACTIONS(3325), + [anon_sym_0o] = ACTIONS(3325), + [anon_sym_0O] = ACTIONS(3325), + [anon_sym_0b] = ACTIONS(3325), + [anon_sym_0B] = ACTIONS(3325), + [aux_sym_integer_token4] = ACTIONS(3327), + [sym_float] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_api] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3327), + [anon_sym_include] = ACTIONS(3327), + [anon_sym_DEF] = ACTIONS(3327), + [anon_sym_IF] = ACTIONS(3327), + [anon_sym_cdef] = ACTIONS(3327), + [anon_sym_cpdef] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_ctypedef] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_packed] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_sizeof] = ACTIONS(3327), + [sym_string_start] = ACTIONS(3325), + }, + [1283] = { + [ts_builtin_sym_end] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_cimport] = ACTIONS(3331), + [anon_sym_from] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [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_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(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_lambda] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), + [anon_sym_None] = ACTIONS(3331), + [anon_sym_0x] = ACTIONS(3329), + [anon_sym_0X] = ACTIONS(3329), + [anon_sym_0o] = ACTIONS(3329), + [anon_sym_0O] = ACTIONS(3329), + [anon_sym_0b] = ACTIONS(3329), + [anon_sym_0B] = ACTIONS(3329), + [aux_sym_integer_token4] = ACTIONS(3331), + [sym_float] = ACTIONS(3329), + [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(3329), + }, + [1284] = { + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_cimport] = ACTIONS(3335), + [anon_sym_from] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_print] = ACTIONS(3335), + [anon_sym_assert] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_del] = ACTIONS(3335), + [anon_sym_raise] = ACTIONS(3335), + [anon_sym_pass] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_def] = ACTIONS(3335), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_nonlocal] = ACTIONS(3335), + [anon_sym_exec] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [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(3335), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_lambda] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_None] = ACTIONS(3335), + [anon_sym_0x] = ACTIONS(3333), + [anon_sym_0X] = ACTIONS(3333), + [anon_sym_0o] = ACTIONS(3333), + [anon_sym_0O] = ACTIONS(3333), + [anon_sym_0b] = ACTIONS(3333), + [anon_sym_0B] = ACTIONS(3333), + [aux_sym_integer_token4] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_api] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3335), + [anon_sym_include] = ACTIONS(3335), + [anon_sym_DEF] = ACTIONS(3335), + [anon_sym_IF] = ACTIONS(3335), + [anon_sym_cdef] = ACTIONS(3335), + [anon_sym_cpdef] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_ctypedef] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_packed] = ACTIONS(3335), + [anon_sym_inline] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_sizeof] = ACTIONS(3335), + [sym_string_start] = ACTIONS(3333), + }, + [1285] = { + [ts_builtin_sym_end] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_cimport] = ACTIONS(3339), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_print] = ACTIONS(3339), + [anon_sym_assert] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_del] = ACTIONS(3339), + [anon_sym_raise] = ACTIONS(3339), + [anon_sym_pass] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_def] = ACTIONS(3339), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_nonlocal] = ACTIONS(3339), + [anon_sym_exec] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_not] = ACTIONS(3339), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_lambda] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), + [anon_sym_None] = ACTIONS(3339), + [anon_sym_0x] = ACTIONS(3337), + [anon_sym_0X] = ACTIONS(3337), + [anon_sym_0o] = ACTIONS(3337), + [anon_sym_0O] = ACTIONS(3337), + [anon_sym_0b] = ACTIONS(3337), + [anon_sym_0B] = ACTIONS(3337), + [aux_sym_integer_token4] = ACTIONS(3339), + [sym_float] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_api] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3339), + [anon_sym_include] = ACTIONS(3339), + [anon_sym_DEF] = ACTIONS(3339), + [anon_sym_IF] = ACTIONS(3339), + [anon_sym_cdef] = ACTIONS(3339), + [anon_sym_cpdef] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_ctypedef] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_packed] = ACTIONS(3339), + [anon_sym_inline] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_sizeof] = ACTIONS(3339), + [sym_string_start] = ACTIONS(3337), + }, + [1286] = { + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_cimport] = ACTIONS(3343), + [anon_sym_from] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_print] = ACTIONS(3343), + [anon_sym_assert] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_del] = ACTIONS(3343), + [anon_sym_raise] = ACTIONS(3343), + [anon_sym_pass] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_def] = ACTIONS(3343), + [anon_sym_global] = ACTIONS(3343), + [anon_sym_nonlocal] = ACTIONS(3343), + [anon_sym_exec] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_not] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_lambda] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), + [anon_sym_None] = ACTIONS(3343), + [anon_sym_0x] = ACTIONS(3341), + [anon_sym_0X] = ACTIONS(3341), + [anon_sym_0o] = ACTIONS(3341), + [anon_sym_0O] = ACTIONS(3341), + [anon_sym_0b] = ACTIONS(3341), + [anon_sym_0B] = ACTIONS(3341), + [aux_sym_integer_token4] = ACTIONS(3343), + [sym_float] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_api] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3343), + [anon_sym_include] = ACTIONS(3343), + [anon_sym_DEF] = ACTIONS(3343), + [anon_sym_IF] = ACTIONS(3343), + [anon_sym_cdef] = ACTIONS(3343), + [anon_sym_cpdef] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_ctypedef] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_packed] = ACTIONS(3343), + [anon_sym_inline] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3343), + [sym_string_start] = ACTIONS(3341), + }, + [1287] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5114), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1288] = { + [ts_builtin_sym_end] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_cimport] = ACTIONS(3347), + [anon_sym_from] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_print] = ACTIONS(3347), + [anon_sym_assert] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_del] = ACTIONS(3347), + [anon_sym_raise] = ACTIONS(3347), + [anon_sym_pass] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_match] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_def] = ACTIONS(3347), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_nonlocal] = ACTIONS(3347), + [anon_sym_exec] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_not] = ACTIONS(3347), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_lambda] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [anon_sym_None] = ACTIONS(3347), + [anon_sym_0x] = ACTIONS(3345), + [anon_sym_0X] = ACTIONS(3345), + [anon_sym_0o] = ACTIONS(3345), + [anon_sym_0O] = ACTIONS(3345), + [anon_sym_0b] = ACTIONS(3345), + [anon_sym_0B] = ACTIONS(3345), + [aux_sym_integer_token4] = ACTIONS(3347), + [sym_float] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_api] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3347), + [anon_sym_include] = ACTIONS(3347), + [anon_sym_DEF] = ACTIONS(3347), + [anon_sym_IF] = ACTIONS(3347), + [anon_sym_cdef] = ACTIONS(3347), + [anon_sym_cpdef] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_ctypedef] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_packed] = ACTIONS(3347), + [anon_sym_inline] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_sizeof] = ACTIONS(3347), + [sym_string_start] = ACTIONS(3345), + }, + [1289] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_cimport] = ACTIONS(3319), + [anon_sym_from] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_print] = ACTIONS(3319), + [anon_sym_assert] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_del] = ACTIONS(3319), + [anon_sym_raise] = ACTIONS(3319), + [anon_sym_pass] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_def] = ACTIONS(3319), + [anon_sym_global] = ACTIONS(3319), + [anon_sym_nonlocal] = ACTIONS(3319), + [anon_sym_exec] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_not] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_lambda] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), + [anon_sym_None] = ACTIONS(3319), + [anon_sym_0x] = ACTIONS(3317), + [anon_sym_0X] = ACTIONS(3317), + [anon_sym_0o] = ACTIONS(3317), + [anon_sym_0O] = ACTIONS(3317), + [anon_sym_0b] = ACTIONS(3317), + [anon_sym_0B] = ACTIONS(3317), + [aux_sym_integer_token4] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_api] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3319), + [anon_sym_include] = ACTIONS(3319), + [anon_sym_DEF] = ACTIONS(3319), + [anon_sym_IF] = ACTIONS(3319), + [anon_sym_cdef] = ACTIONS(3319), + [anon_sym_cpdef] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_ctypedef] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_packed] = ACTIONS(3319), + [anon_sym_inline] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3319), + [sym_string_start] = ACTIONS(3317), + }, + [1290] = { + [ts_builtin_sym_end] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_cimport] = ACTIONS(3351), + [anon_sym_from] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_print] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_del] = ACTIONS(3351), + [anon_sym_raise] = ACTIONS(3351), + [anon_sym_pass] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_def] = ACTIONS(3351), + [anon_sym_global] = ACTIONS(3351), + [anon_sym_nonlocal] = ACTIONS(3351), + [anon_sym_exec] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_not] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_lambda] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + [anon_sym_None] = ACTIONS(3351), + [anon_sym_0x] = ACTIONS(3349), + [anon_sym_0X] = ACTIONS(3349), + [anon_sym_0o] = ACTIONS(3349), + [anon_sym_0O] = ACTIONS(3349), + [anon_sym_0b] = ACTIONS(3349), + [anon_sym_0B] = ACTIONS(3349), + [aux_sym_integer_token4] = ACTIONS(3351), + [sym_float] = ACTIONS(3349), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_api] = ACTIONS(3351), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3351), + [anon_sym_include] = ACTIONS(3351), + [anon_sym_DEF] = ACTIONS(3351), + [anon_sym_IF] = ACTIONS(3351), + [anon_sym_cdef] = ACTIONS(3351), + [anon_sym_cpdef] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_ctypedef] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_packed] = ACTIONS(3351), + [anon_sym_inline] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_sizeof] = ACTIONS(3351), + [sym_string_start] = ACTIONS(3349), + }, + [1291] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5119), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1292] = { + [ts_builtin_sym_end] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_cimport] = ACTIONS(3355), + [anon_sym_from] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_print] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_del] = ACTIONS(3355), + [anon_sym_raise] = ACTIONS(3355), + [anon_sym_pass] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_def] = ACTIONS(3355), + [anon_sym_global] = ACTIONS(3355), + [anon_sym_nonlocal] = ACTIONS(3355), + [anon_sym_exec] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_not] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_lambda] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), + [anon_sym_None] = ACTIONS(3355), + [anon_sym_0x] = ACTIONS(3353), + [anon_sym_0X] = ACTIONS(3353), + [anon_sym_0o] = ACTIONS(3353), + [anon_sym_0O] = ACTIONS(3353), + [anon_sym_0b] = ACTIONS(3353), + [anon_sym_0B] = ACTIONS(3353), + [aux_sym_integer_token4] = ACTIONS(3355), + [sym_float] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_api] = ACTIONS(3355), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3355), + [anon_sym_include] = ACTIONS(3355), + [anon_sym_DEF] = ACTIONS(3355), + [anon_sym_IF] = ACTIONS(3355), + [anon_sym_cdef] = ACTIONS(3355), + [anon_sym_cpdef] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_ctypedef] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_packed] = ACTIONS(3355), + [anon_sym_inline] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(3355), + [sym_string_start] = ACTIONS(3353), + }, + [1293] = { + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_cimport] = ACTIONS(3327), + [anon_sym_from] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_print] = ACTIONS(3327), + [anon_sym_assert] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_del] = ACTIONS(3327), + [anon_sym_raise] = ACTIONS(3327), + [anon_sym_pass] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_def] = ACTIONS(3327), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_nonlocal] = ACTIONS(3327), + [anon_sym_exec] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_not] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_lambda] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), + [anon_sym_None] = ACTIONS(3327), + [anon_sym_0x] = ACTIONS(3325), + [anon_sym_0X] = ACTIONS(3325), + [anon_sym_0o] = ACTIONS(3325), + [anon_sym_0O] = ACTIONS(3325), + [anon_sym_0b] = ACTIONS(3325), + [anon_sym_0B] = ACTIONS(3325), + [aux_sym_integer_token4] = ACTIONS(3327), + [sym_float] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_api] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3327), + [anon_sym_include] = ACTIONS(3327), + [anon_sym_DEF] = ACTIONS(3327), + [anon_sym_IF] = ACTIONS(3327), + [anon_sym_cdef] = ACTIONS(3327), + [anon_sym_cpdef] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_ctypedef] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_packed] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_sizeof] = ACTIONS(3327), + [sym_string_start] = ACTIONS(3325), + }, + [1294] = { + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_cimport] = ACTIONS(3359), + [anon_sym_from] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_print] = ACTIONS(3359), + [anon_sym_assert] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_del] = ACTIONS(3359), + [anon_sym_raise] = ACTIONS(3359), + [anon_sym_pass] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_match] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_def] = ACTIONS(3359), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_nonlocal] = ACTIONS(3359), + [anon_sym_exec] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_not] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_lambda] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_None] = ACTIONS(3359), + [anon_sym_0x] = ACTIONS(3357), + [anon_sym_0X] = ACTIONS(3357), + [anon_sym_0o] = ACTIONS(3357), + [anon_sym_0O] = ACTIONS(3357), + [anon_sym_0b] = ACTIONS(3357), + [anon_sym_0B] = ACTIONS(3357), + [aux_sym_integer_token4] = ACTIONS(3359), + [sym_float] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_api] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3359), + [anon_sym_include] = ACTIONS(3359), + [anon_sym_DEF] = ACTIONS(3359), + [anon_sym_IF] = ACTIONS(3359), + [anon_sym_cdef] = ACTIONS(3359), + [anon_sym_cpdef] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_ctypedef] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_packed] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_sizeof] = ACTIONS(3359), + [sym_string_start] = ACTIONS(3357), + }, + [1295] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5132), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1296] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5135), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1297] = { + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_cimport] = ACTIONS(3335), + [anon_sym_from] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_print] = ACTIONS(3335), + [anon_sym_assert] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_del] = ACTIONS(3335), + [anon_sym_raise] = ACTIONS(3335), + [anon_sym_pass] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_def] = ACTIONS(3335), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_nonlocal] = ACTIONS(3335), + [anon_sym_exec] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [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(3335), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_lambda] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_None] = ACTIONS(3335), + [anon_sym_0x] = ACTIONS(3333), + [anon_sym_0X] = ACTIONS(3333), + [anon_sym_0o] = ACTIONS(3333), + [anon_sym_0O] = ACTIONS(3333), + [anon_sym_0b] = ACTIONS(3333), + [anon_sym_0B] = ACTIONS(3333), + [aux_sym_integer_token4] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_api] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3335), + [anon_sym_include] = ACTIONS(3335), + [anon_sym_DEF] = ACTIONS(3335), + [anon_sym_IF] = ACTIONS(3335), + [anon_sym_cdef] = ACTIONS(3335), + [anon_sym_cpdef] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_ctypedef] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_packed] = ACTIONS(3335), + [anon_sym_inline] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_sizeof] = ACTIONS(3335), + [sym_string_start] = ACTIONS(3333), + }, + [1298] = { + [ts_builtin_sym_end] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_cimport] = ACTIONS(3363), + [anon_sym_from] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_print] = ACTIONS(3363), + [anon_sym_assert] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_del] = ACTIONS(3363), + [anon_sym_raise] = ACTIONS(3363), + [anon_sym_pass] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_match] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_def] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_nonlocal] = ACTIONS(3363), + [anon_sym_exec] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_not] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_lambda] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), + [anon_sym_None] = ACTIONS(3363), + [anon_sym_0x] = ACTIONS(3361), + [anon_sym_0X] = ACTIONS(3361), + [anon_sym_0o] = ACTIONS(3361), + [anon_sym_0O] = ACTIONS(3361), + [anon_sym_0b] = ACTIONS(3361), + [anon_sym_0B] = ACTIONS(3361), + [aux_sym_integer_token4] = ACTIONS(3363), + [sym_float] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_api] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3363), + [anon_sym_include] = ACTIONS(3363), + [anon_sym_DEF] = ACTIONS(3363), + [anon_sym_IF] = ACTIONS(3363), + [anon_sym_cdef] = ACTIONS(3363), + [anon_sym_cpdef] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_ctypedef] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_packed] = ACTIONS(3363), + [anon_sym_inline] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_sizeof] = ACTIONS(3363), + [sym_string_start] = ACTIONS(3361), + }, + [1299] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4818), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1300] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4819), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1301] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3205), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1302] = { + [ts_builtin_sym_end] = ACTIONS(3365), + [sym_identifier] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_cimport] = ACTIONS(3367), + [anon_sym_from] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3365), + [anon_sym_print] = ACTIONS(3367), + [anon_sym_assert] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_del] = ACTIONS(3367), + [anon_sym_raise] = ACTIONS(3367), + [anon_sym_pass] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_match] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_def] = ACTIONS(3367), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_nonlocal] = ACTIONS(3367), + [anon_sym_exec] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_not] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_lambda] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), + [anon_sym_None] = ACTIONS(3367), + [anon_sym_0x] = ACTIONS(3365), + [anon_sym_0X] = ACTIONS(3365), + [anon_sym_0o] = ACTIONS(3365), + [anon_sym_0O] = ACTIONS(3365), + [anon_sym_0b] = ACTIONS(3365), + [anon_sym_0B] = ACTIONS(3365), + [aux_sym_integer_token4] = ACTIONS(3367), + [sym_float] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_api] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3367), + [anon_sym_include] = ACTIONS(3367), + [anon_sym_DEF] = ACTIONS(3367), + [anon_sym_IF] = ACTIONS(3367), + [anon_sym_cdef] = ACTIONS(3367), + [anon_sym_cpdef] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_ctypedef] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_packed] = ACTIONS(3367), + [anon_sym_inline] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_sizeof] = ACTIONS(3367), + [sym_string_start] = ACTIONS(3365), + }, + [1303] = { + [ts_builtin_sym_end] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3369), + [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_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), + [anon_sym_0x] = ACTIONS(3369), + [anon_sym_0X] = ACTIONS(3369), + [anon_sym_0o] = ACTIONS(3369), + [anon_sym_0O] = ACTIONS(3369), + [anon_sym_0b] = ACTIONS(3369), + [anon_sym_0B] = ACTIONS(3369), + [aux_sym_integer_token4] = 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), + }, + [1304] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5089), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1305] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4821), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1306] = { + [ts_builtin_sym_end] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_cimport] = ACTIONS(3239), + [anon_sym_from] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_print] = ACTIONS(3239), + [anon_sym_assert] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_del] = ACTIONS(3239), + [anon_sym_raise] = ACTIONS(3239), + [anon_sym_pass] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_match] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_def] = ACTIONS(3239), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_nonlocal] = ACTIONS(3239), + [anon_sym_exec] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [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(3239), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_lambda] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_None] = ACTIONS(3239), + [anon_sym_0x] = ACTIONS(3241), + [anon_sym_0X] = ACTIONS(3241), + [anon_sym_0o] = ACTIONS(3241), + [anon_sym_0O] = ACTIONS(3241), + [anon_sym_0b] = ACTIONS(3241), + [anon_sym_0B] = ACTIONS(3241), + [aux_sym_integer_token4] = ACTIONS(3239), + [sym_float] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_api] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3239), + [anon_sym_include] = ACTIONS(3239), + [anon_sym_DEF] = ACTIONS(3239), + [anon_sym_IF] = ACTIONS(3239), + [anon_sym_cdef] = ACTIONS(3239), + [anon_sym_cpdef] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_ctypedef] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_packed] = ACTIONS(3239), + [anon_sym_inline] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_sizeof] = ACTIONS(3239), + [sym_string_start] = ACTIONS(3241), + }, + [1307] = { + [ts_builtin_sym_end] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_cimport] = ACTIONS(3375), + [anon_sym_from] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_print] = ACTIONS(3375), + [anon_sym_assert] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_del] = ACTIONS(3375), + [anon_sym_raise] = ACTIONS(3375), + [anon_sym_pass] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_match] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_def] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_nonlocal] = ACTIONS(3375), + [anon_sym_exec] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_not] = ACTIONS(3375), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_lambda] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_None] = ACTIONS(3375), + [anon_sym_0x] = ACTIONS(3373), + [anon_sym_0X] = ACTIONS(3373), + [anon_sym_0o] = ACTIONS(3373), + [anon_sym_0O] = ACTIONS(3373), + [anon_sym_0b] = ACTIONS(3373), + [anon_sym_0B] = ACTIONS(3373), + [aux_sym_integer_token4] = ACTIONS(3375), + [sym_float] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_api] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3375), + [anon_sym_include] = ACTIONS(3375), + [anon_sym_DEF] = ACTIONS(3375), + [anon_sym_IF] = ACTIONS(3375), + [anon_sym_cdef] = ACTIONS(3375), + [anon_sym_cpdef] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_ctypedef] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_packed] = ACTIONS(3375), + [anon_sym_inline] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_sizeof] = ACTIONS(3375), + [sym_string_start] = ACTIONS(3373), + }, + [1308] = { + [ts_builtin_sym_end] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_cimport] = ACTIONS(3379), + [anon_sym_from] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_print] = ACTIONS(3379), + [anon_sym_assert] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_del] = ACTIONS(3379), + [anon_sym_raise] = ACTIONS(3379), + [anon_sym_pass] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_match] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_with] = ACTIONS(3379), + [anon_sym_def] = ACTIONS(3379), + [anon_sym_global] = ACTIONS(3379), + [anon_sym_nonlocal] = ACTIONS(3379), + [anon_sym_exec] = ACTIONS(3379), + [anon_sym_type] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_not] = ACTIONS(3379), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_lambda] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), + [anon_sym_None] = ACTIONS(3379), + [anon_sym_0x] = ACTIONS(3377), + [anon_sym_0X] = ACTIONS(3377), + [anon_sym_0o] = ACTIONS(3377), + [anon_sym_0O] = ACTIONS(3377), + [anon_sym_0b] = ACTIONS(3377), + [anon_sym_0B] = ACTIONS(3377), + [aux_sym_integer_token4] = ACTIONS(3379), + [sym_float] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_api] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3379), + [anon_sym_include] = ACTIONS(3379), + [anon_sym_DEF] = ACTIONS(3379), + [anon_sym_IF] = ACTIONS(3379), + [anon_sym_cdef] = ACTIONS(3379), + [anon_sym_cpdef] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_ctypedef] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_packed] = ACTIONS(3379), + [anon_sym_inline] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_sizeof] = ACTIONS(3379), + [sym_string_start] = ACTIONS(3377), + }, + [1309] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5295), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1310] = { + [ts_builtin_sym_end] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_cimport] = ACTIONS(3383), + [anon_sym_from] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_print] = ACTIONS(3383), + [anon_sym_assert] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_del] = ACTIONS(3383), + [anon_sym_raise] = ACTIONS(3383), + [anon_sym_pass] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_match] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_def] = ACTIONS(3383), + [anon_sym_global] = ACTIONS(3383), + [anon_sym_nonlocal] = ACTIONS(3383), + [anon_sym_exec] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_lambda] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [anon_sym_None] = ACTIONS(3383), + [anon_sym_0x] = ACTIONS(3381), + [anon_sym_0X] = ACTIONS(3381), + [anon_sym_0o] = ACTIONS(3381), + [anon_sym_0O] = ACTIONS(3381), + [anon_sym_0b] = ACTIONS(3381), + [anon_sym_0B] = ACTIONS(3381), + [aux_sym_integer_token4] = ACTIONS(3383), + [sym_float] = ACTIONS(3381), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_api] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3383), + [anon_sym_include] = ACTIONS(3383), + [anon_sym_DEF] = ACTIONS(3383), + [anon_sym_IF] = ACTIONS(3383), + [anon_sym_cdef] = ACTIONS(3383), + [anon_sym_cpdef] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_ctypedef] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_packed] = ACTIONS(3383), + [anon_sym_inline] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_sizeof] = ACTIONS(3383), + [sym_string_start] = ACTIONS(3381), + }, + [1311] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5525), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1312] = { + [sym_identifier] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_cimport] = ACTIONS(3385), + [anon_sym_from] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_print] = ACTIONS(3385), + [anon_sym_assert] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_del] = ACTIONS(3385), + [anon_sym_raise] = ACTIONS(3385), + [anon_sym_pass] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_match] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_def] = ACTIONS(3385), + [anon_sym_global] = ACTIONS(3385), + [anon_sym_nonlocal] = ACTIONS(3385), + [anon_sym_exec] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_lambda] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3387), + [anon_sym_None] = ACTIONS(3385), + [anon_sym_0x] = ACTIONS(3387), + [anon_sym_0X] = ACTIONS(3387), + [anon_sym_0o] = ACTIONS(3387), + [anon_sym_0O] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(3387), + [anon_sym_0B] = ACTIONS(3387), + [aux_sym_integer_token4] = ACTIONS(3385), + [sym_float] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_api] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3385), + [anon_sym_include] = ACTIONS(3385), + [anon_sym_DEF] = ACTIONS(3385), + [anon_sym_IF] = ACTIONS(3385), + [anon_sym_cdef] = ACTIONS(3385), + [anon_sym_cpdef] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_ctypedef] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_packed] = ACTIONS(3385), + [anon_sym_inline] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_sizeof] = ACTIONS(3385), + [sym__dedent] = ACTIONS(3387), + [sym_string_start] = ACTIONS(3387), + }, + [1313] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1314] = { + [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_import] = ACTIONS(3065), + [anon_sym_cimport] = ACTIONS(3065), + [anon_sym_from] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3063), + [anon_sym_print] = ACTIONS(3065), + [anon_sym_assert] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_del] = ACTIONS(3065), + [anon_sym_raise] = ACTIONS(3065), + [anon_sym_pass] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_async] = ACTIONS(3065), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_with] = ACTIONS(3065), + [anon_sym_def] = ACTIONS(3065), + [anon_sym_global] = ACTIONS(3065), + [anon_sym_nonlocal] = ACTIONS(3065), + [anon_sym_exec] = ACTIONS(3065), + [anon_sym_type] = ACTIONS(3065), + [anon_sym_class] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_not] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3063), + [anon_sym_lambda] = ACTIONS(3065), + [anon_sym_yield] = ACTIONS(3065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3063), + [anon_sym_None] = ACTIONS(3065), + [anon_sym_0x] = ACTIONS(3063), + [anon_sym_0X] = ACTIONS(3063), + [anon_sym_0o] = ACTIONS(3063), + [anon_sym_0O] = ACTIONS(3063), + [anon_sym_0b] = ACTIONS(3063), + [anon_sym_0B] = ACTIONS(3063), + [aux_sym_integer_token4] = ACTIONS(3065), + [sym_float] = ACTIONS(3063), + [anon_sym_await] = ACTIONS(3065), + [anon_sym_api] = ACTIONS(3065), + [sym_true] = ACTIONS(3065), + [sym_false] = ACTIONS(3065), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3065), + [anon_sym_include] = ACTIONS(3065), + [anon_sym_DEF] = ACTIONS(3065), + [anon_sym_IF] = ACTIONS(3065), + [anon_sym_cdef] = ACTIONS(3065), + [anon_sym_cpdef] = ACTIONS(3065), + [anon_sym_new] = ACTIONS(3065), + [anon_sym_ctypedef] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_packed] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_readonly] = ACTIONS(3065), + [anon_sym_sizeof] = ACTIONS(3065), + [sym__dedent] = ACTIONS(3063), + [sym_string_start] = ACTIONS(3063), + }, + [1315] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4836), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1316] = { + [sym_identifier] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_import] = ACTIONS(3075), + [anon_sym_cimport] = ACTIONS(3075), + [anon_sym_from] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(3075), + [anon_sym_assert] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_del] = ACTIONS(3075), + [anon_sym_raise] = ACTIONS(3075), + [anon_sym_pass] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_match] = ACTIONS(3075), + [anon_sym_async] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_with] = ACTIONS(3075), + [anon_sym_def] = ACTIONS(3075), + [anon_sym_global] = ACTIONS(3075), + [anon_sym_nonlocal] = ACTIONS(3075), + [anon_sym_exec] = ACTIONS(3075), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_AT] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_lambda] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3073), + [anon_sym_None] = ACTIONS(3075), + [anon_sym_0x] = ACTIONS(3073), + [anon_sym_0X] = ACTIONS(3073), + [anon_sym_0o] = ACTIONS(3073), + [anon_sym_0O] = ACTIONS(3073), + [anon_sym_0b] = ACTIONS(3073), + [anon_sym_0B] = ACTIONS(3073), + [aux_sym_integer_token4] = ACTIONS(3075), + [sym_float] = ACTIONS(3073), + [anon_sym_await] = ACTIONS(3075), + [anon_sym_api] = ACTIONS(3075), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3075), + [anon_sym_include] = ACTIONS(3075), + [anon_sym_DEF] = ACTIONS(3075), + [anon_sym_IF] = ACTIONS(3075), + [anon_sym_cdef] = ACTIONS(3075), + [anon_sym_cpdef] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_ctypedef] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_packed] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_sizeof] = ACTIONS(3075), + [sym__dedent] = ACTIONS(3073), + [sym_string_start] = ACTIONS(3073), + }, + [1317] = { + [ts_builtin_sym_end] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3397), + [anon_sym_cimport] = ACTIONS(3397), + [anon_sym_from] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_print] = ACTIONS(3397), + [anon_sym_assert] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3397), + [anon_sym_del] = ACTIONS(3397), + [anon_sym_raise] = ACTIONS(3397), + [anon_sym_pass] = ACTIONS(3397), + [anon_sym_break] = ACTIONS(3397), + [anon_sym_continue] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3397), + [anon_sym_match] = ACTIONS(3397), + [anon_sym_async] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3397), + [anon_sym_try] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3397), + [anon_sym_def] = ACTIONS(3397), + [anon_sym_global] = ACTIONS(3397), + [anon_sym_nonlocal] = ACTIONS(3397), + [anon_sym_exec] = ACTIONS(3397), + [anon_sym_type] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_lambda] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3395), + [anon_sym_None] = ACTIONS(3397), + [anon_sym_0x] = ACTIONS(3395), + [anon_sym_0X] = ACTIONS(3395), + [anon_sym_0o] = ACTIONS(3395), + [anon_sym_0O] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3395), + [anon_sym_0B] = ACTIONS(3395), + [aux_sym_integer_token4] = ACTIONS(3397), + [sym_float] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3397), + [anon_sym_api] = ACTIONS(3397), + [sym_true] = ACTIONS(3397), + [sym_false] = ACTIONS(3397), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3397), + [anon_sym_include] = ACTIONS(3397), + [anon_sym_DEF] = ACTIONS(3397), + [anon_sym_IF] = ACTIONS(3397), + [anon_sym_cdef] = ACTIONS(3397), + [anon_sym_cpdef] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_ctypedef] = ACTIONS(3397), + [anon_sym_public] = ACTIONS(3397), + [anon_sym_packed] = ACTIONS(3397), + [anon_sym_inline] = ACTIONS(3397), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(3397), + [sym_string_start] = ACTIONS(3395), + }, + [1318] = { + [sym_identifier] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_cimport] = ACTIONS(3079), + [anon_sym_from] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_print] = ACTIONS(3079), + [anon_sym_assert] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_del] = ACTIONS(3079), + [anon_sym_raise] = ACTIONS(3079), + [anon_sym_pass] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_match] = ACTIONS(3079), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3079), + [anon_sym_def] = ACTIONS(3079), + [anon_sym_global] = ACTIONS(3079), + [anon_sym_nonlocal] = ACTIONS(3079), + [anon_sym_exec] = ACTIONS(3079), + [anon_sym_type] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3077), + [anon_sym_lambda] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3077), + [anon_sym_None] = ACTIONS(3079), + [anon_sym_0x] = ACTIONS(3077), + [anon_sym_0X] = ACTIONS(3077), + [anon_sym_0o] = ACTIONS(3077), + [anon_sym_0O] = ACTIONS(3077), + [anon_sym_0b] = ACTIONS(3077), + [anon_sym_0B] = ACTIONS(3077), + [aux_sym_integer_token4] = ACTIONS(3079), + [sym_float] = ACTIONS(3077), + [anon_sym_await] = ACTIONS(3079), + [anon_sym_api] = ACTIONS(3079), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3079), + [anon_sym_include] = ACTIONS(3079), + [anon_sym_DEF] = ACTIONS(3079), + [anon_sym_IF] = ACTIONS(3079), + [anon_sym_cdef] = ACTIONS(3079), + [anon_sym_cpdef] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_ctypedef] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_packed] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_sizeof] = ACTIONS(3079), + [sym__dedent] = ACTIONS(3077), + [sym_string_start] = ACTIONS(3077), + }, + [1319] = { + [ts_builtin_sym_end] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_cimport] = ACTIONS(3401), + [anon_sym_from] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3399), + [anon_sym_print] = ACTIONS(3401), + [anon_sym_assert] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_del] = ACTIONS(3401), + [anon_sym_raise] = ACTIONS(3401), + [anon_sym_pass] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_match] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_def] = ACTIONS(3401), + [anon_sym_global] = ACTIONS(3401), + [anon_sym_nonlocal] = ACTIONS(3401), + [anon_sym_exec] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_not] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_lambda] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3399), + [anon_sym_None] = ACTIONS(3401), + [anon_sym_0x] = ACTIONS(3399), + [anon_sym_0X] = ACTIONS(3399), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0O] = ACTIONS(3399), + [anon_sym_0b] = ACTIONS(3399), + [anon_sym_0B] = ACTIONS(3399), + [aux_sym_integer_token4] = ACTIONS(3401), + [sym_float] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_api] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3401), + [anon_sym_include] = ACTIONS(3401), + [anon_sym_DEF] = ACTIONS(3401), + [anon_sym_IF] = ACTIONS(3401), + [anon_sym_cdef] = ACTIONS(3401), + [anon_sym_cpdef] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_ctypedef] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_packed] = ACTIONS(3401), + [anon_sym_inline] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3401), + [anon_sym_sizeof] = ACTIONS(3401), + [sym_string_start] = ACTIONS(3399), + }, + [1320] = { + [ts_builtin_sym_end] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_cimport] = ACTIONS(3405), + [anon_sym_from] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3403), + [anon_sym_print] = ACTIONS(3405), + [anon_sym_assert] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_del] = ACTIONS(3405), + [anon_sym_raise] = ACTIONS(3405), + [anon_sym_pass] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_match] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_def] = ACTIONS(3405), + [anon_sym_global] = ACTIONS(3405), + [anon_sym_nonlocal] = ACTIONS(3405), + [anon_sym_exec] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_lambda] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3403), + [anon_sym_None] = ACTIONS(3405), + [anon_sym_0x] = ACTIONS(3403), + [anon_sym_0X] = ACTIONS(3403), + [anon_sym_0o] = ACTIONS(3403), + [anon_sym_0O] = ACTIONS(3403), + [anon_sym_0b] = ACTIONS(3403), + [anon_sym_0B] = ACTIONS(3403), + [aux_sym_integer_token4] = ACTIONS(3405), + [sym_float] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_api] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3405), + [anon_sym_include] = ACTIONS(3405), + [anon_sym_DEF] = ACTIONS(3405), + [anon_sym_IF] = ACTIONS(3405), + [anon_sym_cdef] = ACTIONS(3405), + [anon_sym_cpdef] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_ctypedef] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_packed] = ACTIONS(3405), + [anon_sym_inline] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3405), + [sym_string_start] = ACTIONS(3403), + }, + [1321] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3220), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1322] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4842), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1323] = { + [ts_builtin_sym_end] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_cimport] = ACTIONS(3409), + [anon_sym_from] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3407), + [anon_sym_print] = ACTIONS(3409), + [anon_sym_assert] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_del] = ACTIONS(3409), + [anon_sym_raise] = ACTIONS(3409), + [anon_sym_pass] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_match] = ACTIONS(3409), + [anon_sym_async] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_with] = ACTIONS(3409), + [anon_sym_def] = ACTIONS(3409), + [anon_sym_global] = ACTIONS(3409), + [anon_sym_nonlocal] = ACTIONS(3409), + [anon_sym_exec] = ACTIONS(3409), + [anon_sym_type] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_not] = ACTIONS(3409), + [anon_sym_AMP] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_lambda] = ACTIONS(3409), + [anon_sym_yield] = ACTIONS(3409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_None] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3407), + [anon_sym_0X] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3407), + [anon_sym_0O] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0B] = ACTIONS(3407), + [aux_sym_integer_token4] = ACTIONS(3409), + [sym_float] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3409), + [anon_sym_api] = ACTIONS(3409), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3409), + [anon_sym_include] = ACTIONS(3409), + [anon_sym_DEF] = ACTIONS(3409), + [anon_sym_IF] = ACTIONS(3409), + [anon_sym_cdef] = ACTIONS(3409), + [anon_sym_cpdef] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_ctypedef] = ACTIONS(3409), + [anon_sym_public] = ACTIONS(3409), + [anon_sym_packed] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_readonly] = ACTIONS(3409), + [anon_sym_sizeof] = ACTIONS(3409), + [sym_string_start] = ACTIONS(3407), + }, + [1324] = { + [sym_identifier] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_import] = ACTIONS(3095), + [anon_sym_cimport] = ACTIONS(3095), + [anon_sym_from] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_print] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_del] = ACTIONS(3095), + [anon_sym_raise] = ACTIONS(3095), + [anon_sym_pass] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_async] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_with] = ACTIONS(3095), + [anon_sym_def] = ACTIONS(3095), + [anon_sym_global] = ACTIONS(3095), + [anon_sym_nonlocal] = ACTIONS(3095), + [anon_sym_exec] = ACTIONS(3095), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [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(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_lambda] = ACTIONS(3095), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [anon_sym_None] = ACTIONS(3095), + [anon_sym_0x] = ACTIONS(3093), + [anon_sym_0X] = ACTIONS(3093), + [anon_sym_0o] = ACTIONS(3093), + [anon_sym_0O] = ACTIONS(3093), + [anon_sym_0b] = ACTIONS(3093), + [anon_sym_0B] = ACTIONS(3093), + [aux_sym_integer_token4] = ACTIONS(3095), + [sym_float] = ACTIONS(3093), + [anon_sym_await] = ACTIONS(3095), + [anon_sym_api] = ACTIONS(3095), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3095), + [anon_sym_include] = ACTIONS(3095), + [anon_sym_DEF] = ACTIONS(3095), + [anon_sym_IF] = ACTIONS(3095), + [anon_sym_cdef] = ACTIONS(3095), + [anon_sym_cpdef] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_ctypedef] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_packed] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym_readonly] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3095), + [sym__dedent] = ACTIONS(3093), + [sym_string_start] = ACTIONS(3093), + }, + [1325] = { + [ts_builtin_sym_end] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_cimport] = ACTIONS(3413), + [anon_sym_from] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_print] = ACTIONS(3413), + [anon_sym_assert] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_del] = ACTIONS(3413), + [anon_sym_raise] = ACTIONS(3413), + [anon_sym_pass] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_match] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_def] = ACTIONS(3413), + [anon_sym_global] = ACTIONS(3413), + [anon_sym_nonlocal] = ACTIONS(3413), + [anon_sym_exec] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3411), + [anon_sym_AT] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_not] = ACTIONS(3413), + [anon_sym_AMP] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_lambda] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3411), + [anon_sym_None] = ACTIONS(3413), + [anon_sym_0x] = ACTIONS(3411), + [anon_sym_0X] = ACTIONS(3411), + [anon_sym_0o] = ACTIONS(3411), + [anon_sym_0O] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(3411), + [anon_sym_0B] = ACTIONS(3411), + [aux_sym_integer_token4] = ACTIONS(3413), + [sym_float] = ACTIONS(3411), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_api] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3413), + [anon_sym_include] = ACTIONS(3413), + [anon_sym_DEF] = ACTIONS(3413), + [anon_sym_IF] = ACTIONS(3413), + [anon_sym_cdef] = ACTIONS(3413), + [anon_sym_cpdef] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_ctypedef] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_packed] = ACTIONS(3413), + [anon_sym_inline] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_sizeof] = ACTIONS(3413), + [sym_string_start] = ACTIONS(3411), + }, + [1326] = { + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_cimport] = ACTIONS(3417), + [anon_sym_from] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_print] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_del] = ACTIONS(3417), + [anon_sym_raise] = ACTIONS(3417), + [anon_sym_pass] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_def] = ACTIONS(3417), + [anon_sym_global] = ACTIONS(3417), + [anon_sym_nonlocal] = ACTIONS(3417), + [anon_sym_exec] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_AT] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_not] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_lambda] = ACTIONS(3417), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3415), + [anon_sym_None] = ACTIONS(3417), + [anon_sym_0x] = ACTIONS(3415), + [anon_sym_0X] = ACTIONS(3415), + [anon_sym_0o] = ACTIONS(3415), + [anon_sym_0O] = ACTIONS(3415), + [anon_sym_0b] = ACTIONS(3415), + [anon_sym_0B] = ACTIONS(3415), + [aux_sym_integer_token4] = ACTIONS(3417), + [sym_float] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_api] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3417), + [anon_sym_include] = ACTIONS(3417), + [anon_sym_DEF] = ACTIONS(3417), + [anon_sym_IF] = ACTIONS(3417), + [anon_sym_cdef] = ACTIONS(3417), + [anon_sym_cpdef] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_ctypedef] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_packed] = ACTIONS(3417), + [anon_sym_inline] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3417), + [sym_string_start] = ACTIONS(3415), + }, + [1327] = { + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_cimport] = ACTIONS(3421), + [anon_sym_from] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_print] = ACTIONS(3421), + [anon_sym_assert] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_del] = ACTIONS(3421), + [anon_sym_raise] = ACTIONS(3421), + [anon_sym_pass] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_match] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_def] = ACTIONS(3421), + [anon_sym_global] = ACTIONS(3421), + [anon_sym_nonlocal] = ACTIONS(3421), + [anon_sym_exec] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_AT] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_not] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_lambda] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_None] = ACTIONS(3421), + [anon_sym_0x] = ACTIONS(3419), + [anon_sym_0X] = ACTIONS(3419), + [anon_sym_0o] = ACTIONS(3419), + [anon_sym_0O] = ACTIONS(3419), + [anon_sym_0b] = ACTIONS(3419), + [anon_sym_0B] = ACTIONS(3419), + [aux_sym_integer_token4] = ACTIONS(3421), + [sym_float] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_api] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3421), + [anon_sym_include] = ACTIONS(3421), + [anon_sym_DEF] = ACTIONS(3421), + [anon_sym_IF] = ACTIONS(3421), + [anon_sym_cdef] = ACTIONS(3421), + [anon_sym_cpdef] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_ctypedef] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_packed] = ACTIONS(3421), + [anon_sym_inline] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_sizeof] = ACTIONS(3421), + [sym_string_start] = ACTIONS(3419), + }, + [1328] = { + [ts_builtin_sym_end] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_cimport] = ACTIONS(3425), + [anon_sym_from] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_print] = ACTIONS(3425), + [anon_sym_assert] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_del] = ACTIONS(3425), + [anon_sym_raise] = ACTIONS(3425), + [anon_sym_pass] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_match] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_def] = ACTIONS(3425), + [anon_sym_global] = ACTIONS(3425), + [anon_sym_nonlocal] = ACTIONS(3425), + [anon_sym_exec] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_not] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_lambda] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3423), + [anon_sym_None] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3423), + [anon_sym_0X] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3423), + [anon_sym_0O] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0B] = ACTIONS(3423), + [aux_sym_integer_token4] = ACTIONS(3425), + [sym_float] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_api] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3425), + [anon_sym_include] = ACTIONS(3425), + [anon_sym_DEF] = ACTIONS(3425), + [anon_sym_IF] = ACTIONS(3425), + [anon_sym_cdef] = ACTIONS(3425), + [anon_sym_cpdef] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_ctypedef] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_packed] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_sizeof] = ACTIONS(3425), + [sym_string_start] = ACTIONS(3423), + }, + [1329] = { + [ts_builtin_sym_end] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_cimport] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_print] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_del] = ACTIONS(3429), + [anon_sym_raise] = ACTIONS(3429), + [anon_sym_pass] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_def] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3429), + [anon_sym_nonlocal] = ACTIONS(3429), + [anon_sym_exec] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_not] = ACTIONS(3429), + [anon_sym_AMP] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_lambda] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3427), + [anon_sym_None] = ACTIONS(3429), + [anon_sym_0x] = ACTIONS(3427), + [anon_sym_0X] = ACTIONS(3427), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0O] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(3427), + [anon_sym_0B] = ACTIONS(3427), + [aux_sym_integer_token4] = ACTIONS(3429), + [sym_float] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_api] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3429), + [anon_sym_include] = ACTIONS(3429), + [anon_sym_DEF] = ACTIONS(3429), + [anon_sym_IF] = ACTIONS(3429), + [anon_sym_cdef] = ACTIONS(3429), + [anon_sym_cpdef] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_ctypedef] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_packed] = ACTIONS(3429), + [anon_sym_inline] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_sizeof] = ACTIONS(3429), + [sym_string_start] = ACTIONS(3427), + }, + [1330] = { + [ts_builtin_sym_end] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3433), + [anon_sym_cimport] = ACTIONS(3433), + [anon_sym_from] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_print] = ACTIONS(3433), + [anon_sym_assert] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3433), + [anon_sym_del] = ACTIONS(3433), + [anon_sym_raise] = ACTIONS(3433), + [anon_sym_pass] = ACTIONS(3433), + [anon_sym_break] = ACTIONS(3433), + [anon_sym_continue] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3433), + [anon_sym_match] = ACTIONS(3433), + [anon_sym_async] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_while] = ACTIONS(3433), + [anon_sym_try] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3433), + [anon_sym_def] = ACTIONS(3433), + [anon_sym_global] = ACTIONS(3433), + [anon_sym_nonlocal] = ACTIONS(3433), + [anon_sym_exec] = ACTIONS(3433), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_class] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_not] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_lambda] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3431), + [anon_sym_None] = ACTIONS(3433), + [anon_sym_0x] = ACTIONS(3431), + [anon_sym_0X] = ACTIONS(3431), + [anon_sym_0o] = ACTIONS(3431), + [anon_sym_0O] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(3431), + [anon_sym_0B] = ACTIONS(3431), + [aux_sym_integer_token4] = ACTIONS(3433), + [sym_float] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3433), + [anon_sym_api] = ACTIONS(3433), + [sym_true] = ACTIONS(3433), + [sym_false] = ACTIONS(3433), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3433), + [anon_sym_include] = ACTIONS(3433), + [anon_sym_DEF] = ACTIONS(3433), + [anon_sym_IF] = ACTIONS(3433), + [anon_sym_cdef] = ACTIONS(3433), + [anon_sym_cpdef] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3433), + [anon_sym_ctypedef] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3433), + [anon_sym_packed] = ACTIONS(3433), + [anon_sym_inline] = ACTIONS(3433), + [anon_sym_readonly] = ACTIONS(3433), + [anon_sym_sizeof] = ACTIONS(3433), + [sym_string_start] = ACTIONS(3431), + }, + [1331] = { + [ts_builtin_sym_end] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_cimport] = ACTIONS(3437), + [anon_sym_from] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3435), + [anon_sym_STAR] = ACTIONS(3435), + [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_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(3435), + [anon_sym_AT] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_not] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3435), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_lambda] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3435), + [anon_sym_None] = ACTIONS(3437), + [anon_sym_0x] = ACTIONS(3435), + [anon_sym_0X] = ACTIONS(3435), + [anon_sym_0o] = ACTIONS(3435), + [anon_sym_0O] = ACTIONS(3435), + [anon_sym_0b] = ACTIONS(3435), + [anon_sym_0B] = ACTIONS(3435), + [aux_sym_integer_token4] = ACTIONS(3437), + [sym_float] = ACTIONS(3435), + [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(3435), + }, + [1332] = { + [ts_builtin_sym_end] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_cimport] = ACTIONS(3441), + [anon_sym_from] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_print] = ACTIONS(3441), + [anon_sym_assert] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_del] = ACTIONS(3441), + [anon_sym_raise] = ACTIONS(3441), + [anon_sym_pass] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_match] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_def] = ACTIONS(3441), + [anon_sym_global] = ACTIONS(3441), + [anon_sym_nonlocal] = ACTIONS(3441), + [anon_sym_exec] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [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(3441), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_lambda] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), + [anon_sym_None] = ACTIONS(3441), + [anon_sym_0x] = ACTIONS(3439), + [anon_sym_0X] = ACTIONS(3439), + [anon_sym_0o] = ACTIONS(3439), + [anon_sym_0O] = ACTIONS(3439), + [anon_sym_0b] = ACTIONS(3439), + [anon_sym_0B] = ACTIONS(3439), + [aux_sym_integer_token4] = ACTIONS(3441), + [sym_float] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_api] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3441), + [anon_sym_include] = ACTIONS(3441), + [anon_sym_DEF] = ACTIONS(3441), + [anon_sym_IF] = ACTIONS(3441), + [anon_sym_cdef] = ACTIONS(3441), + [anon_sym_cpdef] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_ctypedef] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_packed] = ACTIONS(3441), + [anon_sym_inline] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_sizeof] = ACTIONS(3441), + [sym_string_start] = ACTIONS(3439), + }, + [1333] = { + [ts_builtin_sym_end] = ACTIONS(3245), + [sym_identifier] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_cimport] = ACTIONS(3243), + [anon_sym_from] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [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_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_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(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_not] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_lambda] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3245), + [anon_sym_None] = ACTIONS(3243), + [anon_sym_0x] = ACTIONS(3245), + [anon_sym_0X] = ACTIONS(3245), + [anon_sym_0o] = ACTIONS(3245), + [anon_sym_0O] = ACTIONS(3245), + [anon_sym_0b] = ACTIONS(3245), + [anon_sym_0B] = ACTIONS(3245), + [aux_sym_integer_token4] = ACTIONS(3243), + [sym_float] = ACTIONS(3245), + [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(3245), + }, + [1334] = { + [ts_builtin_sym_end] = ACTIONS(3443), + [sym_identifier] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3445), + [anon_sym_cimport] = ACTIONS(3445), + [anon_sym_from] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3443), + [anon_sym_print] = ACTIONS(3445), + [anon_sym_assert] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3445), + [anon_sym_del] = ACTIONS(3445), + [anon_sym_raise] = ACTIONS(3445), + [anon_sym_pass] = ACTIONS(3445), + [anon_sym_break] = ACTIONS(3445), + [anon_sym_continue] = ACTIONS(3445), + [anon_sym_if] = ACTIONS(3445), + [anon_sym_match] = ACTIONS(3445), + [anon_sym_async] = ACTIONS(3445), + [anon_sym_for] = ACTIONS(3445), + [anon_sym_while] = ACTIONS(3445), + [anon_sym_try] = ACTIONS(3445), + [anon_sym_with] = ACTIONS(3445), + [anon_sym_def] = ACTIONS(3445), + [anon_sym_global] = ACTIONS(3445), + [anon_sym_nonlocal] = ACTIONS(3445), + [anon_sym_exec] = ACTIONS(3445), + [anon_sym_type] = ACTIONS(3445), + [anon_sym_class] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_AT] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_not] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_lambda] = ACTIONS(3445), + [anon_sym_yield] = ACTIONS(3445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3443), + [anon_sym_None] = ACTIONS(3445), + [anon_sym_0x] = ACTIONS(3443), + [anon_sym_0X] = ACTIONS(3443), + [anon_sym_0o] = ACTIONS(3443), + [anon_sym_0O] = ACTIONS(3443), + [anon_sym_0b] = ACTIONS(3443), + [anon_sym_0B] = ACTIONS(3443), + [aux_sym_integer_token4] = ACTIONS(3445), + [sym_float] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3445), + [anon_sym_api] = ACTIONS(3445), + [sym_true] = ACTIONS(3445), + [sym_false] = ACTIONS(3445), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3445), + [anon_sym_include] = ACTIONS(3445), + [anon_sym_DEF] = ACTIONS(3445), + [anon_sym_IF] = ACTIONS(3445), + [anon_sym_cdef] = ACTIONS(3445), + [anon_sym_cpdef] = ACTIONS(3445), + [anon_sym_new] = ACTIONS(3445), + [anon_sym_ctypedef] = ACTIONS(3445), + [anon_sym_public] = ACTIONS(3445), + [anon_sym_packed] = ACTIONS(3445), + [anon_sym_inline] = ACTIONS(3445), + [anon_sym_readonly] = ACTIONS(3445), + [anon_sym_sizeof] = ACTIONS(3445), + [sym_string_start] = ACTIONS(3443), + }, + [1335] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5078), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1336] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3105), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1337] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5269), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1338] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3106), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1339] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3107), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1340] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3088), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1341] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3108), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1342] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3109), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1343] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3111), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1344] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3116), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1345] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3117), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1346] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3118), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1347] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2610), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1348] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3119), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1349] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1350] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1351] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1352] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3121), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1353] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4011), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1354] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4001), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1355] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4013), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1356] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3952), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1357] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4014), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1358] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5218), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1359] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4034), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1360] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4018), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1361] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5336), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1362] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5337), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1363] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5339), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1364] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3952), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1365] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5340), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1366] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1367] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5344), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1368] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1369] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5353), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1370] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3125), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1371] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1372] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3127), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1373] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3205), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1374] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3128), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1375] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1376] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3130), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1377] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2943), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1378] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(3046), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1379] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2946), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1380] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(3027), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1381] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2951), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1382] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2955), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1383] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2961), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1384] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(3043), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1385] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(3044), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1386] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(3045), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1387] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(2870), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1388] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(2945), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1389] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(2876), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1390] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(3026), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1391] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3398), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1392] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3399), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1393] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3400), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1394] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3409), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1395] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3401), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1396] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3403), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1397] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3404), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1398] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3280), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1399] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3301), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1400] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3230), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1401] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3252), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1402] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3231), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1403] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3234), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1404] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3235), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1405] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1406] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3133), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1407] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1408] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2610), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1409] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3135), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1410] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1411] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3137), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1412] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4736), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1413] = { + [ts_builtin_sym_end] = ACTIONS(3497), + [sym_identifier] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3497), + [anon_sym_import] = ACTIONS(3499), + [anon_sym_cimport] = ACTIONS(3499), + [anon_sym_from] = ACTIONS(3499), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_print] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_del] = ACTIONS(3499), + [anon_sym_raise] = ACTIONS(3499), + [anon_sym_pass] = ACTIONS(3499), + [anon_sym_break] = ACTIONS(3499), + [anon_sym_continue] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_async] = ACTIONS(3499), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_with] = ACTIONS(3499), + [anon_sym_def] = ACTIONS(3499), + [anon_sym_global] = ACTIONS(3499), + [anon_sym_nonlocal] = ACTIONS(3499), + [anon_sym_exec] = ACTIONS(3499), + [anon_sym_type] = ACTIONS(3499), + [anon_sym_class] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_AT] = ACTIONS(3497), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_not] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_lambda] = ACTIONS(3499), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), + [anon_sym_None] = ACTIONS(3499), + [anon_sym_0x] = ACTIONS(3497), + [anon_sym_0X] = ACTIONS(3497), + [anon_sym_0o] = ACTIONS(3497), + [anon_sym_0O] = ACTIONS(3497), + [anon_sym_0b] = ACTIONS(3497), + [anon_sym_0B] = ACTIONS(3497), + [aux_sym_integer_token4] = ACTIONS(3499), + [sym_float] = ACTIONS(3497), + [anon_sym_await] = ACTIONS(3499), + [anon_sym_api] = ACTIONS(3499), + [sym_true] = ACTIONS(3499), + [sym_false] = ACTIONS(3499), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3499), + [anon_sym_include] = ACTIONS(3499), + [anon_sym_DEF] = ACTIONS(3499), + [anon_sym_IF] = ACTIONS(3499), + [anon_sym_cdef] = ACTIONS(3499), + [anon_sym_cpdef] = ACTIONS(3499), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_ctypedef] = ACTIONS(3499), + [anon_sym_public] = ACTIONS(3499), + [anon_sym_packed] = ACTIONS(3499), + [anon_sym_inline] = ACTIONS(3499), + [anon_sym_readonly] = ACTIONS(3499), + [anon_sym_sizeof] = ACTIONS(3499), + [sym_string_start] = ACTIONS(3497), + }, + [1414] = { + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3501), + [anon_sym_import] = ACTIONS(3503), + [anon_sym_cimport] = ACTIONS(3503), + [anon_sym_from] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_print] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_del] = ACTIONS(3503), + [anon_sym_raise] = ACTIONS(3503), + [anon_sym_pass] = ACTIONS(3503), + [anon_sym_break] = ACTIONS(3503), + [anon_sym_continue] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_async] = ACTIONS(3503), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_with] = ACTIONS(3503), + [anon_sym_def] = ACTIONS(3503), + [anon_sym_global] = ACTIONS(3503), + [anon_sym_nonlocal] = ACTIONS(3503), + [anon_sym_exec] = ACTIONS(3503), + [anon_sym_type] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3501), + [anon_sym_AT] = ACTIONS(3501), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_not] = ACTIONS(3503), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_TILDE] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_lambda] = ACTIONS(3503), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), + [anon_sym_None] = ACTIONS(3503), + [anon_sym_0x] = ACTIONS(3501), + [anon_sym_0X] = ACTIONS(3501), + [anon_sym_0o] = ACTIONS(3501), + [anon_sym_0O] = ACTIONS(3501), + [anon_sym_0b] = ACTIONS(3501), + [anon_sym_0B] = ACTIONS(3501), + [aux_sym_integer_token4] = ACTIONS(3503), + [sym_float] = ACTIONS(3501), + [anon_sym_await] = ACTIONS(3503), + [anon_sym_api] = ACTIONS(3503), + [sym_true] = ACTIONS(3503), + [sym_false] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3503), + [anon_sym_include] = ACTIONS(3503), + [anon_sym_DEF] = ACTIONS(3503), + [anon_sym_IF] = ACTIONS(3503), + [anon_sym_cdef] = ACTIONS(3503), + [anon_sym_cpdef] = ACTIONS(3503), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_ctypedef] = ACTIONS(3503), + [anon_sym_public] = ACTIONS(3503), + [anon_sym_packed] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym_readonly] = ACTIONS(3503), + [anon_sym_sizeof] = ACTIONS(3503), + [sym_string_start] = ACTIONS(3501), + }, + [1415] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4304), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1416] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5240), + [sym_primary_expression] = STATE(2678), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2918), + [sym_subscript] = STATE(2918), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_async] = ACTIONS(3507), + [anon_sym_exec] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(3509), + [anon_sym_api] = ACTIONS(3507), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1417] = { + [sym_identifier] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3103), + [anon_sym_cimport] = ACTIONS(3103), + [anon_sym_from] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_print] = ACTIONS(3103), + [anon_sym_assert] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_del] = ACTIONS(3103), + [anon_sym_raise] = ACTIONS(3103), + [anon_sym_pass] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_match] = ACTIONS(3103), + [anon_sym_async] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_with] = ACTIONS(3103), + [anon_sym_def] = ACTIONS(3103), + [anon_sym_global] = ACTIONS(3103), + [anon_sym_nonlocal] = ACTIONS(3103), + [anon_sym_exec] = ACTIONS(3103), + [anon_sym_type] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_AT] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_lambda] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [anon_sym_None] = ACTIONS(3103), + [anon_sym_0x] = ACTIONS(3101), + [anon_sym_0X] = ACTIONS(3101), + [anon_sym_0o] = ACTIONS(3101), + [anon_sym_0O] = ACTIONS(3101), + [anon_sym_0b] = ACTIONS(3101), + [anon_sym_0B] = ACTIONS(3101), + [aux_sym_integer_token4] = ACTIONS(3103), + [sym_float] = ACTIONS(3101), + [anon_sym_await] = ACTIONS(3103), + [anon_sym_api] = ACTIONS(3103), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3103), + [anon_sym_include] = ACTIONS(3103), + [anon_sym_DEF] = ACTIONS(3103), + [anon_sym_IF] = ACTIONS(3103), + [anon_sym_cdef] = ACTIONS(3103), + [anon_sym_cpdef] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_ctypedef] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_packed] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_readonly] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3103), + [sym__dedent] = ACTIONS(3101), + [sym_string_start] = ACTIONS(3101), + }, + [1418] = { + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3513), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym_import] = ACTIONS(3513), + [anon_sym_cimport] = ACTIONS(3513), + [anon_sym_from] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_print] = ACTIONS(3513), + [anon_sym_assert] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_del] = ACTIONS(3513), + [anon_sym_raise] = ACTIONS(3513), + [anon_sym_pass] = ACTIONS(3513), + [anon_sym_break] = ACTIONS(3513), + [anon_sym_continue] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_match] = ACTIONS(3513), + [anon_sym_async] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3513), + [anon_sym_def] = ACTIONS(3513), + [anon_sym_global] = ACTIONS(3513), + [anon_sym_nonlocal] = ACTIONS(3513), + [anon_sym_exec] = ACTIONS(3513), + [anon_sym_type] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3511), + [anon_sym_AT] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_PLUS] = ACTIONS(3511), + [anon_sym_not] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_LT] = ACTIONS(3511), + [anon_sym_lambda] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [anon_sym_None] = ACTIONS(3513), + [anon_sym_0x] = ACTIONS(3511), + [anon_sym_0X] = ACTIONS(3511), + [anon_sym_0o] = ACTIONS(3511), + [anon_sym_0O] = ACTIONS(3511), + [anon_sym_0b] = ACTIONS(3511), + [anon_sym_0B] = ACTIONS(3511), + [aux_sym_integer_token4] = ACTIONS(3513), + [sym_float] = ACTIONS(3511), + [anon_sym_await] = ACTIONS(3513), + [anon_sym_api] = ACTIONS(3513), + [sym_true] = ACTIONS(3513), + [sym_false] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3513), + [anon_sym_include] = ACTIONS(3513), + [anon_sym_DEF] = ACTIONS(3513), + [anon_sym_IF] = ACTIONS(3513), + [anon_sym_cdef] = ACTIONS(3513), + [anon_sym_cpdef] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3513), + [anon_sym_ctypedef] = ACTIONS(3513), + [anon_sym_public] = ACTIONS(3513), + [anon_sym_packed] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym_readonly] = ACTIONS(3513), + [anon_sym_sizeof] = ACTIONS(3513), + [sym_string_start] = ACTIONS(3511), + }, + [1419] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5213), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1420] = { + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3519), + [anon_sym_SEMI] = ACTIONS(3517), + [anon_sym_import] = ACTIONS(3519), + [anon_sym_cimport] = ACTIONS(3519), + [anon_sym_from] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_print] = ACTIONS(3519), + [anon_sym_assert] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3519), + [anon_sym_del] = ACTIONS(3519), + [anon_sym_raise] = ACTIONS(3519), + [anon_sym_pass] = ACTIONS(3519), + [anon_sym_break] = ACTIONS(3519), + [anon_sym_continue] = ACTIONS(3519), + [anon_sym_if] = ACTIONS(3519), + [anon_sym_match] = ACTIONS(3519), + [anon_sym_async] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), + [anon_sym_try] = ACTIONS(3519), + [anon_sym_with] = ACTIONS(3519), + [anon_sym_def] = ACTIONS(3519), + [anon_sym_global] = ACTIONS(3519), + [anon_sym_nonlocal] = ACTIONS(3519), + [anon_sym_exec] = ACTIONS(3519), + [anon_sym_type] = ACTIONS(3519), + [anon_sym_class] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_AT] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_not] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3517), + [anon_sym_LT] = ACTIONS(3517), + [anon_sym_lambda] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), + [anon_sym_None] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3517), + [anon_sym_0X] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3517), + [anon_sym_0O] = ACTIONS(3517), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0B] = ACTIONS(3517), + [aux_sym_integer_token4] = ACTIONS(3519), + [sym_float] = ACTIONS(3517), + [anon_sym_await] = ACTIONS(3519), + [anon_sym_api] = ACTIONS(3519), + [sym_true] = ACTIONS(3519), + [sym_false] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3519), + [anon_sym_include] = ACTIONS(3519), + [anon_sym_DEF] = ACTIONS(3519), + [anon_sym_IF] = ACTIONS(3519), + [anon_sym_cdef] = ACTIONS(3519), + [anon_sym_cpdef] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3519), + [anon_sym_ctypedef] = ACTIONS(3519), + [anon_sym_public] = ACTIONS(3519), + [anon_sym_packed] = ACTIONS(3519), + [anon_sym_inline] = ACTIONS(3519), + [anon_sym_readonly] = ACTIONS(3519), + [anon_sym_sizeof] = ACTIONS(3519), + [sym_string_start] = ACTIONS(3517), + }, + [1421] = { + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_import] = ACTIONS(3523), + [anon_sym_cimport] = ACTIONS(3523), + [anon_sym_from] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_print] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_del] = ACTIONS(3523), + [anon_sym_raise] = ACTIONS(3523), + [anon_sym_pass] = ACTIONS(3523), + [anon_sym_break] = ACTIONS(3523), + [anon_sym_continue] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_async] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_with] = ACTIONS(3523), + [anon_sym_def] = ACTIONS(3523), + [anon_sym_global] = ACTIONS(3523), + [anon_sym_nonlocal] = ACTIONS(3523), + [anon_sym_exec] = ACTIONS(3523), + [anon_sym_type] = ACTIONS(3523), + [anon_sym_class] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_AT] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_not] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_lambda] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [anon_sym_None] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3521), + [anon_sym_0X] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3521), + [anon_sym_0O] = ACTIONS(3521), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0B] = ACTIONS(3521), + [aux_sym_integer_token4] = ACTIONS(3523), + [sym_float] = ACTIONS(3521), + [anon_sym_await] = ACTIONS(3523), + [anon_sym_api] = ACTIONS(3523), + [sym_true] = ACTIONS(3523), + [sym_false] = ACTIONS(3523), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3523), + [anon_sym_include] = ACTIONS(3523), + [anon_sym_DEF] = ACTIONS(3523), + [anon_sym_IF] = ACTIONS(3523), + [anon_sym_cdef] = ACTIONS(3523), + [anon_sym_cpdef] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_ctypedef] = ACTIONS(3523), + [anon_sym_public] = ACTIONS(3523), + [anon_sym_packed] = ACTIONS(3523), + [anon_sym_inline] = ACTIONS(3523), + [anon_sym_readonly] = ACTIONS(3523), + [anon_sym_sizeof] = ACTIONS(3523), + [sym_string_start] = ACTIONS(3521), + }, + [1422] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5224), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1423] = { + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3527), + [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_import] = ACTIONS(3527), + [anon_sym_cimport] = ACTIONS(3527), + [anon_sym_from] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3525), + [anon_sym_print] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_del] = ACTIONS(3527), + [anon_sym_raise] = ACTIONS(3527), + [anon_sym_pass] = ACTIONS(3527), + [anon_sym_break] = ACTIONS(3527), + [anon_sym_continue] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_async] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_with] = ACTIONS(3527), + [anon_sym_def] = ACTIONS(3527), + [anon_sym_global] = ACTIONS(3527), + [anon_sym_nonlocal] = ACTIONS(3527), + [anon_sym_exec] = ACTIONS(3527), + [anon_sym_type] = ACTIONS(3527), + [anon_sym_class] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_AT] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_not] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_lambda] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), + [anon_sym_None] = ACTIONS(3527), + [anon_sym_0x] = ACTIONS(3525), + [anon_sym_0X] = ACTIONS(3525), + [anon_sym_0o] = ACTIONS(3525), + [anon_sym_0O] = ACTIONS(3525), + [anon_sym_0b] = ACTIONS(3525), + [anon_sym_0B] = ACTIONS(3525), + [aux_sym_integer_token4] = ACTIONS(3527), + [sym_float] = ACTIONS(3525), + [anon_sym_await] = ACTIONS(3527), + [anon_sym_api] = ACTIONS(3527), + [sym_true] = ACTIONS(3527), + [sym_false] = ACTIONS(3527), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3527), + [anon_sym_include] = ACTIONS(3527), + [anon_sym_DEF] = ACTIONS(3527), + [anon_sym_IF] = ACTIONS(3527), + [anon_sym_cdef] = ACTIONS(3527), + [anon_sym_cpdef] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_ctypedef] = ACTIONS(3527), + [anon_sym_public] = ACTIONS(3527), + [anon_sym_packed] = ACTIONS(3527), + [anon_sym_inline] = ACTIONS(3527), + [anon_sym_readonly] = ACTIONS(3527), + [anon_sym_sizeof] = ACTIONS(3527), + [sym_string_start] = ACTIONS(3525), + }, + [1424] = { + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3531), + [anon_sym_SEMI] = ACTIONS(3529), + [anon_sym_import] = ACTIONS(3531), + [anon_sym_cimport] = ACTIONS(3531), + [anon_sym_from] = ACTIONS(3531), + [anon_sym_LPAREN] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3529), + [anon_sym_print] = ACTIONS(3531), + [anon_sym_assert] = ACTIONS(3531), + [anon_sym_return] = ACTIONS(3531), + [anon_sym_del] = ACTIONS(3531), + [anon_sym_raise] = ACTIONS(3531), + [anon_sym_pass] = ACTIONS(3531), + [anon_sym_break] = ACTIONS(3531), + [anon_sym_continue] = ACTIONS(3531), + [anon_sym_if] = ACTIONS(3531), + [anon_sym_match] = ACTIONS(3531), + [anon_sym_async] = ACTIONS(3531), + [anon_sym_for] = ACTIONS(3531), + [anon_sym_while] = ACTIONS(3531), + [anon_sym_try] = ACTIONS(3531), + [anon_sym_with] = ACTIONS(3531), + [anon_sym_def] = ACTIONS(3531), + [anon_sym_global] = ACTIONS(3531), + [anon_sym_nonlocal] = ACTIONS(3531), + [anon_sym_exec] = ACTIONS(3531), + [anon_sym_type] = ACTIONS(3531), + [anon_sym_class] = ACTIONS(3531), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_AT] = ACTIONS(3529), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3529), + [anon_sym_not] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_TILDE] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_lambda] = ACTIONS(3531), + [anon_sym_yield] = ACTIONS(3531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), + [anon_sym_None] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3529), + [anon_sym_0X] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3529), + [anon_sym_0O] = ACTIONS(3529), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0B] = ACTIONS(3529), + [aux_sym_integer_token4] = ACTIONS(3531), + [sym_float] = ACTIONS(3529), + [anon_sym_await] = ACTIONS(3531), + [anon_sym_api] = ACTIONS(3531), + [sym_true] = ACTIONS(3531), + [sym_false] = ACTIONS(3531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3531), + [anon_sym_include] = ACTIONS(3531), + [anon_sym_DEF] = ACTIONS(3531), + [anon_sym_IF] = ACTIONS(3531), + [anon_sym_cdef] = ACTIONS(3531), + [anon_sym_cpdef] = ACTIONS(3531), + [anon_sym_new] = ACTIONS(3531), + [anon_sym_ctypedef] = ACTIONS(3531), + [anon_sym_public] = ACTIONS(3531), + [anon_sym_packed] = ACTIONS(3531), + [anon_sym_inline] = ACTIONS(3531), + [anon_sym_readonly] = ACTIONS(3531), + [anon_sym_sizeof] = ACTIONS(3531), + [sym_string_start] = ACTIONS(3529), + }, + [1425] = { + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3533), + [anon_sym_import] = ACTIONS(3535), + [anon_sym_cimport] = ACTIONS(3535), + [anon_sym_from] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3533), + [anon_sym_print] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_del] = ACTIONS(3535), + [anon_sym_raise] = ACTIONS(3535), + [anon_sym_pass] = ACTIONS(3535), + [anon_sym_break] = ACTIONS(3535), + [anon_sym_continue] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_async] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(3535), + [anon_sym_def] = ACTIONS(3535), + [anon_sym_global] = ACTIONS(3535), + [anon_sym_nonlocal] = ACTIONS(3535), + [anon_sym_exec] = ACTIONS(3535), + [anon_sym_type] = ACTIONS(3535), + [anon_sym_class] = ACTIONS(3535), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_AT] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3533), + [anon_sym_LT] = ACTIONS(3533), + [anon_sym_lambda] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), + [anon_sym_None] = ACTIONS(3535), + [anon_sym_0x] = ACTIONS(3533), + [anon_sym_0X] = ACTIONS(3533), + [anon_sym_0o] = ACTIONS(3533), + [anon_sym_0O] = ACTIONS(3533), + [anon_sym_0b] = ACTIONS(3533), + [anon_sym_0B] = ACTIONS(3533), + [aux_sym_integer_token4] = ACTIONS(3535), + [sym_float] = ACTIONS(3533), + [anon_sym_await] = ACTIONS(3535), + [anon_sym_api] = ACTIONS(3535), + [sym_true] = ACTIONS(3535), + [sym_false] = ACTIONS(3535), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3535), + [anon_sym_include] = ACTIONS(3535), + [anon_sym_DEF] = ACTIONS(3535), + [anon_sym_IF] = ACTIONS(3535), + [anon_sym_cdef] = ACTIONS(3535), + [anon_sym_cpdef] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_ctypedef] = ACTIONS(3535), + [anon_sym_public] = ACTIONS(3535), + [anon_sym_packed] = ACTIONS(3535), + [anon_sym_inline] = ACTIONS(3535), + [anon_sym_readonly] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3535), + [sym_string_start] = ACTIONS(3533), + }, + [1426] = { + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3537), + [anon_sym_import] = ACTIONS(3539), + [anon_sym_cimport] = ACTIONS(3539), + [anon_sym_from] = ACTIONS(3539), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(3537), + [anon_sym_print] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_del] = ACTIONS(3539), + [anon_sym_raise] = ACTIONS(3539), + [anon_sym_pass] = ACTIONS(3539), + [anon_sym_break] = ACTIONS(3539), + [anon_sym_continue] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_async] = ACTIONS(3539), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_with] = ACTIONS(3539), + [anon_sym_def] = ACTIONS(3539), + [anon_sym_global] = ACTIONS(3539), + [anon_sym_nonlocal] = ACTIONS(3539), + [anon_sym_exec] = ACTIONS(3539), + [anon_sym_type] = ACTIONS(3539), + [anon_sym_class] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3537), + [anon_sym_AT] = ACTIONS(3537), + [anon_sym_DASH] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3537), + [anon_sym_PLUS] = ACTIONS(3537), + [anon_sym_not] = ACTIONS(3539), + [anon_sym_AMP] = ACTIONS(3537), + [anon_sym_TILDE] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_lambda] = ACTIONS(3539), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3537), + [anon_sym_None] = ACTIONS(3539), + [anon_sym_0x] = ACTIONS(3537), + [anon_sym_0X] = ACTIONS(3537), + [anon_sym_0o] = ACTIONS(3537), + [anon_sym_0O] = ACTIONS(3537), + [anon_sym_0b] = ACTIONS(3537), + [anon_sym_0B] = ACTIONS(3537), + [aux_sym_integer_token4] = ACTIONS(3539), + [sym_float] = ACTIONS(3537), + [anon_sym_await] = ACTIONS(3539), + [anon_sym_api] = ACTIONS(3539), + [sym_true] = ACTIONS(3539), + [sym_false] = ACTIONS(3539), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3539), + [anon_sym_include] = ACTIONS(3539), + [anon_sym_DEF] = ACTIONS(3539), + [anon_sym_IF] = ACTIONS(3539), + [anon_sym_cdef] = ACTIONS(3539), + [anon_sym_cpdef] = ACTIONS(3539), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_ctypedef] = ACTIONS(3539), + [anon_sym_public] = ACTIONS(3539), + [anon_sym_packed] = ACTIONS(3539), + [anon_sym_inline] = ACTIONS(3539), + [anon_sym_readonly] = ACTIONS(3539), + [anon_sym_sizeof] = ACTIONS(3539), + [sym_string_start] = ACTIONS(3537), + }, + [1427] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4995), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1428] = { + [ts_builtin_sym_end] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3543), + [anon_sym_SEMI] = ACTIONS(3541), + [anon_sym_import] = ACTIONS(3543), + [anon_sym_cimport] = ACTIONS(3543), + [anon_sym_from] = ACTIONS(3543), + [anon_sym_LPAREN] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3541), + [anon_sym_print] = ACTIONS(3543), + [anon_sym_assert] = ACTIONS(3543), + [anon_sym_return] = ACTIONS(3543), + [anon_sym_del] = ACTIONS(3543), + [anon_sym_raise] = ACTIONS(3543), + [anon_sym_pass] = ACTIONS(3543), + [anon_sym_break] = ACTIONS(3543), + [anon_sym_continue] = ACTIONS(3543), + [anon_sym_if] = ACTIONS(3543), + [anon_sym_match] = ACTIONS(3543), + [anon_sym_async] = ACTIONS(3543), + [anon_sym_for] = ACTIONS(3543), + [anon_sym_while] = ACTIONS(3543), + [anon_sym_try] = ACTIONS(3543), + [anon_sym_with] = ACTIONS(3543), + [anon_sym_def] = ACTIONS(3543), + [anon_sym_global] = ACTIONS(3543), + [anon_sym_nonlocal] = ACTIONS(3543), + [anon_sym_exec] = ACTIONS(3543), + [anon_sym_type] = ACTIONS(3543), + [anon_sym_class] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_AT] = ACTIONS(3541), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3541), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_not] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_TILDE] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_lambda] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3541), + [anon_sym_None] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3541), + [anon_sym_0X] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3541), + [anon_sym_0O] = ACTIONS(3541), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0B] = ACTIONS(3541), + [aux_sym_integer_token4] = ACTIONS(3543), + [sym_float] = ACTIONS(3541), + [anon_sym_await] = ACTIONS(3543), + [anon_sym_api] = ACTIONS(3543), + [sym_true] = ACTIONS(3543), + [sym_false] = ACTIONS(3543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3543), + [anon_sym_include] = ACTIONS(3543), + [anon_sym_DEF] = ACTIONS(3543), + [anon_sym_IF] = ACTIONS(3543), + [anon_sym_cdef] = ACTIONS(3543), + [anon_sym_cpdef] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3543), + [anon_sym_ctypedef] = ACTIONS(3543), + [anon_sym_public] = ACTIONS(3543), + [anon_sym_packed] = ACTIONS(3543), + [anon_sym_inline] = ACTIONS(3543), + [anon_sym_readonly] = ACTIONS(3543), + [anon_sym_sizeof] = ACTIONS(3543), + [sym_string_start] = ACTIONS(3541), + }, + [1429] = { + [ts_builtin_sym_end] = ACTIONS(3545), + [sym_identifier] = ACTIONS(3547), + [anon_sym_SEMI] = ACTIONS(3545), + [anon_sym_import] = ACTIONS(3547), + [anon_sym_cimport] = ACTIONS(3547), + [anon_sym_from] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3545), + [anon_sym_print] = ACTIONS(3547), + [anon_sym_assert] = ACTIONS(3547), + [anon_sym_return] = ACTIONS(3547), + [anon_sym_del] = ACTIONS(3547), + [anon_sym_raise] = ACTIONS(3547), + [anon_sym_pass] = ACTIONS(3547), + [anon_sym_break] = ACTIONS(3547), + [anon_sym_continue] = ACTIONS(3547), + [anon_sym_if] = ACTIONS(3547), + [anon_sym_match] = ACTIONS(3547), + [anon_sym_async] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3547), + [anon_sym_while] = ACTIONS(3547), + [anon_sym_try] = ACTIONS(3547), + [anon_sym_with] = ACTIONS(3547), + [anon_sym_def] = ACTIONS(3547), + [anon_sym_global] = ACTIONS(3547), + [anon_sym_nonlocal] = ACTIONS(3547), + [anon_sym_exec] = ACTIONS(3547), + [anon_sym_type] = ACTIONS(3547), + [anon_sym_class] = ACTIONS(3547), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_AT] = ACTIONS(3545), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_PLUS] = ACTIONS(3545), + [anon_sym_not] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3545), + [anon_sym_LT] = ACTIONS(3545), + [anon_sym_lambda] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), + [anon_sym_None] = ACTIONS(3547), + [anon_sym_0x] = ACTIONS(3545), + [anon_sym_0X] = ACTIONS(3545), + [anon_sym_0o] = ACTIONS(3545), + [anon_sym_0O] = ACTIONS(3545), + [anon_sym_0b] = ACTIONS(3545), + [anon_sym_0B] = ACTIONS(3545), + [aux_sym_integer_token4] = ACTIONS(3547), + [sym_float] = ACTIONS(3545), + [anon_sym_await] = ACTIONS(3547), + [anon_sym_api] = ACTIONS(3547), + [sym_true] = ACTIONS(3547), + [sym_false] = ACTIONS(3547), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3547), + [anon_sym_include] = ACTIONS(3547), + [anon_sym_DEF] = ACTIONS(3547), + [anon_sym_IF] = ACTIONS(3547), + [anon_sym_cdef] = ACTIONS(3547), + [anon_sym_cpdef] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3547), + [anon_sym_ctypedef] = ACTIONS(3547), + [anon_sym_public] = ACTIONS(3547), + [anon_sym_packed] = ACTIONS(3547), + [anon_sym_inline] = ACTIONS(3547), + [anon_sym_readonly] = ACTIONS(3547), + [anon_sym_sizeof] = ACTIONS(3547), + [sym_string_start] = ACTIONS(3545), + }, + [1430] = { + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3551), + [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_import] = ACTIONS(3551), + [anon_sym_cimport] = ACTIONS(3551), + [anon_sym_from] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(3549), + [anon_sym_print] = ACTIONS(3551), + [anon_sym_assert] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3551), + [anon_sym_del] = ACTIONS(3551), + [anon_sym_raise] = ACTIONS(3551), + [anon_sym_pass] = ACTIONS(3551), + [anon_sym_break] = ACTIONS(3551), + [anon_sym_continue] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_match] = ACTIONS(3551), + [anon_sym_async] = ACTIONS(3551), + [anon_sym_for] = ACTIONS(3551), + [anon_sym_while] = ACTIONS(3551), + [anon_sym_try] = ACTIONS(3551), + [anon_sym_with] = ACTIONS(3551), + [anon_sym_def] = ACTIONS(3551), + [anon_sym_global] = ACTIONS(3551), + [anon_sym_nonlocal] = ACTIONS(3551), + [anon_sym_exec] = ACTIONS(3551), + [anon_sym_type] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_AT] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_not] = ACTIONS(3551), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3549), + [anon_sym_lambda] = ACTIONS(3551), + [anon_sym_yield] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), + [anon_sym_None] = ACTIONS(3551), + [anon_sym_0x] = ACTIONS(3549), + [anon_sym_0X] = ACTIONS(3549), + [anon_sym_0o] = ACTIONS(3549), + [anon_sym_0O] = ACTIONS(3549), + [anon_sym_0b] = ACTIONS(3549), + [anon_sym_0B] = ACTIONS(3549), + [aux_sym_integer_token4] = ACTIONS(3551), + [sym_float] = ACTIONS(3549), + [anon_sym_await] = ACTIONS(3551), + [anon_sym_api] = ACTIONS(3551), + [sym_true] = ACTIONS(3551), + [sym_false] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3551), + [anon_sym_include] = ACTIONS(3551), + [anon_sym_DEF] = ACTIONS(3551), + [anon_sym_IF] = ACTIONS(3551), + [anon_sym_cdef] = ACTIONS(3551), + [anon_sym_cpdef] = ACTIONS(3551), + [anon_sym_new] = ACTIONS(3551), + [anon_sym_ctypedef] = ACTIONS(3551), + [anon_sym_public] = ACTIONS(3551), + [anon_sym_packed] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym_readonly] = ACTIONS(3551), + [anon_sym_sizeof] = ACTIONS(3551), + [sym_string_start] = ACTIONS(3549), + }, + [1431] = { + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym_import] = ACTIONS(3555), + [anon_sym_cimport] = ACTIONS(3555), + [anon_sym_from] = ACTIONS(3555), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_print] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_del] = ACTIONS(3555), + [anon_sym_raise] = ACTIONS(3555), + [anon_sym_pass] = ACTIONS(3555), + [anon_sym_break] = ACTIONS(3555), + [anon_sym_continue] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_async] = ACTIONS(3555), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_with] = ACTIONS(3555), + [anon_sym_def] = ACTIONS(3555), + [anon_sym_global] = ACTIONS(3555), + [anon_sym_nonlocal] = ACTIONS(3555), + [anon_sym_exec] = ACTIONS(3555), + [anon_sym_type] = ACTIONS(3555), + [anon_sym_class] = ACTIONS(3555), + [anon_sym_LBRACK] = ACTIONS(3553), + [anon_sym_AT] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3553), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_PLUS] = ACTIONS(3553), + [anon_sym_not] = ACTIONS(3555), + [anon_sym_AMP] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_LT] = ACTIONS(3553), + [anon_sym_lambda] = ACTIONS(3555), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [anon_sym_None] = ACTIONS(3555), + [anon_sym_0x] = ACTIONS(3553), + [anon_sym_0X] = ACTIONS(3553), + [anon_sym_0o] = ACTIONS(3553), + [anon_sym_0O] = ACTIONS(3553), + [anon_sym_0b] = ACTIONS(3553), + [anon_sym_0B] = ACTIONS(3553), + [aux_sym_integer_token4] = ACTIONS(3555), + [sym_float] = ACTIONS(3553), + [anon_sym_await] = ACTIONS(3555), + [anon_sym_api] = ACTIONS(3555), + [sym_true] = ACTIONS(3555), + [sym_false] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3555), + [anon_sym_include] = ACTIONS(3555), + [anon_sym_DEF] = ACTIONS(3555), + [anon_sym_IF] = ACTIONS(3555), + [anon_sym_cdef] = ACTIONS(3555), + [anon_sym_cpdef] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_ctypedef] = ACTIONS(3555), + [anon_sym_public] = ACTIONS(3555), + [anon_sym_packed] = ACTIONS(3555), + [anon_sym_inline] = ACTIONS(3555), + [anon_sym_readonly] = ACTIONS(3555), + [anon_sym_sizeof] = ACTIONS(3555), + [sym_string_start] = ACTIONS(3553), + }, + [1432] = { + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3559), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym_import] = ACTIONS(3559), + [anon_sym_cimport] = ACTIONS(3559), + [anon_sym_from] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3557), + [anon_sym_print] = ACTIONS(3559), + [anon_sym_assert] = ACTIONS(3559), + [anon_sym_return] = ACTIONS(3559), + [anon_sym_del] = ACTIONS(3559), + [anon_sym_raise] = ACTIONS(3559), + [anon_sym_pass] = ACTIONS(3559), + [anon_sym_break] = ACTIONS(3559), + [anon_sym_continue] = ACTIONS(3559), + [anon_sym_if] = ACTIONS(3559), + [anon_sym_match] = ACTIONS(3559), + [anon_sym_async] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3559), + [anon_sym_while] = ACTIONS(3559), + [anon_sym_try] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3559), + [anon_sym_def] = ACTIONS(3559), + [anon_sym_global] = ACTIONS(3559), + [anon_sym_nonlocal] = ACTIONS(3559), + [anon_sym_exec] = ACTIONS(3559), + [anon_sym_type] = ACTIONS(3559), + [anon_sym_class] = ACTIONS(3559), + [anon_sym_LBRACK] = ACTIONS(3557), + [anon_sym_AT] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_not] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_lambda] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [anon_sym_None] = ACTIONS(3559), + [anon_sym_0x] = ACTIONS(3557), + [anon_sym_0X] = ACTIONS(3557), + [anon_sym_0o] = ACTIONS(3557), + [anon_sym_0O] = ACTIONS(3557), + [anon_sym_0b] = ACTIONS(3557), + [anon_sym_0B] = ACTIONS(3557), + [aux_sym_integer_token4] = ACTIONS(3559), + [sym_float] = ACTIONS(3557), + [anon_sym_await] = ACTIONS(3559), + [anon_sym_api] = ACTIONS(3559), + [sym_true] = ACTIONS(3559), + [sym_false] = ACTIONS(3559), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3559), + [anon_sym_include] = ACTIONS(3559), + [anon_sym_DEF] = ACTIONS(3559), + [anon_sym_IF] = ACTIONS(3559), + [anon_sym_cdef] = ACTIONS(3559), + [anon_sym_cpdef] = ACTIONS(3559), + [anon_sym_new] = ACTIONS(3559), + [anon_sym_ctypedef] = ACTIONS(3559), + [anon_sym_public] = ACTIONS(3559), + [anon_sym_packed] = ACTIONS(3559), + [anon_sym_inline] = ACTIONS(3559), + [anon_sym_readonly] = ACTIONS(3559), + [anon_sym_sizeof] = ACTIONS(3559), + [sym_string_start] = ACTIONS(3557), + }, + [1433] = { + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3563), + [anon_sym_SEMI] = ACTIONS(3561), + [anon_sym_import] = ACTIONS(3563), + [anon_sym_cimport] = ACTIONS(3563), + [anon_sym_from] = ACTIONS(3563), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3561), + [anon_sym_print] = ACTIONS(3563), + [anon_sym_assert] = ACTIONS(3563), + [anon_sym_return] = ACTIONS(3563), + [anon_sym_del] = ACTIONS(3563), + [anon_sym_raise] = ACTIONS(3563), + [anon_sym_pass] = ACTIONS(3563), + [anon_sym_break] = ACTIONS(3563), + [anon_sym_continue] = ACTIONS(3563), + [anon_sym_if] = ACTIONS(3563), + [anon_sym_match] = ACTIONS(3563), + [anon_sym_async] = ACTIONS(3563), + [anon_sym_for] = ACTIONS(3563), + [anon_sym_while] = ACTIONS(3563), + [anon_sym_try] = ACTIONS(3563), + [anon_sym_with] = ACTIONS(3563), + [anon_sym_def] = ACTIONS(3563), + [anon_sym_global] = ACTIONS(3563), + [anon_sym_nonlocal] = ACTIONS(3563), + [anon_sym_exec] = ACTIONS(3563), + [anon_sym_type] = ACTIONS(3563), + [anon_sym_class] = ACTIONS(3563), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_AT] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_not] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3561), + [anon_sym_LT] = ACTIONS(3561), + [anon_sym_lambda] = ACTIONS(3563), + [anon_sym_yield] = ACTIONS(3563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), + [anon_sym_None] = ACTIONS(3563), + [anon_sym_0x] = ACTIONS(3561), + [anon_sym_0X] = ACTIONS(3561), + [anon_sym_0o] = ACTIONS(3561), + [anon_sym_0O] = ACTIONS(3561), + [anon_sym_0b] = ACTIONS(3561), + [anon_sym_0B] = ACTIONS(3561), + [aux_sym_integer_token4] = ACTIONS(3563), + [sym_float] = ACTIONS(3561), + [anon_sym_await] = ACTIONS(3563), + [anon_sym_api] = ACTIONS(3563), + [sym_true] = ACTIONS(3563), + [sym_false] = ACTIONS(3563), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3563), + [anon_sym_include] = ACTIONS(3563), + [anon_sym_DEF] = ACTIONS(3563), + [anon_sym_IF] = ACTIONS(3563), + [anon_sym_cdef] = ACTIONS(3563), + [anon_sym_cpdef] = ACTIONS(3563), + [anon_sym_new] = ACTIONS(3563), + [anon_sym_ctypedef] = ACTIONS(3563), + [anon_sym_public] = ACTIONS(3563), + [anon_sym_packed] = ACTIONS(3563), + [anon_sym_inline] = ACTIONS(3563), + [anon_sym_readonly] = ACTIONS(3563), + [anon_sym_sizeof] = ACTIONS(3563), + [sym_string_start] = ACTIONS(3561), + }, + [1434] = { + [ts_builtin_sym_end] = ACTIONS(3565), + [sym_identifier] = ACTIONS(3567), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_import] = ACTIONS(3567), + [anon_sym_cimport] = ACTIONS(3567), + [anon_sym_from] = ACTIONS(3567), + [anon_sym_LPAREN] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3565), + [anon_sym_print] = ACTIONS(3567), + [anon_sym_assert] = ACTIONS(3567), + [anon_sym_return] = ACTIONS(3567), + [anon_sym_del] = ACTIONS(3567), + [anon_sym_raise] = ACTIONS(3567), + [anon_sym_pass] = ACTIONS(3567), + [anon_sym_break] = ACTIONS(3567), + [anon_sym_continue] = ACTIONS(3567), + [anon_sym_if] = ACTIONS(3567), + [anon_sym_match] = ACTIONS(3567), + [anon_sym_async] = ACTIONS(3567), + [anon_sym_for] = ACTIONS(3567), + [anon_sym_while] = ACTIONS(3567), + [anon_sym_try] = ACTIONS(3567), + [anon_sym_with] = ACTIONS(3567), + [anon_sym_def] = ACTIONS(3567), + [anon_sym_global] = ACTIONS(3567), + [anon_sym_nonlocal] = ACTIONS(3567), + [anon_sym_exec] = ACTIONS(3567), + [anon_sym_type] = ACTIONS(3567), + [anon_sym_class] = ACTIONS(3567), + [anon_sym_LBRACK] = ACTIONS(3565), + [anon_sym_AT] = ACTIONS(3565), + [anon_sym_DASH] = ACTIONS(3565), + [anon_sym_LBRACE] = ACTIONS(3565), + [anon_sym_PLUS] = ACTIONS(3565), + [anon_sym_not] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_TILDE] = ACTIONS(3565), + [anon_sym_LT] = ACTIONS(3565), + [anon_sym_lambda] = ACTIONS(3567), + [anon_sym_yield] = ACTIONS(3567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), + [anon_sym_None] = ACTIONS(3567), + [anon_sym_0x] = ACTIONS(3565), + [anon_sym_0X] = ACTIONS(3565), + [anon_sym_0o] = ACTIONS(3565), + [anon_sym_0O] = ACTIONS(3565), + [anon_sym_0b] = ACTIONS(3565), + [anon_sym_0B] = ACTIONS(3565), + [aux_sym_integer_token4] = ACTIONS(3567), + [sym_float] = ACTIONS(3565), + [anon_sym_await] = ACTIONS(3567), + [anon_sym_api] = ACTIONS(3567), + [sym_true] = ACTIONS(3567), + [sym_false] = ACTIONS(3567), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3567), + [anon_sym_include] = ACTIONS(3567), + [anon_sym_DEF] = ACTIONS(3567), + [anon_sym_IF] = ACTIONS(3567), + [anon_sym_cdef] = ACTIONS(3567), + [anon_sym_cpdef] = ACTIONS(3567), + [anon_sym_new] = ACTIONS(3567), + [anon_sym_ctypedef] = ACTIONS(3567), + [anon_sym_public] = ACTIONS(3567), + [anon_sym_packed] = ACTIONS(3567), + [anon_sym_inline] = ACTIONS(3567), + [anon_sym_readonly] = ACTIONS(3567), + [anon_sym_sizeof] = ACTIONS(3567), + [sym_string_start] = ACTIONS(3565), + }, + [1435] = { + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3571), + [anon_sym_SEMI] = ACTIONS(3569), + [anon_sym_import] = ACTIONS(3571), + [anon_sym_cimport] = ACTIONS(3571), + [anon_sym_from] = ACTIONS(3571), + [anon_sym_LPAREN] = ACTIONS(3569), + [anon_sym_STAR] = ACTIONS(3569), + [anon_sym_print] = ACTIONS(3571), + [anon_sym_assert] = ACTIONS(3571), + [anon_sym_return] = ACTIONS(3571), + [anon_sym_del] = ACTIONS(3571), + [anon_sym_raise] = ACTIONS(3571), + [anon_sym_pass] = ACTIONS(3571), + [anon_sym_break] = ACTIONS(3571), + [anon_sym_continue] = ACTIONS(3571), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_match] = ACTIONS(3571), + [anon_sym_async] = ACTIONS(3571), + [anon_sym_for] = ACTIONS(3571), + [anon_sym_while] = ACTIONS(3571), + [anon_sym_try] = ACTIONS(3571), + [anon_sym_with] = ACTIONS(3571), + [anon_sym_def] = ACTIONS(3571), + [anon_sym_global] = ACTIONS(3571), + [anon_sym_nonlocal] = ACTIONS(3571), + [anon_sym_exec] = ACTIONS(3571), + [anon_sym_type] = ACTIONS(3571), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3569), + [anon_sym_AT] = ACTIONS(3569), + [anon_sym_DASH] = ACTIONS(3569), + [anon_sym_LBRACE] = ACTIONS(3569), + [anon_sym_PLUS] = ACTIONS(3569), + [anon_sym_not] = ACTIONS(3571), + [anon_sym_AMP] = ACTIONS(3569), + [anon_sym_TILDE] = ACTIONS(3569), + [anon_sym_LT] = ACTIONS(3569), + [anon_sym_lambda] = ACTIONS(3571), + [anon_sym_yield] = ACTIONS(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), + [anon_sym_None] = ACTIONS(3571), + [anon_sym_0x] = ACTIONS(3569), + [anon_sym_0X] = ACTIONS(3569), + [anon_sym_0o] = ACTIONS(3569), + [anon_sym_0O] = ACTIONS(3569), + [anon_sym_0b] = ACTIONS(3569), + [anon_sym_0B] = ACTIONS(3569), + [aux_sym_integer_token4] = ACTIONS(3571), + [sym_float] = ACTIONS(3569), + [anon_sym_await] = ACTIONS(3571), + [anon_sym_api] = ACTIONS(3571), + [sym_true] = ACTIONS(3571), + [sym_false] = ACTIONS(3571), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3571), + [anon_sym_include] = ACTIONS(3571), + [anon_sym_DEF] = ACTIONS(3571), + [anon_sym_IF] = ACTIONS(3571), + [anon_sym_cdef] = ACTIONS(3571), + [anon_sym_cpdef] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3571), + [anon_sym_ctypedef] = ACTIONS(3571), + [anon_sym_public] = ACTIONS(3571), + [anon_sym_packed] = ACTIONS(3571), + [anon_sym_inline] = ACTIONS(3571), + [anon_sym_readonly] = ACTIONS(3571), + [anon_sym_sizeof] = ACTIONS(3571), + [sym_string_start] = ACTIONS(3569), + }, + [1436] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4977), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1437] = { + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3575), + [anon_sym_SEMI] = ACTIONS(3573), + [anon_sym_import] = ACTIONS(3575), + [anon_sym_cimport] = ACTIONS(3575), + [anon_sym_from] = ACTIONS(3575), + [anon_sym_LPAREN] = ACTIONS(3573), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_print] = ACTIONS(3575), + [anon_sym_assert] = ACTIONS(3575), + [anon_sym_return] = ACTIONS(3575), + [anon_sym_del] = ACTIONS(3575), + [anon_sym_raise] = ACTIONS(3575), + [anon_sym_pass] = ACTIONS(3575), + [anon_sym_break] = ACTIONS(3575), + [anon_sym_continue] = ACTIONS(3575), + [anon_sym_if] = ACTIONS(3575), + [anon_sym_match] = ACTIONS(3575), + [anon_sym_async] = ACTIONS(3575), + [anon_sym_for] = ACTIONS(3575), + [anon_sym_while] = ACTIONS(3575), + [anon_sym_try] = ACTIONS(3575), + [anon_sym_with] = ACTIONS(3575), + [anon_sym_def] = ACTIONS(3575), + [anon_sym_global] = ACTIONS(3575), + [anon_sym_nonlocal] = ACTIONS(3575), + [anon_sym_exec] = ACTIONS(3575), + [anon_sym_type] = ACTIONS(3575), + [anon_sym_class] = ACTIONS(3575), + [anon_sym_LBRACK] = ACTIONS(3573), + [anon_sym_AT] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3573), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_PLUS] = ACTIONS(3573), + [anon_sym_not] = ACTIONS(3575), + [anon_sym_AMP] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_LT] = ACTIONS(3573), + [anon_sym_lambda] = ACTIONS(3575), + [anon_sym_yield] = ACTIONS(3575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [anon_sym_None] = ACTIONS(3575), + [anon_sym_0x] = ACTIONS(3573), + [anon_sym_0X] = ACTIONS(3573), + [anon_sym_0o] = ACTIONS(3573), + [anon_sym_0O] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3573), + [anon_sym_0B] = ACTIONS(3573), + [aux_sym_integer_token4] = ACTIONS(3575), + [sym_float] = ACTIONS(3573), + [anon_sym_await] = ACTIONS(3575), + [anon_sym_api] = ACTIONS(3575), + [sym_true] = ACTIONS(3575), + [sym_false] = ACTIONS(3575), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3575), + [anon_sym_include] = ACTIONS(3575), + [anon_sym_DEF] = ACTIONS(3575), + [anon_sym_IF] = ACTIONS(3575), + [anon_sym_cdef] = ACTIONS(3575), + [anon_sym_cpdef] = ACTIONS(3575), + [anon_sym_new] = ACTIONS(3575), + [anon_sym_ctypedef] = ACTIONS(3575), + [anon_sym_public] = ACTIONS(3575), + [anon_sym_packed] = ACTIONS(3575), + [anon_sym_inline] = ACTIONS(3575), + [anon_sym_readonly] = ACTIONS(3575), + [anon_sym_sizeof] = ACTIONS(3575), + [sym_string_start] = ACTIONS(3573), + }, + [1438] = { + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3533), + [anon_sym_import] = ACTIONS(3535), + [anon_sym_cimport] = ACTIONS(3535), + [anon_sym_from] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3533), + [anon_sym_print] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_del] = ACTIONS(3535), + [anon_sym_raise] = ACTIONS(3535), + [anon_sym_pass] = ACTIONS(3535), + [anon_sym_break] = ACTIONS(3535), + [anon_sym_continue] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_async] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(3535), + [anon_sym_def] = ACTIONS(3535), + [anon_sym_global] = ACTIONS(3535), + [anon_sym_nonlocal] = ACTIONS(3535), + [anon_sym_exec] = ACTIONS(3535), + [anon_sym_type] = ACTIONS(3535), + [anon_sym_class] = ACTIONS(3535), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_AT] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3533), + [anon_sym_LT] = ACTIONS(3533), + [anon_sym_lambda] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), + [anon_sym_None] = ACTIONS(3535), + [anon_sym_0x] = ACTIONS(3533), + [anon_sym_0X] = ACTIONS(3533), + [anon_sym_0o] = ACTIONS(3533), + [anon_sym_0O] = ACTIONS(3533), + [anon_sym_0b] = ACTIONS(3533), + [anon_sym_0B] = ACTIONS(3533), + [aux_sym_integer_token4] = ACTIONS(3535), + [sym_float] = ACTIONS(3533), + [anon_sym_await] = ACTIONS(3535), + [anon_sym_api] = ACTIONS(3535), + [sym_true] = ACTIONS(3535), + [sym_false] = ACTIONS(3535), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3535), + [anon_sym_include] = ACTIONS(3535), + [anon_sym_DEF] = ACTIONS(3535), + [anon_sym_IF] = ACTIONS(3535), + [anon_sym_cdef] = ACTIONS(3535), + [anon_sym_cpdef] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_ctypedef] = ACTIONS(3535), + [anon_sym_public] = ACTIONS(3535), + [anon_sym_packed] = ACTIONS(3535), + [anon_sym_inline] = ACTIONS(3535), + [anon_sym_readonly] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3535), + [sym_string_start] = ACTIONS(3533), + }, + [1439] = { + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(3577), + [anon_sym_import] = ACTIONS(3579), + [anon_sym_cimport] = ACTIONS(3579), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3577), + [anon_sym_print] = ACTIONS(3579), + [anon_sym_assert] = ACTIONS(3579), + [anon_sym_return] = ACTIONS(3579), + [anon_sym_del] = ACTIONS(3579), + [anon_sym_raise] = ACTIONS(3579), + [anon_sym_pass] = ACTIONS(3579), + [anon_sym_break] = ACTIONS(3579), + [anon_sym_continue] = ACTIONS(3579), + [anon_sym_if] = ACTIONS(3579), + [anon_sym_match] = ACTIONS(3579), + [anon_sym_async] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3579), + [anon_sym_while] = ACTIONS(3579), + [anon_sym_try] = ACTIONS(3579), + [anon_sym_with] = ACTIONS(3579), + [anon_sym_def] = ACTIONS(3579), + [anon_sym_global] = ACTIONS(3579), + [anon_sym_nonlocal] = ACTIONS(3579), + [anon_sym_exec] = ACTIONS(3579), + [anon_sym_type] = ACTIONS(3579), + [anon_sym_class] = ACTIONS(3579), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_AT] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_not] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3577), + [anon_sym_LT] = ACTIONS(3577), + [anon_sym_lambda] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), + [anon_sym_None] = ACTIONS(3579), + [anon_sym_0x] = ACTIONS(3577), + [anon_sym_0X] = ACTIONS(3577), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0O] = ACTIONS(3577), + [anon_sym_0b] = ACTIONS(3577), + [anon_sym_0B] = ACTIONS(3577), + [aux_sym_integer_token4] = ACTIONS(3579), + [sym_float] = ACTIONS(3577), + [anon_sym_await] = ACTIONS(3579), + [anon_sym_api] = ACTIONS(3579), + [sym_true] = ACTIONS(3579), + [sym_false] = ACTIONS(3579), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3579), + [anon_sym_include] = ACTIONS(3579), + [anon_sym_DEF] = ACTIONS(3579), + [anon_sym_IF] = ACTIONS(3579), + [anon_sym_cdef] = ACTIONS(3579), + [anon_sym_cpdef] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3579), + [anon_sym_ctypedef] = ACTIONS(3579), + [anon_sym_public] = ACTIONS(3579), + [anon_sym_packed] = ACTIONS(3579), + [anon_sym_inline] = ACTIONS(3579), + [anon_sym_readonly] = ACTIONS(3579), + [anon_sym_sizeof] = ACTIONS(3579), + [sym_string_start] = ACTIONS(3577), + }, + [1440] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4737), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1441] = { + [ts_builtin_sym_end] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3583), + [anon_sym_SEMI] = ACTIONS(3581), + [anon_sym_import] = ACTIONS(3583), + [anon_sym_cimport] = ACTIONS(3583), + [anon_sym_from] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3581), + [anon_sym_print] = ACTIONS(3583), + [anon_sym_assert] = ACTIONS(3583), + [anon_sym_return] = ACTIONS(3583), + [anon_sym_del] = ACTIONS(3583), + [anon_sym_raise] = ACTIONS(3583), + [anon_sym_pass] = ACTIONS(3583), + [anon_sym_break] = ACTIONS(3583), + [anon_sym_continue] = ACTIONS(3583), + [anon_sym_if] = ACTIONS(3583), + [anon_sym_match] = ACTIONS(3583), + [anon_sym_async] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3583), + [anon_sym_while] = ACTIONS(3583), + [anon_sym_try] = ACTIONS(3583), + [anon_sym_with] = ACTIONS(3583), + [anon_sym_def] = ACTIONS(3583), + [anon_sym_global] = ACTIONS(3583), + [anon_sym_nonlocal] = ACTIONS(3583), + [anon_sym_exec] = ACTIONS(3583), + [anon_sym_type] = ACTIONS(3583), + [anon_sym_class] = ACTIONS(3583), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_AT] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_not] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3581), + [anon_sym_LT] = ACTIONS(3581), + [anon_sym_lambda] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), + [anon_sym_None] = ACTIONS(3583), + [anon_sym_0x] = ACTIONS(3581), + [anon_sym_0X] = ACTIONS(3581), + [anon_sym_0o] = ACTIONS(3581), + [anon_sym_0O] = ACTIONS(3581), + [anon_sym_0b] = ACTIONS(3581), + [anon_sym_0B] = ACTIONS(3581), + [aux_sym_integer_token4] = ACTIONS(3583), + [sym_float] = ACTIONS(3581), + [anon_sym_await] = ACTIONS(3583), + [anon_sym_api] = ACTIONS(3583), + [sym_true] = ACTIONS(3583), + [sym_false] = ACTIONS(3583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3583), + [anon_sym_include] = ACTIONS(3583), + [anon_sym_DEF] = ACTIONS(3583), + [anon_sym_IF] = ACTIONS(3583), + [anon_sym_cdef] = ACTIONS(3583), + [anon_sym_cpdef] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3583), + [anon_sym_ctypedef] = ACTIONS(3583), + [anon_sym_public] = ACTIONS(3583), + [anon_sym_packed] = ACTIONS(3583), + [anon_sym_inline] = ACTIONS(3583), + [anon_sym_readonly] = ACTIONS(3583), + [anon_sym_sizeof] = ACTIONS(3583), + [sym_string_start] = ACTIONS(3581), + }, + [1442] = { + [ts_builtin_sym_end] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_cimport] = ACTIONS(3385), + [anon_sym_from] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_print] = ACTIONS(3385), + [anon_sym_assert] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_del] = ACTIONS(3385), + [anon_sym_raise] = ACTIONS(3385), + [anon_sym_pass] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_match] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_def] = ACTIONS(3385), + [anon_sym_global] = ACTIONS(3385), + [anon_sym_nonlocal] = ACTIONS(3385), + [anon_sym_exec] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_lambda] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3387), + [anon_sym_None] = ACTIONS(3385), + [anon_sym_0x] = ACTIONS(3387), + [anon_sym_0X] = ACTIONS(3387), + [anon_sym_0o] = ACTIONS(3387), + [anon_sym_0O] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(3387), + [anon_sym_0B] = ACTIONS(3387), + [aux_sym_integer_token4] = ACTIONS(3385), + [sym_float] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_api] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3385), + [anon_sym_include] = ACTIONS(3385), + [anon_sym_DEF] = ACTIONS(3385), + [anon_sym_IF] = ACTIONS(3385), + [anon_sym_cdef] = ACTIONS(3385), + [anon_sym_cpdef] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_ctypedef] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_packed] = ACTIONS(3385), + [anon_sym_inline] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_sizeof] = ACTIONS(3385), + [sym_string_start] = ACTIONS(3387), + }, + [1443] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4738), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1444] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5024), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1445] = { + [ts_builtin_sym_end] = ACTIONS(3585), + [sym_identifier] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3585), + [anon_sym_import] = ACTIONS(3587), + [anon_sym_cimport] = ACTIONS(3587), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_STAR] = ACTIONS(3585), + [anon_sym_print] = ACTIONS(3587), + [anon_sym_assert] = ACTIONS(3587), + [anon_sym_return] = ACTIONS(3587), + [anon_sym_del] = ACTIONS(3587), + [anon_sym_raise] = ACTIONS(3587), + [anon_sym_pass] = ACTIONS(3587), + [anon_sym_break] = ACTIONS(3587), + [anon_sym_continue] = ACTIONS(3587), + [anon_sym_if] = ACTIONS(3587), + [anon_sym_match] = ACTIONS(3587), + [anon_sym_async] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3587), + [anon_sym_while] = ACTIONS(3587), + [anon_sym_try] = ACTIONS(3587), + [anon_sym_with] = ACTIONS(3587), + [anon_sym_def] = ACTIONS(3587), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_nonlocal] = ACTIONS(3587), + [anon_sym_exec] = ACTIONS(3587), + [anon_sym_type] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_AT] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_not] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3585), + [anon_sym_LT] = ACTIONS(3585), + [anon_sym_lambda] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), + [anon_sym_None] = ACTIONS(3587), + [anon_sym_0x] = ACTIONS(3585), + [anon_sym_0X] = ACTIONS(3585), + [anon_sym_0o] = ACTIONS(3585), + [anon_sym_0O] = ACTIONS(3585), + [anon_sym_0b] = ACTIONS(3585), + [anon_sym_0B] = ACTIONS(3585), + [aux_sym_integer_token4] = ACTIONS(3587), + [sym_float] = ACTIONS(3585), + [anon_sym_await] = ACTIONS(3587), + [anon_sym_api] = ACTIONS(3587), + [sym_true] = ACTIONS(3587), + [sym_false] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3587), + [anon_sym_include] = ACTIONS(3587), + [anon_sym_DEF] = ACTIONS(3587), + [anon_sym_IF] = ACTIONS(3587), + [anon_sym_cdef] = ACTIONS(3587), + [anon_sym_cpdef] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3587), + [anon_sym_ctypedef] = ACTIONS(3587), + [anon_sym_public] = ACTIONS(3587), + [anon_sym_packed] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym_readonly] = ACTIONS(3587), + [anon_sym_sizeof] = ACTIONS(3587), + [sym_string_start] = ACTIONS(3585), + }, + [1446] = { + [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3591), + [anon_sym_SEMI] = ACTIONS(3589), + [anon_sym_import] = ACTIONS(3591), + [anon_sym_cimport] = ACTIONS(3591), + [anon_sym_from] = ACTIONS(3591), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_print] = ACTIONS(3591), + [anon_sym_assert] = ACTIONS(3591), + [anon_sym_return] = ACTIONS(3591), + [anon_sym_del] = ACTIONS(3591), + [anon_sym_raise] = ACTIONS(3591), + [anon_sym_pass] = ACTIONS(3591), + [anon_sym_break] = ACTIONS(3591), + [anon_sym_continue] = ACTIONS(3591), + [anon_sym_if] = ACTIONS(3591), + [anon_sym_match] = ACTIONS(3591), + [anon_sym_async] = ACTIONS(3591), + [anon_sym_for] = ACTIONS(3591), + [anon_sym_while] = ACTIONS(3591), + [anon_sym_try] = ACTIONS(3591), + [anon_sym_with] = ACTIONS(3591), + [anon_sym_def] = ACTIONS(3591), + [anon_sym_global] = ACTIONS(3591), + [anon_sym_nonlocal] = ACTIONS(3591), + [anon_sym_exec] = ACTIONS(3591), + [anon_sym_type] = ACTIONS(3591), + [anon_sym_class] = ACTIONS(3591), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_AT] = ACTIONS(3589), + [anon_sym_DASH] = ACTIONS(3589), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_PLUS] = ACTIONS(3589), + [anon_sym_not] = ACTIONS(3591), + [anon_sym_AMP] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_LT] = ACTIONS(3589), + [anon_sym_lambda] = ACTIONS(3591), + [anon_sym_yield] = ACTIONS(3591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [anon_sym_None] = ACTIONS(3591), + [anon_sym_0x] = ACTIONS(3589), + [anon_sym_0X] = ACTIONS(3589), + [anon_sym_0o] = ACTIONS(3589), + [anon_sym_0O] = ACTIONS(3589), + [anon_sym_0b] = ACTIONS(3589), + [anon_sym_0B] = ACTIONS(3589), + [aux_sym_integer_token4] = ACTIONS(3591), + [sym_float] = ACTIONS(3589), + [anon_sym_await] = ACTIONS(3591), + [anon_sym_api] = ACTIONS(3591), + [sym_true] = ACTIONS(3591), + [sym_false] = ACTIONS(3591), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3591), + [anon_sym_include] = ACTIONS(3591), + [anon_sym_DEF] = ACTIONS(3591), + [anon_sym_IF] = ACTIONS(3591), + [anon_sym_cdef] = ACTIONS(3591), + [anon_sym_cpdef] = ACTIONS(3591), + [anon_sym_new] = ACTIONS(3591), + [anon_sym_ctypedef] = ACTIONS(3591), + [anon_sym_public] = ACTIONS(3591), + [anon_sym_packed] = ACTIONS(3591), + [anon_sym_inline] = ACTIONS(3591), + [anon_sym_readonly] = ACTIONS(3591), + [anon_sym_sizeof] = ACTIONS(3591), + [sym_string_start] = ACTIONS(3589), + }, + [1447] = { + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3595), + [anon_sym_SEMI] = ACTIONS(3593), + [anon_sym_import] = ACTIONS(3595), + [anon_sym_cimport] = ACTIONS(3595), + [anon_sym_from] = ACTIONS(3595), + [anon_sym_LPAREN] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3593), + [anon_sym_print] = ACTIONS(3595), + [anon_sym_assert] = ACTIONS(3595), + [anon_sym_return] = ACTIONS(3595), + [anon_sym_del] = ACTIONS(3595), + [anon_sym_raise] = ACTIONS(3595), + [anon_sym_pass] = ACTIONS(3595), + [anon_sym_break] = ACTIONS(3595), + [anon_sym_continue] = ACTIONS(3595), + [anon_sym_if] = ACTIONS(3595), + [anon_sym_match] = ACTIONS(3595), + [anon_sym_async] = ACTIONS(3595), + [anon_sym_for] = ACTIONS(3595), + [anon_sym_while] = ACTIONS(3595), + [anon_sym_try] = ACTIONS(3595), + [anon_sym_with] = ACTIONS(3595), + [anon_sym_def] = ACTIONS(3595), + [anon_sym_global] = ACTIONS(3595), + [anon_sym_nonlocal] = ACTIONS(3595), + [anon_sym_exec] = ACTIONS(3595), + [anon_sym_type] = ACTIONS(3595), + [anon_sym_class] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_AT] = ACTIONS(3593), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3593), + [anon_sym_not] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(3593), + [anon_sym_LT] = ACTIONS(3593), + [anon_sym_lambda] = ACTIONS(3595), + [anon_sym_yield] = ACTIONS(3595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), + [anon_sym_None] = ACTIONS(3595), + [anon_sym_0x] = ACTIONS(3593), + [anon_sym_0X] = ACTIONS(3593), + [anon_sym_0o] = ACTIONS(3593), + [anon_sym_0O] = ACTIONS(3593), + [anon_sym_0b] = ACTIONS(3593), + [anon_sym_0B] = ACTIONS(3593), + [aux_sym_integer_token4] = ACTIONS(3595), + [sym_float] = ACTIONS(3593), + [anon_sym_await] = ACTIONS(3595), + [anon_sym_api] = ACTIONS(3595), + [sym_true] = ACTIONS(3595), + [sym_false] = ACTIONS(3595), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3595), + [anon_sym_include] = ACTIONS(3595), + [anon_sym_DEF] = ACTIONS(3595), + [anon_sym_IF] = ACTIONS(3595), + [anon_sym_cdef] = ACTIONS(3595), + [anon_sym_cpdef] = ACTIONS(3595), + [anon_sym_new] = ACTIONS(3595), + [anon_sym_ctypedef] = ACTIONS(3595), + [anon_sym_public] = ACTIONS(3595), + [anon_sym_packed] = ACTIONS(3595), + [anon_sym_inline] = ACTIONS(3595), + [anon_sym_readonly] = ACTIONS(3595), + [anon_sym_sizeof] = ACTIONS(3595), + [sym_string_start] = ACTIONS(3593), + }, + [1448] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(3027), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1449] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4882), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1450] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4739), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1451] = { + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_import] = ACTIONS(3599), + [anon_sym_cimport] = ACTIONS(3599), + [anon_sym_from] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3597), + [anon_sym_print] = ACTIONS(3599), + [anon_sym_assert] = ACTIONS(3599), + [anon_sym_return] = ACTIONS(3599), + [anon_sym_del] = ACTIONS(3599), + [anon_sym_raise] = ACTIONS(3599), + [anon_sym_pass] = ACTIONS(3599), + [anon_sym_break] = ACTIONS(3599), + [anon_sym_continue] = ACTIONS(3599), + [anon_sym_if] = ACTIONS(3599), + [anon_sym_match] = ACTIONS(3599), + [anon_sym_async] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_try] = ACTIONS(3599), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_def] = ACTIONS(3599), + [anon_sym_global] = ACTIONS(3599), + [anon_sym_nonlocal] = ACTIONS(3599), + [anon_sym_exec] = ACTIONS(3599), + [anon_sym_type] = ACTIONS(3599), + [anon_sym_class] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_AT] = ACTIONS(3597), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_LBRACE] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_not] = ACTIONS(3599), + [anon_sym_AMP] = ACTIONS(3597), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_LT] = ACTIONS(3597), + [anon_sym_lambda] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_None] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3597), + [anon_sym_0X] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3597), + [anon_sym_0O] = ACTIONS(3597), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0B] = ACTIONS(3597), + [aux_sym_integer_token4] = ACTIONS(3599), + [sym_float] = ACTIONS(3597), + [anon_sym_await] = ACTIONS(3599), + [anon_sym_api] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3599), + [anon_sym_include] = ACTIONS(3599), + [anon_sym_DEF] = ACTIONS(3599), + [anon_sym_IF] = ACTIONS(3599), + [anon_sym_cdef] = ACTIONS(3599), + [anon_sym_cpdef] = ACTIONS(3599), + [anon_sym_new] = ACTIONS(3599), + [anon_sym_ctypedef] = ACTIONS(3599), + [anon_sym_public] = ACTIONS(3599), + [anon_sym_packed] = ACTIONS(3599), + [anon_sym_inline] = ACTIONS(3599), + [anon_sym_readonly] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [sym_string_start] = ACTIONS(3597), + }, + [1452] = { + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym_import] = ACTIONS(3603), + [anon_sym_cimport] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_print] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_del] = ACTIONS(3603), + [anon_sym_raise] = ACTIONS(3603), + [anon_sym_pass] = ACTIONS(3603), + [anon_sym_break] = ACTIONS(3603), + [anon_sym_continue] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_async] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_with] = ACTIONS(3603), + [anon_sym_def] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_nonlocal] = ACTIONS(3603), + [anon_sym_exec] = ACTIONS(3603), + [anon_sym_type] = ACTIONS(3603), + [anon_sym_class] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_AT] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_PLUS] = ACTIONS(3601), + [anon_sym_not] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_lambda] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [anon_sym_None] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3601), + [anon_sym_0X] = ACTIONS(3601), + [anon_sym_0o] = ACTIONS(3601), + [anon_sym_0O] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3601), + [anon_sym_0B] = ACTIONS(3601), + [aux_sym_integer_token4] = ACTIONS(3603), + [sym_float] = ACTIONS(3601), + [anon_sym_await] = ACTIONS(3603), + [anon_sym_api] = ACTIONS(3603), + [sym_true] = ACTIONS(3603), + [sym_false] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3603), + [anon_sym_include] = ACTIONS(3603), + [anon_sym_DEF] = ACTIONS(3603), + [anon_sym_IF] = ACTIONS(3603), + [anon_sym_cdef] = ACTIONS(3603), + [anon_sym_cpdef] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_ctypedef] = ACTIONS(3603), + [anon_sym_public] = ACTIONS(3603), + [anon_sym_packed] = ACTIONS(3603), + [anon_sym_inline] = ACTIONS(3603), + [anon_sym_readonly] = ACTIONS(3603), + [anon_sym_sizeof] = ACTIONS(3603), + [sym_string_start] = ACTIONS(3601), + }, + [1453] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5074), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1454] = { + [ts_builtin_sym_end] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_cimport] = ACTIONS(3607), + [anon_sym_from] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_STAR] = ACTIONS(3605), + [anon_sym_print] = ACTIONS(3607), + [anon_sym_assert] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_del] = ACTIONS(3607), + [anon_sym_raise] = ACTIONS(3607), + [anon_sym_pass] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_match] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_def] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_nonlocal] = ACTIONS(3607), + [anon_sym_exec] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_AT] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_not] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_LT] = ACTIONS(3605), + [anon_sym_lambda] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [anon_sym_None] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3605), + [anon_sym_0X] = ACTIONS(3605), + [anon_sym_0o] = ACTIONS(3605), + [anon_sym_0O] = ACTIONS(3605), + [anon_sym_0b] = ACTIONS(3605), + [anon_sym_0B] = ACTIONS(3605), + [aux_sym_integer_token4] = ACTIONS(3607), + [sym_float] = ACTIONS(3605), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_api] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3607), + [anon_sym_include] = ACTIONS(3607), + [anon_sym_DEF] = ACTIONS(3607), + [anon_sym_IF] = ACTIONS(3607), + [anon_sym_cdef] = ACTIONS(3607), + [anon_sym_cpdef] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_ctypedef] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_packed] = ACTIONS(3607), + [anon_sym_inline] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_sizeof] = ACTIONS(3607), + [sym_string_start] = ACTIONS(3605), + }, + [1455] = { + [sym_identifier] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_import] = ACTIONS(3109), + [anon_sym_cimport] = ACTIONS(3109), + [anon_sym_from] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_print] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_del] = ACTIONS(3109), + [anon_sym_raise] = ACTIONS(3109), + [anon_sym_pass] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_async] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_with] = ACTIONS(3109), + [anon_sym_def] = ACTIONS(3109), + [anon_sym_global] = ACTIONS(3109), + [anon_sym_nonlocal] = ACTIONS(3109), + [anon_sym_exec] = ACTIONS(3109), + [anon_sym_type] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_lambda] = ACTIONS(3109), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), + [anon_sym_None] = ACTIONS(3109), + [anon_sym_0x] = ACTIONS(3107), + [anon_sym_0X] = ACTIONS(3107), + [anon_sym_0o] = ACTIONS(3107), + [anon_sym_0O] = ACTIONS(3107), + [anon_sym_0b] = ACTIONS(3107), + [anon_sym_0B] = ACTIONS(3107), + [aux_sym_integer_token4] = ACTIONS(3109), + [sym_float] = ACTIONS(3107), + [anon_sym_await] = ACTIONS(3109), + [anon_sym_api] = ACTIONS(3109), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3109), + [anon_sym_include] = ACTIONS(3109), + [anon_sym_DEF] = ACTIONS(3109), + [anon_sym_IF] = ACTIONS(3109), + [anon_sym_cdef] = ACTIONS(3109), + [anon_sym_cpdef] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_ctypedef] = ACTIONS(3109), + [anon_sym_public] = ACTIONS(3109), + [anon_sym_packed] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3109), + [sym__dedent] = ACTIONS(3107), + [sym_string_start] = ACTIONS(3107), + }, + [1456] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2915), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1457] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5214), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1458] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4740), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1459] = { + [sym_identifier] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_import] = ACTIONS(3113), + [anon_sym_cimport] = ACTIONS(3113), + [anon_sym_from] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_print] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_del] = ACTIONS(3113), + [anon_sym_raise] = ACTIONS(3113), + [anon_sym_pass] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_async] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_with] = ACTIONS(3113), + [anon_sym_def] = ACTIONS(3113), + [anon_sym_global] = ACTIONS(3113), + [anon_sym_nonlocal] = ACTIONS(3113), + [anon_sym_exec] = ACTIONS(3113), + [anon_sym_type] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_AT] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_lambda] = ACTIONS(3113), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), + [anon_sym_None] = ACTIONS(3113), + [anon_sym_0x] = ACTIONS(3111), + [anon_sym_0X] = ACTIONS(3111), + [anon_sym_0o] = ACTIONS(3111), + [anon_sym_0O] = ACTIONS(3111), + [anon_sym_0b] = ACTIONS(3111), + [anon_sym_0B] = ACTIONS(3111), + [aux_sym_integer_token4] = ACTIONS(3113), + [sym_float] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3113), + [anon_sym_api] = ACTIONS(3113), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3113), + [anon_sym_include] = ACTIONS(3113), + [anon_sym_DEF] = ACTIONS(3113), + [anon_sym_IF] = ACTIONS(3113), + [anon_sym_cdef] = ACTIONS(3113), + [anon_sym_cpdef] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_ctypedef] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_packed] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_readonly] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(3113), + [sym__dedent] = ACTIONS(3111), + [sym_string_start] = ACTIONS(3111), + }, + [1460] = { + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3609), + [anon_sym_import] = ACTIONS(3611), + [anon_sym_cimport] = ACTIONS(3611), + [anon_sym_from] = ACTIONS(3611), + [anon_sym_LPAREN] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), + [anon_sym_print] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_del] = ACTIONS(3611), + [anon_sym_raise] = ACTIONS(3611), + [anon_sym_pass] = ACTIONS(3611), + [anon_sym_break] = ACTIONS(3611), + [anon_sym_continue] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_async] = ACTIONS(3611), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_with] = ACTIONS(3611), + [anon_sym_def] = ACTIONS(3611), + [anon_sym_global] = ACTIONS(3611), + [anon_sym_nonlocal] = ACTIONS(3611), + [anon_sym_exec] = ACTIONS(3611), + [anon_sym_type] = ACTIONS(3611), + [anon_sym_class] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_AT] = ACTIONS(3609), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_lambda] = ACTIONS(3611), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), + [anon_sym_None] = ACTIONS(3611), + [anon_sym_0x] = ACTIONS(3609), + [anon_sym_0X] = ACTIONS(3609), + [anon_sym_0o] = ACTIONS(3609), + [anon_sym_0O] = ACTIONS(3609), + [anon_sym_0b] = ACTIONS(3609), + [anon_sym_0B] = ACTIONS(3609), + [aux_sym_integer_token4] = ACTIONS(3611), + [sym_float] = ACTIONS(3609), + [anon_sym_await] = ACTIONS(3611), + [anon_sym_api] = ACTIONS(3611), + [sym_true] = ACTIONS(3611), + [sym_false] = ACTIONS(3611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3611), + [anon_sym_include] = ACTIONS(3611), + [anon_sym_DEF] = ACTIONS(3611), + [anon_sym_IF] = ACTIONS(3611), + [anon_sym_cdef] = ACTIONS(3611), + [anon_sym_cpdef] = ACTIONS(3611), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_ctypedef] = ACTIONS(3611), + [anon_sym_public] = ACTIONS(3611), + [anon_sym_packed] = ACTIONS(3611), + [anon_sym_inline] = ACTIONS(3611), + [anon_sym_readonly] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3611), + [sym_string_start] = ACTIONS(3609), + }, + [1461] = { + [ts_builtin_sym_end] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_import] = ACTIONS(3615), + [anon_sym_cimport] = ACTIONS(3615), + [anon_sym_from] = ACTIONS(3615), + [anon_sym_LPAREN] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3613), + [anon_sym_print] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_del] = ACTIONS(3615), + [anon_sym_raise] = ACTIONS(3615), + [anon_sym_pass] = ACTIONS(3615), + [anon_sym_break] = ACTIONS(3615), + [anon_sym_continue] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_async] = ACTIONS(3615), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_with] = ACTIONS(3615), + [anon_sym_def] = ACTIONS(3615), + [anon_sym_global] = ACTIONS(3615), + [anon_sym_nonlocal] = ACTIONS(3615), + [anon_sym_exec] = ACTIONS(3615), + [anon_sym_type] = ACTIONS(3615), + [anon_sym_class] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_AT] = ACTIONS(3613), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3613), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_lambda] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), + [anon_sym_None] = ACTIONS(3615), + [anon_sym_0x] = ACTIONS(3613), + [anon_sym_0X] = ACTIONS(3613), + [anon_sym_0o] = ACTIONS(3613), + [anon_sym_0O] = ACTIONS(3613), + [anon_sym_0b] = ACTIONS(3613), + [anon_sym_0B] = ACTIONS(3613), + [aux_sym_integer_token4] = ACTIONS(3615), + [sym_float] = ACTIONS(3613), + [anon_sym_await] = ACTIONS(3615), + [anon_sym_api] = ACTIONS(3615), + [sym_true] = ACTIONS(3615), + [sym_false] = ACTIONS(3615), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3615), + [anon_sym_include] = ACTIONS(3615), + [anon_sym_DEF] = ACTIONS(3615), + [anon_sym_IF] = ACTIONS(3615), + [anon_sym_cdef] = ACTIONS(3615), + [anon_sym_cpdef] = ACTIONS(3615), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_ctypedef] = ACTIONS(3615), + [anon_sym_public] = ACTIONS(3615), + [anon_sym_packed] = ACTIONS(3615), + [anon_sym_inline] = ACTIONS(3615), + [anon_sym_readonly] = ACTIONS(3615), + [anon_sym_sizeof] = ACTIONS(3615), + [sym_string_start] = ACTIONS(3613), + }, + [1462] = { + [ts_builtin_sym_end] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3617), + [anon_sym_import] = ACTIONS(3619), + [anon_sym_cimport] = ACTIONS(3619), + [anon_sym_from] = ACTIONS(3619), + [anon_sym_LPAREN] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3617), + [anon_sym_print] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_del] = ACTIONS(3619), + [anon_sym_raise] = ACTIONS(3619), + [anon_sym_pass] = ACTIONS(3619), + [anon_sym_break] = ACTIONS(3619), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_async] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_with] = ACTIONS(3619), + [anon_sym_def] = ACTIONS(3619), + [anon_sym_global] = ACTIONS(3619), + [anon_sym_nonlocal] = ACTIONS(3619), + [anon_sym_exec] = ACTIONS(3619), + [anon_sym_type] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_AT] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_not] = ACTIONS(3619), + [anon_sym_AMP] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_lambda] = ACTIONS(3619), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3617), + [anon_sym_None] = ACTIONS(3619), + [anon_sym_0x] = ACTIONS(3617), + [anon_sym_0X] = ACTIONS(3617), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0O] = ACTIONS(3617), + [anon_sym_0b] = ACTIONS(3617), + [anon_sym_0B] = ACTIONS(3617), + [aux_sym_integer_token4] = ACTIONS(3619), + [sym_float] = ACTIONS(3617), + [anon_sym_await] = ACTIONS(3619), + [anon_sym_api] = ACTIONS(3619), + [sym_true] = ACTIONS(3619), + [sym_false] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3619), + [anon_sym_include] = ACTIONS(3619), + [anon_sym_DEF] = ACTIONS(3619), + [anon_sym_IF] = ACTIONS(3619), + [anon_sym_cdef] = ACTIONS(3619), + [anon_sym_cpdef] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_ctypedef] = ACTIONS(3619), + [anon_sym_public] = ACTIONS(3619), + [anon_sym_packed] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym_readonly] = ACTIONS(3619), + [anon_sym_sizeof] = ACTIONS(3619), + [sym_string_start] = ACTIONS(3617), + }, + [1463] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5098), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1464] = { + [sym_identifier] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_import] = ACTIONS(3117), + [anon_sym_cimport] = ACTIONS(3117), + [anon_sym_from] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_print] = ACTIONS(3117), + [anon_sym_assert] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_del] = ACTIONS(3117), + [anon_sym_raise] = ACTIONS(3117), + [anon_sym_pass] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_match] = ACTIONS(3117), + [anon_sym_async] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_with] = ACTIONS(3117), + [anon_sym_def] = ACTIONS(3117), + [anon_sym_global] = ACTIONS(3117), + [anon_sym_nonlocal] = ACTIONS(3117), + [anon_sym_exec] = ACTIONS(3117), + [anon_sym_type] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_lambda] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), + [anon_sym_None] = ACTIONS(3117), + [anon_sym_0x] = ACTIONS(3115), + [anon_sym_0X] = ACTIONS(3115), + [anon_sym_0o] = ACTIONS(3115), + [anon_sym_0O] = ACTIONS(3115), + [anon_sym_0b] = ACTIONS(3115), + [anon_sym_0B] = ACTIONS(3115), + [aux_sym_integer_token4] = ACTIONS(3117), + [sym_float] = ACTIONS(3115), + [anon_sym_await] = ACTIONS(3117), + [anon_sym_api] = ACTIONS(3117), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3117), + [anon_sym_include] = ACTIONS(3117), + [anon_sym_DEF] = ACTIONS(3117), + [anon_sym_IF] = ACTIONS(3117), + [anon_sym_cdef] = ACTIONS(3117), + [anon_sym_cpdef] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_ctypedef] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_packed] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_readonly] = ACTIONS(3117), + [anon_sym_sizeof] = ACTIONS(3117), + [sym__dedent] = ACTIONS(3115), + [sym_string_start] = ACTIONS(3115), + }, + [1465] = { + [ts_builtin_sym_end] = ACTIONS(3621), + [sym_identifier] = ACTIONS(3623), + [anon_sym_SEMI] = ACTIONS(3621), + [anon_sym_import] = ACTIONS(3623), + [anon_sym_cimport] = ACTIONS(3623), + [anon_sym_from] = ACTIONS(3623), + [anon_sym_LPAREN] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_print] = ACTIONS(3623), + [anon_sym_assert] = ACTIONS(3623), + [anon_sym_return] = ACTIONS(3623), + [anon_sym_del] = ACTIONS(3623), + [anon_sym_raise] = ACTIONS(3623), + [anon_sym_pass] = ACTIONS(3623), + [anon_sym_break] = ACTIONS(3623), + [anon_sym_continue] = ACTIONS(3623), + [anon_sym_if] = ACTIONS(3623), + [anon_sym_match] = ACTIONS(3623), + [anon_sym_async] = ACTIONS(3623), + [anon_sym_for] = ACTIONS(3623), + [anon_sym_while] = ACTIONS(3623), + [anon_sym_try] = ACTIONS(3623), + [anon_sym_with] = ACTIONS(3623), + [anon_sym_def] = ACTIONS(3623), + [anon_sym_global] = ACTIONS(3623), + [anon_sym_nonlocal] = ACTIONS(3623), + [anon_sym_exec] = ACTIONS(3623), + [anon_sym_type] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_AT] = ACTIONS(3621), + [anon_sym_DASH] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_PLUS] = ACTIONS(3621), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_LT] = ACTIONS(3621), + [anon_sym_lambda] = ACTIONS(3623), + [anon_sym_yield] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [anon_sym_None] = ACTIONS(3623), + [anon_sym_0x] = ACTIONS(3621), + [anon_sym_0X] = ACTIONS(3621), + [anon_sym_0o] = ACTIONS(3621), + [anon_sym_0O] = ACTIONS(3621), + [anon_sym_0b] = ACTIONS(3621), + [anon_sym_0B] = ACTIONS(3621), + [aux_sym_integer_token4] = ACTIONS(3623), + [sym_float] = ACTIONS(3621), + [anon_sym_await] = ACTIONS(3623), + [anon_sym_api] = ACTIONS(3623), + [sym_true] = ACTIONS(3623), + [sym_false] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3623), + [anon_sym_include] = ACTIONS(3623), + [anon_sym_DEF] = ACTIONS(3623), + [anon_sym_IF] = ACTIONS(3623), + [anon_sym_cdef] = ACTIONS(3623), + [anon_sym_cpdef] = ACTIONS(3623), + [anon_sym_new] = ACTIONS(3623), + [anon_sym_ctypedef] = ACTIONS(3623), + [anon_sym_public] = ACTIONS(3623), + [anon_sym_packed] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym_readonly] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3623), + [sym_string_start] = ACTIONS(3621), + }, + [1466] = { + [ts_builtin_sym_end] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3625), + [anon_sym_import] = ACTIONS(3627), + [anon_sym_cimport] = ACTIONS(3627), + [anon_sym_from] = ACTIONS(3627), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_print] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_del] = ACTIONS(3627), + [anon_sym_raise] = ACTIONS(3627), + [anon_sym_pass] = ACTIONS(3627), + [anon_sym_break] = ACTIONS(3627), + [anon_sym_continue] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_async] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_with] = ACTIONS(3627), + [anon_sym_def] = ACTIONS(3627), + [anon_sym_global] = ACTIONS(3627), + [anon_sym_nonlocal] = ACTIONS(3627), + [anon_sym_exec] = ACTIONS(3627), + [anon_sym_type] = ACTIONS(3627), + [anon_sym_class] = ACTIONS(3627), + [anon_sym_LBRACK] = ACTIONS(3625), + [anon_sym_AT] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3625), + [anon_sym_PLUS] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_lambda] = ACTIONS(3627), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [anon_sym_None] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3625), + [anon_sym_0X] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3625), + [anon_sym_0O] = ACTIONS(3625), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0B] = ACTIONS(3625), + [aux_sym_integer_token4] = ACTIONS(3627), + [sym_float] = ACTIONS(3625), + [anon_sym_await] = ACTIONS(3627), + [anon_sym_api] = ACTIONS(3627), + [sym_true] = ACTIONS(3627), + [sym_false] = ACTIONS(3627), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3627), + [anon_sym_include] = ACTIONS(3627), + [anon_sym_DEF] = ACTIONS(3627), + [anon_sym_IF] = ACTIONS(3627), + [anon_sym_cdef] = ACTIONS(3627), + [anon_sym_cpdef] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_ctypedef] = ACTIONS(3627), + [anon_sym_public] = ACTIONS(3627), + [anon_sym_packed] = ACTIONS(3627), + [anon_sym_inline] = ACTIONS(3627), + [anon_sym_readonly] = ACTIONS(3627), + [anon_sym_sizeof] = ACTIONS(3627), + [sym_string_start] = ACTIONS(3625), + }, + [1467] = { + [ts_builtin_sym_end] = ACTIONS(3629), + [sym_identifier] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3629), + [anon_sym_import] = ACTIONS(3631), + [anon_sym_cimport] = ACTIONS(3631), + [anon_sym_from] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3629), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_print] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_del] = ACTIONS(3631), + [anon_sym_raise] = ACTIONS(3631), + [anon_sym_pass] = ACTIONS(3631), + [anon_sym_break] = ACTIONS(3631), + [anon_sym_continue] = ACTIONS(3631), + [anon_sym_if] = ACTIONS(3631), + [anon_sym_match] = ACTIONS(3631), + [anon_sym_async] = ACTIONS(3631), + [anon_sym_for] = ACTIONS(3631), + [anon_sym_while] = ACTIONS(3631), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_with] = ACTIONS(3631), + [anon_sym_def] = ACTIONS(3631), + [anon_sym_global] = ACTIONS(3631), + [anon_sym_nonlocal] = ACTIONS(3631), + [anon_sym_exec] = ACTIONS(3631), + [anon_sym_type] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3629), + [anon_sym_AT] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_PLUS] = ACTIONS(3629), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_lambda] = ACTIONS(3631), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), + [anon_sym_None] = ACTIONS(3631), + [anon_sym_0x] = ACTIONS(3629), + [anon_sym_0X] = ACTIONS(3629), + [anon_sym_0o] = ACTIONS(3629), + [anon_sym_0O] = ACTIONS(3629), + [anon_sym_0b] = ACTIONS(3629), + [anon_sym_0B] = ACTIONS(3629), + [aux_sym_integer_token4] = ACTIONS(3631), + [sym_float] = ACTIONS(3629), + [anon_sym_await] = ACTIONS(3631), + [anon_sym_api] = ACTIONS(3631), + [sym_true] = ACTIONS(3631), + [sym_false] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3631), + [anon_sym_include] = ACTIONS(3631), + [anon_sym_DEF] = ACTIONS(3631), + [anon_sym_IF] = ACTIONS(3631), + [anon_sym_cdef] = ACTIONS(3631), + [anon_sym_cpdef] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_ctypedef] = ACTIONS(3631), + [anon_sym_public] = ACTIONS(3631), + [anon_sym_packed] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym_readonly] = ACTIONS(3631), + [anon_sym_sizeof] = ACTIONS(3631), + [sym_string_start] = ACTIONS(3629), + }, + [1468] = { + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3633), + [anon_sym_import] = ACTIONS(3635), + [anon_sym_cimport] = ACTIONS(3635), + [anon_sym_from] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_print] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_del] = ACTIONS(3635), + [anon_sym_raise] = ACTIONS(3635), + [anon_sym_pass] = ACTIONS(3635), + [anon_sym_break] = ACTIONS(3635), + [anon_sym_continue] = ACTIONS(3635), + [anon_sym_if] = ACTIONS(3635), + [anon_sym_match] = ACTIONS(3635), + [anon_sym_async] = ACTIONS(3635), + [anon_sym_for] = ACTIONS(3635), + [anon_sym_while] = ACTIONS(3635), + [anon_sym_try] = ACTIONS(3635), + [anon_sym_with] = ACTIONS(3635), + [anon_sym_def] = ACTIONS(3635), + [anon_sym_global] = ACTIONS(3635), + [anon_sym_nonlocal] = ACTIONS(3635), + [anon_sym_exec] = ACTIONS(3635), + [anon_sym_type] = ACTIONS(3635), + [anon_sym_class] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_AT] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_not] = ACTIONS(3635), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_lambda] = ACTIONS(3635), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [anon_sym_None] = ACTIONS(3635), + [anon_sym_0x] = ACTIONS(3633), + [anon_sym_0X] = ACTIONS(3633), + [anon_sym_0o] = ACTIONS(3633), + [anon_sym_0O] = ACTIONS(3633), + [anon_sym_0b] = ACTIONS(3633), + [anon_sym_0B] = ACTIONS(3633), + [aux_sym_integer_token4] = ACTIONS(3635), + [sym_float] = ACTIONS(3633), + [anon_sym_await] = ACTIONS(3635), + [anon_sym_api] = ACTIONS(3635), + [sym_true] = ACTIONS(3635), + [sym_false] = ACTIONS(3635), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3635), + [anon_sym_include] = ACTIONS(3635), + [anon_sym_DEF] = ACTIONS(3635), + [anon_sym_IF] = ACTIONS(3635), + [anon_sym_cdef] = ACTIONS(3635), + [anon_sym_cpdef] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_ctypedef] = ACTIONS(3635), + [anon_sym_public] = ACTIONS(3635), + [anon_sym_packed] = ACTIONS(3635), + [anon_sym_inline] = ACTIONS(3635), + [anon_sym_readonly] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(3635), + [sym_string_start] = ACTIONS(3633), + }, + [1469] = { + [sym_identifier] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_cimport] = ACTIONS(3129), + [anon_sym_from] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_STAR] = ACTIONS(3127), + [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_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_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(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(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3127), + [anon_sym_lambda] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), + [anon_sym_None] = ACTIONS(3129), + [anon_sym_0x] = ACTIONS(3127), + [anon_sym_0X] = ACTIONS(3127), + [anon_sym_0o] = ACTIONS(3127), + [anon_sym_0O] = ACTIONS(3127), + [anon_sym_0b] = ACTIONS(3127), + [anon_sym_0B] = ACTIONS(3127), + [aux_sym_integer_token4] = ACTIONS(3129), + [sym_float] = ACTIONS(3127), + [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_IF] = 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(3127), + [sym_string_start] = ACTIONS(3127), + }, + [1470] = { + [ts_builtin_sym_end] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3639), + [anon_sym_SEMI] = ACTIONS(3637), + [anon_sym_import] = ACTIONS(3639), + [anon_sym_cimport] = ACTIONS(3639), + [anon_sym_from] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3637), + [anon_sym_print] = ACTIONS(3639), + [anon_sym_assert] = ACTIONS(3639), + [anon_sym_return] = ACTIONS(3639), + [anon_sym_del] = ACTIONS(3639), + [anon_sym_raise] = ACTIONS(3639), + [anon_sym_pass] = ACTIONS(3639), + [anon_sym_break] = ACTIONS(3639), + [anon_sym_continue] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(3639), + [anon_sym_match] = ACTIONS(3639), + [anon_sym_async] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3639), + [anon_sym_while] = ACTIONS(3639), + [anon_sym_try] = ACTIONS(3639), + [anon_sym_with] = ACTIONS(3639), + [anon_sym_def] = ACTIONS(3639), + [anon_sym_global] = ACTIONS(3639), + [anon_sym_nonlocal] = ACTIONS(3639), + [anon_sym_exec] = ACTIONS(3639), + [anon_sym_type] = ACTIONS(3639), + [anon_sym_class] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_AT] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_not] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3637), + [anon_sym_LT] = ACTIONS(3637), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + [anon_sym_None] = ACTIONS(3639), + [anon_sym_0x] = ACTIONS(3637), + [anon_sym_0X] = ACTIONS(3637), + [anon_sym_0o] = ACTIONS(3637), + [anon_sym_0O] = ACTIONS(3637), + [anon_sym_0b] = ACTIONS(3637), + [anon_sym_0B] = ACTIONS(3637), + [aux_sym_integer_token4] = ACTIONS(3639), + [sym_float] = ACTIONS(3637), + [anon_sym_await] = ACTIONS(3639), + [anon_sym_api] = ACTIONS(3639), + [sym_true] = ACTIONS(3639), + [sym_false] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3639), + [anon_sym_include] = ACTIONS(3639), + [anon_sym_DEF] = ACTIONS(3639), + [anon_sym_IF] = ACTIONS(3639), + [anon_sym_cdef] = ACTIONS(3639), + [anon_sym_cpdef] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_ctypedef] = ACTIONS(3639), + [anon_sym_public] = ACTIONS(3639), + [anon_sym_packed] = ACTIONS(3639), + [anon_sym_inline] = ACTIONS(3639), + [anon_sym_readonly] = ACTIONS(3639), + [anon_sym_sizeof] = ACTIONS(3639), + [sym_string_start] = ACTIONS(3637), + }, + [1471] = { + [ts_builtin_sym_end] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3643), + [anon_sym_SEMI] = ACTIONS(3641), + [anon_sym_import] = ACTIONS(3643), + [anon_sym_cimport] = ACTIONS(3643), + [anon_sym_from] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_print] = ACTIONS(3643), + [anon_sym_assert] = ACTIONS(3643), + [anon_sym_return] = ACTIONS(3643), + [anon_sym_del] = ACTIONS(3643), + [anon_sym_raise] = ACTIONS(3643), + [anon_sym_pass] = ACTIONS(3643), + [anon_sym_break] = ACTIONS(3643), + [anon_sym_continue] = ACTIONS(3643), + [anon_sym_if] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(3643), + [anon_sym_async] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3643), + [anon_sym_while] = ACTIONS(3643), + [anon_sym_try] = ACTIONS(3643), + [anon_sym_with] = ACTIONS(3643), + [anon_sym_def] = ACTIONS(3643), + [anon_sym_global] = ACTIONS(3643), + [anon_sym_nonlocal] = ACTIONS(3643), + [anon_sym_exec] = ACTIONS(3643), + [anon_sym_type] = ACTIONS(3643), + [anon_sym_class] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_AT] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_not] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3641), + [anon_sym_LT] = ACTIONS(3641), + [anon_sym_lambda] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3641), + [anon_sym_None] = ACTIONS(3643), + [anon_sym_0x] = ACTIONS(3641), + [anon_sym_0X] = ACTIONS(3641), + [anon_sym_0o] = ACTIONS(3641), + [anon_sym_0O] = ACTIONS(3641), + [anon_sym_0b] = ACTIONS(3641), + [anon_sym_0B] = ACTIONS(3641), + [aux_sym_integer_token4] = ACTIONS(3643), + [sym_float] = ACTIONS(3641), + [anon_sym_await] = ACTIONS(3643), + [anon_sym_api] = ACTIONS(3643), + [sym_true] = ACTIONS(3643), + [sym_false] = ACTIONS(3643), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3643), + [anon_sym_include] = ACTIONS(3643), + [anon_sym_DEF] = ACTIONS(3643), + [anon_sym_IF] = ACTIONS(3643), + [anon_sym_cdef] = ACTIONS(3643), + [anon_sym_cpdef] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3643), + [anon_sym_ctypedef] = ACTIONS(3643), + [anon_sym_public] = ACTIONS(3643), + [anon_sym_packed] = ACTIONS(3643), + [anon_sym_inline] = ACTIONS(3643), + [anon_sym_readonly] = ACTIONS(3643), + [anon_sym_sizeof] = ACTIONS(3643), + [sym_string_start] = ACTIONS(3641), + }, + [1472] = { + [ts_builtin_sym_end] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3645), + [anon_sym_import] = ACTIONS(3647), + [anon_sym_cimport] = ACTIONS(3647), + [anon_sym_from] = ACTIONS(3647), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_STAR] = ACTIONS(3645), + [anon_sym_print] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_del] = ACTIONS(3647), + [anon_sym_raise] = ACTIONS(3647), + [anon_sym_pass] = ACTIONS(3647), + [anon_sym_break] = ACTIONS(3647), + [anon_sym_continue] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_async] = ACTIONS(3647), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_with] = ACTIONS(3647), + [anon_sym_def] = ACTIONS(3647), + [anon_sym_global] = ACTIONS(3647), + [anon_sym_nonlocal] = ACTIONS(3647), + [anon_sym_exec] = ACTIONS(3647), + [anon_sym_type] = ACTIONS(3647), + [anon_sym_class] = ACTIONS(3647), + [anon_sym_LBRACK] = ACTIONS(3645), + [anon_sym_AT] = ACTIONS(3645), + [anon_sym_DASH] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3645), + [anon_sym_PLUS] = ACTIONS(3645), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3645), + [anon_sym_TILDE] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_lambda] = ACTIONS(3647), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3645), + [anon_sym_None] = ACTIONS(3647), + [anon_sym_0x] = ACTIONS(3645), + [anon_sym_0X] = ACTIONS(3645), + [anon_sym_0o] = ACTIONS(3645), + [anon_sym_0O] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(3645), + [anon_sym_0B] = ACTIONS(3645), + [aux_sym_integer_token4] = ACTIONS(3647), + [sym_float] = ACTIONS(3645), + [anon_sym_await] = ACTIONS(3647), + [anon_sym_api] = ACTIONS(3647), + [sym_true] = ACTIONS(3647), + [sym_false] = ACTIONS(3647), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3647), + [anon_sym_include] = ACTIONS(3647), + [anon_sym_DEF] = ACTIONS(3647), + [anon_sym_IF] = ACTIONS(3647), + [anon_sym_cdef] = ACTIONS(3647), + [anon_sym_cpdef] = ACTIONS(3647), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_ctypedef] = ACTIONS(3647), + [anon_sym_public] = ACTIONS(3647), + [anon_sym_packed] = ACTIONS(3647), + [anon_sym_inline] = ACTIONS(3647), + [anon_sym_readonly] = ACTIONS(3647), + [anon_sym_sizeof] = ACTIONS(3647), + [sym_string_start] = ACTIONS(3645), + }, + [1473] = { + [ts_builtin_sym_end] = ACTIONS(3649), + [sym_identifier] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3649), + [anon_sym_import] = ACTIONS(3651), + [anon_sym_cimport] = ACTIONS(3651), + [anon_sym_from] = ACTIONS(3651), + [anon_sym_LPAREN] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(3649), + [anon_sym_print] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_del] = ACTIONS(3651), + [anon_sym_raise] = ACTIONS(3651), + [anon_sym_pass] = ACTIONS(3651), + [anon_sym_break] = ACTIONS(3651), + [anon_sym_continue] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_async] = ACTIONS(3651), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_with] = ACTIONS(3651), + [anon_sym_def] = ACTIONS(3651), + [anon_sym_global] = ACTIONS(3651), + [anon_sym_nonlocal] = ACTIONS(3651), + [anon_sym_exec] = ACTIONS(3651), + [anon_sym_type] = ACTIONS(3651), + [anon_sym_class] = ACTIONS(3651), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_AT] = ACTIONS(3649), + [anon_sym_DASH] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3649), + [anon_sym_PLUS] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym_TILDE] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_lambda] = ACTIONS(3651), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), + [anon_sym_None] = ACTIONS(3651), + [anon_sym_0x] = ACTIONS(3649), + [anon_sym_0X] = ACTIONS(3649), + [anon_sym_0o] = ACTIONS(3649), + [anon_sym_0O] = ACTIONS(3649), + [anon_sym_0b] = ACTIONS(3649), + [anon_sym_0B] = ACTIONS(3649), + [aux_sym_integer_token4] = ACTIONS(3651), + [sym_float] = ACTIONS(3649), + [anon_sym_await] = ACTIONS(3651), + [anon_sym_api] = ACTIONS(3651), + [sym_true] = ACTIONS(3651), + [sym_false] = ACTIONS(3651), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3651), + [anon_sym_include] = ACTIONS(3651), + [anon_sym_DEF] = ACTIONS(3651), + [anon_sym_IF] = ACTIONS(3651), + [anon_sym_cdef] = ACTIONS(3651), + [anon_sym_cpdef] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_ctypedef] = ACTIONS(3651), + [anon_sym_public] = ACTIONS(3651), + [anon_sym_packed] = ACTIONS(3651), + [anon_sym_inline] = ACTIONS(3651), + [anon_sym_readonly] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(3651), + [sym_string_start] = ACTIONS(3649), + }, + [1474] = { + [ts_builtin_sym_end] = ACTIONS(3653), + [sym_identifier] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3653), + [anon_sym_import] = ACTIONS(3655), + [anon_sym_cimport] = ACTIONS(3655), + [anon_sym_from] = ACTIONS(3655), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3653), + [anon_sym_print] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_del] = ACTIONS(3655), + [anon_sym_raise] = ACTIONS(3655), + [anon_sym_pass] = ACTIONS(3655), + [anon_sym_break] = ACTIONS(3655), + [anon_sym_continue] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_async] = ACTIONS(3655), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_with] = ACTIONS(3655), + [anon_sym_def] = ACTIONS(3655), + [anon_sym_global] = ACTIONS(3655), + [anon_sym_nonlocal] = ACTIONS(3655), + [anon_sym_exec] = ACTIONS(3655), + [anon_sym_type] = ACTIONS(3655), + [anon_sym_class] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3653), + [anon_sym_AT] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3653), + [anon_sym_PLUS] = ACTIONS(3653), + [anon_sym_not] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_lambda] = ACTIONS(3655), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3653), + [anon_sym_None] = ACTIONS(3655), + [anon_sym_0x] = ACTIONS(3653), + [anon_sym_0X] = ACTIONS(3653), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0O] = ACTIONS(3653), + [anon_sym_0b] = ACTIONS(3653), + [anon_sym_0B] = ACTIONS(3653), + [aux_sym_integer_token4] = ACTIONS(3655), + [sym_float] = ACTIONS(3653), + [anon_sym_await] = ACTIONS(3655), + [anon_sym_api] = ACTIONS(3655), + [sym_true] = ACTIONS(3655), + [sym_false] = ACTIONS(3655), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3655), + [anon_sym_include] = ACTIONS(3655), + [anon_sym_DEF] = ACTIONS(3655), + [anon_sym_IF] = ACTIONS(3655), + [anon_sym_cdef] = ACTIONS(3655), + [anon_sym_cpdef] = ACTIONS(3655), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_ctypedef] = ACTIONS(3655), + [anon_sym_public] = ACTIONS(3655), + [anon_sym_packed] = ACTIONS(3655), + [anon_sym_inline] = ACTIONS(3655), + [anon_sym_readonly] = ACTIONS(3655), + [anon_sym_sizeof] = ACTIONS(3655), + [sym_string_start] = ACTIONS(3653), + }, + [1475] = { + [ts_builtin_sym_end] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_import] = ACTIONS(3659), + [anon_sym_cimport] = ACTIONS(3659), + [anon_sym_from] = ACTIONS(3659), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_print] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_del] = ACTIONS(3659), + [anon_sym_raise] = ACTIONS(3659), + [anon_sym_pass] = ACTIONS(3659), + [anon_sym_break] = ACTIONS(3659), + [anon_sym_continue] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_async] = ACTIONS(3659), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_with] = ACTIONS(3659), + [anon_sym_def] = ACTIONS(3659), + [anon_sym_global] = ACTIONS(3659), + [anon_sym_nonlocal] = ACTIONS(3659), + [anon_sym_exec] = ACTIONS(3659), + [anon_sym_type] = ACTIONS(3659), + [anon_sym_class] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_AT] = ACTIONS(3657), + [anon_sym_DASH] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3657), + [anon_sym_not] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym_TILDE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3657), + [anon_sym_None] = ACTIONS(3659), + [anon_sym_0x] = ACTIONS(3657), + [anon_sym_0X] = ACTIONS(3657), + [anon_sym_0o] = ACTIONS(3657), + [anon_sym_0O] = ACTIONS(3657), + [anon_sym_0b] = ACTIONS(3657), + [anon_sym_0B] = ACTIONS(3657), + [aux_sym_integer_token4] = ACTIONS(3659), + [sym_float] = ACTIONS(3657), + [anon_sym_await] = ACTIONS(3659), + [anon_sym_api] = ACTIONS(3659), + [sym_true] = ACTIONS(3659), + [sym_false] = ACTIONS(3659), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3659), + [anon_sym_include] = ACTIONS(3659), + [anon_sym_DEF] = ACTIONS(3659), + [anon_sym_IF] = ACTIONS(3659), + [anon_sym_cdef] = ACTIONS(3659), + [anon_sym_cpdef] = ACTIONS(3659), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_ctypedef] = ACTIONS(3659), + [anon_sym_public] = ACTIONS(3659), + [anon_sym_packed] = ACTIONS(3659), + [anon_sym_inline] = ACTIONS(3659), + [anon_sym_readonly] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3659), + [sym_string_start] = ACTIONS(3657), + }, + [1476] = { + [ts_builtin_sym_end] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3663), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_import] = ACTIONS(3663), + [anon_sym_cimport] = ACTIONS(3663), + [anon_sym_from] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_print] = ACTIONS(3663), + [anon_sym_assert] = ACTIONS(3663), + [anon_sym_return] = ACTIONS(3663), + [anon_sym_del] = ACTIONS(3663), + [anon_sym_raise] = ACTIONS(3663), + [anon_sym_pass] = ACTIONS(3663), + [anon_sym_break] = ACTIONS(3663), + [anon_sym_continue] = ACTIONS(3663), + [anon_sym_if] = ACTIONS(3663), + [anon_sym_match] = ACTIONS(3663), + [anon_sym_async] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3663), + [anon_sym_while] = ACTIONS(3663), + [anon_sym_try] = ACTIONS(3663), + [anon_sym_with] = ACTIONS(3663), + [anon_sym_def] = ACTIONS(3663), + [anon_sym_global] = ACTIONS(3663), + [anon_sym_nonlocal] = ACTIONS(3663), + [anon_sym_exec] = ACTIONS(3663), + [anon_sym_type] = ACTIONS(3663), + [anon_sym_class] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_AT] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_not] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3661), + [anon_sym_lambda] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3661), + [anon_sym_None] = ACTIONS(3663), + [anon_sym_0x] = ACTIONS(3661), + [anon_sym_0X] = ACTIONS(3661), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0O] = ACTIONS(3661), + [anon_sym_0b] = ACTIONS(3661), + [anon_sym_0B] = ACTIONS(3661), + [aux_sym_integer_token4] = ACTIONS(3663), + [sym_float] = ACTIONS(3661), + [anon_sym_await] = ACTIONS(3663), + [anon_sym_api] = ACTIONS(3663), + [sym_true] = ACTIONS(3663), + [sym_false] = ACTIONS(3663), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3663), + [anon_sym_include] = ACTIONS(3663), + [anon_sym_DEF] = ACTIONS(3663), + [anon_sym_IF] = ACTIONS(3663), + [anon_sym_cdef] = ACTIONS(3663), + [anon_sym_cpdef] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3663), + [anon_sym_ctypedef] = ACTIONS(3663), + [anon_sym_public] = ACTIONS(3663), + [anon_sym_packed] = ACTIONS(3663), + [anon_sym_inline] = ACTIONS(3663), + [anon_sym_readonly] = ACTIONS(3663), + [anon_sym_sizeof] = ACTIONS(3663), + [sym_string_start] = ACTIONS(3661), + }, + [1477] = { + [ts_builtin_sym_end] = ACTIONS(3665), + [sym_identifier] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_import] = ACTIONS(3667), + [anon_sym_cimport] = ACTIONS(3667), + [anon_sym_from] = ACTIONS(3667), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_print] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_del] = ACTIONS(3667), + [anon_sym_raise] = ACTIONS(3667), + [anon_sym_pass] = ACTIONS(3667), + [anon_sym_break] = ACTIONS(3667), + [anon_sym_continue] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_async] = ACTIONS(3667), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_with] = ACTIONS(3667), + [anon_sym_def] = ACTIONS(3667), + [anon_sym_global] = ACTIONS(3667), + [anon_sym_nonlocal] = ACTIONS(3667), + [anon_sym_exec] = ACTIONS(3667), + [anon_sym_type] = ACTIONS(3667), + [anon_sym_class] = ACTIONS(3667), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_AT] = ACTIONS(3665), + [anon_sym_DASH] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3665), + [anon_sym_not] = ACTIONS(3667), + [anon_sym_AMP] = ACTIONS(3665), + [anon_sym_TILDE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_lambda] = ACTIONS(3667), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3665), + [anon_sym_None] = ACTIONS(3667), + [anon_sym_0x] = ACTIONS(3665), + [anon_sym_0X] = ACTIONS(3665), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0O] = ACTIONS(3665), + [anon_sym_0b] = ACTIONS(3665), + [anon_sym_0B] = ACTIONS(3665), + [aux_sym_integer_token4] = ACTIONS(3667), + [sym_float] = ACTIONS(3665), + [anon_sym_await] = ACTIONS(3667), + [anon_sym_api] = ACTIONS(3667), + [sym_true] = ACTIONS(3667), + [sym_false] = ACTIONS(3667), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3667), + [anon_sym_include] = ACTIONS(3667), + [anon_sym_DEF] = ACTIONS(3667), + [anon_sym_IF] = ACTIONS(3667), + [anon_sym_cdef] = ACTIONS(3667), + [anon_sym_cpdef] = ACTIONS(3667), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_ctypedef] = ACTIONS(3667), + [anon_sym_public] = ACTIONS(3667), + [anon_sym_packed] = ACTIONS(3667), + [anon_sym_inline] = ACTIONS(3667), + [anon_sym_readonly] = ACTIONS(3667), + [anon_sym_sizeof] = ACTIONS(3667), + [sym_string_start] = ACTIONS(3665), + }, + [1478] = { + [ts_builtin_sym_end] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3671), + [anon_sym_SEMI] = ACTIONS(3669), + [anon_sym_import] = ACTIONS(3671), + [anon_sym_cimport] = ACTIONS(3671), + [anon_sym_from] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_STAR] = ACTIONS(3669), + [anon_sym_print] = ACTIONS(3671), + [anon_sym_assert] = ACTIONS(3671), + [anon_sym_return] = ACTIONS(3671), + [anon_sym_del] = ACTIONS(3671), + [anon_sym_raise] = ACTIONS(3671), + [anon_sym_pass] = ACTIONS(3671), + [anon_sym_break] = ACTIONS(3671), + [anon_sym_continue] = ACTIONS(3671), + [anon_sym_if] = ACTIONS(3671), + [anon_sym_match] = ACTIONS(3671), + [anon_sym_async] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3671), + [anon_sym_while] = ACTIONS(3671), + [anon_sym_try] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3671), + [anon_sym_def] = ACTIONS(3671), + [anon_sym_global] = ACTIONS(3671), + [anon_sym_nonlocal] = ACTIONS(3671), + [anon_sym_exec] = ACTIONS(3671), + [anon_sym_type] = ACTIONS(3671), + [anon_sym_class] = ACTIONS(3671), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_AT] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_not] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3669), + [anon_sym_lambda] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3669), + [anon_sym_None] = ACTIONS(3671), + [anon_sym_0x] = ACTIONS(3669), + [anon_sym_0X] = ACTIONS(3669), + [anon_sym_0o] = ACTIONS(3669), + [anon_sym_0O] = ACTIONS(3669), + [anon_sym_0b] = ACTIONS(3669), + [anon_sym_0B] = ACTIONS(3669), + [aux_sym_integer_token4] = ACTIONS(3671), + [sym_float] = ACTIONS(3669), + [anon_sym_await] = ACTIONS(3671), + [anon_sym_api] = ACTIONS(3671), + [sym_true] = ACTIONS(3671), + [sym_false] = ACTIONS(3671), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3671), + [anon_sym_include] = ACTIONS(3671), + [anon_sym_DEF] = ACTIONS(3671), + [anon_sym_IF] = ACTIONS(3671), + [anon_sym_cdef] = ACTIONS(3671), + [anon_sym_cpdef] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3671), + [anon_sym_ctypedef] = ACTIONS(3671), + [anon_sym_public] = ACTIONS(3671), + [anon_sym_packed] = ACTIONS(3671), + [anon_sym_inline] = ACTIONS(3671), + [anon_sym_readonly] = ACTIONS(3671), + [anon_sym_sizeof] = ACTIONS(3671), + [sym_string_start] = ACTIONS(3669), + }, + [1479] = { + [ts_builtin_sym_end] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3675), + [anon_sym_SEMI] = ACTIONS(3673), + [anon_sym_import] = ACTIONS(3675), + [anon_sym_cimport] = ACTIONS(3675), + [anon_sym_from] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3673), + [anon_sym_print] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_del] = ACTIONS(3675), + [anon_sym_raise] = ACTIONS(3675), + [anon_sym_pass] = ACTIONS(3675), + [anon_sym_break] = ACTIONS(3675), + [anon_sym_continue] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_async] = ACTIONS(3675), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3675), + [anon_sym_def] = ACTIONS(3675), + [anon_sym_global] = ACTIONS(3675), + [anon_sym_nonlocal] = ACTIONS(3675), + [anon_sym_exec] = ACTIONS(3675), + [anon_sym_type] = ACTIONS(3675), + [anon_sym_class] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3673), + [anon_sym_AT] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_LBRACE] = ACTIONS(3673), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_not] = ACTIONS(3675), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_TILDE] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_lambda] = ACTIONS(3675), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3673), + [anon_sym_None] = ACTIONS(3675), + [anon_sym_0x] = ACTIONS(3673), + [anon_sym_0X] = ACTIONS(3673), + [anon_sym_0o] = ACTIONS(3673), + [anon_sym_0O] = ACTIONS(3673), + [anon_sym_0b] = ACTIONS(3673), + [anon_sym_0B] = ACTIONS(3673), + [aux_sym_integer_token4] = ACTIONS(3675), + [sym_float] = ACTIONS(3673), + [anon_sym_await] = ACTIONS(3675), + [anon_sym_api] = ACTIONS(3675), + [sym_true] = ACTIONS(3675), + [sym_false] = ACTIONS(3675), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3675), + [anon_sym_include] = ACTIONS(3675), + [anon_sym_DEF] = ACTIONS(3675), + [anon_sym_IF] = ACTIONS(3675), + [anon_sym_cdef] = ACTIONS(3675), + [anon_sym_cpdef] = ACTIONS(3675), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_ctypedef] = ACTIONS(3675), + [anon_sym_public] = ACTIONS(3675), + [anon_sym_packed] = ACTIONS(3675), + [anon_sym_inline] = ACTIONS(3675), + [anon_sym_readonly] = ACTIONS(3675), + [anon_sym_sizeof] = ACTIONS(3675), + [sym_string_start] = ACTIONS(3673), + }, + [1480] = { + [ts_builtin_sym_end] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3679), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym_import] = ACTIONS(3679), + [anon_sym_cimport] = ACTIONS(3679), + [anon_sym_from] = ACTIONS(3679), + [anon_sym_LPAREN] = ACTIONS(3677), + [anon_sym_STAR] = ACTIONS(3677), + [anon_sym_print] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_del] = ACTIONS(3679), + [anon_sym_raise] = ACTIONS(3679), + [anon_sym_pass] = ACTIONS(3679), + [anon_sym_break] = ACTIONS(3679), + [anon_sym_continue] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_async] = ACTIONS(3679), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_with] = ACTIONS(3679), + [anon_sym_def] = ACTIONS(3679), + [anon_sym_global] = ACTIONS(3679), + [anon_sym_nonlocal] = ACTIONS(3679), + [anon_sym_exec] = ACTIONS(3679), + [anon_sym_type] = ACTIONS(3679), + [anon_sym_class] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_AT] = ACTIONS(3677), + [anon_sym_DASH] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3677), + [anon_sym_not] = ACTIONS(3679), + [anon_sym_AMP] = ACTIONS(3677), + [anon_sym_TILDE] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_lambda] = ACTIONS(3679), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3677), + [anon_sym_None] = ACTIONS(3679), + [anon_sym_0x] = ACTIONS(3677), + [anon_sym_0X] = ACTIONS(3677), + [anon_sym_0o] = ACTIONS(3677), + [anon_sym_0O] = ACTIONS(3677), + [anon_sym_0b] = ACTIONS(3677), + [anon_sym_0B] = ACTIONS(3677), + [aux_sym_integer_token4] = ACTIONS(3679), + [sym_float] = ACTIONS(3677), + [anon_sym_await] = ACTIONS(3679), + [anon_sym_api] = ACTIONS(3679), + [sym_true] = ACTIONS(3679), + [sym_false] = ACTIONS(3679), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3679), + [anon_sym_include] = ACTIONS(3679), + [anon_sym_DEF] = ACTIONS(3679), + [anon_sym_IF] = ACTIONS(3679), + [anon_sym_cdef] = ACTIONS(3679), + [anon_sym_cpdef] = ACTIONS(3679), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_ctypedef] = ACTIONS(3679), + [anon_sym_public] = ACTIONS(3679), + [anon_sym_packed] = ACTIONS(3679), + [anon_sym_inline] = ACTIONS(3679), + [anon_sym_readonly] = ACTIONS(3679), + [anon_sym_sizeof] = ACTIONS(3679), + [sym_string_start] = ACTIONS(3677), + }, + [1481] = { + [ts_builtin_sym_end] = ACTIONS(3681), + [sym_identifier] = ACTIONS(3683), + [anon_sym_SEMI] = ACTIONS(3681), + [anon_sym_import] = ACTIONS(3683), + [anon_sym_cimport] = ACTIONS(3683), + [anon_sym_from] = ACTIONS(3683), + [anon_sym_LPAREN] = ACTIONS(3681), + [anon_sym_STAR] = ACTIONS(3681), + [anon_sym_print] = ACTIONS(3683), + [anon_sym_assert] = ACTIONS(3683), + [anon_sym_return] = ACTIONS(3683), + [anon_sym_del] = ACTIONS(3683), + [anon_sym_raise] = ACTIONS(3683), + [anon_sym_pass] = ACTIONS(3683), + [anon_sym_break] = ACTIONS(3683), + [anon_sym_continue] = ACTIONS(3683), + [anon_sym_if] = ACTIONS(3683), + [anon_sym_match] = ACTIONS(3683), + [anon_sym_async] = ACTIONS(3683), + [anon_sym_for] = ACTIONS(3683), + [anon_sym_while] = ACTIONS(3683), + [anon_sym_try] = ACTIONS(3683), + [anon_sym_with] = ACTIONS(3683), + [anon_sym_def] = ACTIONS(3683), + [anon_sym_global] = ACTIONS(3683), + [anon_sym_nonlocal] = ACTIONS(3683), + [anon_sym_exec] = ACTIONS(3683), + [anon_sym_type] = ACTIONS(3683), + [anon_sym_class] = ACTIONS(3683), + [anon_sym_LBRACK] = ACTIONS(3681), + [anon_sym_AT] = ACTIONS(3681), + [anon_sym_DASH] = ACTIONS(3681), + [anon_sym_LBRACE] = ACTIONS(3681), + [anon_sym_PLUS] = ACTIONS(3681), + [anon_sym_not] = ACTIONS(3683), + [anon_sym_AMP] = ACTIONS(3681), + [anon_sym_TILDE] = ACTIONS(3681), + [anon_sym_LT] = ACTIONS(3681), + [anon_sym_lambda] = ACTIONS(3683), + [anon_sym_yield] = ACTIONS(3683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3681), + [anon_sym_None] = ACTIONS(3683), + [anon_sym_0x] = ACTIONS(3681), + [anon_sym_0X] = ACTIONS(3681), + [anon_sym_0o] = ACTIONS(3681), + [anon_sym_0O] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3681), + [anon_sym_0B] = ACTIONS(3681), + [aux_sym_integer_token4] = ACTIONS(3683), + [sym_float] = ACTIONS(3681), + [anon_sym_await] = ACTIONS(3683), + [anon_sym_api] = ACTIONS(3683), + [sym_true] = ACTIONS(3683), + [sym_false] = ACTIONS(3683), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3683), + [anon_sym_include] = ACTIONS(3683), + [anon_sym_DEF] = ACTIONS(3683), + [anon_sym_IF] = ACTIONS(3683), + [anon_sym_cdef] = ACTIONS(3683), + [anon_sym_cpdef] = ACTIONS(3683), + [anon_sym_new] = ACTIONS(3683), + [anon_sym_ctypedef] = ACTIONS(3683), + [anon_sym_public] = ACTIONS(3683), + [anon_sym_packed] = ACTIONS(3683), + [anon_sym_inline] = ACTIONS(3683), + [anon_sym_readonly] = ACTIONS(3683), + [anon_sym_sizeof] = ACTIONS(3683), + [sym_string_start] = ACTIONS(3681), + }, + [1482] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2960), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1483] = { + [ts_builtin_sym_end] = ACTIONS(3685), + [sym_identifier] = ACTIONS(3687), + [anon_sym_SEMI] = ACTIONS(3685), + [anon_sym_import] = ACTIONS(3687), + [anon_sym_cimport] = ACTIONS(3687), + [anon_sym_from] = ACTIONS(3687), + [anon_sym_LPAREN] = ACTIONS(3685), + [anon_sym_STAR] = ACTIONS(3685), + [anon_sym_print] = ACTIONS(3687), + [anon_sym_assert] = ACTIONS(3687), + [anon_sym_return] = ACTIONS(3687), + [anon_sym_del] = ACTIONS(3687), + [anon_sym_raise] = ACTIONS(3687), + [anon_sym_pass] = ACTIONS(3687), + [anon_sym_break] = ACTIONS(3687), + [anon_sym_continue] = ACTIONS(3687), + [anon_sym_if] = ACTIONS(3687), + [anon_sym_match] = ACTIONS(3687), + [anon_sym_async] = ACTIONS(3687), + [anon_sym_for] = ACTIONS(3687), + [anon_sym_while] = ACTIONS(3687), + [anon_sym_try] = ACTIONS(3687), + [anon_sym_with] = ACTIONS(3687), + [anon_sym_def] = ACTIONS(3687), + [anon_sym_global] = ACTIONS(3687), + [anon_sym_nonlocal] = ACTIONS(3687), + [anon_sym_exec] = ACTIONS(3687), + [anon_sym_type] = ACTIONS(3687), + [anon_sym_class] = ACTIONS(3687), + [anon_sym_LBRACK] = ACTIONS(3685), + [anon_sym_AT] = ACTIONS(3685), + [anon_sym_DASH] = ACTIONS(3685), + [anon_sym_LBRACE] = ACTIONS(3685), + [anon_sym_PLUS] = ACTIONS(3685), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(3685), + [anon_sym_TILDE] = ACTIONS(3685), + [anon_sym_LT] = ACTIONS(3685), + [anon_sym_lambda] = ACTIONS(3687), + [anon_sym_yield] = ACTIONS(3687), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_None] = ACTIONS(3687), + [anon_sym_0x] = ACTIONS(3685), + [anon_sym_0X] = ACTIONS(3685), + [anon_sym_0o] = ACTIONS(3685), + [anon_sym_0O] = ACTIONS(3685), + [anon_sym_0b] = ACTIONS(3685), + [anon_sym_0B] = ACTIONS(3685), + [aux_sym_integer_token4] = ACTIONS(3687), + [sym_float] = ACTIONS(3685), + [anon_sym_await] = ACTIONS(3687), + [anon_sym_api] = ACTIONS(3687), + [sym_true] = ACTIONS(3687), + [sym_false] = ACTIONS(3687), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3687), + [anon_sym_include] = ACTIONS(3687), + [anon_sym_DEF] = ACTIONS(3687), + [anon_sym_IF] = ACTIONS(3687), + [anon_sym_cdef] = ACTIONS(3687), + [anon_sym_cpdef] = ACTIONS(3687), + [anon_sym_new] = ACTIONS(3687), + [anon_sym_ctypedef] = ACTIONS(3687), + [anon_sym_public] = ACTIONS(3687), + [anon_sym_packed] = ACTIONS(3687), + [anon_sym_inline] = ACTIONS(3687), + [anon_sym_readonly] = ACTIONS(3687), + [anon_sym_sizeof] = ACTIONS(3687), + [sym_string_start] = ACTIONS(3685), + }, + [1484] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5498), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1485] = { + [ts_builtin_sym_end] = ACTIONS(3689), + [sym_identifier] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3689), + [anon_sym_import] = ACTIONS(3691), + [anon_sym_cimport] = ACTIONS(3691), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_STAR] = ACTIONS(3689), + [anon_sym_print] = ACTIONS(3691), + [anon_sym_assert] = ACTIONS(3691), + [anon_sym_return] = ACTIONS(3691), + [anon_sym_del] = ACTIONS(3691), + [anon_sym_raise] = ACTIONS(3691), + [anon_sym_pass] = ACTIONS(3691), + [anon_sym_break] = ACTIONS(3691), + [anon_sym_continue] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3691), + [anon_sym_match] = ACTIONS(3691), + [anon_sym_async] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3691), + [anon_sym_while] = ACTIONS(3691), + [anon_sym_try] = ACTIONS(3691), + [anon_sym_with] = ACTIONS(3691), + [anon_sym_def] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_nonlocal] = ACTIONS(3691), + [anon_sym_exec] = ACTIONS(3691), + [anon_sym_type] = ACTIONS(3691), + [anon_sym_class] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_AT] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_not] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3689), + [anon_sym_LT] = ACTIONS(3689), + [anon_sym_lambda] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), + [anon_sym_None] = ACTIONS(3691), + [anon_sym_0x] = ACTIONS(3689), + [anon_sym_0X] = ACTIONS(3689), + [anon_sym_0o] = ACTIONS(3689), + [anon_sym_0O] = ACTIONS(3689), + [anon_sym_0b] = ACTIONS(3689), + [anon_sym_0B] = ACTIONS(3689), + [aux_sym_integer_token4] = ACTIONS(3691), + [sym_float] = ACTIONS(3689), + [anon_sym_await] = ACTIONS(3691), + [anon_sym_api] = ACTIONS(3691), + [sym_true] = ACTIONS(3691), + [sym_false] = ACTIONS(3691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3691), + [anon_sym_include] = ACTIONS(3691), + [anon_sym_DEF] = ACTIONS(3691), + [anon_sym_IF] = ACTIONS(3691), + [anon_sym_cdef] = ACTIONS(3691), + [anon_sym_cpdef] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_ctypedef] = ACTIONS(3691), + [anon_sym_public] = ACTIONS(3691), + [anon_sym_packed] = ACTIONS(3691), + [anon_sym_inline] = ACTIONS(3691), + [anon_sym_readonly] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(3691), + [sym_string_start] = ACTIONS(3689), + }, + [1486] = { + [ts_builtin_sym_end] = ACTIONS(3693), + [sym_identifier] = ACTIONS(3695), + [anon_sym_SEMI] = ACTIONS(3693), + [anon_sym_import] = ACTIONS(3695), + [anon_sym_cimport] = ACTIONS(3695), + [anon_sym_from] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(3695), + [anon_sym_assert] = ACTIONS(3695), + [anon_sym_return] = ACTIONS(3695), + [anon_sym_del] = ACTIONS(3695), + [anon_sym_raise] = ACTIONS(3695), + [anon_sym_pass] = ACTIONS(3695), + [anon_sym_break] = ACTIONS(3695), + [anon_sym_continue] = ACTIONS(3695), + [anon_sym_if] = ACTIONS(3695), + [anon_sym_match] = ACTIONS(3695), + [anon_sym_async] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3695), + [anon_sym_while] = ACTIONS(3695), + [anon_sym_try] = ACTIONS(3695), + [anon_sym_with] = ACTIONS(3695), + [anon_sym_def] = ACTIONS(3695), + [anon_sym_global] = ACTIONS(3695), + [anon_sym_nonlocal] = ACTIONS(3695), + [anon_sym_exec] = ACTIONS(3695), + [anon_sym_type] = ACTIONS(3695), + [anon_sym_class] = ACTIONS(3695), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_AT] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3693), + [anon_sym_LT] = ACTIONS(3693), + [anon_sym_lambda] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3693), + [anon_sym_None] = ACTIONS(3695), + [anon_sym_0x] = ACTIONS(3693), + [anon_sym_0X] = ACTIONS(3693), + [anon_sym_0o] = ACTIONS(3693), + [anon_sym_0O] = ACTIONS(3693), + [anon_sym_0b] = ACTIONS(3693), + [anon_sym_0B] = ACTIONS(3693), + [aux_sym_integer_token4] = ACTIONS(3695), + [sym_float] = ACTIONS(3693), + [anon_sym_await] = ACTIONS(3695), + [anon_sym_api] = ACTIONS(3695), + [sym_true] = ACTIONS(3695), + [sym_false] = ACTIONS(3695), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3695), + [anon_sym_include] = ACTIONS(3695), + [anon_sym_DEF] = ACTIONS(3695), + [anon_sym_IF] = ACTIONS(3695), + [anon_sym_cdef] = ACTIONS(3695), + [anon_sym_cpdef] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3695), + [anon_sym_ctypedef] = ACTIONS(3695), + [anon_sym_public] = ACTIONS(3695), + [anon_sym_packed] = ACTIONS(3695), + [anon_sym_inline] = ACTIONS(3695), + [anon_sym_readonly] = ACTIONS(3695), + [anon_sym_sizeof] = ACTIONS(3695), + [sym_string_start] = ACTIONS(3693), + }, + [1487] = { + [ts_builtin_sym_end] = ACTIONS(3697), + [sym_identifier] = ACTIONS(3699), + [anon_sym_SEMI] = ACTIONS(3697), + [anon_sym_import] = ACTIONS(3699), + [anon_sym_cimport] = ACTIONS(3699), + [anon_sym_from] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_STAR] = ACTIONS(3697), + [anon_sym_print] = ACTIONS(3699), + [anon_sym_assert] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3699), + [anon_sym_del] = ACTIONS(3699), + [anon_sym_raise] = ACTIONS(3699), + [anon_sym_pass] = ACTIONS(3699), + [anon_sym_break] = ACTIONS(3699), + [anon_sym_continue] = ACTIONS(3699), + [anon_sym_if] = ACTIONS(3699), + [anon_sym_match] = ACTIONS(3699), + [anon_sym_async] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3699), + [anon_sym_while] = ACTIONS(3699), + [anon_sym_try] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3699), + [anon_sym_def] = ACTIONS(3699), + [anon_sym_global] = ACTIONS(3699), + [anon_sym_nonlocal] = ACTIONS(3699), + [anon_sym_exec] = ACTIONS(3699), + [anon_sym_type] = ACTIONS(3699), + [anon_sym_class] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_AT] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_not] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), + [anon_sym_None] = ACTIONS(3699), + [anon_sym_0x] = ACTIONS(3697), + [anon_sym_0X] = ACTIONS(3697), + [anon_sym_0o] = ACTIONS(3697), + [anon_sym_0O] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3697), + [anon_sym_0B] = ACTIONS(3697), + [aux_sym_integer_token4] = ACTIONS(3699), + [sym_float] = ACTIONS(3697), + [anon_sym_await] = ACTIONS(3699), + [anon_sym_api] = ACTIONS(3699), + [sym_true] = ACTIONS(3699), + [sym_false] = ACTIONS(3699), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3699), + [anon_sym_include] = ACTIONS(3699), + [anon_sym_DEF] = ACTIONS(3699), + [anon_sym_IF] = ACTIONS(3699), + [anon_sym_cdef] = ACTIONS(3699), + [anon_sym_cpdef] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3699), + [anon_sym_ctypedef] = ACTIONS(3699), + [anon_sym_public] = ACTIONS(3699), + [anon_sym_packed] = ACTIONS(3699), + [anon_sym_inline] = ACTIONS(3699), + [anon_sym_readonly] = ACTIONS(3699), + [anon_sym_sizeof] = ACTIONS(3699), + [sym_string_start] = ACTIONS(3697), + }, + [1488] = { + [ts_builtin_sym_end] = ACTIONS(3701), + [sym_identifier] = ACTIONS(3703), + [anon_sym_SEMI] = ACTIONS(3701), + [anon_sym_import] = ACTIONS(3703), + [anon_sym_cimport] = ACTIONS(3703), + [anon_sym_from] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3701), + [anon_sym_print] = ACTIONS(3703), + [anon_sym_assert] = ACTIONS(3703), + [anon_sym_return] = ACTIONS(3703), + [anon_sym_del] = ACTIONS(3703), + [anon_sym_raise] = ACTIONS(3703), + [anon_sym_pass] = ACTIONS(3703), + [anon_sym_break] = ACTIONS(3703), + [anon_sym_continue] = ACTIONS(3703), + [anon_sym_if] = ACTIONS(3703), + [anon_sym_match] = ACTIONS(3703), + [anon_sym_async] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3703), + [anon_sym_while] = ACTIONS(3703), + [anon_sym_try] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3703), + [anon_sym_def] = ACTIONS(3703), + [anon_sym_global] = ACTIONS(3703), + [anon_sym_nonlocal] = ACTIONS(3703), + [anon_sym_exec] = ACTIONS(3703), + [anon_sym_type] = ACTIONS(3703), + [anon_sym_class] = ACTIONS(3703), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_AT] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3701), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_lambda] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3701), + [anon_sym_None] = ACTIONS(3703), + [anon_sym_0x] = ACTIONS(3701), + [anon_sym_0X] = ACTIONS(3701), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0O] = ACTIONS(3701), + [anon_sym_0b] = ACTIONS(3701), + [anon_sym_0B] = ACTIONS(3701), + [aux_sym_integer_token4] = ACTIONS(3703), + [sym_float] = ACTIONS(3701), + [anon_sym_await] = ACTIONS(3703), + [anon_sym_api] = ACTIONS(3703), + [sym_true] = ACTIONS(3703), + [sym_false] = ACTIONS(3703), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3703), + [anon_sym_include] = ACTIONS(3703), + [anon_sym_DEF] = ACTIONS(3703), + [anon_sym_IF] = ACTIONS(3703), + [anon_sym_cdef] = ACTIONS(3703), + [anon_sym_cpdef] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3703), + [anon_sym_ctypedef] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(3703), + [anon_sym_packed] = ACTIONS(3703), + [anon_sym_inline] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3703), + [anon_sym_sizeof] = ACTIONS(3703), + [sym_string_start] = ACTIONS(3701), + }, + [1489] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4742), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1490] = { + [ts_builtin_sym_end] = ACTIONS(3705), + [sym_identifier] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3705), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_cimport] = ACTIONS(3707), + [anon_sym_from] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_STAR] = ACTIONS(3705), + [anon_sym_print] = ACTIONS(3707), + [anon_sym_assert] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_del] = ACTIONS(3707), + [anon_sym_raise] = ACTIONS(3707), + [anon_sym_pass] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_match] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_def] = ACTIONS(3707), + [anon_sym_global] = ACTIONS(3707), + [anon_sym_nonlocal] = ACTIONS(3707), + [anon_sym_exec] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_AT] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_not] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3705), + [anon_sym_LT] = ACTIONS(3705), + [anon_sym_lambda] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), + [anon_sym_None] = ACTIONS(3707), + [anon_sym_0x] = ACTIONS(3705), + [anon_sym_0X] = ACTIONS(3705), + [anon_sym_0o] = ACTIONS(3705), + [anon_sym_0O] = ACTIONS(3705), + [anon_sym_0b] = ACTIONS(3705), + [anon_sym_0B] = ACTIONS(3705), + [aux_sym_integer_token4] = ACTIONS(3707), + [sym_float] = ACTIONS(3705), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_api] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3707), + [anon_sym_include] = ACTIONS(3707), + [anon_sym_DEF] = ACTIONS(3707), + [anon_sym_IF] = ACTIONS(3707), + [anon_sym_cdef] = ACTIONS(3707), + [anon_sym_cpdef] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_ctypedef] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_packed] = ACTIONS(3707), + [anon_sym_inline] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(3707), + [sym_string_start] = ACTIONS(3705), + }, + [1491] = { + [ts_builtin_sym_end] = ACTIONS(3709), + [sym_identifier] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym_import] = ACTIONS(3711), + [anon_sym_cimport] = ACTIONS(3711), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_STAR] = ACTIONS(3709), + [anon_sym_print] = ACTIONS(3711), + [anon_sym_assert] = ACTIONS(3711), + [anon_sym_return] = ACTIONS(3711), + [anon_sym_del] = ACTIONS(3711), + [anon_sym_raise] = ACTIONS(3711), + [anon_sym_pass] = ACTIONS(3711), + [anon_sym_break] = ACTIONS(3711), + [anon_sym_continue] = ACTIONS(3711), + [anon_sym_if] = ACTIONS(3711), + [anon_sym_match] = ACTIONS(3711), + [anon_sym_async] = ACTIONS(3711), + [anon_sym_for] = ACTIONS(3711), + [anon_sym_while] = ACTIONS(3711), + [anon_sym_try] = ACTIONS(3711), + [anon_sym_with] = ACTIONS(3711), + [anon_sym_def] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_nonlocal] = ACTIONS(3711), + [anon_sym_exec] = ACTIONS(3711), + [anon_sym_type] = ACTIONS(3711), + [anon_sym_class] = ACTIONS(3711), + [anon_sym_LBRACK] = ACTIONS(3709), + [anon_sym_AT] = ACTIONS(3709), + [anon_sym_DASH] = ACTIONS(3709), + [anon_sym_LBRACE] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3709), + [anon_sym_not] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3709), + [anon_sym_TILDE] = ACTIONS(3709), + [anon_sym_LT] = ACTIONS(3709), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3709), + [anon_sym_None] = ACTIONS(3711), + [anon_sym_0x] = ACTIONS(3709), + [anon_sym_0X] = ACTIONS(3709), + [anon_sym_0o] = ACTIONS(3709), + [anon_sym_0O] = ACTIONS(3709), + [anon_sym_0b] = ACTIONS(3709), + [anon_sym_0B] = ACTIONS(3709), + [aux_sym_integer_token4] = ACTIONS(3711), + [sym_float] = ACTIONS(3709), + [anon_sym_await] = ACTIONS(3711), + [anon_sym_api] = ACTIONS(3711), + [sym_true] = ACTIONS(3711), + [sym_false] = ACTIONS(3711), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3711), + [anon_sym_include] = ACTIONS(3711), + [anon_sym_DEF] = ACTIONS(3711), + [anon_sym_IF] = ACTIONS(3711), + [anon_sym_cdef] = ACTIONS(3711), + [anon_sym_cpdef] = ACTIONS(3711), + [anon_sym_new] = ACTIONS(3711), + [anon_sym_ctypedef] = ACTIONS(3711), + [anon_sym_public] = ACTIONS(3711), + [anon_sym_packed] = ACTIONS(3711), + [anon_sym_inline] = ACTIONS(3711), + [anon_sym_readonly] = ACTIONS(3711), + [anon_sym_sizeof] = ACTIONS(3711), + [sym_string_start] = ACTIONS(3709), + }, + [1492] = { + [ts_builtin_sym_end] = ACTIONS(3713), + [sym_identifier] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3713), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_cimport] = ACTIONS(3715), + [anon_sym_from] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(3715), + [anon_sym_assert] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_del] = ACTIONS(3715), + [anon_sym_raise] = ACTIONS(3715), + [anon_sym_pass] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_match] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_def] = ACTIONS(3715), + [anon_sym_global] = ACTIONS(3715), + [anon_sym_nonlocal] = ACTIONS(3715), + [anon_sym_exec] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_AT] = ACTIONS(3713), + [anon_sym_DASH] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3713), + [anon_sym_PLUS] = ACTIONS(3713), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3713), + [anon_sym_TILDE] = ACTIONS(3713), + [anon_sym_LT] = ACTIONS(3713), + [anon_sym_lambda] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3713), + [anon_sym_None] = ACTIONS(3715), + [anon_sym_0x] = ACTIONS(3713), + [anon_sym_0X] = ACTIONS(3713), + [anon_sym_0o] = ACTIONS(3713), + [anon_sym_0O] = ACTIONS(3713), + [anon_sym_0b] = ACTIONS(3713), + [anon_sym_0B] = ACTIONS(3713), + [aux_sym_integer_token4] = ACTIONS(3715), + [sym_float] = ACTIONS(3713), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_api] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3715), + [anon_sym_include] = ACTIONS(3715), + [anon_sym_DEF] = ACTIONS(3715), + [anon_sym_IF] = ACTIONS(3715), + [anon_sym_cdef] = ACTIONS(3715), + [anon_sym_cpdef] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_ctypedef] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_packed] = ACTIONS(3715), + [anon_sym_inline] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_sizeof] = ACTIONS(3715), + [sym_string_start] = ACTIONS(3713), + }, + [1493] = { + [ts_builtin_sym_end] = ACTIONS(3717), + [sym_identifier] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3717), + [anon_sym_import] = ACTIONS(3719), + [anon_sym_cimport] = ACTIONS(3719), + [anon_sym_from] = ACTIONS(3719), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_print] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_del] = ACTIONS(3719), + [anon_sym_raise] = ACTIONS(3719), + [anon_sym_pass] = ACTIONS(3719), + [anon_sym_break] = ACTIONS(3719), + [anon_sym_continue] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_async] = ACTIONS(3719), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_with] = ACTIONS(3719), + [anon_sym_def] = ACTIONS(3719), + [anon_sym_global] = ACTIONS(3719), + [anon_sym_nonlocal] = ACTIONS(3719), + [anon_sym_exec] = ACTIONS(3719), + [anon_sym_type] = ACTIONS(3719), + [anon_sym_class] = ACTIONS(3719), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_AT] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_not] = ACTIONS(3719), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3717), + [anon_sym_None] = ACTIONS(3719), + [anon_sym_0x] = ACTIONS(3717), + [anon_sym_0X] = ACTIONS(3717), + [anon_sym_0o] = ACTIONS(3717), + [anon_sym_0O] = ACTIONS(3717), + [anon_sym_0b] = ACTIONS(3717), + [anon_sym_0B] = ACTIONS(3717), + [aux_sym_integer_token4] = ACTIONS(3719), + [sym_float] = ACTIONS(3717), + [anon_sym_await] = ACTIONS(3719), + [anon_sym_api] = ACTIONS(3719), + [sym_true] = ACTIONS(3719), + [sym_false] = ACTIONS(3719), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3719), + [anon_sym_include] = ACTIONS(3719), + [anon_sym_DEF] = ACTIONS(3719), + [anon_sym_IF] = ACTIONS(3719), + [anon_sym_cdef] = ACTIONS(3719), + [anon_sym_cpdef] = ACTIONS(3719), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_ctypedef] = ACTIONS(3719), + [anon_sym_public] = ACTIONS(3719), + [anon_sym_packed] = ACTIONS(3719), + [anon_sym_inline] = ACTIONS(3719), + [anon_sym_readonly] = ACTIONS(3719), + [anon_sym_sizeof] = ACTIONS(3719), + [sym_string_start] = ACTIONS(3717), + }, + [1494] = { + [ts_builtin_sym_end] = ACTIONS(3721), + [sym_identifier] = ACTIONS(3723), + [anon_sym_SEMI] = ACTIONS(3721), + [anon_sym_import] = ACTIONS(3723), + [anon_sym_cimport] = ACTIONS(3723), + [anon_sym_from] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_STAR] = ACTIONS(3721), + [anon_sym_print] = ACTIONS(3723), + [anon_sym_assert] = ACTIONS(3723), + [anon_sym_return] = ACTIONS(3723), + [anon_sym_del] = ACTIONS(3723), + [anon_sym_raise] = ACTIONS(3723), + [anon_sym_pass] = ACTIONS(3723), + [anon_sym_break] = ACTIONS(3723), + [anon_sym_continue] = ACTIONS(3723), + [anon_sym_if] = ACTIONS(3723), + [anon_sym_match] = ACTIONS(3723), + [anon_sym_async] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3723), + [anon_sym_while] = ACTIONS(3723), + [anon_sym_try] = ACTIONS(3723), + [anon_sym_with] = ACTIONS(3723), + [anon_sym_def] = ACTIONS(3723), + [anon_sym_global] = ACTIONS(3723), + [anon_sym_nonlocal] = ACTIONS(3723), + [anon_sym_exec] = ACTIONS(3723), + [anon_sym_type] = ACTIONS(3723), + [anon_sym_class] = ACTIONS(3723), + [anon_sym_LBRACK] = ACTIONS(3721), + [anon_sym_AT] = ACTIONS(3721), + [anon_sym_DASH] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3721), + [anon_sym_PLUS] = ACTIONS(3721), + [anon_sym_not] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3721), + [anon_sym_TILDE] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_lambda] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3721), + [anon_sym_None] = ACTIONS(3723), + [anon_sym_0x] = ACTIONS(3721), + [anon_sym_0X] = ACTIONS(3721), + [anon_sym_0o] = ACTIONS(3721), + [anon_sym_0O] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(3721), + [anon_sym_0B] = ACTIONS(3721), + [aux_sym_integer_token4] = ACTIONS(3723), + [sym_float] = ACTIONS(3721), + [anon_sym_await] = ACTIONS(3723), + [anon_sym_api] = ACTIONS(3723), + [sym_true] = ACTIONS(3723), + [sym_false] = ACTIONS(3723), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3723), + [anon_sym_include] = ACTIONS(3723), + [anon_sym_DEF] = ACTIONS(3723), + [anon_sym_IF] = ACTIONS(3723), + [anon_sym_cdef] = ACTIONS(3723), + [anon_sym_cpdef] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3723), + [anon_sym_ctypedef] = ACTIONS(3723), + [anon_sym_public] = ACTIONS(3723), + [anon_sym_packed] = ACTIONS(3723), + [anon_sym_inline] = ACTIONS(3723), + [anon_sym_readonly] = ACTIONS(3723), + [anon_sym_sizeof] = ACTIONS(3723), + [sym_string_start] = ACTIONS(3721), + }, + [1495] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5264), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1496] = { + [ts_builtin_sym_end] = ACTIONS(3725), + [sym_identifier] = ACTIONS(3727), + [anon_sym_SEMI] = ACTIONS(3725), + [anon_sym_import] = ACTIONS(3727), + [anon_sym_cimport] = ACTIONS(3727), + [anon_sym_from] = ACTIONS(3727), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_STAR] = ACTIONS(3725), + [anon_sym_print] = ACTIONS(3727), + [anon_sym_assert] = ACTIONS(3727), + [anon_sym_return] = ACTIONS(3727), + [anon_sym_del] = ACTIONS(3727), + [anon_sym_raise] = ACTIONS(3727), + [anon_sym_pass] = ACTIONS(3727), + [anon_sym_break] = ACTIONS(3727), + [anon_sym_continue] = ACTIONS(3727), + [anon_sym_if] = ACTIONS(3727), + [anon_sym_match] = ACTIONS(3727), + [anon_sym_async] = ACTIONS(3727), + [anon_sym_for] = ACTIONS(3727), + [anon_sym_while] = ACTIONS(3727), + [anon_sym_try] = ACTIONS(3727), + [anon_sym_with] = ACTIONS(3727), + [anon_sym_def] = ACTIONS(3727), + [anon_sym_global] = ACTIONS(3727), + [anon_sym_nonlocal] = ACTIONS(3727), + [anon_sym_exec] = ACTIONS(3727), + [anon_sym_type] = ACTIONS(3727), + [anon_sym_class] = ACTIONS(3727), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_AT] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_not] = ACTIONS(3727), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3725), + [anon_sym_LT] = ACTIONS(3725), + [anon_sym_lambda] = ACTIONS(3727), + [anon_sym_yield] = ACTIONS(3727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3725), + [anon_sym_None] = ACTIONS(3727), + [anon_sym_0x] = ACTIONS(3725), + [anon_sym_0X] = ACTIONS(3725), + [anon_sym_0o] = ACTIONS(3725), + [anon_sym_0O] = ACTIONS(3725), + [anon_sym_0b] = ACTIONS(3725), + [anon_sym_0B] = ACTIONS(3725), + [aux_sym_integer_token4] = ACTIONS(3727), + [sym_float] = ACTIONS(3725), + [anon_sym_await] = ACTIONS(3727), + [anon_sym_api] = ACTIONS(3727), + [sym_true] = ACTIONS(3727), + [sym_false] = ACTIONS(3727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3727), + [anon_sym_include] = ACTIONS(3727), + [anon_sym_DEF] = ACTIONS(3727), + [anon_sym_IF] = ACTIONS(3727), + [anon_sym_cdef] = ACTIONS(3727), + [anon_sym_cpdef] = ACTIONS(3727), + [anon_sym_new] = ACTIONS(3727), + [anon_sym_ctypedef] = ACTIONS(3727), + [anon_sym_public] = ACTIONS(3727), + [anon_sym_packed] = ACTIONS(3727), + [anon_sym_inline] = ACTIONS(3727), + [anon_sym_readonly] = ACTIONS(3727), + [anon_sym_sizeof] = ACTIONS(3727), + [sym_string_start] = ACTIONS(3725), + }, + [1497] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5354), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1498] = { + [ts_builtin_sym_end] = ACTIONS(3729), + [sym_identifier] = ACTIONS(3731), + [anon_sym_SEMI] = ACTIONS(3729), + [anon_sym_import] = ACTIONS(3731), + [anon_sym_cimport] = ACTIONS(3731), + [anon_sym_from] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3729), + [anon_sym_print] = ACTIONS(3731), + [anon_sym_assert] = ACTIONS(3731), + [anon_sym_return] = ACTIONS(3731), + [anon_sym_del] = ACTIONS(3731), + [anon_sym_raise] = ACTIONS(3731), + [anon_sym_pass] = ACTIONS(3731), + [anon_sym_break] = ACTIONS(3731), + [anon_sym_continue] = ACTIONS(3731), + [anon_sym_if] = ACTIONS(3731), + [anon_sym_match] = ACTIONS(3731), + [anon_sym_async] = ACTIONS(3731), + [anon_sym_for] = ACTIONS(3731), + [anon_sym_while] = ACTIONS(3731), + [anon_sym_try] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), + [anon_sym_def] = ACTIONS(3731), + [anon_sym_global] = ACTIONS(3731), + [anon_sym_nonlocal] = ACTIONS(3731), + [anon_sym_exec] = ACTIONS(3731), + [anon_sym_type] = ACTIONS(3731), + [anon_sym_class] = ACTIONS(3731), + [anon_sym_LBRACK] = ACTIONS(3729), + [anon_sym_AT] = ACTIONS(3729), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_LBRACE] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_not] = ACTIONS(3731), + [anon_sym_AMP] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_lambda] = ACTIONS(3731), + [anon_sym_yield] = ACTIONS(3731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3729), + [anon_sym_None] = ACTIONS(3731), + [anon_sym_0x] = ACTIONS(3729), + [anon_sym_0X] = ACTIONS(3729), + [anon_sym_0o] = ACTIONS(3729), + [anon_sym_0O] = ACTIONS(3729), + [anon_sym_0b] = ACTIONS(3729), + [anon_sym_0B] = ACTIONS(3729), + [aux_sym_integer_token4] = ACTIONS(3731), + [sym_float] = ACTIONS(3729), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(3731), + [sym_true] = ACTIONS(3731), + [sym_false] = ACTIONS(3731), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3731), + [anon_sym_include] = ACTIONS(3731), + [anon_sym_DEF] = ACTIONS(3731), + [anon_sym_IF] = ACTIONS(3731), + [anon_sym_cdef] = ACTIONS(3731), + [anon_sym_cpdef] = ACTIONS(3731), + [anon_sym_new] = ACTIONS(3731), + [anon_sym_ctypedef] = ACTIONS(3731), + [anon_sym_public] = ACTIONS(3731), + [anon_sym_packed] = ACTIONS(3731), + [anon_sym_inline] = ACTIONS(3731), + [anon_sym_readonly] = ACTIONS(3731), + [anon_sym_sizeof] = ACTIONS(3731), + [sym_string_start] = ACTIONS(3729), + }, + [1499] = { + [ts_builtin_sym_end] = ACTIONS(3733), + [sym_identifier] = ACTIONS(3735), + [anon_sym_SEMI] = ACTIONS(3733), + [anon_sym_import] = ACTIONS(3735), + [anon_sym_cimport] = ACTIONS(3735), + [anon_sym_from] = ACTIONS(3735), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_STAR] = ACTIONS(3733), + [anon_sym_print] = ACTIONS(3735), + [anon_sym_assert] = ACTIONS(3735), + [anon_sym_return] = ACTIONS(3735), + [anon_sym_del] = ACTIONS(3735), + [anon_sym_raise] = ACTIONS(3735), + [anon_sym_pass] = ACTIONS(3735), + [anon_sym_break] = ACTIONS(3735), + [anon_sym_continue] = ACTIONS(3735), + [anon_sym_if] = ACTIONS(3735), + [anon_sym_match] = ACTIONS(3735), + [anon_sym_async] = ACTIONS(3735), + [anon_sym_for] = ACTIONS(3735), + [anon_sym_while] = ACTIONS(3735), + [anon_sym_try] = ACTIONS(3735), + [anon_sym_with] = ACTIONS(3735), + [anon_sym_def] = ACTIONS(3735), + [anon_sym_global] = ACTIONS(3735), + [anon_sym_nonlocal] = ACTIONS(3735), + [anon_sym_exec] = ACTIONS(3735), + [anon_sym_type] = ACTIONS(3735), + [anon_sym_class] = ACTIONS(3735), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_AT] = ACTIONS(3733), + [anon_sym_DASH] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3733), + [anon_sym_PLUS] = ACTIONS(3733), + [anon_sym_not] = ACTIONS(3735), + [anon_sym_AMP] = ACTIONS(3733), + [anon_sym_TILDE] = ACTIONS(3733), + [anon_sym_LT] = ACTIONS(3733), + [anon_sym_lambda] = ACTIONS(3735), + [anon_sym_yield] = ACTIONS(3735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3733), + [anon_sym_None] = ACTIONS(3735), + [anon_sym_0x] = ACTIONS(3733), + [anon_sym_0X] = ACTIONS(3733), + [anon_sym_0o] = ACTIONS(3733), + [anon_sym_0O] = ACTIONS(3733), + [anon_sym_0b] = ACTIONS(3733), + [anon_sym_0B] = ACTIONS(3733), + [aux_sym_integer_token4] = ACTIONS(3735), + [sym_float] = ACTIONS(3733), + [anon_sym_await] = ACTIONS(3735), + [anon_sym_api] = ACTIONS(3735), + [sym_true] = ACTIONS(3735), + [sym_false] = ACTIONS(3735), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3735), + [anon_sym_include] = ACTIONS(3735), + [anon_sym_DEF] = ACTIONS(3735), + [anon_sym_IF] = ACTIONS(3735), + [anon_sym_cdef] = ACTIONS(3735), + [anon_sym_cpdef] = ACTIONS(3735), + [anon_sym_new] = ACTIONS(3735), + [anon_sym_ctypedef] = ACTIONS(3735), + [anon_sym_public] = ACTIONS(3735), + [anon_sym_packed] = ACTIONS(3735), + [anon_sym_inline] = ACTIONS(3735), + [anon_sym_readonly] = ACTIONS(3735), + [anon_sym_sizeof] = ACTIONS(3735), + [sym_string_start] = ACTIONS(3733), + }, + [1500] = { + [ts_builtin_sym_end] = ACTIONS(3737), + [sym_identifier] = ACTIONS(3739), + [anon_sym_SEMI] = ACTIONS(3737), + [anon_sym_import] = ACTIONS(3739), + [anon_sym_cimport] = ACTIONS(3739), + [anon_sym_from] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3737), + [anon_sym_STAR] = ACTIONS(3737), + [anon_sym_print] = ACTIONS(3739), + [anon_sym_assert] = ACTIONS(3739), + [anon_sym_return] = ACTIONS(3739), + [anon_sym_del] = ACTIONS(3739), + [anon_sym_raise] = ACTIONS(3739), + [anon_sym_pass] = ACTIONS(3739), + [anon_sym_break] = ACTIONS(3739), + [anon_sym_continue] = ACTIONS(3739), + [anon_sym_if] = ACTIONS(3739), + [anon_sym_match] = ACTIONS(3739), + [anon_sym_async] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3739), + [anon_sym_while] = ACTIONS(3739), + [anon_sym_try] = ACTIONS(3739), + [anon_sym_with] = ACTIONS(3739), + [anon_sym_def] = ACTIONS(3739), + [anon_sym_global] = ACTIONS(3739), + [anon_sym_nonlocal] = ACTIONS(3739), + [anon_sym_exec] = ACTIONS(3739), + [anon_sym_type] = ACTIONS(3739), + [anon_sym_class] = ACTIONS(3739), + [anon_sym_LBRACK] = ACTIONS(3737), + [anon_sym_AT] = ACTIONS(3737), + [anon_sym_DASH] = ACTIONS(3737), + [anon_sym_LBRACE] = ACTIONS(3737), + [anon_sym_PLUS] = ACTIONS(3737), + [anon_sym_not] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3737), + [anon_sym_LT] = ACTIONS(3737), + [anon_sym_lambda] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3737), + [anon_sym_None] = ACTIONS(3739), + [anon_sym_0x] = ACTIONS(3737), + [anon_sym_0X] = ACTIONS(3737), + [anon_sym_0o] = ACTIONS(3737), + [anon_sym_0O] = ACTIONS(3737), + [anon_sym_0b] = ACTIONS(3737), + [anon_sym_0B] = ACTIONS(3737), + [aux_sym_integer_token4] = ACTIONS(3739), + [sym_float] = ACTIONS(3737), + [anon_sym_await] = ACTIONS(3739), + [anon_sym_api] = ACTIONS(3739), + [sym_true] = ACTIONS(3739), + [sym_false] = ACTIONS(3739), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3739), + [anon_sym_include] = ACTIONS(3739), + [anon_sym_DEF] = ACTIONS(3739), + [anon_sym_IF] = ACTIONS(3739), + [anon_sym_cdef] = ACTIONS(3739), + [anon_sym_cpdef] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3739), + [anon_sym_ctypedef] = ACTIONS(3739), + [anon_sym_public] = ACTIONS(3739), + [anon_sym_packed] = ACTIONS(3739), + [anon_sym_inline] = ACTIONS(3739), + [anon_sym_readonly] = ACTIONS(3739), + [anon_sym_sizeof] = ACTIONS(3739), + [sym_string_start] = ACTIONS(3737), + }, + [1501] = { + [ts_builtin_sym_end] = ACTIONS(3741), + [sym_identifier] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3741), + [anon_sym_import] = ACTIONS(3743), + [anon_sym_cimport] = ACTIONS(3743), + [anon_sym_from] = ACTIONS(3743), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_STAR] = ACTIONS(3741), + [anon_sym_print] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_del] = ACTIONS(3743), + [anon_sym_raise] = ACTIONS(3743), + [anon_sym_pass] = ACTIONS(3743), + [anon_sym_break] = ACTIONS(3743), + [anon_sym_continue] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_async] = ACTIONS(3743), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_with] = ACTIONS(3743), + [anon_sym_def] = ACTIONS(3743), + [anon_sym_global] = ACTIONS(3743), + [anon_sym_nonlocal] = ACTIONS(3743), + [anon_sym_exec] = ACTIONS(3743), + [anon_sym_type] = ACTIONS(3743), + [anon_sym_class] = ACTIONS(3743), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_AT] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_not] = ACTIONS(3743), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3741), + [anon_sym_LT] = ACTIONS(3741), + [anon_sym_lambda] = ACTIONS(3743), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [anon_sym_None] = ACTIONS(3743), + [anon_sym_0x] = ACTIONS(3741), + [anon_sym_0X] = ACTIONS(3741), + [anon_sym_0o] = ACTIONS(3741), + [anon_sym_0O] = ACTIONS(3741), + [anon_sym_0b] = ACTIONS(3741), + [anon_sym_0B] = ACTIONS(3741), + [aux_sym_integer_token4] = ACTIONS(3743), + [sym_float] = ACTIONS(3741), + [anon_sym_await] = ACTIONS(3743), + [anon_sym_api] = ACTIONS(3743), + [sym_true] = ACTIONS(3743), + [sym_false] = ACTIONS(3743), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3743), + [anon_sym_include] = ACTIONS(3743), + [anon_sym_DEF] = ACTIONS(3743), + [anon_sym_IF] = ACTIONS(3743), + [anon_sym_cdef] = ACTIONS(3743), + [anon_sym_cpdef] = ACTIONS(3743), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_ctypedef] = ACTIONS(3743), + [anon_sym_public] = ACTIONS(3743), + [anon_sym_packed] = ACTIONS(3743), + [anon_sym_inline] = ACTIONS(3743), + [anon_sym_readonly] = ACTIONS(3743), + [anon_sym_sizeof] = ACTIONS(3743), + [sym_string_start] = ACTIONS(3741), + }, + [1502] = { + [ts_builtin_sym_end] = ACTIONS(3745), + [sym_identifier] = ACTIONS(3747), + [anon_sym_SEMI] = ACTIONS(3745), + [anon_sym_import] = ACTIONS(3747), + [anon_sym_cimport] = ACTIONS(3747), + [anon_sym_from] = ACTIONS(3747), + [anon_sym_LPAREN] = ACTIONS(3745), + [anon_sym_STAR] = ACTIONS(3745), + [anon_sym_print] = ACTIONS(3747), + [anon_sym_assert] = ACTIONS(3747), + [anon_sym_return] = ACTIONS(3747), + [anon_sym_del] = ACTIONS(3747), + [anon_sym_raise] = ACTIONS(3747), + [anon_sym_pass] = ACTIONS(3747), + [anon_sym_break] = ACTIONS(3747), + [anon_sym_continue] = ACTIONS(3747), + [anon_sym_if] = ACTIONS(3747), + [anon_sym_match] = ACTIONS(3747), + [anon_sym_async] = ACTIONS(3747), + [anon_sym_for] = ACTIONS(3747), + [anon_sym_while] = ACTIONS(3747), + [anon_sym_try] = ACTIONS(3747), + [anon_sym_with] = ACTIONS(3747), + [anon_sym_def] = ACTIONS(3747), + [anon_sym_global] = ACTIONS(3747), + [anon_sym_nonlocal] = ACTIONS(3747), + [anon_sym_exec] = ACTIONS(3747), + [anon_sym_type] = ACTIONS(3747), + [anon_sym_class] = ACTIONS(3747), + [anon_sym_LBRACK] = ACTIONS(3745), + [anon_sym_AT] = ACTIONS(3745), + [anon_sym_DASH] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_PLUS] = ACTIONS(3745), + [anon_sym_not] = ACTIONS(3747), + [anon_sym_AMP] = ACTIONS(3745), + [anon_sym_TILDE] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_lambda] = ACTIONS(3747), + [anon_sym_yield] = ACTIONS(3747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3745), + [anon_sym_None] = ACTIONS(3747), + [anon_sym_0x] = ACTIONS(3745), + [anon_sym_0X] = ACTIONS(3745), + [anon_sym_0o] = ACTIONS(3745), + [anon_sym_0O] = ACTIONS(3745), + [anon_sym_0b] = ACTIONS(3745), + [anon_sym_0B] = ACTIONS(3745), + [aux_sym_integer_token4] = ACTIONS(3747), + [sym_float] = ACTIONS(3745), + [anon_sym_await] = ACTIONS(3747), + [anon_sym_api] = ACTIONS(3747), + [sym_true] = ACTIONS(3747), + [sym_false] = ACTIONS(3747), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3747), + [anon_sym_include] = ACTIONS(3747), + [anon_sym_DEF] = ACTIONS(3747), + [anon_sym_IF] = ACTIONS(3747), + [anon_sym_cdef] = ACTIONS(3747), + [anon_sym_cpdef] = ACTIONS(3747), + [anon_sym_new] = ACTIONS(3747), + [anon_sym_ctypedef] = ACTIONS(3747), + [anon_sym_public] = ACTIONS(3747), + [anon_sym_packed] = ACTIONS(3747), + [anon_sym_inline] = ACTIONS(3747), + [anon_sym_readonly] = ACTIONS(3747), + [anon_sym_sizeof] = ACTIONS(3747), + [sym_string_start] = ACTIONS(3745), + }, + [1503] = { + [ts_builtin_sym_end] = ACTIONS(3749), + [sym_identifier] = ACTIONS(3751), + [anon_sym_SEMI] = ACTIONS(3749), + [anon_sym_import] = ACTIONS(3751), + [anon_sym_cimport] = ACTIONS(3751), + [anon_sym_from] = ACTIONS(3751), + [anon_sym_LPAREN] = ACTIONS(3749), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_print] = ACTIONS(3751), + [anon_sym_assert] = ACTIONS(3751), + [anon_sym_return] = ACTIONS(3751), + [anon_sym_del] = ACTIONS(3751), + [anon_sym_raise] = ACTIONS(3751), + [anon_sym_pass] = ACTIONS(3751), + [anon_sym_break] = ACTIONS(3751), + [anon_sym_continue] = ACTIONS(3751), + [anon_sym_if] = ACTIONS(3751), + [anon_sym_match] = ACTIONS(3751), + [anon_sym_async] = ACTIONS(3751), + [anon_sym_for] = ACTIONS(3751), + [anon_sym_while] = ACTIONS(3751), + [anon_sym_try] = ACTIONS(3751), + [anon_sym_with] = ACTIONS(3751), + [anon_sym_def] = ACTIONS(3751), + [anon_sym_global] = ACTIONS(3751), + [anon_sym_nonlocal] = ACTIONS(3751), + [anon_sym_exec] = ACTIONS(3751), + [anon_sym_type] = ACTIONS(3751), + [anon_sym_class] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3749), + [anon_sym_AT] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3749), + [anon_sym_PLUS] = ACTIONS(3749), + [anon_sym_not] = ACTIONS(3751), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym_TILDE] = ACTIONS(3749), + [anon_sym_LT] = ACTIONS(3749), + [anon_sym_lambda] = ACTIONS(3751), + [anon_sym_yield] = ACTIONS(3751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3749), + [anon_sym_None] = ACTIONS(3751), + [anon_sym_0x] = ACTIONS(3749), + [anon_sym_0X] = ACTIONS(3749), + [anon_sym_0o] = ACTIONS(3749), + [anon_sym_0O] = ACTIONS(3749), + [anon_sym_0b] = ACTIONS(3749), + [anon_sym_0B] = ACTIONS(3749), + [aux_sym_integer_token4] = ACTIONS(3751), + [sym_float] = ACTIONS(3749), + [anon_sym_await] = ACTIONS(3751), + [anon_sym_api] = ACTIONS(3751), + [sym_true] = ACTIONS(3751), + [sym_false] = ACTIONS(3751), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3751), + [anon_sym_include] = ACTIONS(3751), + [anon_sym_DEF] = ACTIONS(3751), + [anon_sym_IF] = ACTIONS(3751), + [anon_sym_cdef] = ACTIONS(3751), + [anon_sym_cpdef] = ACTIONS(3751), + [anon_sym_new] = ACTIONS(3751), + [anon_sym_ctypedef] = ACTIONS(3751), + [anon_sym_public] = ACTIONS(3751), + [anon_sym_packed] = ACTIONS(3751), + [anon_sym_inline] = ACTIONS(3751), + [anon_sym_readonly] = ACTIONS(3751), + [anon_sym_sizeof] = ACTIONS(3751), + [sym_string_start] = ACTIONS(3749), + }, + [1504] = { + [ts_builtin_sym_end] = ACTIONS(3753), + [sym_identifier] = ACTIONS(3755), + [anon_sym_SEMI] = ACTIONS(3753), + [anon_sym_import] = ACTIONS(3755), + [anon_sym_cimport] = ACTIONS(3755), + [anon_sym_from] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3753), + [anon_sym_STAR] = ACTIONS(3753), + [anon_sym_print] = ACTIONS(3755), + [anon_sym_assert] = ACTIONS(3755), + [anon_sym_return] = ACTIONS(3755), + [anon_sym_del] = ACTIONS(3755), + [anon_sym_raise] = ACTIONS(3755), + [anon_sym_pass] = ACTIONS(3755), + [anon_sym_break] = ACTIONS(3755), + [anon_sym_continue] = ACTIONS(3755), + [anon_sym_if] = ACTIONS(3755), + [anon_sym_match] = ACTIONS(3755), + [anon_sym_async] = ACTIONS(3755), + [anon_sym_for] = ACTIONS(3755), + [anon_sym_while] = ACTIONS(3755), + [anon_sym_try] = ACTIONS(3755), + [anon_sym_with] = ACTIONS(3755), + [anon_sym_def] = ACTIONS(3755), + [anon_sym_global] = ACTIONS(3755), + [anon_sym_nonlocal] = ACTIONS(3755), + [anon_sym_exec] = ACTIONS(3755), + [anon_sym_type] = ACTIONS(3755), + [anon_sym_class] = ACTIONS(3755), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_AT] = ACTIONS(3753), + [anon_sym_DASH] = ACTIONS(3753), + [anon_sym_LBRACE] = ACTIONS(3753), + [anon_sym_PLUS] = ACTIONS(3753), + [anon_sym_not] = ACTIONS(3755), + [anon_sym_AMP] = ACTIONS(3753), + [anon_sym_TILDE] = ACTIONS(3753), + [anon_sym_LT] = ACTIONS(3753), + [anon_sym_lambda] = ACTIONS(3755), + [anon_sym_yield] = ACTIONS(3755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3753), + [anon_sym_None] = ACTIONS(3755), + [anon_sym_0x] = ACTIONS(3753), + [anon_sym_0X] = ACTIONS(3753), + [anon_sym_0o] = ACTIONS(3753), + [anon_sym_0O] = ACTIONS(3753), + [anon_sym_0b] = ACTIONS(3753), + [anon_sym_0B] = ACTIONS(3753), + [aux_sym_integer_token4] = ACTIONS(3755), + [sym_float] = ACTIONS(3753), + [anon_sym_await] = ACTIONS(3755), + [anon_sym_api] = ACTIONS(3755), + [sym_true] = ACTIONS(3755), + [sym_false] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3755), + [anon_sym_include] = ACTIONS(3755), + [anon_sym_DEF] = ACTIONS(3755), + [anon_sym_IF] = ACTIONS(3755), + [anon_sym_cdef] = ACTIONS(3755), + [anon_sym_cpdef] = ACTIONS(3755), + [anon_sym_new] = ACTIONS(3755), + [anon_sym_ctypedef] = ACTIONS(3755), + [anon_sym_public] = ACTIONS(3755), + [anon_sym_packed] = ACTIONS(3755), + [anon_sym_inline] = ACTIONS(3755), + [anon_sym_readonly] = ACTIONS(3755), + [anon_sym_sizeof] = ACTIONS(3755), + [sym_string_start] = ACTIONS(3753), + }, + [1505] = { + [ts_builtin_sym_end] = ACTIONS(3757), + [sym_identifier] = ACTIONS(3759), + [anon_sym_SEMI] = ACTIONS(3757), + [anon_sym_import] = ACTIONS(3759), + [anon_sym_cimport] = ACTIONS(3759), + [anon_sym_from] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(3757), + [anon_sym_print] = ACTIONS(3759), + [anon_sym_assert] = ACTIONS(3759), + [anon_sym_return] = ACTIONS(3759), + [anon_sym_del] = ACTIONS(3759), + [anon_sym_raise] = ACTIONS(3759), + [anon_sym_pass] = ACTIONS(3759), + [anon_sym_break] = ACTIONS(3759), + [anon_sym_continue] = ACTIONS(3759), + [anon_sym_if] = ACTIONS(3759), + [anon_sym_match] = ACTIONS(3759), + [anon_sym_async] = ACTIONS(3759), + [anon_sym_for] = ACTIONS(3759), + [anon_sym_while] = ACTIONS(3759), + [anon_sym_try] = ACTIONS(3759), + [anon_sym_with] = ACTIONS(3759), + [anon_sym_def] = ACTIONS(3759), + [anon_sym_global] = ACTIONS(3759), + [anon_sym_nonlocal] = ACTIONS(3759), + [anon_sym_exec] = ACTIONS(3759), + [anon_sym_type] = ACTIONS(3759), + [anon_sym_class] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(3757), + [anon_sym_AT] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_PLUS] = ACTIONS(3757), + [anon_sym_not] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3757), + [anon_sym_TILDE] = ACTIONS(3757), + [anon_sym_LT] = ACTIONS(3757), + [anon_sym_lambda] = ACTIONS(3759), + [anon_sym_yield] = ACTIONS(3759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3757), + [anon_sym_None] = ACTIONS(3759), + [anon_sym_0x] = ACTIONS(3757), + [anon_sym_0X] = ACTIONS(3757), + [anon_sym_0o] = ACTIONS(3757), + [anon_sym_0O] = ACTIONS(3757), + [anon_sym_0b] = ACTIONS(3757), + [anon_sym_0B] = ACTIONS(3757), + [aux_sym_integer_token4] = ACTIONS(3759), + [sym_float] = ACTIONS(3757), + [anon_sym_await] = ACTIONS(3759), + [anon_sym_api] = ACTIONS(3759), + [sym_true] = ACTIONS(3759), + [sym_false] = ACTIONS(3759), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3759), + [anon_sym_include] = ACTIONS(3759), + [anon_sym_DEF] = ACTIONS(3759), + [anon_sym_IF] = ACTIONS(3759), + [anon_sym_cdef] = ACTIONS(3759), + [anon_sym_cpdef] = ACTIONS(3759), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_ctypedef] = ACTIONS(3759), + [anon_sym_public] = ACTIONS(3759), + [anon_sym_packed] = ACTIONS(3759), + [anon_sym_inline] = ACTIONS(3759), + [anon_sym_readonly] = ACTIONS(3759), + [anon_sym_sizeof] = ACTIONS(3759), + [sym_string_start] = ACTIONS(3757), + }, + [1506] = { + [ts_builtin_sym_end] = ACTIONS(3761), + [sym_identifier] = ACTIONS(3763), + [anon_sym_SEMI] = ACTIONS(3761), + [anon_sym_import] = ACTIONS(3763), + [anon_sym_cimport] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_LPAREN] = ACTIONS(3761), + [anon_sym_STAR] = ACTIONS(3761), + [anon_sym_print] = ACTIONS(3763), + [anon_sym_assert] = ACTIONS(3763), + [anon_sym_return] = ACTIONS(3763), + [anon_sym_del] = ACTIONS(3763), + [anon_sym_raise] = ACTIONS(3763), + [anon_sym_pass] = ACTIONS(3763), + [anon_sym_break] = ACTIONS(3763), + [anon_sym_continue] = ACTIONS(3763), + [anon_sym_if] = ACTIONS(3763), + [anon_sym_match] = ACTIONS(3763), + [anon_sym_async] = ACTIONS(3763), + [anon_sym_for] = ACTIONS(3763), + [anon_sym_while] = ACTIONS(3763), + [anon_sym_try] = ACTIONS(3763), + [anon_sym_with] = ACTIONS(3763), + [anon_sym_def] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_nonlocal] = ACTIONS(3763), + [anon_sym_exec] = ACTIONS(3763), + [anon_sym_type] = ACTIONS(3763), + [anon_sym_class] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(3761), + [anon_sym_AT] = ACTIONS(3761), + [anon_sym_DASH] = ACTIONS(3761), + [anon_sym_LBRACE] = ACTIONS(3761), + [anon_sym_PLUS] = ACTIONS(3761), + [anon_sym_not] = ACTIONS(3763), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_TILDE] = ACTIONS(3761), + [anon_sym_LT] = ACTIONS(3761), + [anon_sym_lambda] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3761), + [anon_sym_None] = ACTIONS(3763), + [anon_sym_0x] = ACTIONS(3761), + [anon_sym_0X] = ACTIONS(3761), + [anon_sym_0o] = ACTIONS(3761), + [anon_sym_0O] = ACTIONS(3761), + [anon_sym_0b] = ACTIONS(3761), + [anon_sym_0B] = ACTIONS(3761), + [aux_sym_integer_token4] = ACTIONS(3763), + [sym_float] = ACTIONS(3761), + [anon_sym_await] = ACTIONS(3763), + [anon_sym_api] = ACTIONS(3763), + [sym_true] = ACTIONS(3763), + [sym_false] = ACTIONS(3763), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3763), + [anon_sym_include] = ACTIONS(3763), + [anon_sym_DEF] = ACTIONS(3763), + [anon_sym_IF] = ACTIONS(3763), + [anon_sym_cdef] = ACTIONS(3763), + [anon_sym_cpdef] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3763), + [anon_sym_ctypedef] = ACTIONS(3763), + [anon_sym_public] = ACTIONS(3763), + [anon_sym_packed] = ACTIONS(3763), + [anon_sym_inline] = ACTIONS(3763), + [anon_sym_readonly] = ACTIONS(3763), + [anon_sym_sizeof] = ACTIONS(3763), + [sym_string_start] = ACTIONS(3761), + }, + [1507] = { + [ts_builtin_sym_end] = ACTIONS(3765), + [sym_identifier] = ACTIONS(3767), + [anon_sym_SEMI] = ACTIONS(3765), + [anon_sym_import] = ACTIONS(3767), + [anon_sym_cimport] = ACTIONS(3767), + [anon_sym_from] = ACTIONS(3767), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_STAR] = ACTIONS(3765), + [anon_sym_print] = ACTIONS(3767), + [anon_sym_assert] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3767), + [anon_sym_del] = ACTIONS(3767), + [anon_sym_raise] = ACTIONS(3767), + [anon_sym_pass] = ACTIONS(3767), + [anon_sym_break] = ACTIONS(3767), + [anon_sym_continue] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(3767), + [anon_sym_match] = ACTIONS(3767), + [anon_sym_async] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3767), + [anon_sym_while] = ACTIONS(3767), + [anon_sym_try] = ACTIONS(3767), + [anon_sym_with] = ACTIONS(3767), + [anon_sym_def] = ACTIONS(3767), + [anon_sym_global] = ACTIONS(3767), + [anon_sym_nonlocal] = ACTIONS(3767), + [anon_sym_exec] = ACTIONS(3767), + [anon_sym_type] = ACTIONS(3767), + [anon_sym_class] = ACTIONS(3767), + [anon_sym_LBRACK] = ACTIONS(3765), + [anon_sym_AT] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LBRACE] = ACTIONS(3765), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_not] = ACTIONS(3767), + [anon_sym_AMP] = ACTIONS(3765), + [anon_sym_TILDE] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(3765), + [anon_sym_lambda] = ACTIONS(3767), + [anon_sym_yield] = ACTIONS(3767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3765), + [anon_sym_None] = ACTIONS(3767), + [anon_sym_0x] = ACTIONS(3765), + [anon_sym_0X] = ACTIONS(3765), + [anon_sym_0o] = ACTIONS(3765), + [anon_sym_0O] = ACTIONS(3765), + [anon_sym_0b] = ACTIONS(3765), + [anon_sym_0B] = ACTIONS(3765), + [aux_sym_integer_token4] = ACTIONS(3767), + [sym_float] = ACTIONS(3765), + [anon_sym_await] = ACTIONS(3767), + [anon_sym_api] = ACTIONS(3767), + [sym_true] = ACTIONS(3767), + [sym_false] = ACTIONS(3767), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3767), + [anon_sym_include] = ACTIONS(3767), + [anon_sym_DEF] = ACTIONS(3767), + [anon_sym_IF] = ACTIONS(3767), + [anon_sym_cdef] = ACTIONS(3767), + [anon_sym_cpdef] = ACTIONS(3767), + [anon_sym_new] = ACTIONS(3767), + [anon_sym_ctypedef] = ACTIONS(3767), + [anon_sym_public] = ACTIONS(3767), + [anon_sym_packed] = ACTIONS(3767), + [anon_sym_inline] = ACTIONS(3767), + [anon_sym_readonly] = ACTIONS(3767), + [anon_sym_sizeof] = ACTIONS(3767), + [sym_string_start] = ACTIONS(3765), + }, + [1508] = { + [ts_builtin_sym_end] = ACTIONS(3769), + [sym_identifier] = ACTIONS(3771), + [anon_sym_SEMI] = ACTIONS(3769), + [anon_sym_import] = ACTIONS(3771), + [anon_sym_cimport] = ACTIONS(3771), + [anon_sym_from] = ACTIONS(3771), + [anon_sym_LPAREN] = ACTIONS(3769), + [anon_sym_STAR] = ACTIONS(3769), + [anon_sym_print] = ACTIONS(3771), + [anon_sym_assert] = ACTIONS(3771), + [anon_sym_return] = ACTIONS(3771), + [anon_sym_del] = ACTIONS(3771), + [anon_sym_raise] = ACTIONS(3771), + [anon_sym_pass] = ACTIONS(3771), + [anon_sym_break] = ACTIONS(3771), + [anon_sym_continue] = ACTIONS(3771), + [anon_sym_if] = ACTIONS(3771), + [anon_sym_match] = ACTIONS(3771), + [anon_sym_async] = ACTIONS(3771), + [anon_sym_for] = ACTIONS(3771), + [anon_sym_while] = ACTIONS(3771), + [anon_sym_try] = ACTIONS(3771), + [anon_sym_with] = ACTIONS(3771), + [anon_sym_def] = ACTIONS(3771), + [anon_sym_global] = ACTIONS(3771), + [anon_sym_nonlocal] = ACTIONS(3771), + [anon_sym_exec] = ACTIONS(3771), + [anon_sym_type] = ACTIONS(3771), + [anon_sym_class] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3769), + [anon_sym_AT] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(3769), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3769), + [anon_sym_not] = ACTIONS(3771), + [anon_sym_AMP] = ACTIONS(3769), + [anon_sym_TILDE] = ACTIONS(3769), + [anon_sym_LT] = ACTIONS(3769), + [anon_sym_lambda] = ACTIONS(3771), + [anon_sym_yield] = ACTIONS(3771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3769), + [anon_sym_None] = ACTIONS(3771), + [anon_sym_0x] = ACTIONS(3769), + [anon_sym_0X] = ACTIONS(3769), + [anon_sym_0o] = ACTIONS(3769), + [anon_sym_0O] = ACTIONS(3769), + [anon_sym_0b] = ACTIONS(3769), + [anon_sym_0B] = ACTIONS(3769), + [aux_sym_integer_token4] = ACTIONS(3771), + [sym_float] = ACTIONS(3769), + [anon_sym_await] = ACTIONS(3771), + [anon_sym_api] = ACTIONS(3771), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3771), + [anon_sym_include] = ACTIONS(3771), + [anon_sym_DEF] = ACTIONS(3771), + [anon_sym_IF] = ACTIONS(3771), + [anon_sym_cdef] = ACTIONS(3771), + [anon_sym_cpdef] = ACTIONS(3771), + [anon_sym_new] = ACTIONS(3771), + [anon_sym_ctypedef] = ACTIONS(3771), + [anon_sym_public] = ACTIONS(3771), + [anon_sym_packed] = ACTIONS(3771), + [anon_sym_inline] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3771), + [anon_sym_sizeof] = ACTIONS(3771), + [sym_string_start] = ACTIONS(3769), + }, + [1509] = { + [ts_builtin_sym_end] = ACTIONS(3773), + [sym_identifier] = ACTIONS(3775), + [anon_sym_SEMI] = ACTIONS(3773), + [anon_sym_import] = ACTIONS(3775), + [anon_sym_cimport] = ACTIONS(3775), + [anon_sym_from] = ACTIONS(3775), + [anon_sym_LPAREN] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3773), + [anon_sym_print] = ACTIONS(3775), + [anon_sym_assert] = ACTIONS(3775), + [anon_sym_return] = ACTIONS(3775), + [anon_sym_del] = ACTIONS(3775), + [anon_sym_raise] = ACTIONS(3775), + [anon_sym_pass] = ACTIONS(3775), + [anon_sym_break] = ACTIONS(3775), + [anon_sym_continue] = ACTIONS(3775), + [anon_sym_if] = ACTIONS(3775), + [anon_sym_match] = ACTIONS(3775), + [anon_sym_async] = ACTIONS(3775), + [anon_sym_for] = ACTIONS(3775), + [anon_sym_while] = ACTIONS(3775), + [anon_sym_try] = ACTIONS(3775), + [anon_sym_with] = ACTIONS(3775), + [anon_sym_def] = ACTIONS(3775), + [anon_sym_global] = ACTIONS(3775), + [anon_sym_nonlocal] = ACTIONS(3775), + [anon_sym_exec] = ACTIONS(3775), + [anon_sym_type] = ACTIONS(3775), + [anon_sym_class] = ACTIONS(3775), + [anon_sym_LBRACK] = ACTIONS(3773), + [anon_sym_AT] = ACTIONS(3773), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_LBRACE] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_not] = ACTIONS(3775), + [anon_sym_AMP] = ACTIONS(3773), + [anon_sym_TILDE] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3773), + [anon_sym_lambda] = ACTIONS(3775), + [anon_sym_yield] = ACTIONS(3775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3773), + [anon_sym_None] = ACTIONS(3775), + [anon_sym_0x] = ACTIONS(3773), + [anon_sym_0X] = ACTIONS(3773), + [anon_sym_0o] = ACTIONS(3773), + [anon_sym_0O] = ACTIONS(3773), + [anon_sym_0b] = ACTIONS(3773), + [anon_sym_0B] = ACTIONS(3773), + [aux_sym_integer_token4] = ACTIONS(3775), + [sym_float] = ACTIONS(3773), + [anon_sym_await] = ACTIONS(3775), + [anon_sym_api] = ACTIONS(3775), + [sym_true] = ACTIONS(3775), + [sym_false] = ACTIONS(3775), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3775), + [anon_sym_include] = ACTIONS(3775), + [anon_sym_DEF] = ACTIONS(3775), + [anon_sym_IF] = ACTIONS(3775), + [anon_sym_cdef] = ACTIONS(3775), + [anon_sym_cpdef] = ACTIONS(3775), + [anon_sym_new] = ACTIONS(3775), + [anon_sym_ctypedef] = ACTIONS(3775), + [anon_sym_public] = ACTIONS(3775), + [anon_sym_packed] = ACTIONS(3775), + [anon_sym_inline] = ACTIONS(3775), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_sizeof] = ACTIONS(3775), + [sym_string_start] = ACTIONS(3773), + }, + [1510] = { + [ts_builtin_sym_end] = ACTIONS(3777), + [sym_identifier] = ACTIONS(3779), + [anon_sym_SEMI] = ACTIONS(3777), + [anon_sym_import] = ACTIONS(3779), + [anon_sym_cimport] = ACTIONS(3779), + [anon_sym_from] = ACTIONS(3779), + [anon_sym_LPAREN] = ACTIONS(3777), + [anon_sym_STAR] = ACTIONS(3777), + [anon_sym_print] = ACTIONS(3779), + [anon_sym_assert] = ACTIONS(3779), + [anon_sym_return] = ACTIONS(3779), + [anon_sym_del] = ACTIONS(3779), + [anon_sym_raise] = ACTIONS(3779), + [anon_sym_pass] = ACTIONS(3779), + [anon_sym_break] = ACTIONS(3779), + [anon_sym_continue] = ACTIONS(3779), + [anon_sym_if] = ACTIONS(3779), + [anon_sym_match] = ACTIONS(3779), + [anon_sym_async] = ACTIONS(3779), + [anon_sym_for] = ACTIONS(3779), + [anon_sym_while] = ACTIONS(3779), + [anon_sym_try] = ACTIONS(3779), + [anon_sym_with] = ACTIONS(3779), + [anon_sym_def] = ACTIONS(3779), + [anon_sym_global] = ACTIONS(3779), + [anon_sym_nonlocal] = ACTIONS(3779), + [anon_sym_exec] = ACTIONS(3779), + [anon_sym_type] = ACTIONS(3779), + [anon_sym_class] = ACTIONS(3779), + [anon_sym_LBRACK] = ACTIONS(3777), + [anon_sym_AT] = ACTIONS(3777), + [anon_sym_DASH] = ACTIONS(3777), + [anon_sym_LBRACE] = ACTIONS(3777), + [anon_sym_PLUS] = ACTIONS(3777), + [anon_sym_not] = ACTIONS(3779), + [anon_sym_AMP] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3777), + [anon_sym_LT] = ACTIONS(3777), + [anon_sym_lambda] = ACTIONS(3779), + [anon_sym_yield] = ACTIONS(3779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3777), + [anon_sym_None] = ACTIONS(3779), + [anon_sym_0x] = ACTIONS(3777), + [anon_sym_0X] = ACTIONS(3777), + [anon_sym_0o] = ACTIONS(3777), + [anon_sym_0O] = ACTIONS(3777), + [anon_sym_0b] = ACTIONS(3777), + [anon_sym_0B] = ACTIONS(3777), + [aux_sym_integer_token4] = ACTIONS(3779), + [sym_float] = ACTIONS(3777), + [anon_sym_await] = ACTIONS(3779), + [anon_sym_api] = ACTIONS(3779), + [sym_true] = ACTIONS(3779), + [sym_false] = ACTIONS(3779), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3779), + [anon_sym_include] = ACTIONS(3779), + [anon_sym_DEF] = ACTIONS(3779), + [anon_sym_IF] = ACTIONS(3779), + [anon_sym_cdef] = ACTIONS(3779), + [anon_sym_cpdef] = ACTIONS(3779), + [anon_sym_new] = ACTIONS(3779), + [anon_sym_ctypedef] = ACTIONS(3779), + [anon_sym_public] = ACTIONS(3779), + [anon_sym_packed] = ACTIONS(3779), + [anon_sym_inline] = ACTIONS(3779), + [anon_sym_readonly] = ACTIONS(3779), + [anon_sym_sizeof] = ACTIONS(3779), + [sym_string_start] = ACTIONS(3777), + }, + [1511] = { + [ts_builtin_sym_end] = ACTIONS(3781), + [sym_identifier] = ACTIONS(3783), + [anon_sym_SEMI] = ACTIONS(3781), + [anon_sym_import] = ACTIONS(3783), + [anon_sym_cimport] = ACTIONS(3783), + [anon_sym_from] = ACTIONS(3783), + [anon_sym_LPAREN] = ACTIONS(3781), + [anon_sym_STAR] = ACTIONS(3781), + [anon_sym_print] = ACTIONS(3783), + [anon_sym_assert] = ACTIONS(3783), + [anon_sym_return] = ACTIONS(3783), + [anon_sym_del] = ACTIONS(3783), + [anon_sym_raise] = ACTIONS(3783), + [anon_sym_pass] = ACTIONS(3783), + [anon_sym_break] = ACTIONS(3783), + [anon_sym_continue] = ACTIONS(3783), + [anon_sym_if] = ACTIONS(3783), + [anon_sym_match] = ACTIONS(3783), + [anon_sym_async] = ACTIONS(3783), + [anon_sym_for] = ACTIONS(3783), + [anon_sym_while] = ACTIONS(3783), + [anon_sym_try] = ACTIONS(3783), + [anon_sym_with] = ACTIONS(3783), + [anon_sym_def] = ACTIONS(3783), + [anon_sym_global] = ACTIONS(3783), + [anon_sym_nonlocal] = ACTIONS(3783), + [anon_sym_exec] = ACTIONS(3783), + [anon_sym_type] = ACTIONS(3783), + [anon_sym_class] = ACTIONS(3783), + [anon_sym_LBRACK] = ACTIONS(3781), + [anon_sym_AT] = ACTIONS(3781), + [anon_sym_DASH] = ACTIONS(3781), + [anon_sym_LBRACE] = ACTIONS(3781), + [anon_sym_PLUS] = ACTIONS(3781), + [anon_sym_not] = ACTIONS(3783), + [anon_sym_AMP] = ACTIONS(3781), + [anon_sym_TILDE] = ACTIONS(3781), + [anon_sym_LT] = ACTIONS(3781), + [anon_sym_lambda] = ACTIONS(3783), + [anon_sym_yield] = ACTIONS(3783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3781), + [anon_sym_None] = ACTIONS(3783), + [anon_sym_0x] = ACTIONS(3781), + [anon_sym_0X] = ACTIONS(3781), + [anon_sym_0o] = ACTIONS(3781), + [anon_sym_0O] = ACTIONS(3781), + [anon_sym_0b] = ACTIONS(3781), + [anon_sym_0B] = ACTIONS(3781), + [aux_sym_integer_token4] = ACTIONS(3783), + [sym_float] = ACTIONS(3781), + [anon_sym_await] = ACTIONS(3783), + [anon_sym_api] = ACTIONS(3783), + [sym_true] = ACTIONS(3783), + [sym_false] = ACTIONS(3783), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3783), + [anon_sym_include] = ACTIONS(3783), + [anon_sym_DEF] = ACTIONS(3783), + [anon_sym_IF] = ACTIONS(3783), + [anon_sym_cdef] = ACTIONS(3783), + [anon_sym_cpdef] = ACTIONS(3783), + [anon_sym_new] = ACTIONS(3783), + [anon_sym_ctypedef] = ACTIONS(3783), + [anon_sym_public] = ACTIONS(3783), + [anon_sym_packed] = ACTIONS(3783), + [anon_sym_inline] = ACTIONS(3783), + [anon_sym_readonly] = ACTIONS(3783), + [anon_sym_sizeof] = ACTIONS(3783), + [sym_string_start] = ACTIONS(3781), + }, + [1512] = { + [ts_builtin_sym_end] = ACTIONS(3785), + [sym_identifier] = ACTIONS(3787), + [anon_sym_SEMI] = ACTIONS(3785), + [anon_sym_import] = ACTIONS(3787), + [anon_sym_cimport] = ACTIONS(3787), + [anon_sym_from] = ACTIONS(3787), + [anon_sym_LPAREN] = ACTIONS(3785), + [anon_sym_STAR] = ACTIONS(3785), + [anon_sym_print] = ACTIONS(3787), + [anon_sym_assert] = ACTIONS(3787), + [anon_sym_return] = ACTIONS(3787), + [anon_sym_del] = ACTIONS(3787), + [anon_sym_raise] = ACTIONS(3787), + [anon_sym_pass] = ACTIONS(3787), + [anon_sym_break] = ACTIONS(3787), + [anon_sym_continue] = ACTIONS(3787), + [anon_sym_if] = ACTIONS(3787), + [anon_sym_match] = ACTIONS(3787), + [anon_sym_async] = ACTIONS(3787), + [anon_sym_for] = ACTIONS(3787), + [anon_sym_while] = ACTIONS(3787), + [anon_sym_try] = ACTIONS(3787), + [anon_sym_with] = ACTIONS(3787), + [anon_sym_def] = ACTIONS(3787), + [anon_sym_global] = ACTIONS(3787), + [anon_sym_nonlocal] = ACTIONS(3787), + [anon_sym_exec] = ACTIONS(3787), + [anon_sym_type] = ACTIONS(3787), + [anon_sym_class] = ACTIONS(3787), + [anon_sym_LBRACK] = ACTIONS(3785), + [anon_sym_AT] = ACTIONS(3785), + [anon_sym_DASH] = ACTIONS(3785), + [anon_sym_LBRACE] = ACTIONS(3785), + [anon_sym_PLUS] = ACTIONS(3785), + [anon_sym_not] = ACTIONS(3787), + [anon_sym_AMP] = ACTIONS(3785), + [anon_sym_TILDE] = ACTIONS(3785), + [anon_sym_LT] = ACTIONS(3785), + [anon_sym_lambda] = ACTIONS(3787), + [anon_sym_yield] = ACTIONS(3787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3785), + [anon_sym_None] = ACTIONS(3787), + [anon_sym_0x] = ACTIONS(3785), + [anon_sym_0X] = ACTIONS(3785), + [anon_sym_0o] = ACTIONS(3785), + [anon_sym_0O] = ACTIONS(3785), + [anon_sym_0b] = ACTIONS(3785), + [anon_sym_0B] = ACTIONS(3785), + [aux_sym_integer_token4] = ACTIONS(3787), + [sym_float] = ACTIONS(3785), + [anon_sym_await] = ACTIONS(3787), + [anon_sym_api] = ACTIONS(3787), + [sym_true] = ACTIONS(3787), + [sym_false] = ACTIONS(3787), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3787), + [anon_sym_include] = ACTIONS(3787), + [anon_sym_DEF] = ACTIONS(3787), + [anon_sym_IF] = ACTIONS(3787), + [anon_sym_cdef] = ACTIONS(3787), + [anon_sym_cpdef] = ACTIONS(3787), + [anon_sym_new] = ACTIONS(3787), + [anon_sym_ctypedef] = ACTIONS(3787), + [anon_sym_public] = ACTIONS(3787), + [anon_sym_packed] = ACTIONS(3787), + [anon_sym_inline] = ACTIONS(3787), + [anon_sym_readonly] = ACTIONS(3787), + [anon_sym_sizeof] = ACTIONS(3787), + [sym_string_start] = ACTIONS(3785), + }, + [1513] = { + [ts_builtin_sym_end] = ACTIONS(3789), + [sym_identifier] = ACTIONS(3791), + [anon_sym_SEMI] = ACTIONS(3789), + [anon_sym_import] = ACTIONS(3791), + [anon_sym_cimport] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_LPAREN] = ACTIONS(3789), + [anon_sym_STAR] = ACTIONS(3789), + [anon_sym_print] = ACTIONS(3791), + [anon_sym_assert] = ACTIONS(3791), + [anon_sym_return] = ACTIONS(3791), + [anon_sym_del] = ACTIONS(3791), + [anon_sym_raise] = ACTIONS(3791), + [anon_sym_pass] = ACTIONS(3791), + [anon_sym_break] = ACTIONS(3791), + [anon_sym_continue] = ACTIONS(3791), + [anon_sym_if] = ACTIONS(3791), + [anon_sym_match] = ACTIONS(3791), + [anon_sym_async] = ACTIONS(3791), + [anon_sym_for] = ACTIONS(3791), + [anon_sym_while] = ACTIONS(3791), + [anon_sym_try] = ACTIONS(3791), + [anon_sym_with] = ACTIONS(3791), + [anon_sym_def] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_nonlocal] = ACTIONS(3791), + [anon_sym_exec] = ACTIONS(3791), + [anon_sym_type] = ACTIONS(3791), + [anon_sym_class] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(3789), + [anon_sym_AT] = ACTIONS(3789), + [anon_sym_DASH] = ACTIONS(3789), + [anon_sym_LBRACE] = ACTIONS(3789), + [anon_sym_PLUS] = ACTIONS(3789), + [anon_sym_not] = ACTIONS(3791), + [anon_sym_AMP] = ACTIONS(3789), + [anon_sym_TILDE] = ACTIONS(3789), + [anon_sym_LT] = ACTIONS(3789), + [anon_sym_lambda] = ACTIONS(3791), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3789), + [anon_sym_None] = ACTIONS(3791), + [anon_sym_0x] = ACTIONS(3789), + [anon_sym_0X] = ACTIONS(3789), + [anon_sym_0o] = ACTIONS(3789), + [anon_sym_0O] = ACTIONS(3789), + [anon_sym_0b] = ACTIONS(3789), + [anon_sym_0B] = ACTIONS(3789), + [aux_sym_integer_token4] = ACTIONS(3791), + [sym_float] = ACTIONS(3789), + [anon_sym_await] = ACTIONS(3791), + [anon_sym_api] = ACTIONS(3791), + [sym_true] = ACTIONS(3791), + [sym_false] = ACTIONS(3791), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3791), + [anon_sym_include] = ACTIONS(3791), + [anon_sym_DEF] = ACTIONS(3791), + [anon_sym_IF] = ACTIONS(3791), + [anon_sym_cdef] = ACTIONS(3791), + [anon_sym_cpdef] = ACTIONS(3791), + [anon_sym_new] = ACTIONS(3791), + [anon_sym_ctypedef] = ACTIONS(3791), + [anon_sym_public] = ACTIONS(3791), + [anon_sym_packed] = ACTIONS(3791), + [anon_sym_inline] = ACTIONS(3791), + [anon_sym_readonly] = ACTIONS(3791), + [anon_sym_sizeof] = ACTIONS(3791), + [sym_string_start] = ACTIONS(3789), + }, + [1514] = { + [ts_builtin_sym_end] = ACTIONS(3793), + [sym_identifier] = ACTIONS(3795), + [anon_sym_SEMI] = ACTIONS(3793), + [anon_sym_import] = ACTIONS(3795), + [anon_sym_cimport] = ACTIONS(3795), + [anon_sym_from] = ACTIONS(3795), + [anon_sym_LPAREN] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3793), + [anon_sym_print] = ACTIONS(3795), + [anon_sym_assert] = ACTIONS(3795), + [anon_sym_return] = ACTIONS(3795), + [anon_sym_del] = ACTIONS(3795), + [anon_sym_raise] = ACTIONS(3795), + [anon_sym_pass] = ACTIONS(3795), + [anon_sym_break] = ACTIONS(3795), + [anon_sym_continue] = ACTIONS(3795), + [anon_sym_if] = ACTIONS(3795), + [anon_sym_match] = ACTIONS(3795), + [anon_sym_async] = ACTIONS(3795), + [anon_sym_for] = ACTIONS(3795), + [anon_sym_while] = ACTIONS(3795), + [anon_sym_try] = ACTIONS(3795), + [anon_sym_with] = ACTIONS(3795), + [anon_sym_def] = ACTIONS(3795), + [anon_sym_global] = ACTIONS(3795), + [anon_sym_nonlocal] = ACTIONS(3795), + [anon_sym_exec] = ACTIONS(3795), + [anon_sym_type] = ACTIONS(3795), + [anon_sym_class] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3793), + [anon_sym_AT] = ACTIONS(3793), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_LBRACE] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_not] = ACTIONS(3795), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_TILDE] = ACTIONS(3793), + [anon_sym_LT] = ACTIONS(3793), + [anon_sym_lambda] = ACTIONS(3795), + [anon_sym_yield] = ACTIONS(3795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3793), + [anon_sym_None] = ACTIONS(3795), + [anon_sym_0x] = ACTIONS(3793), + [anon_sym_0X] = ACTIONS(3793), + [anon_sym_0o] = ACTIONS(3793), + [anon_sym_0O] = ACTIONS(3793), + [anon_sym_0b] = ACTIONS(3793), + [anon_sym_0B] = ACTIONS(3793), + [aux_sym_integer_token4] = ACTIONS(3795), + [sym_float] = ACTIONS(3793), + [anon_sym_await] = ACTIONS(3795), + [anon_sym_api] = ACTIONS(3795), + [sym_true] = ACTIONS(3795), + [sym_false] = ACTIONS(3795), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3795), + [anon_sym_include] = ACTIONS(3795), + [anon_sym_DEF] = ACTIONS(3795), + [anon_sym_IF] = ACTIONS(3795), + [anon_sym_cdef] = ACTIONS(3795), + [anon_sym_cpdef] = ACTIONS(3795), + [anon_sym_new] = ACTIONS(3795), + [anon_sym_ctypedef] = ACTIONS(3795), + [anon_sym_public] = ACTIONS(3795), + [anon_sym_packed] = ACTIONS(3795), + [anon_sym_inline] = ACTIONS(3795), + [anon_sym_readonly] = ACTIONS(3795), + [anon_sym_sizeof] = ACTIONS(3795), + [sym_string_start] = ACTIONS(3793), + }, + [1515] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5034), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1516] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4751), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1517] = { + [ts_builtin_sym_end] = ACTIONS(3797), + [sym_identifier] = ACTIONS(3799), + [anon_sym_SEMI] = ACTIONS(3797), + [anon_sym_import] = ACTIONS(3799), + [anon_sym_cimport] = ACTIONS(3799), + [anon_sym_from] = ACTIONS(3799), + [anon_sym_LPAREN] = ACTIONS(3797), + [anon_sym_STAR] = ACTIONS(3797), + [anon_sym_print] = ACTIONS(3799), + [anon_sym_assert] = ACTIONS(3799), + [anon_sym_return] = ACTIONS(3799), + [anon_sym_del] = ACTIONS(3799), + [anon_sym_raise] = ACTIONS(3799), + [anon_sym_pass] = ACTIONS(3799), + [anon_sym_break] = ACTIONS(3799), + [anon_sym_continue] = ACTIONS(3799), + [anon_sym_if] = ACTIONS(3799), + [anon_sym_match] = ACTIONS(3799), + [anon_sym_async] = ACTIONS(3799), + [anon_sym_for] = ACTIONS(3799), + [anon_sym_while] = ACTIONS(3799), + [anon_sym_try] = ACTIONS(3799), + [anon_sym_with] = ACTIONS(3799), + [anon_sym_def] = ACTIONS(3799), + [anon_sym_global] = ACTIONS(3799), + [anon_sym_nonlocal] = ACTIONS(3799), + [anon_sym_exec] = ACTIONS(3799), + [anon_sym_type] = ACTIONS(3799), + [anon_sym_class] = ACTIONS(3799), + [anon_sym_LBRACK] = ACTIONS(3797), + [anon_sym_AT] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_PLUS] = ACTIONS(3797), + [anon_sym_not] = ACTIONS(3799), + [anon_sym_AMP] = ACTIONS(3797), + [anon_sym_TILDE] = ACTIONS(3797), + [anon_sym_LT] = ACTIONS(3797), + [anon_sym_lambda] = ACTIONS(3799), + [anon_sym_yield] = ACTIONS(3799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3797), + [anon_sym_None] = ACTIONS(3799), + [anon_sym_0x] = ACTIONS(3797), + [anon_sym_0X] = ACTIONS(3797), + [anon_sym_0o] = ACTIONS(3797), + [anon_sym_0O] = ACTIONS(3797), + [anon_sym_0b] = ACTIONS(3797), + [anon_sym_0B] = ACTIONS(3797), + [aux_sym_integer_token4] = ACTIONS(3799), + [sym_float] = ACTIONS(3797), + [anon_sym_await] = ACTIONS(3799), + [anon_sym_api] = ACTIONS(3799), + [sym_true] = ACTIONS(3799), + [sym_false] = ACTIONS(3799), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3799), + [anon_sym_include] = ACTIONS(3799), + [anon_sym_DEF] = ACTIONS(3799), + [anon_sym_IF] = ACTIONS(3799), + [anon_sym_cdef] = ACTIONS(3799), + [anon_sym_cpdef] = ACTIONS(3799), + [anon_sym_new] = ACTIONS(3799), + [anon_sym_ctypedef] = ACTIONS(3799), + [anon_sym_public] = ACTIONS(3799), + [anon_sym_packed] = ACTIONS(3799), + [anon_sym_inline] = ACTIONS(3799), + [anon_sym_readonly] = ACTIONS(3799), + [anon_sym_sizeof] = ACTIONS(3799), + [sym_string_start] = ACTIONS(3797), + }, + [1518] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5226), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1519] = { + [sym_identifier] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_cimport] = ACTIONS(3287), + [anon_sym_from] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3285), + [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(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_not] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_lambda] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3285), + [anon_sym_None] = ACTIONS(3287), + [anon_sym_0x] = ACTIONS(3285), + [anon_sym_0X] = ACTIONS(3285), + [anon_sym_0o] = ACTIONS(3285), + [anon_sym_0O] = ACTIONS(3285), + [anon_sym_0b] = ACTIONS(3285), + [anon_sym_0B] = ACTIONS(3285), + [aux_sym_integer_token4] = ACTIONS(3287), + [sym_float] = ACTIONS(3285), + [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_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(3285), + [sym_string_start] = ACTIONS(3285), + }, + [1520] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4754), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1521] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4755), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1522] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4852), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1523] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5238), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1524] = { + [sym_identifier] = ACTIONS(3801), + [anon_sym_SEMI] = ACTIONS(3803), + [anon_sym_import] = ACTIONS(3801), + [anon_sym_cimport] = ACTIONS(3801), + [anon_sym_from] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3805), + [anon_sym_STAR] = ACTIONS(3805), + [anon_sym_print] = ACTIONS(3801), + [anon_sym_assert] = ACTIONS(3801), + [anon_sym_return] = ACTIONS(3801), + [anon_sym_del] = ACTIONS(3801), + [anon_sym_raise] = ACTIONS(3801), + [anon_sym_pass] = ACTIONS(3801), + [anon_sym_break] = ACTIONS(3801), + [anon_sym_continue] = ACTIONS(3801), + [anon_sym_if] = ACTIONS(3801), + [anon_sym_match] = ACTIONS(3801), + [anon_sym_async] = ACTIONS(3801), + [anon_sym_for] = ACTIONS(3801), + [anon_sym_while] = ACTIONS(3801), + [anon_sym_try] = ACTIONS(3801), + [anon_sym_with] = ACTIONS(3801), + [anon_sym_def] = ACTIONS(3801), + [anon_sym_global] = ACTIONS(3801), + [anon_sym_nonlocal] = ACTIONS(3801), + [anon_sym_exec] = ACTIONS(3801), + [anon_sym_type] = ACTIONS(3801), + [anon_sym_class] = ACTIONS(3801), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_AT] = ACTIONS(3805), + [anon_sym_DASH] = ACTIONS(3805), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_PLUS] = ACTIONS(3805), + [anon_sym_not] = ACTIONS(3801), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_TILDE] = ACTIONS(3805), + [anon_sym_LT] = ACTIONS(3805), + [anon_sym_lambda] = ACTIONS(3801), + [anon_sym_yield] = ACTIONS(3801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3805), + [anon_sym_None] = ACTIONS(3801), + [anon_sym_0x] = ACTIONS(3805), + [anon_sym_0X] = ACTIONS(3805), + [anon_sym_0o] = ACTIONS(3805), + [anon_sym_0O] = ACTIONS(3805), + [anon_sym_0b] = ACTIONS(3805), + [anon_sym_0B] = ACTIONS(3805), + [aux_sym_integer_token4] = ACTIONS(3801), + [sym_float] = ACTIONS(3805), + [anon_sym_await] = ACTIONS(3801), + [anon_sym_api] = ACTIONS(3801), + [sym_true] = ACTIONS(3801), + [sym_false] = ACTIONS(3801), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3801), + [anon_sym_include] = ACTIONS(3801), + [anon_sym_DEF] = ACTIONS(3801), + [anon_sym_IF] = ACTIONS(3801), + [anon_sym_cdef] = ACTIONS(3801), + [anon_sym_cpdef] = ACTIONS(3801), + [anon_sym_new] = ACTIONS(3801), + [anon_sym_ctypedef] = ACTIONS(3801), + [anon_sym_public] = ACTIONS(3801), + [anon_sym_packed] = ACTIONS(3801), + [anon_sym_inline] = ACTIONS(3801), + [anon_sym_readonly] = ACTIONS(3801), + [anon_sym_sizeof] = ACTIONS(3801), + [sym__dedent] = ACTIONS(3805), + [sym_string_start] = ACTIONS(3805), + }, + [1525] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4900), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1526] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4915), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1527] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3088), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1528] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4929), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1529] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4723), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1530] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4756), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1531] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(3016), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1532] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4906), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1533] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4758), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1534] = { + [sym_identifier] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_cimport] = ACTIONS(3291), + [anon_sym_from] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_print] = ACTIONS(3291), + [anon_sym_assert] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_del] = ACTIONS(3291), + [anon_sym_raise] = ACTIONS(3291), + [anon_sym_pass] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_match] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_def] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_nonlocal] = ACTIONS(3291), + [anon_sym_exec] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [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(3291), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_lambda] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3289), + [anon_sym_None] = ACTIONS(3291), + [anon_sym_0x] = ACTIONS(3289), + [anon_sym_0X] = ACTIONS(3289), + [anon_sym_0o] = ACTIONS(3289), + [anon_sym_0O] = ACTIONS(3289), + [anon_sym_0b] = ACTIONS(3289), + [anon_sym_0B] = ACTIONS(3289), + [aux_sym_integer_token4] = ACTIONS(3291), + [sym_float] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_api] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3291), + [anon_sym_include] = ACTIONS(3291), + [anon_sym_DEF] = ACTIONS(3291), + [anon_sym_IF] = ACTIONS(3291), + [anon_sym_cdef] = ACTIONS(3291), + [anon_sym_cpdef] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_ctypedef] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_packed] = ACTIONS(3291), + [anon_sym_inline] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_sizeof] = ACTIONS(3291), + [sym__dedent] = ACTIONS(3289), + [sym_string_start] = ACTIONS(3289), + }, + [1535] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5225), + [sym_primary_expression] = STATE(2693), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3219), + [sym_subscript] = STATE(3219), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(3807), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(3809), + [anon_sym_match] = ACTIONS(3809), + [anon_sym_async] = ACTIONS(3809), + [anon_sym_exec] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(3811), + [anon_sym_api] = ACTIONS(3809), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1536] = { + [sym_identifier] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_cimport] = ACTIONS(3425), + [anon_sym_from] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_print] = ACTIONS(3425), + [anon_sym_assert] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_del] = ACTIONS(3425), + [anon_sym_raise] = ACTIONS(3425), + [anon_sym_pass] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_match] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_def] = ACTIONS(3425), + [anon_sym_global] = ACTIONS(3425), + [anon_sym_nonlocal] = ACTIONS(3425), + [anon_sym_exec] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_not] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_lambda] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3423), + [anon_sym_None] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3423), + [anon_sym_0X] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3423), + [anon_sym_0O] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0B] = ACTIONS(3423), + [aux_sym_integer_token4] = ACTIONS(3425), + [sym_float] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_api] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3425), + [anon_sym_include] = ACTIONS(3425), + [anon_sym_DEF] = ACTIONS(3425), + [anon_sym_IF] = ACTIONS(3425), + [anon_sym_cdef] = ACTIONS(3425), + [anon_sym_cpdef] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_ctypedef] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_packed] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_sizeof] = ACTIONS(3425), + [sym__dedent] = ACTIONS(3423), + [sym_string_start] = ACTIONS(3423), + }, + [1537] = { + [sym_identifier] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_cimport] = ACTIONS(3299), + [anon_sym_from] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_print] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_del] = ACTIONS(3299), + [anon_sym_raise] = ACTIONS(3299), + [anon_sym_pass] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_def] = ACTIONS(3299), + [anon_sym_global] = ACTIONS(3299), + [anon_sym_nonlocal] = ACTIONS(3299), + [anon_sym_exec] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_not] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_lambda] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), + [anon_sym_None] = ACTIONS(3299), + [anon_sym_0x] = ACTIONS(3297), + [anon_sym_0X] = ACTIONS(3297), + [anon_sym_0o] = ACTIONS(3297), + [anon_sym_0O] = ACTIONS(3297), + [anon_sym_0b] = ACTIONS(3297), + [anon_sym_0B] = ACTIONS(3297), + [aux_sym_integer_token4] = ACTIONS(3299), + [sym_float] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_api] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3299), + [anon_sym_include] = ACTIONS(3299), + [anon_sym_DEF] = ACTIONS(3299), + [anon_sym_IF] = ACTIONS(3299), + [anon_sym_cdef] = ACTIONS(3299), + [anon_sym_cpdef] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_ctypedef] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_packed] = ACTIONS(3299), + [anon_sym_inline] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3299), + [sym__dedent] = ACTIONS(3297), + [sym_string_start] = ACTIONS(3297), + }, + [1538] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3098), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1539] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(3033), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1540] = { + [ts_builtin_sym_end] = ACTIONS(3813), + [sym_identifier] = ACTIONS(3815), + [anon_sym_SEMI] = ACTIONS(3813), + [anon_sym_import] = ACTIONS(3815), + [anon_sym_cimport] = ACTIONS(3815), + [anon_sym_from] = ACTIONS(3815), + [anon_sym_LPAREN] = ACTIONS(3813), + [anon_sym_STAR] = ACTIONS(3813), + [anon_sym_print] = ACTIONS(3815), + [anon_sym_assert] = ACTIONS(3815), + [anon_sym_return] = ACTIONS(3815), + [anon_sym_del] = ACTIONS(3815), + [anon_sym_raise] = ACTIONS(3815), + [anon_sym_pass] = ACTIONS(3815), + [anon_sym_break] = ACTIONS(3815), + [anon_sym_continue] = ACTIONS(3815), + [anon_sym_if] = ACTIONS(3815), + [anon_sym_match] = ACTIONS(3815), + [anon_sym_async] = ACTIONS(3815), + [anon_sym_for] = ACTIONS(3815), + [anon_sym_while] = ACTIONS(3815), + [anon_sym_try] = ACTIONS(3815), + [anon_sym_with] = ACTIONS(3815), + [anon_sym_def] = ACTIONS(3815), + [anon_sym_global] = ACTIONS(3815), + [anon_sym_nonlocal] = ACTIONS(3815), + [anon_sym_exec] = ACTIONS(3815), + [anon_sym_type] = ACTIONS(3815), + [anon_sym_class] = ACTIONS(3815), + [anon_sym_LBRACK] = ACTIONS(3813), + [anon_sym_AT] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_not] = ACTIONS(3815), + [anon_sym_AMP] = ACTIONS(3813), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(3813), + [anon_sym_lambda] = ACTIONS(3815), + [anon_sym_yield] = ACTIONS(3815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3813), + [anon_sym_None] = ACTIONS(3815), + [anon_sym_0x] = ACTIONS(3813), + [anon_sym_0X] = ACTIONS(3813), + [anon_sym_0o] = ACTIONS(3813), + [anon_sym_0O] = ACTIONS(3813), + [anon_sym_0b] = ACTIONS(3813), + [anon_sym_0B] = ACTIONS(3813), + [aux_sym_integer_token4] = ACTIONS(3815), + [sym_float] = ACTIONS(3813), + [anon_sym_await] = ACTIONS(3815), + [anon_sym_api] = ACTIONS(3815), + [sym_true] = ACTIONS(3815), + [sym_false] = ACTIONS(3815), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3815), + [anon_sym_include] = ACTIONS(3815), + [anon_sym_DEF] = ACTIONS(3815), + [anon_sym_IF] = ACTIONS(3815), + [anon_sym_cdef] = ACTIONS(3815), + [anon_sym_cpdef] = ACTIONS(3815), + [anon_sym_new] = ACTIONS(3815), + [anon_sym_ctypedef] = ACTIONS(3815), + [anon_sym_public] = ACTIONS(3815), + [anon_sym_packed] = ACTIONS(3815), + [anon_sym_inline] = ACTIONS(3815), + [anon_sym_readonly] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(3815), + [sym_string_start] = ACTIONS(3813), + }, + [1541] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5228), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1542] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3290), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1543] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1544] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1545] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2997), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1546] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3293), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1547] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5167), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1548] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3294), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1549] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3296), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1550] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1551] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1552] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3256), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1553] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2997), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1554] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3259), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1555] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3261), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1556] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3262), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1557] = { + [sym_identifier] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_cimport] = ACTIONS(3303), + [anon_sym_from] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_print] = ACTIONS(3303), + [anon_sym_assert] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_del] = ACTIONS(3303), + [anon_sym_raise] = ACTIONS(3303), + [anon_sym_pass] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_match] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_def] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3303), + [anon_sym_nonlocal] = ACTIONS(3303), + [anon_sym_exec] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_not] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_lambda] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), + [anon_sym_None] = ACTIONS(3303), + [anon_sym_0x] = ACTIONS(3301), + [anon_sym_0X] = ACTIONS(3301), + [anon_sym_0o] = ACTIONS(3301), + [anon_sym_0O] = ACTIONS(3301), + [anon_sym_0b] = ACTIONS(3301), + [anon_sym_0B] = ACTIONS(3301), + [aux_sym_integer_token4] = ACTIONS(3303), + [sym_float] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_api] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3303), + [anon_sym_include] = ACTIONS(3303), + [anon_sym_DEF] = ACTIONS(3303), + [anon_sym_IF] = ACTIONS(3303), + [anon_sym_cdef] = ACTIONS(3303), + [anon_sym_cpdef] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_ctypedef] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_packed] = ACTIONS(3303), + [anon_sym_inline] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_sizeof] = ACTIONS(3303), + [sym__dedent] = ACTIONS(3301), + [sym_string_start] = ACTIONS(3301), + }, + [1558] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4824), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1559] = { + [sym_identifier] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_cimport] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_print] = ACTIONS(3211), + [anon_sym_assert] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_del] = ACTIONS(3211), + [anon_sym_raise] = ACTIONS(3211), + [anon_sym_pass] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_match] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_def] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_nonlocal] = ACTIONS(3211), + [anon_sym_exec] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_AT] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_not] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3209), + [anon_sym_lambda] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [anon_sym_None] = ACTIONS(3211), + [anon_sym_0x] = ACTIONS(3209), + [anon_sym_0X] = ACTIONS(3209), + [anon_sym_0o] = ACTIONS(3209), + [anon_sym_0O] = ACTIONS(3209), + [anon_sym_0b] = ACTIONS(3209), + [anon_sym_0B] = ACTIONS(3209), + [aux_sym_integer_token4] = ACTIONS(3211), + [sym_float] = ACTIONS(3209), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_api] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3211), + [anon_sym_include] = ACTIONS(3211), + [anon_sym_DEF] = ACTIONS(3211), + [anon_sym_IF] = ACTIONS(3211), + [anon_sym_cdef] = ACTIONS(3211), + [anon_sym_cpdef] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_ctypedef] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_packed] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_sizeof] = ACTIONS(3211), + [sym__dedent] = ACTIONS(3209), + [sym_string_start] = ACTIONS(3209), + }, + [1560] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3951), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1561] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5225), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3408), + [sym_subscript] = STATE(3408), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(3817), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(3819), + [anon_sym_match] = ACTIONS(3819), + [anon_sym_async] = ACTIONS(3819), + [anon_sym_exec] = ACTIONS(3819), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(3821), + [anon_sym_api] = ACTIONS(3819), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1562] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4618), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1563] = { + [sym_identifier] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3823), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_cimport] = ACTIONS(3257), + [anon_sym_from] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_print] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_del] = ACTIONS(3257), + [anon_sym_raise] = ACTIONS(3257), + [anon_sym_pass] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_def] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3257), + [anon_sym_nonlocal] = ACTIONS(3257), + [anon_sym_exec] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [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(3257), + [anon_sym_AMP] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_lambda] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_None] = ACTIONS(3257), + [anon_sym_0x] = ACTIONS(3255), + [anon_sym_0X] = ACTIONS(3255), + [anon_sym_0o] = ACTIONS(3255), + [anon_sym_0O] = ACTIONS(3255), + [anon_sym_0b] = ACTIONS(3255), + [anon_sym_0B] = ACTIONS(3255), + [aux_sym_integer_token4] = ACTIONS(3257), + [sym_float] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_api] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3257), + [anon_sym_include] = ACTIONS(3257), + [anon_sym_DEF] = ACTIONS(3257), + [anon_sym_IF] = ACTIONS(3257), + [anon_sym_cdef] = ACTIONS(3257), + [anon_sym_cpdef] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_ctypedef] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_packed] = ACTIONS(3257), + [anon_sym_inline] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_sizeof] = ACTIONS(3257), + [sym__dedent] = ACTIONS(3255), + [sym_string_start] = ACTIONS(3255), + }, + [1564] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5173), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1565] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4761), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1566] = { + [sym_identifier] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_cimport] = ACTIONS(3307), + [anon_sym_from] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_print] = ACTIONS(3307), + [anon_sym_assert] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_del] = ACTIONS(3307), + [anon_sym_raise] = ACTIONS(3307), + [anon_sym_pass] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_def] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_nonlocal] = ACTIONS(3307), + [anon_sym_exec] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_not] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_lambda] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), + [anon_sym_None] = ACTIONS(3307), + [anon_sym_0x] = ACTIONS(3305), + [anon_sym_0X] = ACTIONS(3305), + [anon_sym_0o] = ACTIONS(3305), + [anon_sym_0O] = ACTIONS(3305), + [anon_sym_0b] = ACTIONS(3305), + [anon_sym_0B] = ACTIONS(3305), + [aux_sym_integer_token4] = ACTIONS(3307), + [sym_float] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_api] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3307), + [anon_sym_include] = ACTIONS(3307), + [anon_sym_DEF] = ACTIONS(3307), + [anon_sym_IF] = ACTIONS(3307), + [anon_sym_cdef] = ACTIONS(3307), + [anon_sym_cpdef] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_ctypedef] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_packed] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_sizeof] = ACTIONS(3307), + [sym__dedent] = ACTIONS(3305), + [sym_string_start] = ACTIONS(3305), + }, + [1567] = { + [ts_builtin_sym_end] = ACTIONS(3825), + [sym_identifier] = ACTIONS(3827), + [anon_sym_SEMI] = ACTIONS(3825), + [anon_sym_import] = ACTIONS(3827), + [anon_sym_cimport] = ACTIONS(3827), + [anon_sym_from] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_STAR] = ACTIONS(3825), + [anon_sym_print] = ACTIONS(3827), + [anon_sym_assert] = ACTIONS(3827), + [anon_sym_return] = ACTIONS(3827), + [anon_sym_del] = ACTIONS(3827), + [anon_sym_raise] = ACTIONS(3827), + [anon_sym_pass] = ACTIONS(3827), + [anon_sym_break] = ACTIONS(3827), + [anon_sym_continue] = ACTIONS(3827), + [anon_sym_if] = ACTIONS(3827), + [anon_sym_match] = ACTIONS(3827), + [anon_sym_async] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3827), + [anon_sym_while] = ACTIONS(3827), + [anon_sym_try] = ACTIONS(3827), + [anon_sym_with] = ACTIONS(3827), + [anon_sym_def] = ACTIONS(3827), + [anon_sym_global] = ACTIONS(3827), + [anon_sym_nonlocal] = ACTIONS(3827), + [anon_sym_exec] = ACTIONS(3827), + [anon_sym_type] = ACTIONS(3827), + [anon_sym_class] = ACTIONS(3827), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_AT] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_not] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3825), + [anon_sym_LT] = ACTIONS(3825), + [anon_sym_lambda] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3825), + [anon_sym_None] = ACTIONS(3827), + [anon_sym_0x] = ACTIONS(3825), + [anon_sym_0X] = ACTIONS(3825), + [anon_sym_0o] = ACTIONS(3825), + [anon_sym_0O] = ACTIONS(3825), + [anon_sym_0b] = ACTIONS(3825), + [anon_sym_0B] = ACTIONS(3825), + [aux_sym_integer_token4] = ACTIONS(3827), + [sym_float] = ACTIONS(3825), + [anon_sym_await] = ACTIONS(3827), + [anon_sym_api] = ACTIONS(3827), + [sym_true] = ACTIONS(3827), + [sym_false] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3827), + [anon_sym_include] = ACTIONS(3827), + [anon_sym_DEF] = ACTIONS(3827), + [anon_sym_IF] = ACTIONS(3827), + [anon_sym_cdef] = ACTIONS(3827), + [anon_sym_cpdef] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3827), + [anon_sym_ctypedef] = ACTIONS(3827), + [anon_sym_public] = ACTIONS(3827), + [anon_sym_packed] = ACTIONS(3827), + [anon_sym_inline] = ACTIONS(3827), + [anon_sym_readonly] = ACTIONS(3827), + [anon_sym_sizeof] = ACTIONS(3827), + [sym_string_start] = ACTIONS(3825), + }, + [1568] = { + [ts_builtin_sym_end] = ACTIONS(3829), + [sym_identifier] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3829), + [anon_sym_import] = ACTIONS(3831), + [anon_sym_cimport] = ACTIONS(3831), + [anon_sym_from] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_print] = ACTIONS(3831), + [anon_sym_assert] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_del] = ACTIONS(3831), + [anon_sym_raise] = ACTIONS(3831), + [anon_sym_pass] = ACTIONS(3831), + [anon_sym_break] = ACTIONS(3831), + [anon_sym_continue] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_match] = ACTIONS(3831), + [anon_sym_async] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_try] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3831), + [anon_sym_def] = ACTIONS(3831), + [anon_sym_global] = ACTIONS(3831), + [anon_sym_nonlocal] = ACTIONS(3831), + [anon_sym_exec] = ACTIONS(3831), + [anon_sym_type] = ACTIONS(3831), + [anon_sym_class] = ACTIONS(3831), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_AT] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_not] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3829), + [anon_sym_LT] = ACTIONS(3829), + [anon_sym_lambda] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3829), + [anon_sym_None] = ACTIONS(3831), + [anon_sym_0x] = ACTIONS(3829), + [anon_sym_0X] = ACTIONS(3829), + [anon_sym_0o] = ACTIONS(3829), + [anon_sym_0O] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(3829), + [anon_sym_0B] = ACTIONS(3829), + [aux_sym_integer_token4] = ACTIONS(3831), + [sym_float] = ACTIONS(3829), + [anon_sym_await] = ACTIONS(3831), + [anon_sym_api] = ACTIONS(3831), + [sym_true] = ACTIONS(3831), + [sym_false] = ACTIONS(3831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3831), + [anon_sym_include] = ACTIONS(3831), + [anon_sym_DEF] = ACTIONS(3831), + [anon_sym_IF] = ACTIONS(3831), + [anon_sym_cdef] = ACTIONS(3831), + [anon_sym_cpdef] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3831), + [anon_sym_ctypedef] = ACTIONS(3831), + [anon_sym_public] = ACTIONS(3831), + [anon_sym_packed] = ACTIONS(3831), + [anon_sym_inline] = ACTIONS(3831), + [anon_sym_readonly] = ACTIONS(3831), + [anon_sym_sizeof] = ACTIONS(3831), + [sym_string_start] = ACTIONS(3829), + }, + [1569] = { + [ts_builtin_sym_end] = ACTIONS(3833), + [sym_identifier] = ACTIONS(3835), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_import] = ACTIONS(3835), + [anon_sym_cimport] = ACTIONS(3835), + [anon_sym_from] = ACTIONS(3835), + [anon_sym_LPAREN] = ACTIONS(3833), + [anon_sym_STAR] = ACTIONS(3833), + [anon_sym_print] = ACTIONS(3835), + [anon_sym_assert] = ACTIONS(3835), + [anon_sym_return] = ACTIONS(3835), + [anon_sym_del] = ACTIONS(3835), + [anon_sym_raise] = ACTIONS(3835), + [anon_sym_pass] = ACTIONS(3835), + [anon_sym_break] = ACTIONS(3835), + [anon_sym_continue] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(3835), + [anon_sym_match] = ACTIONS(3835), + [anon_sym_async] = ACTIONS(3835), + [anon_sym_for] = ACTIONS(3835), + [anon_sym_while] = ACTIONS(3835), + [anon_sym_try] = ACTIONS(3835), + [anon_sym_with] = ACTIONS(3835), + [anon_sym_def] = ACTIONS(3835), + [anon_sym_global] = ACTIONS(3835), + [anon_sym_nonlocal] = ACTIONS(3835), + [anon_sym_exec] = ACTIONS(3835), + [anon_sym_type] = ACTIONS(3835), + [anon_sym_class] = ACTIONS(3835), + [anon_sym_LBRACK] = ACTIONS(3833), + [anon_sym_AT] = ACTIONS(3833), + [anon_sym_DASH] = ACTIONS(3833), + [anon_sym_LBRACE] = ACTIONS(3833), + [anon_sym_PLUS] = ACTIONS(3833), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3833), + [anon_sym_TILDE] = ACTIONS(3833), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_lambda] = ACTIONS(3835), + [anon_sym_yield] = ACTIONS(3835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3833), + [anon_sym_None] = ACTIONS(3835), + [anon_sym_0x] = ACTIONS(3833), + [anon_sym_0X] = ACTIONS(3833), + [anon_sym_0o] = ACTIONS(3833), + [anon_sym_0O] = ACTIONS(3833), + [anon_sym_0b] = ACTIONS(3833), + [anon_sym_0B] = ACTIONS(3833), + [aux_sym_integer_token4] = ACTIONS(3835), + [sym_float] = ACTIONS(3833), + [anon_sym_await] = ACTIONS(3835), + [anon_sym_api] = ACTIONS(3835), + [sym_true] = ACTIONS(3835), + [sym_false] = ACTIONS(3835), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3835), + [anon_sym_include] = ACTIONS(3835), + [anon_sym_DEF] = ACTIONS(3835), + [anon_sym_IF] = ACTIONS(3835), + [anon_sym_cdef] = ACTIONS(3835), + [anon_sym_cpdef] = ACTIONS(3835), + [anon_sym_new] = ACTIONS(3835), + [anon_sym_ctypedef] = ACTIONS(3835), + [anon_sym_public] = ACTIONS(3835), + [anon_sym_packed] = ACTIONS(3835), + [anon_sym_inline] = ACTIONS(3835), + [anon_sym_readonly] = ACTIONS(3835), + [anon_sym_sizeof] = ACTIONS(3835), + [sym_string_start] = ACTIONS(3833), + }, + [1570] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5152), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1571] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5190), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1572] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5394), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1573] = { + [sym_identifier] = ACTIONS(3815), + [anon_sym_SEMI] = ACTIONS(3813), + [anon_sym_import] = ACTIONS(3815), + [anon_sym_cimport] = ACTIONS(3815), + [anon_sym_from] = ACTIONS(3815), + [anon_sym_LPAREN] = ACTIONS(3813), + [anon_sym_STAR] = ACTIONS(3813), + [anon_sym_print] = ACTIONS(3815), + [anon_sym_assert] = ACTIONS(3815), + [anon_sym_return] = ACTIONS(3815), + [anon_sym_del] = ACTIONS(3815), + [anon_sym_raise] = ACTIONS(3815), + [anon_sym_pass] = ACTIONS(3815), + [anon_sym_break] = ACTIONS(3815), + [anon_sym_continue] = ACTIONS(3815), + [anon_sym_if] = ACTIONS(3815), + [anon_sym_match] = ACTIONS(3815), + [anon_sym_async] = ACTIONS(3815), + [anon_sym_for] = ACTIONS(3815), + [anon_sym_while] = ACTIONS(3815), + [anon_sym_try] = ACTIONS(3815), + [anon_sym_with] = ACTIONS(3815), + [anon_sym_def] = ACTIONS(3815), + [anon_sym_global] = ACTIONS(3815), + [anon_sym_nonlocal] = ACTIONS(3815), + [anon_sym_exec] = ACTIONS(3815), + [anon_sym_type] = ACTIONS(3815), + [anon_sym_class] = ACTIONS(3815), + [anon_sym_LBRACK] = ACTIONS(3813), + [anon_sym_AT] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_not] = ACTIONS(3815), + [anon_sym_AMP] = ACTIONS(3813), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(3813), + [anon_sym_lambda] = ACTIONS(3815), + [anon_sym_yield] = ACTIONS(3815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3813), + [anon_sym_None] = ACTIONS(3815), + [anon_sym_0x] = ACTIONS(3813), + [anon_sym_0X] = ACTIONS(3813), + [anon_sym_0o] = ACTIONS(3813), + [anon_sym_0O] = ACTIONS(3813), + [anon_sym_0b] = ACTIONS(3813), + [anon_sym_0B] = ACTIONS(3813), + [aux_sym_integer_token4] = ACTIONS(3815), + [sym_float] = ACTIONS(3813), + [anon_sym_await] = ACTIONS(3815), + [anon_sym_api] = ACTIONS(3815), + [sym_true] = ACTIONS(3815), + [sym_false] = ACTIONS(3815), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3815), + [anon_sym_include] = ACTIONS(3815), + [anon_sym_DEF] = ACTIONS(3815), + [anon_sym_IF] = ACTIONS(3815), + [anon_sym_cdef] = ACTIONS(3815), + [anon_sym_cpdef] = ACTIONS(3815), + [anon_sym_new] = ACTIONS(3815), + [anon_sym_ctypedef] = ACTIONS(3815), + [anon_sym_public] = ACTIONS(3815), + [anon_sym_packed] = ACTIONS(3815), + [anon_sym_inline] = ACTIONS(3815), + [anon_sym_readonly] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(3815), + [sym__dedent] = ACTIONS(3813), + [sym_string_start] = ACTIONS(3813), + }, + [1574] = { + [sym_identifier] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3839), + [anon_sym_import] = ACTIONS(3837), + [anon_sym_cimport] = ACTIONS(3837), + [anon_sym_from] = ACTIONS(3837), + [anon_sym_LPAREN] = ACTIONS(3839), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_print] = ACTIONS(3837), + [anon_sym_assert] = ACTIONS(3837), + [anon_sym_return] = ACTIONS(3837), + [anon_sym_del] = ACTIONS(3837), + [anon_sym_raise] = ACTIONS(3837), + [anon_sym_pass] = ACTIONS(3837), + [anon_sym_break] = ACTIONS(3837), + [anon_sym_continue] = ACTIONS(3837), + [anon_sym_if] = ACTIONS(3837), + [anon_sym_match] = ACTIONS(3837), + [anon_sym_async] = ACTIONS(3837), + [anon_sym_for] = ACTIONS(3837), + [anon_sym_while] = ACTIONS(3837), + [anon_sym_try] = ACTIONS(3837), + [anon_sym_with] = ACTIONS(3837), + [anon_sym_def] = ACTIONS(3837), + [anon_sym_global] = ACTIONS(3837), + [anon_sym_nonlocal] = ACTIONS(3837), + [anon_sym_exec] = ACTIONS(3837), + [anon_sym_type] = ACTIONS(3837), + [anon_sym_class] = ACTIONS(3837), + [anon_sym_LBRACK] = ACTIONS(3839), + [anon_sym_AT] = ACTIONS(3839), + [anon_sym_DASH] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3839), + [anon_sym_PLUS] = ACTIONS(3839), + [anon_sym_not] = ACTIONS(3837), + [anon_sym_AMP] = ACTIONS(3839), + [anon_sym_TILDE] = ACTIONS(3839), + [anon_sym_LT] = ACTIONS(3839), + [anon_sym_lambda] = ACTIONS(3837), + [anon_sym_yield] = ACTIONS(3837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3839), + [anon_sym_None] = ACTIONS(3837), + [anon_sym_0x] = ACTIONS(3839), + [anon_sym_0X] = ACTIONS(3839), + [anon_sym_0o] = ACTIONS(3839), + [anon_sym_0O] = ACTIONS(3839), + [anon_sym_0b] = ACTIONS(3839), + [anon_sym_0B] = ACTIONS(3839), + [aux_sym_integer_token4] = ACTIONS(3837), + [sym_float] = ACTIONS(3839), + [anon_sym_await] = ACTIONS(3837), + [anon_sym_api] = ACTIONS(3837), + [sym_true] = ACTIONS(3837), + [sym_false] = ACTIONS(3837), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3837), + [anon_sym_include] = ACTIONS(3837), + [anon_sym_DEF] = ACTIONS(3837), + [anon_sym_IF] = ACTIONS(3837), + [anon_sym_cdef] = ACTIONS(3837), + [anon_sym_cpdef] = ACTIONS(3837), + [anon_sym_new] = ACTIONS(3837), + [anon_sym_ctypedef] = ACTIONS(3837), + [anon_sym_public] = ACTIONS(3837), + [anon_sym_packed] = ACTIONS(3837), + [anon_sym_inline] = ACTIONS(3837), + [anon_sym_readonly] = ACTIONS(3837), + [anon_sym_sizeof] = ACTIONS(3837), + [sym__dedent] = ACTIONS(3839), + [sym_string_start] = ACTIONS(3839), + }, + [1575] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5191), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1576] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3131), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1577] = { + [ts_builtin_sym_end] = ACTIONS(3839), + [sym_identifier] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3839), + [anon_sym_import] = ACTIONS(3837), + [anon_sym_cimport] = ACTIONS(3837), + [anon_sym_from] = ACTIONS(3837), + [anon_sym_LPAREN] = ACTIONS(3839), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_print] = ACTIONS(3837), + [anon_sym_assert] = ACTIONS(3837), + [anon_sym_return] = ACTIONS(3837), + [anon_sym_del] = ACTIONS(3837), + [anon_sym_raise] = ACTIONS(3837), + [anon_sym_pass] = ACTIONS(3837), + [anon_sym_break] = ACTIONS(3837), + [anon_sym_continue] = ACTIONS(3837), + [anon_sym_if] = ACTIONS(3837), + [anon_sym_match] = ACTIONS(3837), + [anon_sym_async] = ACTIONS(3837), + [anon_sym_for] = ACTIONS(3837), + [anon_sym_while] = ACTIONS(3837), + [anon_sym_try] = ACTIONS(3837), + [anon_sym_with] = ACTIONS(3837), + [anon_sym_def] = ACTIONS(3837), + [anon_sym_global] = ACTIONS(3837), + [anon_sym_nonlocal] = ACTIONS(3837), + [anon_sym_exec] = ACTIONS(3837), + [anon_sym_type] = ACTIONS(3837), + [anon_sym_class] = ACTIONS(3837), + [anon_sym_LBRACK] = ACTIONS(3839), + [anon_sym_AT] = ACTIONS(3839), + [anon_sym_DASH] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3839), + [anon_sym_PLUS] = ACTIONS(3839), + [anon_sym_not] = ACTIONS(3837), + [anon_sym_AMP] = ACTIONS(3839), + [anon_sym_TILDE] = ACTIONS(3839), + [anon_sym_LT] = ACTIONS(3839), + [anon_sym_lambda] = ACTIONS(3837), + [anon_sym_yield] = ACTIONS(3837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3839), + [anon_sym_None] = ACTIONS(3837), + [anon_sym_0x] = ACTIONS(3839), + [anon_sym_0X] = ACTIONS(3839), + [anon_sym_0o] = ACTIONS(3839), + [anon_sym_0O] = ACTIONS(3839), + [anon_sym_0b] = ACTIONS(3839), + [anon_sym_0B] = ACTIONS(3839), + [aux_sym_integer_token4] = ACTIONS(3837), + [sym_float] = ACTIONS(3839), + [anon_sym_await] = ACTIONS(3837), + [anon_sym_api] = ACTIONS(3837), + [sym_true] = ACTIONS(3837), + [sym_false] = ACTIONS(3837), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3837), + [anon_sym_include] = ACTIONS(3837), + [anon_sym_DEF] = ACTIONS(3837), + [anon_sym_IF] = ACTIONS(3837), + [anon_sym_cdef] = ACTIONS(3837), + [anon_sym_cpdef] = ACTIONS(3837), + [anon_sym_new] = ACTIONS(3837), + [anon_sym_ctypedef] = ACTIONS(3837), + [anon_sym_public] = ACTIONS(3837), + [anon_sym_packed] = ACTIONS(3837), + [anon_sym_inline] = ACTIONS(3837), + [anon_sym_readonly] = ACTIONS(3837), + [anon_sym_sizeof] = ACTIONS(3837), + [sym_string_start] = ACTIONS(3839), + }, + [1578] = { + [sym_identifier] = ACTIONS(3841), + [anon_sym_SEMI] = ACTIONS(3843), + [anon_sym_import] = ACTIONS(3841), + [anon_sym_cimport] = ACTIONS(3841), + [anon_sym_from] = ACTIONS(3841), + [anon_sym_LPAREN] = ACTIONS(3843), + [anon_sym_STAR] = ACTIONS(3843), + [anon_sym_print] = ACTIONS(3841), + [anon_sym_assert] = ACTIONS(3841), + [anon_sym_return] = ACTIONS(3841), + [anon_sym_del] = ACTIONS(3841), + [anon_sym_raise] = ACTIONS(3841), + [anon_sym_pass] = ACTIONS(3841), + [anon_sym_break] = ACTIONS(3841), + [anon_sym_continue] = ACTIONS(3841), + [anon_sym_if] = ACTIONS(3841), + [anon_sym_match] = ACTIONS(3841), + [anon_sym_async] = ACTIONS(3841), + [anon_sym_for] = ACTIONS(3841), + [anon_sym_while] = ACTIONS(3841), + [anon_sym_try] = ACTIONS(3841), + [anon_sym_with] = ACTIONS(3841), + [anon_sym_def] = ACTIONS(3841), + [anon_sym_global] = ACTIONS(3841), + [anon_sym_nonlocal] = ACTIONS(3841), + [anon_sym_exec] = ACTIONS(3841), + [anon_sym_type] = ACTIONS(3841), + [anon_sym_class] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(3843), + [anon_sym_AT] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3843), + [anon_sym_LBRACE] = ACTIONS(3843), + [anon_sym_PLUS] = ACTIONS(3843), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_AMP] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_LT] = ACTIONS(3843), + [anon_sym_lambda] = ACTIONS(3841), + [anon_sym_yield] = ACTIONS(3841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3843), + [anon_sym_None] = ACTIONS(3841), + [anon_sym_0x] = ACTIONS(3843), + [anon_sym_0X] = ACTIONS(3843), + [anon_sym_0o] = ACTIONS(3843), + [anon_sym_0O] = ACTIONS(3843), + [anon_sym_0b] = ACTIONS(3843), + [anon_sym_0B] = ACTIONS(3843), + [aux_sym_integer_token4] = ACTIONS(3841), + [sym_float] = ACTIONS(3843), + [anon_sym_await] = ACTIONS(3841), + [anon_sym_api] = ACTIONS(3841), + [sym_true] = ACTIONS(3841), + [sym_false] = ACTIONS(3841), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3841), + [anon_sym_include] = ACTIONS(3841), + [anon_sym_DEF] = ACTIONS(3841), + [anon_sym_IF] = ACTIONS(3841), + [anon_sym_cdef] = ACTIONS(3841), + [anon_sym_cpdef] = ACTIONS(3841), + [anon_sym_new] = ACTIONS(3841), + [anon_sym_ctypedef] = ACTIONS(3841), + [anon_sym_public] = ACTIONS(3841), + [anon_sym_packed] = ACTIONS(3841), + [anon_sym_inline] = ACTIONS(3841), + [anon_sym_readonly] = ACTIONS(3841), + [anon_sym_sizeof] = ACTIONS(3841), + [sym__dedent] = ACTIONS(3843), + [sym_string_start] = ACTIONS(3843), + }, + [1579] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(4854), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1580] = { + [sym_identifier] = ACTIONS(3845), + [anon_sym_SEMI] = ACTIONS(3847), + [anon_sym_import] = ACTIONS(3845), + [anon_sym_cimport] = ACTIONS(3845), + [anon_sym_from] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_print] = ACTIONS(3845), + [anon_sym_assert] = ACTIONS(3845), + [anon_sym_return] = ACTIONS(3845), + [anon_sym_del] = ACTIONS(3845), + [anon_sym_raise] = ACTIONS(3845), + [anon_sym_pass] = ACTIONS(3845), + [anon_sym_break] = ACTIONS(3845), + [anon_sym_continue] = ACTIONS(3845), + [anon_sym_if] = ACTIONS(3845), + [anon_sym_match] = ACTIONS(3845), + [anon_sym_async] = ACTIONS(3845), + [anon_sym_for] = ACTIONS(3845), + [anon_sym_while] = ACTIONS(3845), + [anon_sym_try] = ACTIONS(3845), + [anon_sym_with] = ACTIONS(3845), + [anon_sym_def] = ACTIONS(3845), + [anon_sym_global] = ACTIONS(3845), + [anon_sym_nonlocal] = ACTIONS(3845), + [anon_sym_exec] = ACTIONS(3845), + [anon_sym_type] = ACTIONS(3845), + [anon_sym_class] = ACTIONS(3845), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_AT] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_not] = ACTIONS(3845), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3847), + [anon_sym_lambda] = ACTIONS(3845), + [anon_sym_yield] = ACTIONS(3845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3847), + [anon_sym_None] = ACTIONS(3845), + [anon_sym_0x] = ACTIONS(3847), + [anon_sym_0X] = ACTIONS(3847), + [anon_sym_0o] = ACTIONS(3847), + [anon_sym_0O] = ACTIONS(3847), + [anon_sym_0b] = ACTIONS(3847), + [anon_sym_0B] = ACTIONS(3847), + [aux_sym_integer_token4] = ACTIONS(3845), + [sym_float] = ACTIONS(3847), + [anon_sym_await] = ACTIONS(3845), + [anon_sym_api] = ACTIONS(3845), + [sym_true] = ACTIONS(3845), + [sym_false] = ACTIONS(3845), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3845), + [anon_sym_include] = ACTIONS(3845), + [anon_sym_DEF] = ACTIONS(3845), + [anon_sym_IF] = ACTIONS(3845), + [anon_sym_cdef] = ACTIONS(3845), + [anon_sym_cpdef] = ACTIONS(3845), + [anon_sym_new] = ACTIONS(3845), + [anon_sym_ctypedef] = ACTIONS(3845), + [anon_sym_public] = ACTIONS(3845), + [anon_sym_packed] = ACTIONS(3845), + [anon_sym_inline] = ACTIONS(3845), + [anon_sym_readonly] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3845), + [sym__dedent] = ACTIONS(3847), + [sym_string_start] = ACTIONS(3847), + }, + [1581] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3409), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1582] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5192), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1583] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1584] = { + [ts_builtin_sym_end] = ACTIONS(3805), + [sym_identifier] = ACTIONS(3801), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_import] = ACTIONS(3801), + [anon_sym_cimport] = ACTIONS(3801), + [anon_sym_from] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3805), + [anon_sym_STAR] = ACTIONS(3805), + [anon_sym_print] = ACTIONS(3801), + [anon_sym_assert] = ACTIONS(3801), + [anon_sym_return] = ACTIONS(3801), + [anon_sym_del] = ACTIONS(3801), + [anon_sym_raise] = ACTIONS(3801), + [anon_sym_pass] = ACTIONS(3801), + [anon_sym_break] = ACTIONS(3801), + [anon_sym_continue] = ACTIONS(3801), + [anon_sym_if] = ACTIONS(3801), + [anon_sym_match] = ACTIONS(3801), + [anon_sym_async] = ACTIONS(3801), + [anon_sym_for] = ACTIONS(3801), + [anon_sym_while] = ACTIONS(3801), + [anon_sym_try] = ACTIONS(3801), + [anon_sym_with] = ACTIONS(3801), + [anon_sym_def] = ACTIONS(3801), + [anon_sym_global] = ACTIONS(3801), + [anon_sym_nonlocal] = ACTIONS(3801), + [anon_sym_exec] = ACTIONS(3801), + [anon_sym_type] = ACTIONS(3801), + [anon_sym_class] = ACTIONS(3801), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_AT] = ACTIONS(3805), + [anon_sym_DASH] = ACTIONS(3805), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_PLUS] = ACTIONS(3805), + [anon_sym_not] = ACTIONS(3801), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_TILDE] = ACTIONS(3805), + [anon_sym_LT] = ACTIONS(3805), + [anon_sym_lambda] = ACTIONS(3801), + [anon_sym_yield] = ACTIONS(3801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3805), + [anon_sym_None] = ACTIONS(3801), + [anon_sym_0x] = ACTIONS(3805), + [anon_sym_0X] = ACTIONS(3805), + [anon_sym_0o] = ACTIONS(3805), + [anon_sym_0O] = ACTIONS(3805), + [anon_sym_0b] = ACTIONS(3805), + [anon_sym_0B] = ACTIONS(3805), + [aux_sym_integer_token4] = ACTIONS(3801), + [sym_float] = ACTIONS(3805), + [anon_sym_await] = ACTIONS(3801), + [anon_sym_api] = ACTIONS(3801), + [sym_true] = ACTIONS(3801), + [sym_false] = ACTIONS(3801), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3801), + [anon_sym_include] = ACTIONS(3801), + [anon_sym_DEF] = ACTIONS(3801), + [anon_sym_IF] = ACTIONS(3801), + [anon_sym_cdef] = ACTIONS(3801), + [anon_sym_cpdef] = ACTIONS(3801), + [anon_sym_new] = ACTIONS(3801), + [anon_sym_ctypedef] = ACTIONS(3801), + [anon_sym_public] = ACTIONS(3801), + [anon_sym_packed] = ACTIONS(3801), + [anon_sym_inline] = ACTIONS(3801), + [anon_sym_readonly] = ACTIONS(3801), + [anon_sym_sizeof] = ACTIONS(3801), + [sym_string_start] = ACTIONS(3805), + }, + [1585] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5194), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1586] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3341), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1587] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5197), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1588] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5038), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1589] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5044), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1590] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5355), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1591] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5185), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1592] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4916), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1593] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5360), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1594] = { + [ts_builtin_sym_end] = ACTIONS(3829), + [sym_identifier] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3829), + [anon_sym_import] = ACTIONS(3831), + [anon_sym_cimport] = ACTIONS(3831), + [anon_sym_from] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_print] = ACTIONS(3831), + [anon_sym_assert] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_del] = ACTIONS(3831), + [anon_sym_raise] = ACTIONS(3831), + [anon_sym_pass] = ACTIONS(3831), + [anon_sym_break] = ACTIONS(3831), + [anon_sym_continue] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_match] = ACTIONS(3831), + [anon_sym_async] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_try] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3831), + [anon_sym_def] = ACTIONS(3831), + [anon_sym_global] = ACTIONS(3831), + [anon_sym_nonlocal] = ACTIONS(3831), + [anon_sym_exec] = ACTIONS(3831), + [anon_sym_type] = ACTIONS(3831), + [anon_sym_class] = ACTIONS(3831), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_AT] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_not] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3829), + [anon_sym_LT] = ACTIONS(3829), + [anon_sym_lambda] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3829), + [anon_sym_None] = ACTIONS(3831), + [anon_sym_0x] = ACTIONS(3829), + [anon_sym_0X] = ACTIONS(3829), + [anon_sym_0o] = ACTIONS(3829), + [anon_sym_0O] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(3829), + [anon_sym_0B] = ACTIONS(3829), + [aux_sym_integer_token4] = ACTIONS(3831), + [sym_float] = ACTIONS(3829), + [anon_sym_await] = ACTIONS(3831), + [anon_sym_api] = ACTIONS(3831), + [sym_true] = ACTIONS(3831), + [sym_false] = ACTIONS(3831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3831), + [anon_sym_include] = ACTIONS(3831), + [anon_sym_DEF] = ACTIONS(3831), + [anon_sym_IF] = ACTIONS(3831), + [anon_sym_cdef] = ACTIONS(3831), + [anon_sym_cpdef] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3831), + [anon_sym_ctypedef] = ACTIONS(3831), + [anon_sym_public] = ACTIONS(3831), + [anon_sym_packed] = ACTIONS(3831), + [anon_sym_inline] = ACTIONS(3831), + [anon_sym_readonly] = ACTIONS(3831), + [anon_sym_sizeof] = ACTIONS(3831), + [sym_string_start] = ACTIONS(3829), + }, + [1595] = { + [sym_identifier] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3269), + [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_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), + [anon_sym_0x] = ACTIONS(3269), + [anon_sym_0X] = ACTIONS(3269), + [anon_sym_0o] = ACTIONS(3269), + [anon_sym_0O] = ACTIONS(3269), + [anon_sym_0b] = ACTIONS(3269), + [anon_sym_0B] = ACTIONS(3269), + [aux_sym_integer_token4] = 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), + }, + [1596] = { + [sym_identifier] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_cimport] = ACTIONS(3275), + [anon_sym_from] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_print] = ACTIONS(3275), + [anon_sym_assert] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_del] = ACTIONS(3275), + [anon_sym_raise] = ACTIONS(3275), + [anon_sym_pass] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_match] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_def] = ACTIONS(3275), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_nonlocal] = ACTIONS(3275), + [anon_sym_exec] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_not] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_lambda] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3273), + [anon_sym_None] = ACTIONS(3275), + [anon_sym_0x] = ACTIONS(3273), + [anon_sym_0X] = ACTIONS(3273), + [anon_sym_0o] = ACTIONS(3273), + [anon_sym_0O] = ACTIONS(3273), + [anon_sym_0b] = ACTIONS(3273), + [anon_sym_0B] = ACTIONS(3273), + [aux_sym_integer_token4] = ACTIONS(3275), + [sym_float] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_api] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3275), + [anon_sym_include] = ACTIONS(3275), + [anon_sym_DEF] = ACTIONS(3275), + [anon_sym_IF] = ACTIONS(3275), + [anon_sym_cdef] = ACTIONS(3275), + [anon_sym_cpdef] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_ctypedef] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_packed] = ACTIONS(3275), + [anon_sym_inline] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(3275), + [sym__dedent] = ACTIONS(3273), + [sym_string_start] = ACTIONS(3273), + }, + [1597] = { + [sym_identifier] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_cimport] = ACTIONS(3295), + [anon_sym_from] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_print] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_del] = ACTIONS(3295), + [anon_sym_raise] = ACTIONS(3295), + [anon_sym_pass] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_match] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_def] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_nonlocal] = ACTIONS(3295), + [anon_sym_exec] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_not] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_lambda] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_None] = ACTIONS(3295), + [anon_sym_0x] = ACTIONS(3293), + [anon_sym_0X] = ACTIONS(3293), + [anon_sym_0o] = ACTIONS(3293), + [anon_sym_0O] = ACTIONS(3293), + [anon_sym_0b] = ACTIONS(3293), + [anon_sym_0B] = ACTIONS(3293), + [aux_sym_integer_token4] = ACTIONS(3295), + [sym_float] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_api] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3295), + [anon_sym_include] = ACTIONS(3295), + [anon_sym_DEF] = ACTIONS(3295), + [anon_sym_IF] = ACTIONS(3295), + [anon_sym_cdef] = ACTIONS(3295), + [anon_sym_cpdef] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_ctypedef] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_packed] = ACTIONS(3295), + [anon_sym_inline] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_sizeof] = ACTIONS(3295), + [sym__dedent] = ACTIONS(3293), + [sym_string_start] = ACTIONS(3293), + }, + [1598] = { + [sym_identifier] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_cimport] = ACTIONS(3311), + [anon_sym_from] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_print] = ACTIONS(3311), + [anon_sym_assert] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_del] = ACTIONS(3311), + [anon_sym_raise] = ACTIONS(3311), + [anon_sym_pass] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_def] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_nonlocal] = ACTIONS(3311), + [anon_sym_exec] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_not] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_lambda] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3309), + [anon_sym_None] = ACTIONS(3311), + [anon_sym_0x] = ACTIONS(3309), + [anon_sym_0X] = ACTIONS(3309), + [anon_sym_0o] = ACTIONS(3309), + [anon_sym_0O] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(3309), + [anon_sym_0B] = ACTIONS(3309), + [aux_sym_integer_token4] = ACTIONS(3311), + [sym_float] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_api] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3311), + [anon_sym_include] = ACTIONS(3311), + [anon_sym_DEF] = ACTIONS(3311), + [anon_sym_IF] = ACTIONS(3311), + [anon_sym_cdef] = ACTIONS(3311), + [anon_sym_cpdef] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_ctypedef] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_packed] = ACTIONS(3311), + [anon_sym_inline] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_sizeof] = ACTIONS(3311), + [sym__dedent] = ACTIONS(3309), + [sym_string_start] = ACTIONS(3309), + }, + [1599] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4769), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1600] = { + [sym_identifier] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3313), + [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_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), + [anon_sym_0x] = ACTIONS(3313), + [anon_sym_0X] = ACTIONS(3313), + [anon_sym_0o] = ACTIONS(3313), + [anon_sym_0O] = ACTIONS(3313), + [anon_sym_0b] = ACTIONS(3313), + [anon_sym_0B] = ACTIONS(3313), + [aux_sym_integer_token4] = 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), + }, + [1601] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4770), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1602] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4771), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1603] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3252), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1604] = { + [sym_identifier] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym_import] = ACTIONS(3603), + [anon_sym_cimport] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_print] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_del] = ACTIONS(3603), + [anon_sym_raise] = ACTIONS(3603), + [anon_sym_pass] = ACTIONS(3603), + [anon_sym_break] = ACTIONS(3603), + [anon_sym_continue] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_async] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_with] = ACTIONS(3603), + [anon_sym_def] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_nonlocal] = ACTIONS(3603), + [anon_sym_exec] = ACTIONS(3603), + [anon_sym_type] = ACTIONS(3603), + [anon_sym_class] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_AT] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_PLUS] = ACTIONS(3601), + [anon_sym_not] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_lambda] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [anon_sym_None] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3601), + [anon_sym_0X] = ACTIONS(3601), + [anon_sym_0o] = ACTIONS(3601), + [anon_sym_0O] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3601), + [anon_sym_0B] = ACTIONS(3601), + [aux_sym_integer_token4] = ACTIONS(3603), + [sym_float] = ACTIONS(3601), + [anon_sym_await] = ACTIONS(3603), + [anon_sym_api] = ACTIONS(3603), + [sym_true] = ACTIONS(3603), + [sym_false] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3603), + [anon_sym_include] = ACTIONS(3603), + [anon_sym_DEF] = ACTIONS(3603), + [anon_sym_IF] = ACTIONS(3603), + [anon_sym_cdef] = ACTIONS(3603), + [anon_sym_cpdef] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_ctypedef] = ACTIONS(3603), + [anon_sym_public] = ACTIONS(3603), + [anon_sym_packed] = ACTIONS(3603), + [anon_sym_inline] = ACTIONS(3603), + [anon_sym_readonly] = ACTIONS(3603), + [anon_sym_sizeof] = ACTIONS(3603), + [sym__dedent] = ACTIONS(3601), + [sym_string_start] = ACTIONS(3601), + }, + [1605] = { + [sym_identifier] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_cimport] = ACTIONS(3607), + [anon_sym_from] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_STAR] = ACTIONS(3605), + [anon_sym_print] = ACTIONS(3607), + [anon_sym_assert] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_del] = ACTIONS(3607), + [anon_sym_raise] = ACTIONS(3607), + [anon_sym_pass] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_match] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_def] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_nonlocal] = ACTIONS(3607), + [anon_sym_exec] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_AT] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_not] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_LT] = ACTIONS(3605), + [anon_sym_lambda] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [anon_sym_None] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3605), + [anon_sym_0X] = ACTIONS(3605), + [anon_sym_0o] = ACTIONS(3605), + [anon_sym_0O] = ACTIONS(3605), + [anon_sym_0b] = ACTIONS(3605), + [anon_sym_0B] = ACTIONS(3605), + [aux_sym_integer_token4] = ACTIONS(3607), + [sym_float] = ACTIONS(3605), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_api] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3607), + [anon_sym_include] = ACTIONS(3607), + [anon_sym_DEF] = ACTIONS(3607), + [anon_sym_IF] = ACTIONS(3607), + [anon_sym_cdef] = ACTIONS(3607), + [anon_sym_cpdef] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_ctypedef] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_packed] = ACTIONS(3607), + [anon_sym_inline] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_sizeof] = ACTIONS(3607), + [sym__dedent] = ACTIONS(3605), + [sym_string_start] = ACTIONS(3605), + }, + [1606] = { + [sym_identifier] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3629), + [anon_sym_import] = ACTIONS(3631), + [anon_sym_cimport] = ACTIONS(3631), + [anon_sym_from] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3629), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_print] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_del] = ACTIONS(3631), + [anon_sym_raise] = ACTIONS(3631), + [anon_sym_pass] = ACTIONS(3631), + [anon_sym_break] = ACTIONS(3631), + [anon_sym_continue] = ACTIONS(3631), + [anon_sym_if] = ACTIONS(3631), + [anon_sym_match] = ACTIONS(3631), + [anon_sym_async] = ACTIONS(3631), + [anon_sym_for] = ACTIONS(3631), + [anon_sym_while] = ACTIONS(3631), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_with] = ACTIONS(3631), + [anon_sym_def] = ACTIONS(3631), + [anon_sym_global] = ACTIONS(3631), + [anon_sym_nonlocal] = ACTIONS(3631), + [anon_sym_exec] = ACTIONS(3631), + [anon_sym_type] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3629), + [anon_sym_AT] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_PLUS] = ACTIONS(3629), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_lambda] = ACTIONS(3631), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), + [anon_sym_None] = ACTIONS(3631), + [anon_sym_0x] = ACTIONS(3629), + [anon_sym_0X] = ACTIONS(3629), + [anon_sym_0o] = ACTIONS(3629), + [anon_sym_0O] = ACTIONS(3629), + [anon_sym_0b] = ACTIONS(3629), + [anon_sym_0B] = ACTIONS(3629), + [aux_sym_integer_token4] = ACTIONS(3631), + [sym_float] = ACTIONS(3629), + [anon_sym_await] = ACTIONS(3631), + [anon_sym_api] = ACTIONS(3631), + [sym_true] = ACTIONS(3631), + [sym_false] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3631), + [anon_sym_include] = ACTIONS(3631), + [anon_sym_DEF] = ACTIONS(3631), + [anon_sym_IF] = ACTIONS(3631), + [anon_sym_cdef] = ACTIONS(3631), + [anon_sym_cpdef] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_ctypedef] = ACTIONS(3631), + [anon_sym_public] = ACTIONS(3631), + [anon_sym_packed] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym_readonly] = ACTIONS(3631), + [anon_sym_sizeof] = ACTIONS(3631), + [sym__dedent] = ACTIONS(3629), + [sym_string_start] = ACTIONS(3629), + }, + [1607] = { + [sym_identifier] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3713), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_cimport] = ACTIONS(3715), + [anon_sym_from] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(3715), + [anon_sym_assert] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_del] = ACTIONS(3715), + [anon_sym_raise] = ACTIONS(3715), + [anon_sym_pass] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_match] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_def] = ACTIONS(3715), + [anon_sym_global] = ACTIONS(3715), + [anon_sym_nonlocal] = ACTIONS(3715), + [anon_sym_exec] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_AT] = ACTIONS(3713), + [anon_sym_DASH] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3713), + [anon_sym_PLUS] = ACTIONS(3713), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3713), + [anon_sym_TILDE] = ACTIONS(3713), + [anon_sym_LT] = ACTIONS(3713), + [anon_sym_lambda] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3713), + [anon_sym_None] = ACTIONS(3715), + [anon_sym_0x] = ACTIONS(3713), + [anon_sym_0X] = ACTIONS(3713), + [anon_sym_0o] = ACTIONS(3713), + [anon_sym_0O] = ACTIONS(3713), + [anon_sym_0b] = ACTIONS(3713), + [anon_sym_0B] = ACTIONS(3713), + [aux_sym_integer_token4] = ACTIONS(3715), + [sym_float] = ACTIONS(3713), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_api] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3715), + [anon_sym_include] = ACTIONS(3715), + [anon_sym_DEF] = ACTIONS(3715), + [anon_sym_IF] = ACTIONS(3715), + [anon_sym_cdef] = ACTIONS(3715), + [anon_sym_cpdef] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_ctypedef] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_packed] = ACTIONS(3715), + [anon_sym_inline] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_sizeof] = ACTIONS(3715), + [sym__dedent] = ACTIONS(3713), + [sym_string_start] = ACTIONS(3713), + }, + [1608] = { + [sym_identifier] = ACTIONS(3783), + [anon_sym_SEMI] = ACTIONS(3781), + [anon_sym_import] = ACTIONS(3783), + [anon_sym_cimport] = ACTIONS(3783), + [anon_sym_from] = ACTIONS(3783), + [anon_sym_LPAREN] = ACTIONS(3781), + [anon_sym_STAR] = ACTIONS(3781), + [anon_sym_print] = ACTIONS(3783), + [anon_sym_assert] = ACTIONS(3783), + [anon_sym_return] = ACTIONS(3783), + [anon_sym_del] = ACTIONS(3783), + [anon_sym_raise] = ACTIONS(3783), + [anon_sym_pass] = ACTIONS(3783), + [anon_sym_break] = ACTIONS(3783), + [anon_sym_continue] = ACTIONS(3783), + [anon_sym_if] = ACTIONS(3783), + [anon_sym_match] = ACTIONS(3783), + [anon_sym_async] = ACTIONS(3783), + [anon_sym_for] = ACTIONS(3783), + [anon_sym_while] = ACTIONS(3783), + [anon_sym_try] = ACTIONS(3783), + [anon_sym_with] = ACTIONS(3783), + [anon_sym_def] = ACTIONS(3783), + [anon_sym_global] = ACTIONS(3783), + [anon_sym_nonlocal] = ACTIONS(3783), + [anon_sym_exec] = ACTIONS(3783), + [anon_sym_type] = ACTIONS(3783), + [anon_sym_class] = ACTIONS(3783), + [anon_sym_LBRACK] = ACTIONS(3781), + [anon_sym_AT] = ACTIONS(3781), + [anon_sym_DASH] = ACTIONS(3781), + [anon_sym_LBRACE] = ACTIONS(3781), + [anon_sym_PLUS] = ACTIONS(3781), + [anon_sym_not] = ACTIONS(3783), + [anon_sym_AMP] = ACTIONS(3781), + [anon_sym_TILDE] = ACTIONS(3781), + [anon_sym_LT] = ACTIONS(3781), + [anon_sym_lambda] = ACTIONS(3783), + [anon_sym_yield] = ACTIONS(3783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3781), + [anon_sym_None] = ACTIONS(3783), + [anon_sym_0x] = ACTIONS(3781), + [anon_sym_0X] = ACTIONS(3781), + [anon_sym_0o] = ACTIONS(3781), + [anon_sym_0O] = ACTIONS(3781), + [anon_sym_0b] = ACTIONS(3781), + [anon_sym_0B] = ACTIONS(3781), + [aux_sym_integer_token4] = ACTIONS(3783), + [sym_float] = ACTIONS(3781), + [anon_sym_await] = ACTIONS(3783), + [anon_sym_api] = ACTIONS(3783), + [sym_true] = ACTIONS(3783), + [sym_false] = ACTIONS(3783), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3783), + [anon_sym_include] = ACTIONS(3783), + [anon_sym_DEF] = ACTIONS(3783), + [anon_sym_IF] = ACTIONS(3783), + [anon_sym_cdef] = ACTIONS(3783), + [anon_sym_cpdef] = ACTIONS(3783), + [anon_sym_new] = ACTIONS(3783), + [anon_sym_ctypedef] = ACTIONS(3783), + [anon_sym_public] = ACTIONS(3783), + [anon_sym_packed] = ACTIONS(3783), + [anon_sym_inline] = ACTIONS(3783), + [anon_sym_readonly] = ACTIONS(3783), + [anon_sym_sizeof] = ACTIONS(3783), + [sym__dedent] = ACTIONS(3781), + [sym_string_start] = ACTIONS(3781), + }, + [1609] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4772), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1610] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3304), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1611] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4773), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1612] = { + [ts_builtin_sym_end] = ACTIONS(3851), + [sym_identifier] = ACTIONS(3853), + [anon_sym_SEMI] = ACTIONS(3851), + [anon_sym_import] = ACTIONS(3853), + [anon_sym_cimport] = ACTIONS(3853), + [anon_sym_from] = ACTIONS(3853), + [anon_sym_LPAREN] = ACTIONS(3851), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_print] = ACTIONS(3853), + [anon_sym_assert] = ACTIONS(3853), + [anon_sym_return] = ACTIONS(3853), + [anon_sym_del] = ACTIONS(3853), + [anon_sym_raise] = ACTIONS(3853), + [anon_sym_pass] = ACTIONS(3853), + [anon_sym_break] = ACTIONS(3853), + [anon_sym_continue] = ACTIONS(3853), + [anon_sym_if] = ACTIONS(3853), + [anon_sym_match] = ACTIONS(3853), + [anon_sym_async] = ACTIONS(3853), + [anon_sym_for] = ACTIONS(3853), + [anon_sym_while] = ACTIONS(3853), + [anon_sym_try] = ACTIONS(3853), + [anon_sym_with] = ACTIONS(3853), + [anon_sym_def] = ACTIONS(3853), + [anon_sym_global] = ACTIONS(3853), + [anon_sym_nonlocal] = ACTIONS(3853), + [anon_sym_exec] = ACTIONS(3853), + [anon_sym_type] = ACTIONS(3853), + [anon_sym_class] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3851), + [anon_sym_AT] = ACTIONS(3851), + [anon_sym_DASH] = ACTIONS(3851), + [anon_sym_LBRACE] = ACTIONS(3851), + [anon_sym_PLUS] = ACTIONS(3851), + [anon_sym_not] = ACTIONS(3853), + [anon_sym_AMP] = ACTIONS(3851), + [anon_sym_TILDE] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_lambda] = ACTIONS(3853), + [anon_sym_yield] = ACTIONS(3853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3851), + [anon_sym_None] = ACTIONS(3853), + [anon_sym_0x] = ACTIONS(3851), + [anon_sym_0X] = ACTIONS(3851), + [anon_sym_0o] = ACTIONS(3851), + [anon_sym_0O] = ACTIONS(3851), + [anon_sym_0b] = ACTIONS(3851), + [anon_sym_0B] = ACTIONS(3851), + [aux_sym_integer_token4] = ACTIONS(3853), + [sym_float] = ACTIONS(3851), + [anon_sym_await] = ACTIONS(3853), + [anon_sym_api] = ACTIONS(3853), + [sym_true] = ACTIONS(3853), + [sym_false] = ACTIONS(3853), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3853), + [anon_sym_include] = ACTIONS(3853), + [anon_sym_DEF] = ACTIONS(3853), + [anon_sym_IF] = ACTIONS(3853), + [anon_sym_cdef] = ACTIONS(3853), + [anon_sym_cpdef] = ACTIONS(3853), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_ctypedef] = ACTIONS(3853), + [anon_sym_public] = ACTIONS(3853), + [anon_sym_packed] = ACTIONS(3853), + [anon_sym_inline] = ACTIONS(3853), + [anon_sym_readonly] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(3853), + [sym_string_start] = ACTIONS(3851), + }, + [1613] = { + [sym_identifier] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3497), + [anon_sym_import] = ACTIONS(3499), + [anon_sym_cimport] = ACTIONS(3499), + [anon_sym_from] = ACTIONS(3499), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_print] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_del] = ACTIONS(3499), + [anon_sym_raise] = ACTIONS(3499), + [anon_sym_pass] = ACTIONS(3499), + [anon_sym_break] = ACTIONS(3499), + [anon_sym_continue] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_async] = ACTIONS(3499), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_with] = ACTIONS(3499), + [anon_sym_def] = ACTIONS(3499), + [anon_sym_global] = ACTIONS(3499), + [anon_sym_nonlocal] = ACTIONS(3499), + [anon_sym_exec] = ACTIONS(3499), + [anon_sym_type] = ACTIONS(3499), + [anon_sym_class] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_AT] = ACTIONS(3497), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_not] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_lambda] = ACTIONS(3499), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), + [anon_sym_None] = ACTIONS(3499), + [anon_sym_0x] = ACTIONS(3497), + [anon_sym_0X] = ACTIONS(3497), + [anon_sym_0o] = ACTIONS(3497), + [anon_sym_0O] = ACTIONS(3497), + [anon_sym_0b] = ACTIONS(3497), + [anon_sym_0B] = ACTIONS(3497), + [aux_sym_integer_token4] = ACTIONS(3499), + [sym_float] = ACTIONS(3497), + [anon_sym_await] = ACTIONS(3499), + [anon_sym_api] = ACTIONS(3499), + [sym_true] = ACTIONS(3499), + [sym_false] = ACTIONS(3499), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3499), + [anon_sym_include] = ACTIONS(3499), + [anon_sym_DEF] = ACTIONS(3499), + [anon_sym_IF] = ACTIONS(3499), + [anon_sym_cdef] = ACTIONS(3499), + [anon_sym_cpdef] = ACTIONS(3499), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_ctypedef] = ACTIONS(3499), + [anon_sym_public] = ACTIONS(3499), + [anon_sym_packed] = ACTIONS(3499), + [anon_sym_inline] = ACTIONS(3499), + [anon_sym_readonly] = ACTIONS(3499), + [anon_sym_sizeof] = ACTIONS(3499), + [sym__dedent] = ACTIONS(3497), + [sym_string_start] = ACTIONS(3497), + }, + [1614] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3308), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1615] = { + [sym_identifier] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3501), + [anon_sym_import] = ACTIONS(3503), + [anon_sym_cimport] = ACTIONS(3503), + [anon_sym_from] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_print] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_del] = ACTIONS(3503), + [anon_sym_raise] = ACTIONS(3503), + [anon_sym_pass] = ACTIONS(3503), + [anon_sym_break] = ACTIONS(3503), + [anon_sym_continue] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_async] = ACTIONS(3503), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_with] = ACTIONS(3503), + [anon_sym_def] = ACTIONS(3503), + [anon_sym_global] = ACTIONS(3503), + [anon_sym_nonlocal] = ACTIONS(3503), + [anon_sym_exec] = ACTIONS(3503), + [anon_sym_type] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3501), + [anon_sym_AT] = ACTIONS(3501), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_not] = ACTIONS(3503), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_TILDE] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_lambda] = ACTIONS(3503), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), + [anon_sym_None] = ACTIONS(3503), + [anon_sym_0x] = ACTIONS(3501), + [anon_sym_0X] = ACTIONS(3501), + [anon_sym_0o] = ACTIONS(3501), + [anon_sym_0O] = ACTIONS(3501), + [anon_sym_0b] = ACTIONS(3501), + [anon_sym_0B] = ACTIONS(3501), + [aux_sym_integer_token4] = ACTIONS(3503), + [sym_float] = ACTIONS(3501), + [anon_sym_await] = ACTIONS(3503), + [anon_sym_api] = ACTIONS(3503), + [sym_true] = ACTIONS(3503), + [sym_false] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3503), + [anon_sym_include] = ACTIONS(3503), + [anon_sym_DEF] = ACTIONS(3503), + [anon_sym_IF] = ACTIONS(3503), + [anon_sym_cdef] = ACTIONS(3503), + [anon_sym_cpdef] = ACTIONS(3503), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_ctypedef] = ACTIONS(3503), + [anon_sym_public] = ACTIONS(3503), + [anon_sym_packed] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym_readonly] = ACTIONS(3503), + [anon_sym_sizeof] = ACTIONS(3503), + [sym__dedent] = ACTIONS(3501), + [sym_string_start] = ACTIONS(3501), + }, + [1616] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4774), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1617] = { + [sym_identifier] = ACTIONS(3855), + [anon_sym_SEMI] = ACTIONS(3857), + [anon_sym_import] = ACTIONS(3855), + [anon_sym_cimport] = ACTIONS(3855), + [anon_sym_from] = ACTIONS(3855), + [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_print] = ACTIONS(3855), + [anon_sym_assert] = ACTIONS(3855), + [anon_sym_return] = ACTIONS(3855), + [anon_sym_del] = ACTIONS(3855), + [anon_sym_raise] = ACTIONS(3855), + [anon_sym_pass] = ACTIONS(3855), + [anon_sym_break] = ACTIONS(3855), + [anon_sym_continue] = ACTIONS(3855), + [anon_sym_if] = ACTIONS(3855), + [anon_sym_match] = ACTIONS(3855), + [anon_sym_async] = ACTIONS(3855), + [anon_sym_for] = ACTIONS(3855), + [anon_sym_while] = ACTIONS(3855), + [anon_sym_try] = ACTIONS(3855), + [anon_sym_with] = ACTIONS(3855), + [anon_sym_def] = ACTIONS(3855), + [anon_sym_global] = ACTIONS(3855), + [anon_sym_nonlocal] = ACTIONS(3855), + [anon_sym_exec] = ACTIONS(3855), + [anon_sym_type] = ACTIONS(3855), + [anon_sym_class] = ACTIONS(3855), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_AT] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_AMP] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3857), + [anon_sym_lambda] = ACTIONS(3855), + [anon_sym_yield] = ACTIONS(3855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3857), + [anon_sym_None] = ACTIONS(3855), + [anon_sym_0x] = ACTIONS(3857), + [anon_sym_0X] = ACTIONS(3857), + [anon_sym_0o] = ACTIONS(3857), + [anon_sym_0O] = ACTIONS(3857), + [anon_sym_0b] = ACTIONS(3857), + [anon_sym_0B] = ACTIONS(3857), + [aux_sym_integer_token4] = ACTIONS(3855), + [sym_float] = ACTIONS(3857), + [anon_sym_await] = ACTIONS(3855), + [anon_sym_api] = ACTIONS(3855), + [sym_true] = ACTIONS(3855), + [sym_false] = ACTIONS(3855), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3855), + [anon_sym_include] = ACTIONS(3855), + [anon_sym_DEF] = ACTIONS(3855), + [anon_sym_IF] = ACTIONS(3855), + [anon_sym_cdef] = ACTIONS(3855), + [anon_sym_cpdef] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(3855), + [anon_sym_ctypedef] = ACTIONS(3855), + [anon_sym_public] = ACTIONS(3855), + [anon_sym_packed] = ACTIONS(3855), + [anon_sym_inline] = ACTIONS(3855), + [anon_sym_readonly] = ACTIONS(3855), + [anon_sym_sizeof] = ACTIONS(3855), + [sym__dedent] = ACTIONS(3857), + [sym_string_start] = ACTIONS(3857), + }, + [1618] = { + [sym_identifier] = ACTIONS(3513), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym_import] = ACTIONS(3513), + [anon_sym_cimport] = ACTIONS(3513), + [anon_sym_from] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_print] = ACTIONS(3513), + [anon_sym_assert] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_del] = ACTIONS(3513), + [anon_sym_raise] = ACTIONS(3513), + [anon_sym_pass] = ACTIONS(3513), + [anon_sym_break] = ACTIONS(3513), + [anon_sym_continue] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_match] = ACTIONS(3513), + [anon_sym_async] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3513), + [anon_sym_def] = ACTIONS(3513), + [anon_sym_global] = ACTIONS(3513), + [anon_sym_nonlocal] = ACTIONS(3513), + [anon_sym_exec] = ACTIONS(3513), + [anon_sym_type] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3511), + [anon_sym_AT] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_PLUS] = ACTIONS(3511), + [anon_sym_not] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_LT] = ACTIONS(3511), + [anon_sym_lambda] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [anon_sym_None] = ACTIONS(3513), + [anon_sym_0x] = ACTIONS(3511), + [anon_sym_0X] = ACTIONS(3511), + [anon_sym_0o] = ACTIONS(3511), + [anon_sym_0O] = ACTIONS(3511), + [anon_sym_0b] = ACTIONS(3511), + [anon_sym_0B] = ACTIONS(3511), + [aux_sym_integer_token4] = ACTIONS(3513), + [sym_float] = ACTIONS(3511), + [anon_sym_await] = ACTIONS(3513), + [anon_sym_api] = ACTIONS(3513), + [sym_true] = ACTIONS(3513), + [sym_false] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3513), + [anon_sym_include] = ACTIONS(3513), + [anon_sym_DEF] = ACTIONS(3513), + [anon_sym_IF] = ACTIONS(3513), + [anon_sym_cdef] = ACTIONS(3513), + [anon_sym_cpdef] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3513), + [anon_sym_ctypedef] = ACTIONS(3513), + [anon_sym_public] = ACTIONS(3513), + [anon_sym_packed] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym_readonly] = ACTIONS(3513), + [anon_sym_sizeof] = ACTIONS(3513), + [sym__dedent] = ACTIONS(3511), + [sym_string_start] = ACTIONS(3511), + }, + [1619] = { + [sym_identifier] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3861), + [anon_sym_import] = ACTIONS(3859), + [anon_sym_cimport] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3861), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_print] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_del] = ACTIONS(3859), + [anon_sym_raise] = ACTIONS(3859), + [anon_sym_pass] = ACTIONS(3859), + [anon_sym_break] = ACTIONS(3859), + [anon_sym_continue] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_async] = ACTIONS(3859), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3859), + [anon_sym_def] = ACTIONS(3859), + [anon_sym_global] = ACTIONS(3859), + [anon_sym_nonlocal] = ACTIONS(3859), + [anon_sym_exec] = ACTIONS(3859), + [anon_sym_type] = ACTIONS(3859), + [anon_sym_class] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_AT] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_PLUS] = ACTIONS(3861), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_lambda] = ACTIONS(3859), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3861), + [anon_sym_None] = ACTIONS(3859), + [anon_sym_0x] = ACTIONS(3861), + [anon_sym_0X] = ACTIONS(3861), + [anon_sym_0o] = ACTIONS(3861), + [anon_sym_0O] = ACTIONS(3861), + [anon_sym_0b] = ACTIONS(3861), + [anon_sym_0B] = ACTIONS(3861), + [aux_sym_integer_token4] = ACTIONS(3859), + [sym_float] = ACTIONS(3861), + [anon_sym_await] = ACTIONS(3859), + [anon_sym_api] = ACTIONS(3859), + [sym_true] = ACTIONS(3859), + [sym_false] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3859), + [anon_sym_include] = ACTIONS(3859), + [anon_sym_DEF] = ACTIONS(3859), + [anon_sym_IF] = ACTIONS(3859), + [anon_sym_cdef] = ACTIONS(3859), + [anon_sym_cpdef] = ACTIONS(3859), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_ctypedef] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3859), + [anon_sym_packed] = ACTIONS(3859), + [anon_sym_inline] = ACTIONS(3859), + [anon_sym_readonly] = ACTIONS(3859), + [anon_sym_sizeof] = ACTIONS(3859), + [sym__dedent] = ACTIONS(3861), + [sym_string_start] = ACTIONS(3861), + }, + [1620] = { + [sym_identifier] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3865), + [anon_sym_import] = ACTIONS(3863), + [anon_sym_cimport] = ACTIONS(3863), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_STAR] = ACTIONS(3865), + [anon_sym_print] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_del] = ACTIONS(3863), + [anon_sym_raise] = ACTIONS(3863), + [anon_sym_pass] = ACTIONS(3863), + [anon_sym_break] = ACTIONS(3863), + [anon_sym_continue] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_async] = ACTIONS(3863), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + [anon_sym_def] = ACTIONS(3863), + [anon_sym_global] = ACTIONS(3863), + [anon_sym_nonlocal] = ACTIONS(3863), + [anon_sym_exec] = ACTIONS(3863), + [anon_sym_type] = ACTIONS(3863), + [anon_sym_class] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3865), + [anon_sym_AT] = ACTIONS(3865), + [anon_sym_DASH] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3865), + [anon_sym_PLUS] = ACTIONS(3865), + [anon_sym_not] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3865), + [anon_sym_TILDE] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_lambda] = ACTIONS(3863), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3865), + [anon_sym_None] = ACTIONS(3863), + [anon_sym_0x] = ACTIONS(3865), + [anon_sym_0X] = ACTIONS(3865), + [anon_sym_0o] = ACTIONS(3865), + [anon_sym_0O] = ACTIONS(3865), + [anon_sym_0b] = ACTIONS(3865), + [anon_sym_0B] = ACTIONS(3865), + [aux_sym_integer_token4] = ACTIONS(3863), + [sym_float] = ACTIONS(3865), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(3863), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3863), + [anon_sym_include] = ACTIONS(3863), + [anon_sym_DEF] = ACTIONS(3863), + [anon_sym_IF] = ACTIONS(3863), + [anon_sym_cdef] = ACTIONS(3863), + [anon_sym_cpdef] = ACTIONS(3863), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_ctypedef] = ACTIONS(3863), + [anon_sym_public] = ACTIONS(3863), + [anon_sym_packed] = ACTIONS(3863), + [anon_sym_inline] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3863), + [anon_sym_sizeof] = ACTIONS(3863), + [sym__dedent] = ACTIONS(3865), + [sym_string_start] = ACTIONS(3865), + }, + [1621] = { + [sym_identifier] = ACTIONS(3867), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_import] = ACTIONS(3867), + [anon_sym_cimport] = ACTIONS(3867), + [anon_sym_from] = ACTIONS(3867), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(3867), + [anon_sym_assert] = ACTIONS(3867), + [anon_sym_return] = ACTIONS(3867), + [anon_sym_del] = ACTIONS(3867), + [anon_sym_raise] = ACTIONS(3867), + [anon_sym_pass] = ACTIONS(3867), + [anon_sym_break] = ACTIONS(3867), + [anon_sym_continue] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(3867), + [anon_sym_match] = ACTIONS(3867), + [anon_sym_async] = ACTIONS(3867), + [anon_sym_for] = ACTIONS(3867), + [anon_sym_while] = ACTIONS(3867), + [anon_sym_try] = ACTIONS(3867), + [anon_sym_with] = ACTIONS(3867), + [anon_sym_def] = ACTIONS(3867), + [anon_sym_global] = ACTIONS(3867), + [anon_sym_nonlocal] = ACTIONS(3867), + [anon_sym_exec] = ACTIONS(3867), + [anon_sym_type] = ACTIONS(3867), + [anon_sym_class] = ACTIONS(3867), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_AT] = ACTIONS(3869), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3869), + [anon_sym_not] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_TILDE] = ACTIONS(3869), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_yield] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3869), + [anon_sym_None] = ACTIONS(3867), + [anon_sym_0x] = ACTIONS(3869), + [anon_sym_0X] = ACTIONS(3869), + [anon_sym_0o] = ACTIONS(3869), + [anon_sym_0O] = ACTIONS(3869), + [anon_sym_0b] = ACTIONS(3869), + [anon_sym_0B] = ACTIONS(3869), + [aux_sym_integer_token4] = ACTIONS(3867), + [sym_float] = ACTIONS(3869), + [anon_sym_await] = ACTIONS(3867), + [anon_sym_api] = ACTIONS(3867), + [sym_true] = ACTIONS(3867), + [sym_false] = ACTIONS(3867), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3867), + [anon_sym_include] = ACTIONS(3867), + [anon_sym_DEF] = ACTIONS(3867), + [anon_sym_IF] = ACTIONS(3867), + [anon_sym_cdef] = ACTIONS(3867), + [anon_sym_cpdef] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3867), + [anon_sym_ctypedef] = ACTIONS(3867), + [anon_sym_public] = ACTIONS(3867), + [anon_sym_packed] = ACTIONS(3867), + [anon_sym_inline] = ACTIONS(3867), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_sizeof] = ACTIONS(3867), + [sym__dedent] = ACTIONS(3869), + [sym_string_start] = ACTIONS(3869), + }, + [1622] = { + [sym_identifier] = ACTIONS(3871), + [anon_sym_SEMI] = ACTIONS(3873), + [anon_sym_import] = ACTIONS(3871), + [anon_sym_cimport] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3873), + [anon_sym_STAR] = ACTIONS(3873), + [anon_sym_print] = ACTIONS(3871), + [anon_sym_assert] = ACTIONS(3871), + [anon_sym_return] = ACTIONS(3871), + [anon_sym_del] = ACTIONS(3871), + [anon_sym_raise] = ACTIONS(3871), + [anon_sym_pass] = ACTIONS(3871), + [anon_sym_break] = ACTIONS(3871), + [anon_sym_continue] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(3871), + [anon_sym_match] = ACTIONS(3871), + [anon_sym_async] = ACTIONS(3871), + [anon_sym_for] = ACTIONS(3871), + [anon_sym_while] = ACTIONS(3871), + [anon_sym_try] = ACTIONS(3871), + [anon_sym_with] = ACTIONS(3871), + [anon_sym_def] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_nonlocal] = ACTIONS(3871), + [anon_sym_exec] = ACTIONS(3871), + [anon_sym_type] = ACTIONS(3871), + [anon_sym_class] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_AT] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3873), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3873), + [anon_sym_None] = ACTIONS(3871), + [anon_sym_0x] = ACTIONS(3873), + [anon_sym_0X] = ACTIONS(3873), + [anon_sym_0o] = ACTIONS(3873), + [anon_sym_0O] = ACTIONS(3873), + [anon_sym_0b] = ACTIONS(3873), + [anon_sym_0B] = ACTIONS(3873), + [aux_sym_integer_token4] = ACTIONS(3871), + [sym_float] = ACTIONS(3873), + [anon_sym_await] = ACTIONS(3871), + [anon_sym_api] = ACTIONS(3871), + [sym_true] = ACTIONS(3871), + [sym_false] = ACTIONS(3871), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3871), + [anon_sym_include] = ACTIONS(3871), + [anon_sym_DEF] = ACTIONS(3871), + [anon_sym_IF] = ACTIONS(3871), + [anon_sym_cdef] = ACTIONS(3871), + [anon_sym_cpdef] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3871), + [anon_sym_ctypedef] = ACTIONS(3871), + [anon_sym_public] = ACTIONS(3871), + [anon_sym_packed] = ACTIONS(3871), + [anon_sym_inline] = ACTIONS(3871), + [anon_sym_readonly] = ACTIONS(3871), + [anon_sym_sizeof] = ACTIONS(3871), + [sym__dedent] = ACTIONS(3873), + [sym_string_start] = ACTIONS(3873), + }, + [1623] = { + [sym_identifier] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3877), + [anon_sym_import] = ACTIONS(3875), + [anon_sym_cimport] = ACTIONS(3875), + [anon_sym_from] = ACTIONS(3875), + [anon_sym_LPAREN] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3877), + [anon_sym_print] = ACTIONS(3875), + [anon_sym_assert] = ACTIONS(3875), + [anon_sym_return] = ACTIONS(3875), + [anon_sym_del] = ACTIONS(3875), + [anon_sym_raise] = ACTIONS(3875), + [anon_sym_pass] = ACTIONS(3875), + [anon_sym_break] = ACTIONS(3875), + [anon_sym_continue] = ACTIONS(3875), + [anon_sym_if] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(3875), + [anon_sym_async] = ACTIONS(3875), + [anon_sym_for] = ACTIONS(3875), + [anon_sym_while] = ACTIONS(3875), + [anon_sym_try] = ACTIONS(3875), + [anon_sym_with] = ACTIONS(3875), + [anon_sym_def] = ACTIONS(3875), + [anon_sym_global] = ACTIONS(3875), + [anon_sym_nonlocal] = ACTIONS(3875), + [anon_sym_exec] = ACTIONS(3875), + [anon_sym_type] = ACTIONS(3875), + [anon_sym_class] = ACTIONS(3875), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_AT] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_LT] = ACTIONS(3877), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_yield] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3877), + [anon_sym_None] = ACTIONS(3875), + [anon_sym_0x] = ACTIONS(3877), + [anon_sym_0X] = ACTIONS(3877), + [anon_sym_0o] = ACTIONS(3877), + [anon_sym_0O] = ACTIONS(3877), + [anon_sym_0b] = ACTIONS(3877), + [anon_sym_0B] = ACTIONS(3877), + [aux_sym_integer_token4] = ACTIONS(3875), + [sym_float] = ACTIONS(3877), + [anon_sym_await] = ACTIONS(3875), + [anon_sym_api] = ACTIONS(3875), + [sym_true] = ACTIONS(3875), + [sym_false] = ACTIONS(3875), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3875), + [anon_sym_include] = ACTIONS(3875), + [anon_sym_DEF] = ACTIONS(3875), + [anon_sym_IF] = ACTIONS(3875), + [anon_sym_cdef] = ACTIONS(3875), + [anon_sym_cpdef] = ACTIONS(3875), + [anon_sym_new] = ACTIONS(3875), + [anon_sym_ctypedef] = ACTIONS(3875), + [anon_sym_public] = ACTIONS(3875), + [anon_sym_packed] = ACTIONS(3875), + [anon_sym_inline] = ACTIONS(3875), + [anon_sym_readonly] = ACTIONS(3875), + [anon_sym_sizeof] = ACTIONS(3875), + [sym__dedent] = ACTIONS(3877), + [sym_string_start] = ACTIONS(3877), + }, + [1624] = { + [sym_identifier] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym_import] = ACTIONS(3711), + [anon_sym_cimport] = ACTIONS(3711), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_STAR] = ACTIONS(3709), + [anon_sym_print] = ACTIONS(3711), + [anon_sym_assert] = ACTIONS(3711), + [anon_sym_return] = ACTIONS(3711), + [anon_sym_del] = ACTIONS(3711), + [anon_sym_raise] = ACTIONS(3711), + [anon_sym_pass] = ACTIONS(3711), + [anon_sym_break] = ACTIONS(3711), + [anon_sym_continue] = ACTIONS(3711), + [anon_sym_if] = ACTIONS(3711), + [anon_sym_match] = ACTIONS(3711), + [anon_sym_async] = ACTIONS(3711), + [anon_sym_for] = ACTIONS(3711), + [anon_sym_while] = ACTIONS(3711), + [anon_sym_try] = ACTIONS(3711), + [anon_sym_with] = ACTIONS(3711), + [anon_sym_def] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_nonlocal] = ACTIONS(3711), + [anon_sym_exec] = ACTIONS(3711), + [anon_sym_type] = ACTIONS(3711), + [anon_sym_class] = ACTIONS(3711), + [anon_sym_LBRACK] = ACTIONS(3709), + [anon_sym_AT] = ACTIONS(3709), + [anon_sym_DASH] = ACTIONS(3709), + [anon_sym_LBRACE] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3709), + [anon_sym_not] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3709), + [anon_sym_TILDE] = ACTIONS(3709), + [anon_sym_LT] = ACTIONS(3709), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3709), + [anon_sym_None] = ACTIONS(3711), + [anon_sym_0x] = ACTIONS(3709), + [anon_sym_0X] = ACTIONS(3709), + [anon_sym_0o] = ACTIONS(3709), + [anon_sym_0O] = ACTIONS(3709), + [anon_sym_0b] = ACTIONS(3709), + [anon_sym_0B] = ACTIONS(3709), + [aux_sym_integer_token4] = ACTIONS(3711), + [sym_float] = ACTIONS(3709), + [anon_sym_await] = ACTIONS(3711), + [anon_sym_api] = ACTIONS(3711), + [sym_true] = ACTIONS(3711), + [sym_false] = ACTIONS(3711), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3711), + [anon_sym_include] = ACTIONS(3711), + [anon_sym_DEF] = ACTIONS(3711), + [anon_sym_IF] = ACTIONS(3711), + [anon_sym_cdef] = ACTIONS(3711), + [anon_sym_cpdef] = ACTIONS(3711), + [anon_sym_new] = ACTIONS(3711), + [anon_sym_ctypedef] = ACTIONS(3711), + [anon_sym_public] = ACTIONS(3711), + [anon_sym_packed] = ACTIONS(3711), + [anon_sym_inline] = ACTIONS(3711), + [anon_sym_readonly] = ACTIONS(3711), + [anon_sym_sizeof] = ACTIONS(3711), + [sym__dedent] = ACTIONS(3709), + [sym_string_start] = ACTIONS(3709), + }, + [1625] = { + [ts_builtin_sym_end] = ACTIONS(3829), + [sym_identifier] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3829), + [anon_sym_import] = ACTIONS(3831), + [anon_sym_cimport] = ACTIONS(3831), + [anon_sym_from] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_print] = ACTIONS(3831), + [anon_sym_assert] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_del] = ACTIONS(3831), + [anon_sym_raise] = ACTIONS(3831), + [anon_sym_pass] = ACTIONS(3831), + [anon_sym_break] = ACTIONS(3831), + [anon_sym_continue] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_match] = ACTIONS(3831), + [anon_sym_async] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_try] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3831), + [anon_sym_def] = ACTIONS(3831), + [anon_sym_global] = ACTIONS(3831), + [anon_sym_nonlocal] = ACTIONS(3831), + [anon_sym_exec] = ACTIONS(3831), + [anon_sym_type] = ACTIONS(3831), + [anon_sym_class] = ACTIONS(3831), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_AT] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_not] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3829), + [anon_sym_LT] = ACTIONS(3829), + [anon_sym_lambda] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3829), + [anon_sym_None] = ACTIONS(3831), + [anon_sym_0x] = ACTIONS(3829), + [anon_sym_0X] = ACTIONS(3829), + [anon_sym_0o] = ACTIONS(3829), + [anon_sym_0O] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(3829), + [anon_sym_0B] = ACTIONS(3829), + [aux_sym_integer_token4] = ACTIONS(3831), + [sym_float] = ACTIONS(3829), + [anon_sym_await] = ACTIONS(3831), + [anon_sym_api] = ACTIONS(3831), + [sym_true] = ACTIONS(3831), + [sym_false] = ACTIONS(3831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3831), + [anon_sym_include] = ACTIONS(3831), + [anon_sym_DEF] = ACTIONS(3831), + [anon_sym_IF] = ACTIONS(3831), + [anon_sym_cdef] = ACTIONS(3831), + [anon_sym_cpdef] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3831), + [anon_sym_ctypedef] = ACTIONS(3831), + [anon_sym_public] = ACTIONS(3831), + [anon_sym_packed] = ACTIONS(3831), + [anon_sym_inline] = ACTIONS(3831), + [anon_sym_readonly] = ACTIONS(3831), + [anon_sym_sizeof] = ACTIONS(3831), + [sym_string_start] = ACTIONS(3829), + }, + [1626] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5529), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1627] = { + [sym_identifier] = ACTIONS(3731), + [anon_sym_SEMI] = ACTIONS(3729), + [anon_sym_import] = ACTIONS(3731), + [anon_sym_cimport] = ACTIONS(3731), + [anon_sym_from] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3729), + [anon_sym_print] = ACTIONS(3731), + [anon_sym_assert] = ACTIONS(3731), + [anon_sym_return] = ACTIONS(3731), + [anon_sym_del] = ACTIONS(3731), + [anon_sym_raise] = ACTIONS(3731), + [anon_sym_pass] = ACTIONS(3731), + [anon_sym_break] = ACTIONS(3731), + [anon_sym_continue] = ACTIONS(3731), + [anon_sym_if] = ACTIONS(3731), + [anon_sym_match] = ACTIONS(3731), + [anon_sym_async] = ACTIONS(3731), + [anon_sym_for] = ACTIONS(3731), + [anon_sym_while] = ACTIONS(3731), + [anon_sym_try] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), + [anon_sym_def] = ACTIONS(3731), + [anon_sym_global] = ACTIONS(3731), + [anon_sym_nonlocal] = ACTIONS(3731), + [anon_sym_exec] = ACTIONS(3731), + [anon_sym_type] = ACTIONS(3731), + [anon_sym_class] = ACTIONS(3731), + [anon_sym_LBRACK] = ACTIONS(3729), + [anon_sym_AT] = ACTIONS(3729), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_LBRACE] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_not] = ACTIONS(3731), + [anon_sym_AMP] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_lambda] = ACTIONS(3731), + [anon_sym_yield] = ACTIONS(3731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3729), + [anon_sym_None] = ACTIONS(3731), + [anon_sym_0x] = ACTIONS(3729), + [anon_sym_0X] = ACTIONS(3729), + [anon_sym_0o] = ACTIONS(3729), + [anon_sym_0O] = ACTIONS(3729), + [anon_sym_0b] = ACTIONS(3729), + [anon_sym_0B] = ACTIONS(3729), + [aux_sym_integer_token4] = ACTIONS(3731), + [sym_float] = ACTIONS(3729), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(3731), + [sym_true] = ACTIONS(3731), + [sym_false] = ACTIONS(3731), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3731), + [anon_sym_include] = ACTIONS(3731), + [anon_sym_DEF] = ACTIONS(3731), + [anon_sym_IF] = ACTIONS(3731), + [anon_sym_cdef] = ACTIONS(3731), + [anon_sym_cpdef] = ACTIONS(3731), + [anon_sym_new] = ACTIONS(3731), + [anon_sym_ctypedef] = ACTIONS(3731), + [anon_sym_public] = ACTIONS(3731), + [anon_sym_packed] = ACTIONS(3731), + [anon_sym_inline] = ACTIONS(3731), + [anon_sym_readonly] = ACTIONS(3731), + [anon_sym_sizeof] = ACTIONS(3731), + [sym__dedent] = ACTIONS(3729), + [sym_string_start] = ACTIONS(3729), + }, + [1628] = { + [sym_identifier] = ACTIONS(3767), + [anon_sym_SEMI] = ACTIONS(3765), + [anon_sym_import] = ACTIONS(3767), + [anon_sym_cimport] = ACTIONS(3767), + [anon_sym_from] = ACTIONS(3767), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_STAR] = ACTIONS(3765), + [anon_sym_print] = ACTIONS(3767), + [anon_sym_assert] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3767), + [anon_sym_del] = ACTIONS(3767), + [anon_sym_raise] = ACTIONS(3767), + [anon_sym_pass] = ACTIONS(3767), + [anon_sym_break] = ACTIONS(3767), + [anon_sym_continue] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(3767), + [anon_sym_match] = ACTIONS(3767), + [anon_sym_async] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3767), + [anon_sym_while] = ACTIONS(3767), + [anon_sym_try] = ACTIONS(3767), + [anon_sym_with] = ACTIONS(3767), + [anon_sym_def] = ACTIONS(3767), + [anon_sym_global] = ACTIONS(3767), + [anon_sym_nonlocal] = ACTIONS(3767), + [anon_sym_exec] = ACTIONS(3767), + [anon_sym_type] = ACTIONS(3767), + [anon_sym_class] = ACTIONS(3767), + [anon_sym_LBRACK] = ACTIONS(3765), + [anon_sym_AT] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LBRACE] = ACTIONS(3765), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_not] = ACTIONS(3767), + [anon_sym_AMP] = ACTIONS(3765), + [anon_sym_TILDE] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(3765), + [anon_sym_lambda] = ACTIONS(3767), + [anon_sym_yield] = ACTIONS(3767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3765), + [anon_sym_None] = ACTIONS(3767), + [anon_sym_0x] = ACTIONS(3765), + [anon_sym_0X] = ACTIONS(3765), + [anon_sym_0o] = ACTIONS(3765), + [anon_sym_0O] = ACTIONS(3765), + [anon_sym_0b] = ACTIONS(3765), + [anon_sym_0B] = ACTIONS(3765), + [aux_sym_integer_token4] = ACTIONS(3767), + [sym_float] = ACTIONS(3765), + [anon_sym_await] = ACTIONS(3767), + [anon_sym_api] = ACTIONS(3767), + [sym_true] = ACTIONS(3767), + [sym_false] = ACTIONS(3767), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3767), + [anon_sym_include] = ACTIONS(3767), + [anon_sym_DEF] = ACTIONS(3767), + [anon_sym_IF] = ACTIONS(3767), + [anon_sym_cdef] = ACTIONS(3767), + [anon_sym_cpdef] = ACTIONS(3767), + [anon_sym_new] = ACTIONS(3767), + [anon_sym_ctypedef] = ACTIONS(3767), + [anon_sym_public] = ACTIONS(3767), + [anon_sym_packed] = ACTIONS(3767), + [anon_sym_inline] = ACTIONS(3767), + [anon_sym_readonly] = ACTIONS(3767), + [anon_sym_sizeof] = ACTIONS(3767), + [sym__dedent] = ACTIONS(3765), + [sym_string_start] = ACTIONS(3765), + }, + [1629] = { + [sym_identifier] = ACTIONS(3827), + [anon_sym_SEMI] = ACTIONS(3825), + [anon_sym_import] = ACTIONS(3827), + [anon_sym_cimport] = ACTIONS(3827), + [anon_sym_from] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_STAR] = ACTIONS(3825), + [anon_sym_print] = ACTIONS(3827), + [anon_sym_assert] = ACTIONS(3827), + [anon_sym_return] = ACTIONS(3827), + [anon_sym_del] = ACTIONS(3827), + [anon_sym_raise] = ACTIONS(3827), + [anon_sym_pass] = ACTIONS(3827), + [anon_sym_break] = ACTIONS(3827), + [anon_sym_continue] = ACTIONS(3827), + [anon_sym_if] = ACTIONS(3827), + [anon_sym_match] = ACTIONS(3827), + [anon_sym_async] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3827), + [anon_sym_while] = ACTIONS(3827), + [anon_sym_try] = ACTIONS(3827), + [anon_sym_with] = ACTIONS(3827), + [anon_sym_def] = ACTIONS(3827), + [anon_sym_global] = ACTIONS(3827), + [anon_sym_nonlocal] = ACTIONS(3827), + [anon_sym_exec] = ACTIONS(3827), + [anon_sym_type] = ACTIONS(3827), + [anon_sym_class] = ACTIONS(3827), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_AT] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_not] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3825), + [anon_sym_LT] = ACTIONS(3825), + [anon_sym_lambda] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3825), + [anon_sym_None] = ACTIONS(3827), + [anon_sym_0x] = ACTIONS(3825), + [anon_sym_0X] = ACTIONS(3825), + [anon_sym_0o] = ACTIONS(3825), + [anon_sym_0O] = ACTIONS(3825), + [anon_sym_0b] = ACTIONS(3825), + [anon_sym_0B] = ACTIONS(3825), + [aux_sym_integer_token4] = ACTIONS(3827), + [sym_float] = ACTIONS(3825), + [anon_sym_await] = ACTIONS(3827), + [anon_sym_api] = ACTIONS(3827), + [sym_true] = ACTIONS(3827), + [sym_false] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3827), + [anon_sym_include] = ACTIONS(3827), + [anon_sym_DEF] = ACTIONS(3827), + [anon_sym_IF] = ACTIONS(3827), + [anon_sym_cdef] = ACTIONS(3827), + [anon_sym_cpdef] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3827), + [anon_sym_ctypedef] = ACTIONS(3827), + [anon_sym_public] = ACTIONS(3827), + [anon_sym_packed] = ACTIONS(3827), + [anon_sym_inline] = ACTIONS(3827), + [anon_sym_readonly] = ACTIONS(3827), + [anon_sym_sizeof] = ACTIONS(3827), + [sym__dedent] = ACTIONS(3825), + [sym_string_start] = ACTIONS(3825), + }, + [1630] = { + [sym_identifier] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3829), + [anon_sym_import] = ACTIONS(3831), + [anon_sym_cimport] = ACTIONS(3831), + [anon_sym_from] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_print] = ACTIONS(3831), + [anon_sym_assert] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_del] = ACTIONS(3831), + [anon_sym_raise] = ACTIONS(3831), + [anon_sym_pass] = ACTIONS(3831), + [anon_sym_break] = ACTIONS(3831), + [anon_sym_continue] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_match] = ACTIONS(3831), + [anon_sym_async] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_try] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3831), + [anon_sym_def] = ACTIONS(3831), + [anon_sym_global] = ACTIONS(3831), + [anon_sym_nonlocal] = ACTIONS(3831), + [anon_sym_exec] = ACTIONS(3831), + [anon_sym_type] = ACTIONS(3831), + [anon_sym_class] = ACTIONS(3831), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_AT] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_not] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3829), + [anon_sym_LT] = ACTIONS(3829), + [anon_sym_lambda] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3829), + [anon_sym_None] = ACTIONS(3831), + [anon_sym_0x] = ACTIONS(3829), + [anon_sym_0X] = ACTIONS(3829), + [anon_sym_0o] = ACTIONS(3829), + [anon_sym_0O] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(3829), + [anon_sym_0B] = ACTIONS(3829), + [aux_sym_integer_token4] = ACTIONS(3831), + [sym_float] = ACTIONS(3829), + [anon_sym_await] = ACTIONS(3831), + [anon_sym_api] = ACTIONS(3831), + [sym_true] = ACTIONS(3831), + [sym_false] = ACTIONS(3831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3831), + [anon_sym_include] = ACTIONS(3831), + [anon_sym_DEF] = ACTIONS(3831), + [anon_sym_IF] = ACTIONS(3831), + [anon_sym_cdef] = ACTIONS(3831), + [anon_sym_cpdef] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3831), + [anon_sym_ctypedef] = ACTIONS(3831), + [anon_sym_public] = ACTIONS(3831), + [anon_sym_packed] = ACTIONS(3831), + [anon_sym_inline] = ACTIONS(3831), + [anon_sym_readonly] = ACTIONS(3831), + [anon_sym_sizeof] = ACTIONS(3831), + [sym__dedent] = ACTIONS(3829), + [sym_string_start] = ACTIONS(3829), + }, + [1631] = { + [sym_identifier] = ACTIONS(3835), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_import] = ACTIONS(3835), + [anon_sym_cimport] = ACTIONS(3835), + [anon_sym_from] = ACTIONS(3835), + [anon_sym_LPAREN] = ACTIONS(3833), + [anon_sym_STAR] = ACTIONS(3833), + [anon_sym_print] = ACTIONS(3835), + [anon_sym_assert] = ACTIONS(3835), + [anon_sym_return] = ACTIONS(3835), + [anon_sym_del] = ACTIONS(3835), + [anon_sym_raise] = ACTIONS(3835), + [anon_sym_pass] = ACTIONS(3835), + [anon_sym_break] = ACTIONS(3835), + [anon_sym_continue] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(3835), + [anon_sym_match] = ACTIONS(3835), + [anon_sym_async] = ACTIONS(3835), + [anon_sym_for] = ACTIONS(3835), + [anon_sym_while] = ACTIONS(3835), + [anon_sym_try] = ACTIONS(3835), + [anon_sym_with] = ACTIONS(3835), + [anon_sym_def] = ACTIONS(3835), + [anon_sym_global] = ACTIONS(3835), + [anon_sym_nonlocal] = ACTIONS(3835), + [anon_sym_exec] = ACTIONS(3835), + [anon_sym_type] = ACTIONS(3835), + [anon_sym_class] = ACTIONS(3835), + [anon_sym_LBRACK] = ACTIONS(3833), + [anon_sym_AT] = ACTIONS(3833), + [anon_sym_DASH] = ACTIONS(3833), + [anon_sym_LBRACE] = ACTIONS(3833), + [anon_sym_PLUS] = ACTIONS(3833), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3833), + [anon_sym_TILDE] = ACTIONS(3833), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_lambda] = ACTIONS(3835), + [anon_sym_yield] = ACTIONS(3835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3833), + [anon_sym_None] = ACTIONS(3835), + [anon_sym_0x] = ACTIONS(3833), + [anon_sym_0X] = ACTIONS(3833), + [anon_sym_0o] = ACTIONS(3833), + [anon_sym_0O] = ACTIONS(3833), + [anon_sym_0b] = ACTIONS(3833), + [anon_sym_0B] = ACTIONS(3833), + [aux_sym_integer_token4] = ACTIONS(3835), + [sym_float] = ACTIONS(3833), + [anon_sym_await] = ACTIONS(3835), + [anon_sym_api] = ACTIONS(3835), + [sym_true] = ACTIONS(3835), + [sym_false] = ACTIONS(3835), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3835), + [anon_sym_include] = ACTIONS(3835), + [anon_sym_DEF] = ACTIONS(3835), + [anon_sym_IF] = ACTIONS(3835), + [anon_sym_cdef] = ACTIONS(3835), + [anon_sym_cpdef] = ACTIONS(3835), + [anon_sym_new] = ACTIONS(3835), + [anon_sym_ctypedef] = ACTIONS(3835), + [anon_sym_public] = ACTIONS(3835), + [anon_sym_packed] = ACTIONS(3835), + [anon_sym_inline] = ACTIONS(3835), + [anon_sym_readonly] = ACTIONS(3835), + [anon_sym_sizeof] = ACTIONS(3835), + [sym__dedent] = ACTIONS(3833), + [sym_string_start] = ACTIONS(3833), + }, + [1632] = { + [sym_identifier] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3829), + [anon_sym_import] = ACTIONS(3831), + [anon_sym_cimport] = ACTIONS(3831), + [anon_sym_from] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_print] = ACTIONS(3831), + [anon_sym_assert] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_del] = ACTIONS(3831), + [anon_sym_raise] = ACTIONS(3831), + [anon_sym_pass] = ACTIONS(3831), + [anon_sym_break] = ACTIONS(3831), + [anon_sym_continue] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_match] = ACTIONS(3831), + [anon_sym_async] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_try] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3831), + [anon_sym_def] = ACTIONS(3831), + [anon_sym_global] = ACTIONS(3831), + [anon_sym_nonlocal] = ACTIONS(3831), + [anon_sym_exec] = ACTIONS(3831), + [anon_sym_type] = ACTIONS(3831), + [anon_sym_class] = ACTIONS(3831), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_AT] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_not] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3829), + [anon_sym_LT] = ACTIONS(3829), + [anon_sym_lambda] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3829), + [anon_sym_None] = ACTIONS(3831), + [anon_sym_0x] = ACTIONS(3829), + [anon_sym_0X] = ACTIONS(3829), + [anon_sym_0o] = ACTIONS(3829), + [anon_sym_0O] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(3829), + [anon_sym_0B] = ACTIONS(3829), + [aux_sym_integer_token4] = ACTIONS(3831), + [sym_float] = ACTIONS(3829), + [anon_sym_await] = ACTIONS(3831), + [anon_sym_api] = ACTIONS(3831), + [sym_true] = ACTIONS(3831), + [sym_false] = ACTIONS(3831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3831), + [anon_sym_include] = ACTIONS(3831), + [anon_sym_DEF] = ACTIONS(3831), + [anon_sym_IF] = ACTIONS(3831), + [anon_sym_cdef] = ACTIONS(3831), + [anon_sym_cpdef] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3831), + [anon_sym_ctypedef] = ACTIONS(3831), + [anon_sym_public] = ACTIONS(3831), + [anon_sym_packed] = ACTIONS(3831), + [anon_sym_inline] = ACTIONS(3831), + [anon_sym_readonly] = ACTIONS(3831), + [anon_sym_sizeof] = ACTIONS(3831), + [sym__dedent] = ACTIONS(3829), + [sym_string_start] = ACTIONS(3829), + }, + [1633] = { + [sym_identifier] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3829), + [anon_sym_import] = ACTIONS(3831), + [anon_sym_cimport] = ACTIONS(3831), + [anon_sym_from] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_print] = ACTIONS(3831), + [anon_sym_assert] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_del] = ACTIONS(3831), + [anon_sym_raise] = ACTIONS(3831), + [anon_sym_pass] = ACTIONS(3831), + [anon_sym_break] = ACTIONS(3831), + [anon_sym_continue] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_match] = ACTIONS(3831), + [anon_sym_async] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_try] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3831), + [anon_sym_def] = ACTIONS(3831), + [anon_sym_global] = ACTIONS(3831), + [anon_sym_nonlocal] = ACTIONS(3831), + [anon_sym_exec] = ACTIONS(3831), + [anon_sym_type] = ACTIONS(3831), + [anon_sym_class] = ACTIONS(3831), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_AT] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_not] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3829), + [anon_sym_LT] = ACTIONS(3829), + [anon_sym_lambda] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3829), + [anon_sym_None] = ACTIONS(3831), + [anon_sym_0x] = ACTIONS(3829), + [anon_sym_0X] = ACTIONS(3829), + [anon_sym_0o] = ACTIONS(3829), + [anon_sym_0O] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(3829), + [anon_sym_0B] = ACTIONS(3829), + [aux_sym_integer_token4] = ACTIONS(3831), + [sym_float] = ACTIONS(3829), + [anon_sym_await] = ACTIONS(3831), + [anon_sym_api] = ACTIONS(3831), + [sym_true] = ACTIONS(3831), + [sym_false] = ACTIONS(3831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3831), + [anon_sym_include] = ACTIONS(3831), + [anon_sym_DEF] = ACTIONS(3831), + [anon_sym_IF] = ACTIONS(3831), + [anon_sym_cdef] = ACTIONS(3831), + [anon_sym_cpdef] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3831), + [anon_sym_ctypedef] = ACTIONS(3831), + [anon_sym_public] = ACTIONS(3831), + [anon_sym_packed] = ACTIONS(3831), + [anon_sym_inline] = ACTIONS(3831), + [anon_sym_readonly] = ACTIONS(3831), + [anon_sym_sizeof] = ACTIONS(3831), + [sym__dedent] = ACTIONS(3829), + [sym_string_start] = ACTIONS(3829), + }, + [1634] = { + [sym_identifier] = ACTIONS(3879), + [anon_sym_SEMI] = ACTIONS(3881), + [anon_sym_import] = ACTIONS(3879), + [anon_sym_cimport] = ACTIONS(3879), + [anon_sym_from] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_print] = ACTIONS(3879), + [anon_sym_assert] = ACTIONS(3879), + [anon_sym_return] = ACTIONS(3879), + [anon_sym_del] = ACTIONS(3879), + [anon_sym_raise] = ACTIONS(3879), + [anon_sym_pass] = ACTIONS(3879), + [anon_sym_break] = ACTIONS(3879), + [anon_sym_continue] = ACTIONS(3879), + [anon_sym_if] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(3879), + [anon_sym_async] = ACTIONS(3879), + [anon_sym_for] = ACTIONS(3879), + [anon_sym_while] = ACTIONS(3879), + [anon_sym_try] = ACTIONS(3879), + [anon_sym_with] = ACTIONS(3879), + [anon_sym_def] = ACTIONS(3879), + [anon_sym_global] = ACTIONS(3879), + [anon_sym_nonlocal] = ACTIONS(3879), + [anon_sym_exec] = ACTIONS(3879), + [anon_sym_type] = ACTIONS(3879), + [anon_sym_class] = ACTIONS(3879), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_AT] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_TILDE] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(3881), + [anon_sym_lambda] = ACTIONS(3879), + [anon_sym_yield] = ACTIONS(3879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3881), + [anon_sym_None] = ACTIONS(3879), + [anon_sym_0x] = ACTIONS(3881), + [anon_sym_0X] = ACTIONS(3881), + [anon_sym_0o] = ACTIONS(3881), + [anon_sym_0O] = ACTIONS(3881), + [anon_sym_0b] = ACTIONS(3881), + [anon_sym_0B] = ACTIONS(3881), + [aux_sym_integer_token4] = ACTIONS(3879), + [sym_float] = ACTIONS(3881), + [anon_sym_await] = ACTIONS(3879), + [anon_sym_api] = ACTIONS(3879), + [sym_true] = ACTIONS(3879), + [sym_false] = ACTIONS(3879), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3879), + [anon_sym_include] = ACTIONS(3879), + [anon_sym_DEF] = ACTIONS(3879), + [anon_sym_IF] = ACTIONS(3879), + [anon_sym_cdef] = ACTIONS(3879), + [anon_sym_cpdef] = ACTIONS(3879), + [anon_sym_new] = ACTIONS(3879), + [anon_sym_ctypedef] = ACTIONS(3879), + [anon_sym_public] = ACTIONS(3879), + [anon_sym_packed] = ACTIONS(3879), + [anon_sym_inline] = ACTIONS(3879), + [anon_sym_readonly] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3879), + [sym__dedent] = ACTIONS(3881), + [sym_string_start] = ACTIONS(3881), + }, + [1635] = { + [sym_identifier] = ACTIONS(3883), + [anon_sym_SEMI] = ACTIONS(3885), + [anon_sym_import] = ACTIONS(3883), + [anon_sym_cimport] = ACTIONS(3883), + [anon_sym_from] = ACTIONS(3883), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_print] = ACTIONS(3883), + [anon_sym_assert] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_del] = ACTIONS(3883), + [anon_sym_raise] = ACTIONS(3883), + [anon_sym_pass] = ACTIONS(3883), + [anon_sym_break] = ACTIONS(3883), + [anon_sym_continue] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_match] = ACTIONS(3883), + [anon_sym_async] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_try] = ACTIONS(3883), + [anon_sym_with] = ACTIONS(3883), + [anon_sym_def] = ACTIONS(3883), + [anon_sym_global] = ACTIONS(3883), + [anon_sym_nonlocal] = ACTIONS(3883), + [anon_sym_exec] = ACTIONS(3883), + [anon_sym_type] = ACTIONS(3883), + [anon_sym_class] = ACTIONS(3883), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_AT] = ACTIONS(3885), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_TILDE] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3885), + [anon_sym_lambda] = ACTIONS(3883), + [anon_sym_yield] = ACTIONS(3883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3885), + [anon_sym_None] = ACTIONS(3883), + [anon_sym_0x] = ACTIONS(3885), + [anon_sym_0X] = ACTIONS(3885), + [anon_sym_0o] = ACTIONS(3885), + [anon_sym_0O] = ACTIONS(3885), + [anon_sym_0b] = ACTIONS(3885), + [anon_sym_0B] = ACTIONS(3885), + [aux_sym_integer_token4] = ACTIONS(3883), + [sym_float] = ACTIONS(3885), + [anon_sym_await] = ACTIONS(3883), + [anon_sym_api] = ACTIONS(3883), + [sym_true] = ACTIONS(3883), + [sym_false] = ACTIONS(3883), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3883), + [anon_sym_include] = ACTIONS(3883), + [anon_sym_DEF] = ACTIONS(3883), + [anon_sym_IF] = ACTIONS(3883), + [anon_sym_cdef] = ACTIONS(3883), + [anon_sym_cpdef] = ACTIONS(3883), + [anon_sym_new] = ACTIONS(3883), + [anon_sym_ctypedef] = ACTIONS(3883), + [anon_sym_public] = ACTIONS(3883), + [anon_sym_packed] = ACTIONS(3883), + [anon_sym_inline] = ACTIONS(3883), + [anon_sym_readonly] = ACTIONS(3883), + [anon_sym_sizeof] = ACTIONS(3883), + [sym__dedent] = ACTIONS(3885), + [sym_string_start] = ACTIONS(3885), + }, + [1636] = { + [sym_identifier] = ACTIONS(3887), + [anon_sym_SEMI] = ACTIONS(3889), + [anon_sym_import] = ACTIONS(3887), + [anon_sym_cimport] = ACTIONS(3887), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3889), + [anon_sym_print] = ACTIONS(3887), + [anon_sym_assert] = ACTIONS(3887), + [anon_sym_return] = ACTIONS(3887), + [anon_sym_del] = ACTIONS(3887), + [anon_sym_raise] = ACTIONS(3887), + [anon_sym_pass] = ACTIONS(3887), + [anon_sym_break] = ACTIONS(3887), + [anon_sym_continue] = ACTIONS(3887), + [anon_sym_if] = ACTIONS(3887), + [anon_sym_match] = ACTIONS(3887), + [anon_sym_async] = ACTIONS(3887), + [anon_sym_for] = ACTIONS(3887), + [anon_sym_while] = ACTIONS(3887), + [anon_sym_try] = ACTIONS(3887), + [anon_sym_with] = ACTIONS(3887), + [anon_sym_def] = ACTIONS(3887), + [anon_sym_global] = ACTIONS(3887), + [anon_sym_nonlocal] = ACTIONS(3887), + [anon_sym_exec] = ACTIONS(3887), + [anon_sym_type] = ACTIONS(3887), + [anon_sym_class] = ACTIONS(3887), + [anon_sym_LBRACK] = ACTIONS(3889), + [anon_sym_AT] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_LBRACE] = ACTIONS(3889), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_not] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3889), + [anon_sym_TILDE] = ACTIONS(3889), + [anon_sym_LT] = ACTIONS(3889), + [anon_sym_lambda] = ACTIONS(3887), + [anon_sym_yield] = ACTIONS(3887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3889), + [anon_sym_None] = ACTIONS(3887), + [anon_sym_0x] = ACTIONS(3889), + [anon_sym_0X] = ACTIONS(3889), + [anon_sym_0o] = ACTIONS(3889), + [anon_sym_0O] = ACTIONS(3889), + [anon_sym_0b] = ACTIONS(3889), + [anon_sym_0B] = ACTIONS(3889), + [aux_sym_integer_token4] = ACTIONS(3887), + [sym_float] = ACTIONS(3889), + [anon_sym_await] = ACTIONS(3887), + [anon_sym_api] = ACTIONS(3887), + [sym_true] = ACTIONS(3887), + [sym_false] = ACTIONS(3887), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3887), + [anon_sym_include] = ACTIONS(3887), + [anon_sym_DEF] = ACTIONS(3887), + [anon_sym_IF] = ACTIONS(3887), + [anon_sym_cdef] = ACTIONS(3887), + [anon_sym_cpdef] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3887), + [anon_sym_ctypedef] = ACTIONS(3887), + [anon_sym_public] = ACTIONS(3887), + [anon_sym_packed] = ACTIONS(3887), + [anon_sym_inline] = ACTIONS(3887), + [anon_sym_readonly] = ACTIONS(3887), + [anon_sym_sizeof] = ACTIONS(3887), + [sym__dedent] = ACTIONS(3889), + [sym_string_start] = ACTIONS(3889), + }, + [1637] = { + [sym_identifier] = ACTIONS(3891), + [anon_sym_SEMI] = ACTIONS(3893), + [anon_sym_import] = ACTIONS(3891), + [anon_sym_cimport] = ACTIONS(3891), + [anon_sym_from] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_print] = ACTIONS(3891), + [anon_sym_assert] = ACTIONS(3891), + [anon_sym_return] = ACTIONS(3891), + [anon_sym_del] = ACTIONS(3891), + [anon_sym_raise] = ACTIONS(3891), + [anon_sym_pass] = ACTIONS(3891), + [anon_sym_break] = ACTIONS(3891), + [anon_sym_continue] = ACTIONS(3891), + [anon_sym_if] = ACTIONS(3891), + [anon_sym_match] = ACTIONS(3891), + [anon_sym_async] = ACTIONS(3891), + [anon_sym_for] = ACTIONS(3891), + [anon_sym_while] = ACTIONS(3891), + [anon_sym_try] = ACTIONS(3891), + [anon_sym_with] = ACTIONS(3891), + [anon_sym_def] = ACTIONS(3891), + [anon_sym_global] = ACTIONS(3891), + [anon_sym_nonlocal] = ACTIONS(3891), + [anon_sym_exec] = ACTIONS(3891), + [anon_sym_type] = ACTIONS(3891), + [anon_sym_class] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_AT] = ACTIONS(3893), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_not] = ACTIONS(3891), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_TILDE] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3893), + [anon_sym_lambda] = ACTIONS(3891), + [anon_sym_yield] = ACTIONS(3891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3893), + [anon_sym_None] = ACTIONS(3891), + [anon_sym_0x] = ACTIONS(3893), + [anon_sym_0X] = ACTIONS(3893), + [anon_sym_0o] = ACTIONS(3893), + [anon_sym_0O] = ACTIONS(3893), + [anon_sym_0b] = ACTIONS(3893), + [anon_sym_0B] = ACTIONS(3893), + [aux_sym_integer_token4] = ACTIONS(3891), + [sym_float] = ACTIONS(3893), + [anon_sym_await] = ACTIONS(3891), + [anon_sym_api] = ACTIONS(3891), + [sym_true] = ACTIONS(3891), + [sym_false] = ACTIONS(3891), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3891), + [anon_sym_include] = ACTIONS(3891), + [anon_sym_DEF] = ACTIONS(3891), + [anon_sym_IF] = ACTIONS(3891), + [anon_sym_cdef] = ACTIONS(3891), + [anon_sym_cpdef] = ACTIONS(3891), + [anon_sym_new] = ACTIONS(3891), + [anon_sym_ctypedef] = ACTIONS(3891), + [anon_sym_public] = ACTIONS(3891), + [anon_sym_packed] = ACTIONS(3891), + [anon_sym_inline] = ACTIONS(3891), + [anon_sym_readonly] = ACTIONS(3891), + [anon_sym_sizeof] = ACTIONS(3891), + [sym__dedent] = ACTIONS(3893), + [sym_string_start] = ACTIONS(3893), + }, + [1638] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1639] = { + [sym_identifier] = ACTIONS(3895), + [anon_sym_import] = ACTIONS(3895), + [anon_sym_cimport] = ACTIONS(3895), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_LPAREN] = ACTIONS(3897), + [anon_sym_STAR] = ACTIONS(3897), + [anon_sym_print] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_del] = ACTIONS(3895), + [anon_sym_raise] = ACTIONS(3895), + [anon_sym_pass] = ACTIONS(3895), + [anon_sym_break] = ACTIONS(3895), + [anon_sym_continue] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_async] = ACTIONS(3895), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_finally] = ACTIONS(3895), + [anon_sym_with] = ACTIONS(3895), + [anon_sym_def] = ACTIONS(3895), + [anon_sym_global] = ACTIONS(3895), + [anon_sym_nonlocal] = ACTIONS(3895), + [anon_sym_exec] = ACTIONS(3895), + [anon_sym_type] = ACTIONS(3895), + [anon_sym_class] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_AT] = ACTIONS(3897), + [anon_sym_DASH] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3897), + [anon_sym_PLUS] = ACTIONS(3897), + [anon_sym_not] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_TILDE] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_lambda] = ACTIONS(3895), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3897), + [anon_sym_None] = ACTIONS(3895), + [anon_sym_0x] = ACTIONS(3897), + [anon_sym_0X] = ACTIONS(3897), + [anon_sym_0o] = ACTIONS(3897), + [anon_sym_0O] = ACTIONS(3897), + [anon_sym_0b] = ACTIONS(3897), + [anon_sym_0B] = ACTIONS(3897), + [aux_sym_integer_token4] = ACTIONS(3895), + [sym_float] = ACTIONS(3897), + [anon_sym_await] = ACTIONS(3895), + [anon_sym_api] = ACTIONS(3895), + [sym_true] = ACTIONS(3895), + [sym_false] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3895), + [anon_sym_include] = ACTIONS(3895), + [anon_sym_DEF] = ACTIONS(3895), + [anon_sym_IF] = ACTIONS(3895), + [anon_sym_cdef] = ACTIONS(3895), + [anon_sym_cpdef] = ACTIONS(3895), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_ctypedef] = ACTIONS(3895), + [anon_sym_public] = ACTIONS(3895), + [anon_sym_packed] = ACTIONS(3895), + [anon_sym_inline] = ACTIONS(3895), + [anon_sym_readonly] = ACTIONS(3895), + [anon_sym_sizeof] = ACTIONS(3895), + [sym__dedent] = ACTIONS(3897), + [sym_string_start] = ACTIONS(3897), + }, + [1640] = { + [ts_builtin_sym_end] = ACTIONS(3899), + [sym_identifier] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3899), + [anon_sym_import] = ACTIONS(3901), + [anon_sym_cimport] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_STAR] = ACTIONS(3899), + [anon_sym_print] = ACTIONS(3901), + [anon_sym_assert] = ACTIONS(3901), + [anon_sym_return] = ACTIONS(3901), + [anon_sym_del] = ACTIONS(3901), + [anon_sym_raise] = ACTIONS(3901), + [anon_sym_pass] = ACTIONS(3901), + [anon_sym_break] = ACTIONS(3901), + [anon_sym_continue] = ACTIONS(3901), + [anon_sym_if] = ACTIONS(3901), + [anon_sym_match] = ACTIONS(3901), + [anon_sym_async] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3901), + [anon_sym_while] = ACTIONS(3901), + [anon_sym_try] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3901), + [anon_sym_def] = ACTIONS(3901), + [anon_sym_global] = ACTIONS(3901), + [anon_sym_nonlocal] = ACTIONS(3901), + [anon_sym_exec] = ACTIONS(3901), + [anon_sym_type] = ACTIONS(3901), + [anon_sym_class] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_AT] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3899), + [anon_sym_lambda] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3899), + [anon_sym_None] = ACTIONS(3901), + [anon_sym_0x] = ACTIONS(3899), + [anon_sym_0X] = ACTIONS(3899), + [anon_sym_0o] = ACTIONS(3899), + [anon_sym_0O] = ACTIONS(3899), + [anon_sym_0b] = ACTIONS(3899), + [anon_sym_0B] = ACTIONS(3899), + [aux_sym_integer_token4] = ACTIONS(3901), + [sym_float] = ACTIONS(3899), + [anon_sym_await] = ACTIONS(3901), + [anon_sym_api] = ACTIONS(3901), + [sym_true] = ACTIONS(3901), + [sym_false] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3901), + [anon_sym_include] = ACTIONS(3901), + [anon_sym_DEF] = ACTIONS(3901), + [anon_sym_IF] = ACTIONS(3901), + [anon_sym_cdef] = ACTIONS(3901), + [anon_sym_cpdef] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3901), + [anon_sym_ctypedef] = ACTIONS(3901), + [anon_sym_public] = ACTIONS(3901), + [anon_sym_packed] = ACTIONS(3901), + [anon_sym_inline] = ACTIONS(3901), + [anon_sym_readonly] = ACTIONS(3901), + [anon_sym_sizeof] = ACTIONS(3901), + [sym_string_start] = ACTIONS(3899), + }, + [1641] = { + [sym_identifier] = ACTIONS(3519), + [anon_sym_SEMI] = ACTIONS(3517), + [anon_sym_import] = ACTIONS(3519), + [anon_sym_cimport] = ACTIONS(3519), + [anon_sym_from] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_print] = ACTIONS(3519), + [anon_sym_assert] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3519), + [anon_sym_del] = ACTIONS(3519), + [anon_sym_raise] = ACTIONS(3519), + [anon_sym_pass] = ACTIONS(3519), + [anon_sym_break] = ACTIONS(3519), + [anon_sym_continue] = ACTIONS(3519), + [anon_sym_if] = ACTIONS(3519), + [anon_sym_match] = ACTIONS(3519), + [anon_sym_async] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), + [anon_sym_try] = ACTIONS(3519), + [anon_sym_with] = ACTIONS(3519), + [anon_sym_def] = ACTIONS(3519), + [anon_sym_global] = ACTIONS(3519), + [anon_sym_nonlocal] = ACTIONS(3519), + [anon_sym_exec] = ACTIONS(3519), + [anon_sym_type] = ACTIONS(3519), + [anon_sym_class] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_AT] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_not] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3517), + [anon_sym_LT] = ACTIONS(3517), + [anon_sym_lambda] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), + [anon_sym_None] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3517), + [anon_sym_0X] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3517), + [anon_sym_0O] = ACTIONS(3517), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0B] = ACTIONS(3517), + [aux_sym_integer_token4] = ACTIONS(3519), + [sym_float] = ACTIONS(3517), + [anon_sym_await] = ACTIONS(3519), + [anon_sym_api] = ACTIONS(3519), + [sym_true] = ACTIONS(3519), + [sym_false] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3519), + [anon_sym_include] = ACTIONS(3519), + [anon_sym_DEF] = ACTIONS(3519), + [anon_sym_IF] = ACTIONS(3519), + [anon_sym_cdef] = ACTIONS(3519), + [anon_sym_cpdef] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3519), + [anon_sym_ctypedef] = ACTIONS(3519), + [anon_sym_public] = ACTIONS(3519), + [anon_sym_packed] = ACTIONS(3519), + [anon_sym_inline] = ACTIONS(3519), + [anon_sym_readonly] = ACTIONS(3519), + [anon_sym_sizeof] = ACTIONS(3519), + [sym__dedent] = ACTIONS(3517), + [sym_string_start] = ACTIONS(3517), + }, + [1642] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4860), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1643] = { + [sym_identifier] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_import] = ACTIONS(3523), + [anon_sym_cimport] = ACTIONS(3523), + [anon_sym_from] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_print] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_del] = ACTIONS(3523), + [anon_sym_raise] = ACTIONS(3523), + [anon_sym_pass] = ACTIONS(3523), + [anon_sym_break] = ACTIONS(3523), + [anon_sym_continue] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_async] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_with] = ACTIONS(3523), + [anon_sym_def] = ACTIONS(3523), + [anon_sym_global] = ACTIONS(3523), + [anon_sym_nonlocal] = ACTIONS(3523), + [anon_sym_exec] = ACTIONS(3523), + [anon_sym_type] = ACTIONS(3523), + [anon_sym_class] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_AT] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_not] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_lambda] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [anon_sym_None] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3521), + [anon_sym_0X] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3521), + [anon_sym_0O] = ACTIONS(3521), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0B] = ACTIONS(3521), + [aux_sym_integer_token4] = ACTIONS(3523), + [sym_float] = ACTIONS(3521), + [anon_sym_await] = ACTIONS(3523), + [anon_sym_api] = ACTIONS(3523), + [sym_true] = ACTIONS(3523), + [sym_false] = ACTIONS(3523), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3523), + [anon_sym_include] = ACTIONS(3523), + [anon_sym_DEF] = ACTIONS(3523), + [anon_sym_IF] = ACTIONS(3523), + [anon_sym_cdef] = ACTIONS(3523), + [anon_sym_cpdef] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_ctypedef] = ACTIONS(3523), + [anon_sym_public] = ACTIONS(3523), + [anon_sym_packed] = ACTIONS(3523), + [anon_sym_inline] = ACTIONS(3523), + [anon_sym_readonly] = ACTIONS(3523), + [anon_sym_sizeof] = ACTIONS(3523), + [sym__dedent] = ACTIONS(3521), + [sym_string_start] = ACTIONS(3521), + }, + [1644] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4861), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1645] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4863), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1646] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4302), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1647] = { + [sym_identifier] = ACTIONS(3903), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_import] = ACTIONS(3903), + [anon_sym_cimport] = ACTIONS(3903), + [anon_sym_from] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3905), + [anon_sym_print] = ACTIONS(3903), + [anon_sym_assert] = ACTIONS(3903), + [anon_sym_return] = ACTIONS(3903), + [anon_sym_del] = ACTIONS(3903), + [anon_sym_raise] = ACTIONS(3903), + [anon_sym_pass] = ACTIONS(3903), + [anon_sym_break] = ACTIONS(3903), + [anon_sym_continue] = ACTIONS(3903), + [anon_sym_if] = ACTIONS(3903), + [anon_sym_match] = ACTIONS(3903), + [anon_sym_async] = ACTIONS(3903), + [anon_sym_for] = ACTIONS(3903), + [anon_sym_while] = ACTIONS(3903), + [anon_sym_try] = ACTIONS(3903), + [anon_sym_with] = ACTIONS(3903), + [anon_sym_def] = ACTIONS(3903), + [anon_sym_global] = ACTIONS(3903), + [anon_sym_nonlocal] = ACTIONS(3903), + [anon_sym_exec] = ACTIONS(3903), + [anon_sym_type] = ACTIONS(3903), + [anon_sym_class] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(3905), + [anon_sym_AT] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_LBRACE] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_not] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_TILDE] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_yield] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3905), + [anon_sym_None] = ACTIONS(3903), + [anon_sym_0x] = ACTIONS(3905), + [anon_sym_0X] = ACTIONS(3905), + [anon_sym_0o] = ACTIONS(3905), + [anon_sym_0O] = ACTIONS(3905), + [anon_sym_0b] = ACTIONS(3905), + [anon_sym_0B] = ACTIONS(3905), + [aux_sym_integer_token4] = ACTIONS(3903), + [sym_float] = ACTIONS(3905), + [anon_sym_await] = ACTIONS(3903), + [anon_sym_api] = ACTIONS(3903), + [sym_true] = ACTIONS(3903), + [sym_false] = ACTIONS(3903), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3903), + [anon_sym_include] = ACTIONS(3903), + [anon_sym_DEF] = ACTIONS(3903), + [anon_sym_IF] = ACTIONS(3903), + [anon_sym_cdef] = ACTIONS(3903), + [anon_sym_cpdef] = ACTIONS(3903), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_ctypedef] = ACTIONS(3903), + [anon_sym_public] = ACTIONS(3903), + [anon_sym_packed] = ACTIONS(3903), + [anon_sym_inline] = ACTIONS(3903), + [anon_sym_readonly] = ACTIONS(3903), + [anon_sym_sizeof] = ACTIONS(3903), + [sym__dedent] = ACTIONS(3905), + [sym_string_start] = ACTIONS(3905), + }, + [1648] = { + [sym_identifier] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_import] = ACTIONS(3907), + [anon_sym_cimport] = ACTIONS(3907), + [anon_sym_from] = ACTIONS(3907), + [anon_sym_LPAREN] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3909), + [anon_sym_print] = ACTIONS(3907), + [anon_sym_assert] = ACTIONS(3907), + [anon_sym_return] = ACTIONS(3907), + [anon_sym_del] = ACTIONS(3907), + [anon_sym_raise] = ACTIONS(3907), + [anon_sym_pass] = ACTIONS(3907), + [anon_sym_break] = ACTIONS(3907), + [anon_sym_continue] = ACTIONS(3907), + [anon_sym_if] = ACTIONS(3907), + [anon_sym_match] = ACTIONS(3907), + [anon_sym_async] = ACTIONS(3907), + [anon_sym_for] = ACTIONS(3907), + [anon_sym_while] = ACTIONS(3907), + [anon_sym_try] = ACTIONS(3907), + [anon_sym_with] = ACTIONS(3907), + [anon_sym_def] = ACTIONS(3907), + [anon_sym_global] = ACTIONS(3907), + [anon_sym_nonlocal] = ACTIONS(3907), + [anon_sym_exec] = ACTIONS(3907), + [anon_sym_type] = ACTIONS(3907), + [anon_sym_class] = ACTIONS(3907), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_AT] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_not] = ACTIONS(3907), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_TILDE] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_yield] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3909), + [anon_sym_None] = ACTIONS(3907), + [anon_sym_0x] = ACTIONS(3909), + [anon_sym_0X] = ACTIONS(3909), + [anon_sym_0o] = ACTIONS(3909), + [anon_sym_0O] = ACTIONS(3909), + [anon_sym_0b] = ACTIONS(3909), + [anon_sym_0B] = ACTIONS(3909), + [aux_sym_integer_token4] = ACTIONS(3907), + [sym_float] = ACTIONS(3909), + [anon_sym_await] = ACTIONS(3907), + [anon_sym_api] = ACTIONS(3907), + [sym_true] = ACTIONS(3907), + [sym_false] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3907), + [anon_sym_include] = ACTIONS(3907), + [anon_sym_DEF] = ACTIONS(3907), + [anon_sym_IF] = ACTIONS(3907), + [anon_sym_cdef] = ACTIONS(3907), + [anon_sym_cpdef] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3907), + [anon_sym_ctypedef] = ACTIONS(3907), + [anon_sym_public] = ACTIONS(3907), + [anon_sym_packed] = ACTIONS(3907), + [anon_sym_inline] = ACTIONS(3907), + [anon_sym_readonly] = ACTIONS(3907), + [anon_sym_sizeof] = ACTIONS(3907), + [sym__dedent] = ACTIONS(3909), + [sym_string_start] = ACTIONS(3909), + }, + [1649] = { + [sym_identifier] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_import] = ACTIONS(3911), + [anon_sym_cimport] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_print] = ACTIONS(3911), + [anon_sym_assert] = ACTIONS(3911), + [anon_sym_return] = ACTIONS(3911), + [anon_sym_del] = ACTIONS(3911), + [anon_sym_raise] = ACTIONS(3911), + [anon_sym_pass] = ACTIONS(3911), + [anon_sym_break] = ACTIONS(3911), + [anon_sym_continue] = ACTIONS(3911), + [anon_sym_if] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(3911), + [anon_sym_async] = ACTIONS(3911), + [anon_sym_for] = ACTIONS(3911), + [anon_sym_while] = ACTIONS(3911), + [anon_sym_try] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3911), + [anon_sym_def] = ACTIONS(3911), + [anon_sym_global] = ACTIONS(3911), + [anon_sym_nonlocal] = ACTIONS(3911), + [anon_sym_exec] = ACTIONS(3911), + [anon_sym_type] = ACTIONS(3911), + [anon_sym_class] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_AT] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_LBRACE] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_not] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_TILDE] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_lambda] = ACTIONS(3911), + [anon_sym_yield] = ACTIONS(3911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3913), + [anon_sym_None] = ACTIONS(3911), + [anon_sym_0x] = ACTIONS(3913), + [anon_sym_0X] = ACTIONS(3913), + [anon_sym_0o] = ACTIONS(3913), + [anon_sym_0O] = ACTIONS(3913), + [anon_sym_0b] = ACTIONS(3913), + [anon_sym_0B] = ACTIONS(3913), + [aux_sym_integer_token4] = ACTIONS(3911), + [sym_float] = ACTIONS(3913), + [anon_sym_await] = ACTIONS(3911), + [anon_sym_api] = ACTIONS(3911), + [sym_true] = ACTIONS(3911), + [sym_false] = ACTIONS(3911), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3911), + [anon_sym_include] = ACTIONS(3911), + [anon_sym_DEF] = ACTIONS(3911), + [anon_sym_IF] = ACTIONS(3911), + [anon_sym_cdef] = ACTIONS(3911), + [anon_sym_cpdef] = ACTIONS(3911), + [anon_sym_new] = ACTIONS(3911), + [anon_sym_ctypedef] = ACTIONS(3911), + [anon_sym_public] = ACTIONS(3911), + [anon_sym_packed] = ACTIONS(3911), + [anon_sym_inline] = ACTIONS(3911), + [anon_sym_readonly] = ACTIONS(3911), + [anon_sym_sizeof] = ACTIONS(3911), + [sym__dedent] = ACTIONS(3913), + [sym_string_start] = ACTIONS(3913), + }, + [1650] = { + [sym_identifier] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_cimport] = ACTIONS(3441), + [anon_sym_from] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_print] = ACTIONS(3441), + [anon_sym_assert] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_del] = ACTIONS(3441), + [anon_sym_raise] = ACTIONS(3441), + [anon_sym_pass] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_match] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_def] = ACTIONS(3441), + [anon_sym_global] = ACTIONS(3441), + [anon_sym_nonlocal] = ACTIONS(3441), + [anon_sym_exec] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [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(3441), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_lambda] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), + [anon_sym_None] = ACTIONS(3441), + [anon_sym_0x] = ACTIONS(3439), + [anon_sym_0X] = ACTIONS(3439), + [anon_sym_0o] = ACTIONS(3439), + [anon_sym_0O] = ACTIONS(3439), + [anon_sym_0b] = ACTIONS(3439), + [anon_sym_0B] = ACTIONS(3439), + [aux_sym_integer_token4] = ACTIONS(3441), + [sym_float] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_api] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3441), + [anon_sym_include] = ACTIONS(3441), + [anon_sym_DEF] = ACTIONS(3441), + [anon_sym_IF] = ACTIONS(3441), + [anon_sym_cdef] = ACTIONS(3441), + [anon_sym_cpdef] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_ctypedef] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_packed] = ACTIONS(3441), + [anon_sym_inline] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_sizeof] = ACTIONS(3441), + [sym__dedent] = ACTIONS(3439), + [sym_string_start] = ACTIONS(3439), + }, + [1651] = { + [sym_identifier] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3917), + [anon_sym_import] = ACTIONS(3915), + [anon_sym_cimport] = ACTIONS(3915), + [anon_sym_from] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_print] = ACTIONS(3915), + [anon_sym_assert] = ACTIONS(3915), + [anon_sym_return] = ACTIONS(3915), + [anon_sym_del] = ACTIONS(3915), + [anon_sym_raise] = ACTIONS(3915), + [anon_sym_pass] = ACTIONS(3915), + [anon_sym_break] = ACTIONS(3915), + [anon_sym_continue] = ACTIONS(3915), + [anon_sym_if] = ACTIONS(3915), + [anon_sym_match] = ACTIONS(3915), + [anon_sym_async] = ACTIONS(3915), + [anon_sym_for] = ACTIONS(3915), + [anon_sym_while] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(3915), + [anon_sym_with] = ACTIONS(3915), + [anon_sym_def] = ACTIONS(3915), + [anon_sym_global] = ACTIONS(3915), + [anon_sym_nonlocal] = ACTIONS(3915), + [anon_sym_exec] = ACTIONS(3915), + [anon_sym_type] = ACTIONS(3915), + [anon_sym_class] = ACTIONS(3915), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_AT] = ACTIONS(3917), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_not] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_TILDE] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3917), + [anon_sym_lambda] = ACTIONS(3915), + [anon_sym_yield] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3917), + [anon_sym_None] = ACTIONS(3915), + [anon_sym_0x] = ACTIONS(3917), + [anon_sym_0X] = ACTIONS(3917), + [anon_sym_0o] = ACTIONS(3917), + [anon_sym_0O] = ACTIONS(3917), + [anon_sym_0b] = ACTIONS(3917), + [anon_sym_0B] = ACTIONS(3917), + [aux_sym_integer_token4] = ACTIONS(3915), + [sym_float] = ACTIONS(3917), + [anon_sym_await] = ACTIONS(3915), + [anon_sym_api] = ACTIONS(3915), + [sym_true] = ACTIONS(3915), + [sym_false] = ACTIONS(3915), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3915), + [anon_sym_include] = ACTIONS(3915), + [anon_sym_DEF] = ACTIONS(3915), + [anon_sym_IF] = ACTIONS(3915), + [anon_sym_cdef] = ACTIONS(3915), + [anon_sym_cpdef] = ACTIONS(3915), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_ctypedef] = ACTIONS(3915), + [anon_sym_public] = ACTIONS(3915), + [anon_sym_packed] = ACTIONS(3915), + [anon_sym_inline] = ACTIONS(3915), + [anon_sym_readonly] = ACTIONS(3915), + [anon_sym_sizeof] = ACTIONS(3915), + [sym__dedent] = ACTIONS(3917), + [sym_string_start] = ACTIONS(3917), + }, + [1652] = { + [sym_identifier] = ACTIONS(3919), + [anon_sym_SEMI] = ACTIONS(3921), + [anon_sym_import] = ACTIONS(3919), + [anon_sym_cimport] = ACTIONS(3919), + [anon_sym_from] = ACTIONS(3919), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3921), + [anon_sym_print] = ACTIONS(3919), + [anon_sym_assert] = ACTIONS(3919), + [anon_sym_return] = ACTIONS(3919), + [anon_sym_del] = ACTIONS(3919), + [anon_sym_raise] = ACTIONS(3919), + [anon_sym_pass] = ACTIONS(3919), + [anon_sym_break] = ACTIONS(3919), + [anon_sym_continue] = ACTIONS(3919), + [anon_sym_if] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(3919), + [anon_sym_async] = ACTIONS(3919), + [anon_sym_for] = ACTIONS(3919), + [anon_sym_while] = ACTIONS(3919), + [anon_sym_try] = ACTIONS(3919), + [anon_sym_with] = ACTIONS(3919), + [anon_sym_def] = ACTIONS(3919), + [anon_sym_global] = ACTIONS(3919), + [anon_sym_nonlocal] = ACTIONS(3919), + [anon_sym_exec] = ACTIONS(3919), + [anon_sym_type] = ACTIONS(3919), + [anon_sym_class] = ACTIONS(3919), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_AT] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_lambda] = ACTIONS(3919), + [anon_sym_yield] = ACTIONS(3919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3921), + [anon_sym_None] = ACTIONS(3919), + [anon_sym_0x] = ACTIONS(3921), + [anon_sym_0X] = ACTIONS(3921), + [anon_sym_0o] = ACTIONS(3921), + [anon_sym_0O] = ACTIONS(3921), + [anon_sym_0b] = ACTIONS(3921), + [anon_sym_0B] = ACTIONS(3921), + [aux_sym_integer_token4] = ACTIONS(3919), + [sym_float] = ACTIONS(3921), + [anon_sym_await] = ACTIONS(3919), + [anon_sym_api] = ACTIONS(3919), + [sym_true] = ACTIONS(3919), + [sym_false] = ACTIONS(3919), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3919), + [anon_sym_include] = ACTIONS(3919), + [anon_sym_DEF] = ACTIONS(3919), + [anon_sym_IF] = ACTIONS(3919), + [anon_sym_cdef] = ACTIONS(3919), + [anon_sym_cpdef] = ACTIONS(3919), + [anon_sym_new] = ACTIONS(3919), + [anon_sym_ctypedef] = ACTIONS(3919), + [anon_sym_public] = ACTIONS(3919), + [anon_sym_packed] = ACTIONS(3919), + [anon_sym_inline] = ACTIONS(3919), + [anon_sym_readonly] = ACTIONS(3919), + [anon_sym_sizeof] = ACTIONS(3919), + [sym__dedent] = ACTIONS(3921), + [sym_string_start] = ACTIONS(3921), + }, + [1653] = { + [sym_identifier] = ACTIONS(3923), + [anon_sym_SEMI] = ACTIONS(3925), + [anon_sym_import] = ACTIONS(3923), + [anon_sym_cimport] = ACTIONS(3923), + [anon_sym_from] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_STAR] = ACTIONS(3925), + [anon_sym_print] = ACTIONS(3923), + [anon_sym_assert] = ACTIONS(3923), + [anon_sym_return] = ACTIONS(3923), + [anon_sym_del] = ACTIONS(3923), + [anon_sym_raise] = ACTIONS(3923), + [anon_sym_pass] = ACTIONS(3923), + [anon_sym_break] = ACTIONS(3923), + [anon_sym_continue] = ACTIONS(3923), + [anon_sym_if] = ACTIONS(3923), + [anon_sym_match] = ACTIONS(3923), + [anon_sym_async] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3923), + [anon_sym_while] = ACTIONS(3923), + [anon_sym_try] = ACTIONS(3923), + [anon_sym_with] = ACTIONS(3923), + [anon_sym_def] = ACTIONS(3923), + [anon_sym_global] = ACTIONS(3923), + [anon_sym_nonlocal] = ACTIONS(3923), + [anon_sym_exec] = ACTIONS(3923), + [anon_sym_type] = ACTIONS(3923), + [anon_sym_class] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_AT] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_not] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3925), + [anon_sym_LT] = ACTIONS(3925), + [anon_sym_lambda] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3925), + [anon_sym_None] = ACTIONS(3923), + [anon_sym_0x] = ACTIONS(3925), + [anon_sym_0X] = ACTIONS(3925), + [anon_sym_0o] = ACTIONS(3925), + [anon_sym_0O] = ACTIONS(3925), + [anon_sym_0b] = ACTIONS(3925), + [anon_sym_0B] = ACTIONS(3925), + [aux_sym_integer_token4] = ACTIONS(3923), + [sym_float] = ACTIONS(3925), + [anon_sym_await] = ACTIONS(3923), + [anon_sym_api] = ACTIONS(3923), + [sym_true] = ACTIONS(3923), + [sym_false] = ACTIONS(3923), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3923), + [anon_sym_include] = ACTIONS(3923), + [anon_sym_DEF] = ACTIONS(3923), + [anon_sym_IF] = ACTIONS(3923), + [anon_sym_cdef] = ACTIONS(3923), + [anon_sym_cpdef] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3923), + [anon_sym_ctypedef] = ACTIONS(3923), + [anon_sym_public] = ACTIONS(3923), + [anon_sym_packed] = ACTIONS(3923), + [anon_sym_inline] = ACTIONS(3923), + [anon_sym_readonly] = ACTIONS(3923), + [anon_sym_sizeof] = ACTIONS(3923), + [sym__dedent] = ACTIONS(3925), + [sym_string_start] = ACTIONS(3925), + }, + [1654] = { + [sym_identifier] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_import] = ACTIONS(3133), + [anon_sym_cimport] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_print] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_del] = ACTIONS(3133), + [anon_sym_raise] = ACTIONS(3133), + [anon_sym_pass] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_def] = ACTIONS(3133), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_nonlocal] = ACTIONS(3133), + [anon_sym_exec] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [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(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_lambda] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), + [anon_sym_None] = ACTIONS(3133), + [anon_sym_0x] = ACTIONS(3131), + [anon_sym_0X] = ACTIONS(3131), + [anon_sym_0o] = ACTIONS(3131), + [anon_sym_0O] = ACTIONS(3131), + [anon_sym_0b] = ACTIONS(3131), + [anon_sym_0B] = ACTIONS(3131), + [aux_sym_integer_token4] = ACTIONS(3133), + [sym_float] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_api] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_include] = ACTIONS(3133), + [anon_sym_DEF] = ACTIONS(3133), + [anon_sym_IF] = ACTIONS(3133), + [anon_sym_cdef] = ACTIONS(3133), + [anon_sym_cpdef] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_ctypedef] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_packed] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [sym__dedent] = ACTIONS(3131), + [sym_string_start] = ACTIONS(3131), + }, + [1655] = { + [sym_identifier] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_cimport] = ACTIONS(3137), + [anon_sym_from] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_STAR] = ACTIONS(3135), + [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_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_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(3135), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_not] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3135), + [anon_sym_lambda] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), + [anon_sym_None] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3135), + [anon_sym_0X] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3135), + [anon_sym_0O] = ACTIONS(3135), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0B] = ACTIONS(3135), + [aux_sym_integer_token4] = ACTIONS(3137), + [sym_float] = ACTIONS(3135), + [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_IF] = 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(3135), + [sym_string_start] = ACTIONS(3135), + }, + [1656] = { + [sym_identifier] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_cimport] = ACTIONS(3141), + [anon_sym_from] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_print] = ACTIONS(3141), + [anon_sym_assert] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_del] = ACTIONS(3141), + [anon_sym_raise] = ACTIONS(3141), + [anon_sym_pass] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_def] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_nonlocal] = ACTIONS(3141), + [anon_sym_exec] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [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(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_lambda] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), + [anon_sym_None] = ACTIONS(3141), + [anon_sym_0x] = ACTIONS(3139), + [anon_sym_0X] = ACTIONS(3139), + [anon_sym_0o] = ACTIONS(3139), + [anon_sym_0O] = ACTIONS(3139), + [anon_sym_0b] = ACTIONS(3139), + [anon_sym_0B] = ACTIONS(3139), + [aux_sym_integer_token4] = ACTIONS(3141), + [sym_float] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_api] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3141), + [anon_sym_include] = ACTIONS(3141), + [anon_sym_DEF] = ACTIONS(3141), + [anon_sym_IF] = ACTIONS(3141), + [anon_sym_cdef] = ACTIONS(3141), + [anon_sym_cpdef] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_ctypedef] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_packed] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_sizeof] = ACTIONS(3141), + [sym__dedent] = ACTIONS(3139), + [sym_string_start] = ACTIONS(3139), + }, + [1657] = { + [sym_identifier] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_cimport] = ACTIONS(3145), + [anon_sym_from] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_print] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_del] = ACTIONS(3145), + [anon_sym_raise] = ACTIONS(3145), + [anon_sym_pass] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_def] = ACTIONS(3145), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_nonlocal] = ACTIONS(3145), + [anon_sym_exec] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_AT] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_not] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3143), + [anon_sym_lambda] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3143), + [anon_sym_None] = ACTIONS(3145), + [anon_sym_0x] = ACTIONS(3143), + [anon_sym_0X] = ACTIONS(3143), + [anon_sym_0o] = ACTIONS(3143), + [anon_sym_0O] = ACTIONS(3143), + [anon_sym_0b] = ACTIONS(3143), + [anon_sym_0B] = ACTIONS(3143), + [aux_sym_integer_token4] = ACTIONS(3145), + [sym_float] = ACTIONS(3143), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_api] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3145), + [anon_sym_include] = ACTIONS(3145), + [anon_sym_DEF] = ACTIONS(3145), + [anon_sym_IF] = ACTIONS(3145), + [anon_sym_cdef] = ACTIONS(3145), + [anon_sym_cpdef] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_ctypedef] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_packed] = ACTIONS(3145), + [anon_sym_inline] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3145), + [sym__dedent] = ACTIONS(3143), + [sym_string_start] = ACTIONS(3143), + }, + [1658] = { + [sym_identifier] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_cimport] = ACTIONS(3149), + [anon_sym_from] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_print] = ACTIONS(3149), + [anon_sym_assert] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_del] = ACTIONS(3149), + [anon_sym_raise] = ACTIONS(3149), + [anon_sym_pass] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3149), + [anon_sym_def] = ACTIONS(3149), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_nonlocal] = ACTIONS(3149), + [anon_sym_exec] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_lambda] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), + [anon_sym_None] = ACTIONS(3149), + [anon_sym_0x] = ACTIONS(3147), + [anon_sym_0X] = ACTIONS(3147), + [anon_sym_0o] = ACTIONS(3147), + [anon_sym_0O] = ACTIONS(3147), + [anon_sym_0b] = ACTIONS(3147), + [anon_sym_0B] = ACTIONS(3147), + [aux_sym_integer_token4] = ACTIONS(3149), + [sym_float] = ACTIONS(3147), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_api] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3149), + [anon_sym_include] = ACTIONS(3149), + [anon_sym_DEF] = ACTIONS(3149), + [anon_sym_IF] = ACTIONS(3149), + [anon_sym_cdef] = ACTIONS(3149), + [anon_sym_cpdef] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_ctypedef] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_packed] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3149), + [sym__dedent] = ACTIONS(3147), + [sym_string_start] = ACTIONS(3147), + }, + [1659] = { + [sym_identifier] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3151), + [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_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_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), + [anon_sym_0x] = ACTIONS(3151), + [anon_sym_0X] = ACTIONS(3151), + [anon_sym_0o] = ACTIONS(3151), + [anon_sym_0O] = ACTIONS(3151), + [anon_sym_0b] = ACTIONS(3151), + [anon_sym_0B] = ACTIONS(3151), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1660] = { + [sym_identifier] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_import] = ACTIONS(3133), + [anon_sym_cimport] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_print] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_del] = ACTIONS(3133), + [anon_sym_raise] = ACTIONS(3133), + [anon_sym_pass] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_def] = ACTIONS(3133), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_nonlocal] = ACTIONS(3133), + [anon_sym_exec] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [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(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_lambda] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), + [anon_sym_None] = ACTIONS(3133), + [anon_sym_0x] = ACTIONS(3131), + [anon_sym_0X] = ACTIONS(3131), + [anon_sym_0o] = ACTIONS(3131), + [anon_sym_0O] = ACTIONS(3131), + [anon_sym_0b] = ACTIONS(3131), + [anon_sym_0B] = ACTIONS(3131), + [aux_sym_integer_token4] = ACTIONS(3133), + [sym_float] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_api] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_include] = ACTIONS(3133), + [anon_sym_DEF] = ACTIONS(3133), + [anon_sym_IF] = ACTIONS(3133), + [anon_sym_cdef] = ACTIONS(3133), + [anon_sym_cpdef] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_ctypedef] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_packed] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [sym__dedent] = ACTIONS(3131), + [sym_string_start] = ACTIONS(3131), + }, + [1661] = { + [sym_identifier] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_cimport] = ACTIONS(3157), + [anon_sym_from] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_print] = ACTIONS(3157), + [anon_sym_assert] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_del] = ACTIONS(3157), + [anon_sym_raise] = ACTIONS(3157), + [anon_sym_pass] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_def] = ACTIONS(3157), + [anon_sym_global] = ACTIONS(3157), + [anon_sym_nonlocal] = ACTIONS(3157), + [anon_sym_exec] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_lambda] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), + [anon_sym_None] = ACTIONS(3157), + [anon_sym_0x] = ACTIONS(3155), + [anon_sym_0X] = ACTIONS(3155), + [anon_sym_0o] = ACTIONS(3155), + [anon_sym_0O] = ACTIONS(3155), + [anon_sym_0b] = ACTIONS(3155), + [anon_sym_0B] = ACTIONS(3155), + [aux_sym_integer_token4] = ACTIONS(3157), + [sym_float] = ACTIONS(3155), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_api] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3157), + [anon_sym_include] = ACTIONS(3157), + [anon_sym_DEF] = ACTIONS(3157), + [anon_sym_IF] = ACTIONS(3157), + [anon_sym_cdef] = ACTIONS(3157), + [anon_sym_cpdef] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_ctypedef] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_packed] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_sizeof] = ACTIONS(3157), + [sym__dedent] = ACTIONS(3155), + [sym_string_start] = ACTIONS(3155), + }, + [1662] = { + [sym_identifier] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_cimport] = ACTIONS(3141), + [anon_sym_from] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_print] = ACTIONS(3141), + [anon_sym_assert] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_del] = ACTIONS(3141), + [anon_sym_raise] = ACTIONS(3141), + [anon_sym_pass] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_def] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_nonlocal] = ACTIONS(3141), + [anon_sym_exec] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [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(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_lambda] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), + [anon_sym_None] = ACTIONS(3141), + [anon_sym_0x] = ACTIONS(3139), + [anon_sym_0X] = ACTIONS(3139), + [anon_sym_0o] = ACTIONS(3139), + [anon_sym_0O] = ACTIONS(3139), + [anon_sym_0b] = ACTIONS(3139), + [anon_sym_0B] = ACTIONS(3139), + [aux_sym_integer_token4] = ACTIONS(3141), + [sym_float] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_api] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3141), + [anon_sym_include] = ACTIONS(3141), + [anon_sym_DEF] = ACTIONS(3141), + [anon_sym_IF] = ACTIONS(3141), + [anon_sym_cdef] = ACTIONS(3141), + [anon_sym_cpdef] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_ctypedef] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_packed] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_sizeof] = ACTIONS(3141), + [sym__dedent] = ACTIONS(3139), + [sym_string_start] = ACTIONS(3139), + }, + [1663] = { + [sym_identifier] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3163), + [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_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_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), + [anon_sym_0x] = ACTIONS(3163), + [anon_sym_0X] = ACTIONS(3163), + [anon_sym_0o] = ACTIONS(3163), + [anon_sym_0O] = ACTIONS(3163), + [anon_sym_0b] = ACTIONS(3163), + [anon_sym_0B] = ACTIONS(3163), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1664] = { + [sym_identifier] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_import] = ACTIONS(3133), + [anon_sym_cimport] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_print] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_del] = ACTIONS(3133), + [anon_sym_raise] = ACTIONS(3133), + [anon_sym_pass] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_def] = ACTIONS(3133), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_nonlocal] = ACTIONS(3133), + [anon_sym_exec] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [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(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_lambda] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), + [anon_sym_None] = ACTIONS(3133), + [anon_sym_0x] = ACTIONS(3131), + [anon_sym_0X] = ACTIONS(3131), + [anon_sym_0o] = ACTIONS(3131), + [anon_sym_0O] = ACTIONS(3131), + [anon_sym_0b] = ACTIONS(3131), + [anon_sym_0B] = ACTIONS(3131), + [aux_sym_integer_token4] = ACTIONS(3133), + [sym_float] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_api] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_include] = ACTIONS(3133), + [anon_sym_DEF] = ACTIONS(3133), + [anon_sym_IF] = ACTIONS(3133), + [anon_sym_cdef] = ACTIONS(3133), + [anon_sym_cpdef] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_ctypedef] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_packed] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [sym__dedent] = ACTIONS(3131), + [sym_string_start] = ACTIONS(3131), + }, + [1665] = { + [sym_identifier] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3167), + [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_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_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), + [anon_sym_0x] = ACTIONS(3167), + [anon_sym_0X] = ACTIONS(3167), + [anon_sym_0o] = ACTIONS(3167), + [anon_sym_0O] = ACTIONS(3167), + [anon_sym_0b] = ACTIONS(3167), + [anon_sym_0B] = ACTIONS(3167), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1666] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1667] = { + [sym_identifier] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3181), + [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_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_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), + [anon_sym_0x] = ACTIONS(3181), + [anon_sym_0X] = ACTIONS(3181), + [anon_sym_0o] = ACTIONS(3181), + [anon_sym_0O] = ACTIONS(3181), + [anon_sym_0b] = ACTIONS(3181), + [anon_sym_0B] = ACTIONS(3181), + [aux_sym_integer_token4] = 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), + }, + [1668] = { + [sym_identifier] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_cimport] = ACTIONS(3187), + [anon_sym_from] = ACTIONS(3187), + [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), + [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_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_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(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(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(3185), + [anon_sym_None] = ACTIONS(3187), + [anon_sym_0x] = ACTIONS(3185), + [anon_sym_0X] = ACTIONS(3185), + [anon_sym_0o] = ACTIONS(3185), + [anon_sym_0O] = ACTIONS(3185), + [anon_sym_0b] = ACTIONS(3185), + [anon_sym_0B] = ACTIONS(3185), + [aux_sym_integer_token4] = ACTIONS(3187), + [sym_float] = ACTIONS(3185), + [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_IF] = 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(3185), + [sym_string_start] = ACTIONS(3185), + }, + [1669] = { + [sym_identifier] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3189), + [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_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_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), + [anon_sym_0x] = ACTIONS(3189), + [anon_sym_0X] = ACTIONS(3189), + [anon_sym_0o] = ACTIONS(3189), + [anon_sym_0O] = ACTIONS(3189), + [anon_sym_0b] = ACTIONS(3189), + [anon_sym_0B] = ACTIONS(3189), + [aux_sym_integer_token4] = 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), + }, + [1670] = { + [sym_identifier] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3193), + [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(3195), + [anon_sym_assert] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_del] = ACTIONS(3195), + [anon_sym_raise] = ACTIONS(3195), + [anon_sym_pass] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_match] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_def] = ACTIONS(3195), + [anon_sym_global] = ACTIONS(3195), + [anon_sym_nonlocal] = ACTIONS(3195), + [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_not] = ACTIONS(3195), + [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(3193), + [anon_sym_None] = ACTIONS(3195), + [anon_sym_0x] = ACTIONS(3193), + [anon_sym_0X] = ACTIONS(3193), + [anon_sym_0o] = ACTIONS(3193), + [anon_sym_0O] = ACTIONS(3193), + [anon_sym_0b] = ACTIONS(3193), + [anon_sym_0B] = ACTIONS(3193), + [aux_sym_integer_token4] = ACTIONS(3195), + [sym_float] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_api] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [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), + [anon_sym_ctypedef] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_packed] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_sizeof] = ACTIONS(3195), + [sym__dedent] = ACTIONS(3193), + [sym_string_start] = ACTIONS(3193), + }, + [1671] = { + [sym_identifier] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3197), + [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_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_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), + [anon_sym_0x] = ACTIONS(3197), + [anon_sym_0X] = ACTIONS(3197), + [anon_sym_0o] = ACTIONS(3197), + [anon_sym_0O] = ACTIONS(3197), + [anon_sym_0b] = ACTIONS(3197), + [anon_sym_0B] = ACTIONS(3197), + [aux_sym_integer_token4] = 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), + }, + [1672] = { + [sym_identifier] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_cimport] = ACTIONS(3207), + [anon_sym_from] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_print] = ACTIONS(3207), + [anon_sym_assert] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_del] = ACTIONS(3207), + [anon_sym_raise] = ACTIONS(3207), + [anon_sym_pass] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_match] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_with] = ACTIONS(3207), + [anon_sym_def] = ACTIONS(3207), + [anon_sym_global] = ACTIONS(3207), + [anon_sym_nonlocal] = ACTIONS(3207), + [anon_sym_exec] = ACTIONS(3207), + [anon_sym_type] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_lambda] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), + [anon_sym_None] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3205), + [anon_sym_0X] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3205), + [anon_sym_0O] = ACTIONS(3205), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0B] = ACTIONS(3205), + [aux_sym_integer_token4] = ACTIONS(3207), + [sym_float] = ACTIONS(3205), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_api] = ACTIONS(3207), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3207), + [anon_sym_include] = ACTIONS(3207), + [anon_sym_DEF] = ACTIONS(3207), + [anon_sym_IF] = ACTIONS(3207), + [anon_sym_cdef] = ACTIONS(3207), + [anon_sym_cpdef] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_ctypedef] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_packed] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3207), + [sym__dedent] = ACTIONS(3205), + [sym_string_start] = ACTIONS(3205), + }, + [1673] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4866), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1674] = { + [ts_builtin_sym_end] = ACTIONS(3857), + [sym_identifier] = ACTIONS(3855), + [anon_sym_SEMI] = ACTIONS(3857), + [anon_sym_import] = ACTIONS(3855), + [anon_sym_cimport] = ACTIONS(3855), + [anon_sym_from] = ACTIONS(3855), + [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_print] = ACTIONS(3855), + [anon_sym_assert] = ACTIONS(3855), + [anon_sym_return] = ACTIONS(3855), + [anon_sym_del] = ACTIONS(3855), + [anon_sym_raise] = ACTIONS(3855), + [anon_sym_pass] = ACTIONS(3855), + [anon_sym_break] = ACTIONS(3855), + [anon_sym_continue] = ACTIONS(3855), + [anon_sym_if] = ACTIONS(3855), + [anon_sym_match] = ACTIONS(3855), + [anon_sym_async] = ACTIONS(3855), + [anon_sym_for] = ACTIONS(3855), + [anon_sym_while] = ACTIONS(3855), + [anon_sym_try] = ACTIONS(3855), + [anon_sym_with] = ACTIONS(3855), + [anon_sym_def] = ACTIONS(3855), + [anon_sym_global] = ACTIONS(3855), + [anon_sym_nonlocal] = ACTIONS(3855), + [anon_sym_exec] = ACTIONS(3855), + [anon_sym_type] = ACTIONS(3855), + [anon_sym_class] = ACTIONS(3855), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_AT] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_AMP] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3857), + [anon_sym_lambda] = ACTIONS(3855), + [anon_sym_yield] = ACTIONS(3855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3857), + [anon_sym_None] = ACTIONS(3855), + [anon_sym_0x] = ACTIONS(3857), + [anon_sym_0X] = ACTIONS(3857), + [anon_sym_0o] = ACTIONS(3857), + [anon_sym_0O] = ACTIONS(3857), + [anon_sym_0b] = ACTIONS(3857), + [anon_sym_0B] = ACTIONS(3857), + [aux_sym_integer_token4] = ACTIONS(3855), + [sym_float] = ACTIONS(3857), + [anon_sym_await] = ACTIONS(3855), + [anon_sym_api] = ACTIONS(3855), + [sym_true] = ACTIONS(3855), + [sym_false] = ACTIONS(3855), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3855), + [anon_sym_include] = ACTIONS(3855), + [anon_sym_DEF] = ACTIONS(3855), + [anon_sym_IF] = ACTIONS(3855), + [anon_sym_cdef] = ACTIONS(3855), + [anon_sym_cpdef] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(3855), + [anon_sym_ctypedef] = ACTIONS(3855), + [anon_sym_public] = ACTIONS(3855), + [anon_sym_packed] = ACTIONS(3855), + [anon_sym_inline] = ACTIONS(3855), + [anon_sym_readonly] = ACTIONS(3855), + [anon_sym_sizeof] = ACTIONS(3855), + [sym_string_start] = ACTIONS(3857), + }, + [1675] = { + [sym_identifier] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3625), + [anon_sym_import] = ACTIONS(3627), + [anon_sym_cimport] = ACTIONS(3627), + [anon_sym_from] = ACTIONS(3627), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_print] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_del] = ACTIONS(3627), + [anon_sym_raise] = ACTIONS(3627), + [anon_sym_pass] = ACTIONS(3627), + [anon_sym_break] = ACTIONS(3627), + [anon_sym_continue] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_async] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_with] = ACTIONS(3627), + [anon_sym_def] = ACTIONS(3627), + [anon_sym_global] = ACTIONS(3627), + [anon_sym_nonlocal] = ACTIONS(3627), + [anon_sym_exec] = ACTIONS(3627), + [anon_sym_type] = ACTIONS(3627), + [anon_sym_class] = ACTIONS(3627), + [anon_sym_LBRACK] = ACTIONS(3625), + [anon_sym_AT] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3625), + [anon_sym_PLUS] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_lambda] = ACTIONS(3627), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [anon_sym_None] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3625), + [anon_sym_0X] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3625), + [anon_sym_0O] = ACTIONS(3625), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0B] = ACTIONS(3625), + [aux_sym_integer_token4] = ACTIONS(3627), + [sym_float] = ACTIONS(3625), + [anon_sym_await] = ACTIONS(3627), + [anon_sym_api] = ACTIONS(3627), + [sym_true] = ACTIONS(3627), + [sym_false] = ACTIONS(3627), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3627), + [anon_sym_include] = ACTIONS(3627), + [anon_sym_DEF] = ACTIONS(3627), + [anon_sym_IF] = ACTIONS(3627), + [anon_sym_cdef] = ACTIONS(3627), + [anon_sym_cpdef] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_ctypedef] = ACTIONS(3627), + [anon_sym_public] = ACTIONS(3627), + [anon_sym_packed] = ACTIONS(3627), + [anon_sym_inline] = ACTIONS(3627), + [anon_sym_readonly] = ACTIONS(3627), + [anon_sym_sizeof] = ACTIONS(3627), + [sym__dedent] = ACTIONS(3625), + [sym_string_start] = ACTIONS(3625), + }, + [1676] = { + [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_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_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), + [anon_sym_0x] = ACTIONS(3217), + [anon_sym_0X] = ACTIONS(3217), + [anon_sym_0o] = ACTIONS(3217), + [anon_sym_0O] = ACTIONS(3217), + [anon_sym_0b] = ACTIONS(3217), + [anon_sym_0B] = ACTIONS(3217), + [aux_sym_integer_token4] = 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_IF] = 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), + }, + [1677] = { + [sym_identifier] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3633), + [anon_sym_import] = ACTIONS(3635), + [anon_sym_cimport] = ACTIONS(3635), + [anon_sym_from] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_print] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_del] = ACTIONS(3635), + [anon_sym_raise] = ACTIONS(3635), + [anon_sym_pass] = ACTIONS(3635), + [anon_sym_break] = ACTIONS(3635), + [anon_sym_continue] = ACTIONS(3635), + [anon_sym_if] = ACTIONS(3635), + [anon_sym_match] = ACTIONS(3635), + [anon_sym_async] = ACTIONS(3635), + [anon_sym_for] = ACTIONS(3635), + [anon_sym_while] = ACTIONS(3635), + [anon_sym_try] = ACTIONS(3635), + [anon_sym_with] = ACTIONS(3635), + [anon_sym_def] = ACTIONS(3635), + [anon_sym_global] = ACTIONS(3635), + [anon_sym_nonlocal] = ACTIONS(3635), + [anon_sym_exec] = ACTIONS(3635), + [anon_sym_type] = ACTIONS(3635), + [anon_sym_class] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_AT] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_not] = ACTIONS(3635), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_lambda] = ACTIONS(3635), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [anon_sym_None] = ACTIONS(3635), + [anon_sym_0x] = ACTIONS(3633), + [anon_sym_0X] = ACTIONS(3633), + [anon_sym_0o] = ACTIONS(3633), + [anon_sym_0O] = ACTIONS(3633), + [anon_sym_0b] = ACTIONS(3633), + [anon_sym_0B] = ACTIONS(3633), + [aux_sym_integer_token4] = ACTIONS(3635), + [sym_float] = ACTIONS(3633), + [anon_sym_await] = ACTIONS(3635), + [anon_sym_api] = ACTIONS(3635), + [sym_true] = ACTIONS(3635), + [sym_false] = ACTIONS(3635), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3635), + [anon_sym_include] = ACTIONS(3635), + [anon_sym_DEF] = ACTIONS(3635), + [anon_sym_IF] = ACTIONS(3635), + [anon_sym_cdef] = ACTIONS(3635), + [anon_sym_cpdef] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_ctypedef] = ACTIONS(3635), + [anon_sym_public] = ACTIONS(3635), + [anon_sym_packed] = ACTIONS(3635), + [anon_sym_inline] = ACTIONS(3635), + [anon_sym_readonly] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(3635), + [sym__dedent] = ACTIONS(3633), + [sym_string_start] = ACTIONS(3633), + }, + [1678] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3415), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1679] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3422), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1680] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3423), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1681] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2997), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1682] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3424), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1683] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3425), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1684] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(3427), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1685] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1686] = { + [sym_identifier] = ACTIONS(3639), + [anon_sym_SEMI] = ACTIONS(3637), + [anon_sym_import] = ACTIONS(3639), + [anon_sym_cimport] = ACTIONS(3639), + [anon_sym_from] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3637), + [anon_sym_print] = ACTIONS(3639), + [anon_sym_assert] = ACTIONS(3639), + [anon_sym_return] = ACTIONS(3639), + [anon_sym_del] = ACTIONS(3639), + [anon_sym_raise] = ACTIONS(3639), + [anon_sym_pass] = ACTIONS(3639), + [anon_sym_break] = ACTIONS(3639), + [anon_sym_continue] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(3639), + [anon_sym_match] = ACTIONS(3639), + [anon_sym_async] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3639), + [anon_sym_while] = ACTIONS(3639), + [anon_sym_try] = ACTIONS(3639), + [anon_sym_with] = ACTIONS(3639), + [anon_sym_def] = ACTIONS(3639), + [anon_sym_global] = ACTIONS(3639), + [anon_sym_nonlocal] = ACTIONS(3639), + [anon_sym_exec] = ACTIONS(3639), + [anon_sym_type] = ACTIONS(3639), + [anon_sym_class] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_AT] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_not] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3637), + [anon_sym_LT] = ACTIONS(3637), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + [anon_sym_None] = ACTIONS(3639), + [anon_sym_0x] = ACTIONS(3637), + [anon_sym_0X] = ACTIONS(3637), + [anon_sym_0o] = ACTIONS(3637), + [anon_sym_0O] = ACTIONS(3637), + [anon_sym_0b] = ACTIONS(3637), + [anon_sym_0B] = ACTIONS(3637), + [aux_sym_integer_token4] = ACTIONS(3639), + [sym_float] = ACTIONS(3637), + [anon_sym_await] = ACTIONS(3639), + [anon_sym_api] = ACTIONS(3639), + [sym_true] = ACTIONS(3639), + [sym_false] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3639), + [anon_sym_include] = ACTIONS(3639), + [anon_sym_DEF] = ACTIONS(3639), + [anon_sym_IF] = ACTIONS(3639), + [anon_sym_cdef] = ACTIONS(3639), + [anon_sym_cpdef] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_ctypedef] = ACTIONS(3639), + [anon_sym_public] = ACTIONS(3639), + [anon_sym_packed] = ACTIONS(3639), + [anon_sym_inline] = ACTIONS(3639), + [anon_sym_readonly] = ACTIONS(3639), + [anon_sym_sizeof] = ACTIONS(3639), + [sym__dedent] = ACTIONS(3637), + [sym_string_start] = ACTIONS(3637), + }, + [1687] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4870), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1688] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3951), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1689] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5187), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3410), + [sym_subscript] = STATE(3410), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_async] = ACTIONS(3929), + [anon_sym_exec] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(3931), + [anon_sym_api] = ACTIONS(3929), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1690] = { + [sym_identifier] = ACTIONS(3723), + [anon_sym_SEMI] = ACTIONS(3721), + [anon_sym_import] = ACTIONS(3723), + [anon_sym_cimport] = ACTIONS(3723), + [anon_sym_from] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_STAR] = ACTIONS(3721), + [anon_sym_print] = ACTIONS(3723), + [anon_sym_assert] = ACTIONS(3723), + [anon_sym_return] = ACTIONS(3723), + [anon_sym_del] = ACTIONS(3723), + [anon_sym_raise] = ACTIONS(3723), + [anon_sym_pass] = ACTIONS(3723), + [anon_sym_break] = ACTIONS(3723), + [anon_sym_continue] = ACTIONS(3723), + [anon_sym_if] = ACTIONS(3723), + [anon_sym_match] = ACTIONS(3723), + [anon_sym_async] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3723), + [anon_sym_while] = ACTIONS(3723), + [anon_sym_try] = ACTIONS(3723), + [anon_sym_with] = ACTIONS(3723), + [anon_sym_def] = ACTIONS(3723), + [anon_sym_global] = ACTIONS(3723), + [anon_sym_nonlocal] = ACTIONS(3723), + [anon_sym_exec] = ACTIONS(3723), + [anon_sym_type] = ACTIONS(3723), + [anon_sym_class] = ACTIONS(3723), + [anon_sym_LBRACK] = ACTIONS(3721), + [anon_sym_AT] = ACTIONS(3721), + [anon_sym_DASH] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3721), + [anon_sym_PLUS] = ACTIONS(3721), + [anon_sym_not] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3721), + [anon_sym_TILDE] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_lambda] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3721), + [anon_sym_None] = ACTIONS(3723), + [anon_sym_0x] = ACTIONS(3721), + [anon_sym_0X] = ACTIONS(3721), + [anon_sym_0o] = ACTIONS(3721), + [anon_sym_0O] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(3721), + [anon_sym_0B] = ACTIONS(3721), + [aux_sym_integer_token4] = ACTIONS(3723), + [sym_float] = ACTIONS(3721), + [anon_sym_await] = ACTIONS(3723), + [anon_sym_api] = ACTIONS(3723), + [sym_true] = ACTIONS(3723), + [sym_false] = ACTIONS(3723), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3723), + [anon_sym_include] = ACTIONS(3723), + [anon_sym_DEF] = ACTIONS(3723), + [anon_sym_IF] = ACTIONS(3723), + [anon_sym_cdef] = ACTIONS(3723), + [anon_sym_cpdef] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3723), + [anon_sym_ctypedef] = ACTIONS(3723), + [anon_sym_public] = ACTIONS(3723), + [anon_sym_packed] = ACTIONS(3723), + [anon_sym_inline] = ACTIONS(3723), + [anon_sym_readonly] = ACTIONS(3723), + [anon_sym_sizeof] = ACTIONS(3723), + [sym__dedent] = ACTIONS(3721), + [sym_string_start] = ACTIONS(3721), + }, + [1691] = { + [sym_identifier] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_cimport] = ACTIONS(3249), + [anon_sym_from] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_STAR] = ACTIONS(3247), + [anon_sym_print] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_del] = ACTIONS(3249), + [anon_sym_raise] = ACTIONS(3249), + [anon_sym_pass] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_def] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3249), + [anon_sym_nonlocal] = ACTIONS(3249), + [anon_sym_exec] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_not] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_lambda] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), + [anon_sym_None] = ACTIONS(3249), + [anon_sym_0x] = ACTIONS(3247), + [anon_sym_0X] = ACTIONS(3247), + [anon_sym_0o] = ACTIONS(3247), + [anon_sym_0O] = ACTIONS(3247), + [anon_sym_0b] = ACTIONS(3247), + [anon_sym_0B] = ACTIONS(3247), + [aux_sym_integer_token4] = ACTIONS(3249), + [sym_float] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_api] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3249), + [anon_sym_include] = ACTIONS(3249), + [anon_sym_DEF] = ACTIONS(3249), + [anon_sym_IF] = ACTIONS(3249), + [anon_sym_cdef] = ACTIONS(3249), + [anon_sym_cpdef] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_ctypedef] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_packed] = ACTIONS(3249), + [anon_sym_inline] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_sizeof] = ACTIONS(3249), + [sym__dedent] = ACTIONS(3247), + [sym_string_start] = ACTIONS(3247), + }, + [1692] = { + [sym_identifier] = ACTIONS(3253), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3253), + [anon_sym_cimport] = ACTIONS(3253), + [anon_sym_from] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3251), + [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(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_not] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_lambda] = ACTIONS(3253), + [anon_sym_yield] = ACTIONS(3253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), + [anon_sym_None] = ACTIONS(3253), + [anon_sym_0x] = ACTIONS(3251), + [anon_sym_0X] = ACTIONS(3251), + [anon_sym_0o] = ACTIONS(3251), + [anon_sym_0O] = ACTIONS(3251), + [anon_sym_0b] = ACTIONS(3251), + [anon_sym_0B] = ACTIONS(3251), + [aux_sym_integer_token4] = ACTIONS(3253), + [sym_float] = ACTIONS(3251), + [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_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(3251), + [sym_string_start] = ACTIONS(3251), + }, + [1693] = { + [sym_identifier] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_import] = ACTIONS(3263), + [anon_sym_cimport] = ACTIONS(3263), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_print] = ACTIONS(3263), + [anon_sym_assert] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_del] = ACTIONS(3263), + [anon_sym_raise] = ACTIONS(3263), + [anon_sym_pass] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_match] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_with] = ACTIONS(3263), + [anon_sym_def] = ACTIONS(3263), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_nonlocal] = ACTIONS(3263), + [anon_sym_exec] = ACTIONS(3263), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_not] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_lambda] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_None] = ACTIONS(3263), + [anon_sym_0x] = ACTIONS(3261), + [anon_sym_0X] = ACTIONS(3261), + [anon_sym_0o] = ACTIONS(3261), + [anon_sym_0O] = ACTIONS(3261), + [anon_sym_0b] = ACTIONS(3261), + [anon_sym_0B] = ACTIONS(3261), + [aux_sym_integer_token4] = ACTIONS(3263), + [sym_float] = ACTIONS(3261), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_api] = ACTIONS(3263), + [sym_true] = ACTIONS(3263), + [sym_false] = ACTIONS(3263), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_include] = ACTIONS(3263), + [anon_sym_DEF] = ACTIONS(3263), + [anon_sym_IF] = ACTIONS(3263), + [anon_sym_cdef] = ACTIONS(3263), + [anon_sym_cpdef] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_ctypedef] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_packed] = ACTIONS(3263), + [anon_sym_inline] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_sizeof] = ACTIONS(3263), + [sym__dedent] = ACTIONS(3261), + [sym_string_start] = ACTIONS(3261), + }, + [1694] = { + [sym_identifier] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3265), + [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_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), + [anon_sym_0x] = ACTIONS(3265), + [anon_sym_0X] = ACTIONS(3265), + [anon_sym_0o] = ACTIONS(3265), + [anon_sym_0O] = ACTIONS(3265), + [anon_sym_0b] = ACTIONS(3265), + [anon_sym_0B] = ACTIONS(3265), + [aux_sym_integer_token4] = 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), + }, + [1695] = { + [sym_identifier] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_cimport] = ACTIONS(3279), + [anon_sym_from] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), + [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_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(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_not] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_lambda] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3277), + [anon_sym_None] = ACTIONS(3279), + [anon_sym_0x] = ACTIONS(3277), + [anon_sym_0X] = ACTIONS(3277), + [anon_sym_0o] = ACTIONS(3277), + [anon_sym_0O] = ACTIONS(3277), + [anon_sym_0b] = ACTIONS(3277), + [anon_sym_0B] = ACTIONS(3277), + [aux_sym_integer_token4] = ACTIONS(3279), + [sym_float] = ACTIONS(3277), + [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(3277), + [sym_string_start] = ACTIONS(3277), + }, + [1696] = { + [sym_identifier] = ACTIONS(3727), + [anon_sym_SEMI] = ACTIONS(3725), + [anon_sym_import] = ACTIONS(3727), + [anon_sym_cimport] = ACTIONS(3727), + [anon_sym_from] = ACTIONS(3727), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_STAR] = ACTIONS(3725), + [anon_sym_print] = ACTIONS(3727), + [anon_sym_assert] = ACTIONS(3727), + [anon_sym_return] = ACTIONS(3727), + [anon_sym_del] = ACTIONS(3727), + [anon_sym_raise] = ACTIONS(3727), + [anon_sym_pass] = ACTIONS(3727), + [anon_sym_break] = ACTIONS(3727), + [anon_sym_continue] = ACTIONS(3727), + [anon_sym_if] = ACTIONS(3727), + [anon_sym_match] = ACTIONS(3727), + [anon_sym_async] = ACTIONS(3727), + [anon_sym_for] = ACTIONS(3727), + [anon_sym_while] = ACTIONS(3727), + [anon_sym_try] = ACTIONS(3727), + [anon_sym_with] = ACTIONS(3727), + [anon_sym_def] = ACTIONS(3727), + [anon_sym_global] = ACTIONS(3727), + [anon_sym_nonlocal] = ACTIONS(3727), + [anon_sym_exec] = ACTIONS(3727), + [anon_sym_type] = ACTIONS(3727), + [anon_sym_class] = ACTIONS(3727), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_AT] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_not] = ACTIONS(3727), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3725), + [anon_sym_LT] = ACTIONS(3725), + [anon_sym_lambda] = ACTIONS(3727), + [anon_sym_yield] = ACTIONS(3727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3725), + [anon_sym_None] = ACTIONS(3727), + [anon_sym_0x] = ACTIONS(3725), + [anon_sym_0X] = ACTIONS(3725), + [anon_sym_0o] = ACTIONS(3725), + [anon_sym_0O] = ACTIONS(3725), + [anon_sym_0b] = ACTIONS(3725), + [anon_sym_0B] = ACTIONS(3725), + [aux_sym_integer_token4] = ACTIONS(3727), + [sym_float] = ACTIONS(3725), + [anon_sym_await] = ACTIONS(3727), + [anon_sym_api] = ACTIONS(3727), + [sym_true] = ACTIONS(3727), + [sym_false] = ACTIONS(3727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3727), + [anon_sym_include] = ACTIONS(3727), + [anon_sym_DEF] = ACTIONS(3727), + [anon_sym_IF] = ACTIONS(3727), + [anon_sym_cdef] = ACTIONS(3727), + [anon_sym_cpdef] = ACTIONS(3727), + [anon_sym_new] = ACTIONS(3727), + [anon_sym_ctypedef] = ACTIONS(3727), + [anon_sym_public] = ACTIONS(3727), + [anon_sym_packed] = ACTIONS(3727), + [anon_sym_inline] = ACTIONS(3727), + [anon_sym_readonly] = ACTIONS(3727), + [anon_sym_sizeof] = ACTIONS(3727), + [sym__dedent] = ACTIONS(3725), + [sym_string_start] = ACTIONS(3725), + }, + [1697] = { + [sym_identifier] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_cimport] = ACTIONS(3319), + [anon_sym_from] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_print] = ACTIONS(3319), + [anon_sym_assert] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_del] = ACTIONS(3319), + [anon_sym_raise] = ACTIONS(3319), + [anon_sym_pass] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_def] = ACTIONS(3319), + [anon_sym_global] = ACTIONS(3319), + [anon_sym_nonlocal] = ACTIONS(3319), + [anon_sym_exec] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_not] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_lambda] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), + [anon_sym_None] = ACTIONS(3319), + [anon_sym_0x] = ACTIONS(3317), + [anon_sym_0X] = ACTIONS(3317), + [anon_sym_0o] = ACTIONS(3317), + [anon_sym_0O] = ACTIONS(3317), + [anon_sym_0b] = ACTIONS(3317), + [anon_sym_0B] = ACTIONS(3317), + [aux_sym_integer_token4] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_api] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3319), + [anon_sym_include] = ACTIONS(3319), + [anon_sym_DEF] = ACTIONS(3319), + [anon_sym_IF] = ACTIONS(3319), + [anon_sym_cdef] = ACTIONS(3319), + [anon_sym_cpdef] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_ctypedef] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_packed] = ACTIONS(3319), + [anon_sym_inline] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3319), + [sym__dedent] = ACTIONS(3317), + [sym_string_start] = ACTIONS(3317), + }, + [1698] = { + [sym_identifier] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_cimport] = ACTIONS(3323), + [anon_sym_from] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_print] = ACTIONS(3323), + [anon_sym_assert] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_del] = ACTIONS(3323), + [anon_sym_raise] = ACTIONS(3323), + [anon_sym_pass] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_match] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_def] = ACTIONS(3323), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_nonlocal] = ACTIONS(3323), + [anon_sym_exec] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_lambda] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_None] = ACTIONS(3323), + [anon_sym_0x] = ACTIONS(3321), + [anon_sym_0X] = ACTIONS(3321), + [anon_sym_0o] = ACTIONS(3321), + [anon_sym_0O] = ACTIONS(3321), + [anon_sym_0b] = ACTIONS(3321), + [anon_sym_0B] = ACTIONS(3321), + [aux_sym_integer_token4] = ACTIONS(3323), + [sym_float] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_api] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3323), + [anon_sym_include] = ACTIONS(3323), + [anon_sym_DEF] = ACTIONS(3323), + [anon_sym_IF] = ACTIONS(3323), + [anon_sym_cdef] = ACTIONS(3323), + [anon_sym_cpdef] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_ctypedef] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_packed] = ACTIONS(3323), + [anon_sym_inline] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_sizeof] = ACTIONS(3323), + [sym__dedent] = ACTIONS(3321), + [sym_string_start] = ACTIONS(3321), + }, + [1699] = { + [sym_identifier] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_cimport] = ACTIONS(3327), + [anon_sym_from] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_print] = ACTIONS(3327), + [anon_sym_assert] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_del] = ACTIONS(3327), + [anon_sym_raise] = ACTIONS(3327), + [anon_sym_pass] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_def] = ACTIONS(3327), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_nonlocal] = ACTIONS(3327), + [anon_sym_exec] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_not] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_lambda] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), + [anon_sym_None] = ACTIONS(3327), + [anon_sym_0x] = ACTIONS(3325), + [anon_sym_0X] = ACTIONS(3325), + [anon_sym_0o] = ACTIONS(3325), + [anon_sym_0O] = ACTIONS(3325), + [anon_sym_0b] = ACTIONS(3325), + [anon_sym_0B] = ACTIONS(3325), + [aux_sym_integer_token4] = ACTIONS(3327), + [sym_float] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_api] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3327), + [anon_sym_include] = ACTIONS(3327), + [anon_sym_DEF] = ACTIONS(3327), + [anon_sym_IF] = ACTIONS(3327), + [anon_sym_cdef] = ACTIONS(3327), + [anon_sym_cpdef] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_ctypedef] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_packed] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_sizeof] = ACTIONS(3327), + [sym__dedent] = ACTIONS(3325), + [sym_string_start] = ACTIONS(3325), + }, + [1700] = { + [sym_identifier] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_cimport] = ACTIONS(3331), + [anon_sym_from] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [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_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(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_lambda] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), + [anon_sym_None] = ACTIONS(3331), + [anon_sym_0x] = ACTIONS(3329), + [anon_sym_0X] = ACTIONS(3329), + [anon_sym_0o] = ACTIONS(3329), + [anon_sym_0O] = ACTIONS(3329), + [anon_sym_0b] = ACTIONS(3329), + [anon_sym_0B] = ACTIONS(3329), + [aux_sym_integer_token4] = ACTIONS(3331), + [sym_float] = ACTIONS(3329), + [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(3329), + [sym_string_start] = ACTIONS(3329), + }, + [1701] = { + [sym_identifier] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_cimport] = ACTIONS(3335), + [anon_sym_from] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_print] = ACTIONS(3335), + [anon_sym_assert] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_del] = ACTIONS(3335), + [anon_sym_raise] = ACTIONS(3335), + [anon_sym_pass] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_def] = ACTIONS(3335), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_nonlocal] = ACTIONS(3335), + [anon_sym_exec] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [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(3335), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_lambda] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_None] = ACTIONS(3335), + [anon_sym_0x] = ACTIONS(3333), + [anon_sym_0X] = ACTIONS(3333), + [anon_sym_0o] = ACTIONS(3333), + [anon_sym_0O] = ACTIONS(3333), + [anon_sym_0b] = ACTIONS(3333), + [anon_sym_0B] = ACTIONS(3333), + [aux_sym_integer_token4] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_api] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3335), + [anon_sym_include] = ACTIONS(3335), + [anon_sym_DEF] = ACTIONS(3335), + [anon_sym_IF] = ACTIONS(3335), + [anon_sym_cdef] = ACTIONS(3335), + [anon_sym_cpdef] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_ctypedef] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_packed] = ACTIONS(3335), + [anon_sym_inline] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_sizeof] = ACTIONS(3335), + [sym__dedent] = ACTIONS(3333), + [sym_string_start] = ACTIONS(3333), + }, + [1702] = { + [ts_builtin_sym_end] = ACTIONS(3881), + [sym_identifier] = ACTIONS(3879), + [anon_sym_SEMI] = ACTIONS(3881), + [anon_sym_import] = ACTIONS(3879), + [anon_sym_cimport] = ACTIONS(3879), + [anon_sym_from] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_print] = ACTIONS(3879), + [anon_sym_assert] = ACTIONS(3879), + [anon_sym_return] = ACTIONS(3879), + [anon_sym_del] = ACTIONS(3879), + [anon_sym_raise] = ACTIONS(3879), + [anon_sym_pass] = ACTIONS(3879), + [anon_sym_break] = ACTIONS(3879), + [anon_sym_continue] = ACTIONS(3879), + [anon_sym_if] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(3879), + [anon_sym_async] = ACTIONS(3879), + [anon_sym_for] = ACTIONS(3879), + [anon_sym_while] = ACTIONS(3879), + [anon_sym_try] = ACTIONS(3879), + [anon_sym_with] = ACTIONS(3879), + [anon_sym_def] = ACTIONS(3879), + [anon_sym_global] = ACTIONS(3879), + [anon_sym_nonlocal] = ACTIONS(3879), + [anon_sym_exec] = ACTIONS(3879), + [anon_sym_type] = ACTIONS(3879), + [anon_sym_class] = ACTIONS(3879), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_AT] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_TILDE] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(3881), + [anon_sym_lambda] = ACTIONS(3879), + [anon_sym_yield] = ACTIONS(3879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3881), + [anon_sym_None] = ACTIONS(3879), + [anon_sym_0x] = ACTIONS(3881), + [anon_sym_0X] = ACTIONS(3881), + [anon_sym_0o] = ACTIONS(3881), + [anon_sym_0O] = ACTIONS(3881), + [anon_sym_0b] = ACTIONS(3881), + [anon_sym_0B] = ACTIONS(3881), + [aux_sym_integer_token4] = ACTIONS(3879), + [sym_float] = ACTIONS(3881), + [anon_sym_await] = ACTIONS(3879), + [anon_sym_api] = ACTIONS(3879), + [sym_true] = ACTIONS(3879), + [sym_false] = ACTIONS(3879), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3879), + [anon_sym_include] = ACTIONS(3879), + [anon_sym_DEF] = ACTIONS(3879), + [anon_sym_IF] = ACTIONS(3879), + [anon_sym_cdef] = ACTIONS(3879), + [anon_sym_cpdef] = ACTIONS(3879), + [anon_sym_new] = ACTIONS(3879), + [anon_sym_ctypedef] = ACTIONS(3879), + [anon_sym_public] = ACTIONS(3879), + [anon_sym_packed] = ACTIONS(3879), + [anon_sym_inline] = ACTIONS(3879), + [anon_sym_readonly] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3879), + [sym_string_start] = ACTIONS(3881), + }, + [1703] = { + [sym_identifier] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_cimport] = ACTIONS(3339), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_print] = ACTIONS(3339), + [anon_sym_assert] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_del] = ACTIONS(3339), + [anon_sym_raise] = ACTIONS(3339), + [anon_sym_pass] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_def] = ACTIONS(3339), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_nonlocal] = ACTIONS(3339), + [anon_sym_exec] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_not] = ACTIONS(3339), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_lambda] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), + [anon_sym_None] = ACTIONS(3339), + [anon_sym_0x] = ACTIONS(3337), + [anon_sym_0X] = ACTIONS(3337), + [anon_sym_0o] = ACTIONS(3337), + [anon_sym_0O] = ACTIONS(3337), + [anon_sym_0b] = ACTIONS(3337), + [anon_sym_0B] = ACTIONS(3337), + [aux_sym_integer_token4] = ACTIONS(3339), + [sym_float] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_api] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3339), + [anon_sym_include] = ACTIONS(3339), + [anon_sym_DEF] = ACTIONS(3339), + [anon_sym_IF] = ACTIONS(3339), + [anon_sym_cdef] = ACTIONS(3339), + [anon_sym_cpdef] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_ctypedef] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_packed] = ACTIONS(3339), + [anon_sym_inline] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_sizeof] = ACTIONS(3339), + [sym__dedent] = ACTIONS(3337), + [sym_string_start] = ACTIONS(3337), + }, + [1704] = { + [sym_identifier] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_cimport] = ACTIONS(3343), + [anon_sym_from] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_print] = ACTIONS(3343), + [anon_sym_assert] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_del] = ACTIONS(3343), + [anon_sym_raise] = ACTIONS(3343), + [anon_sym_pass] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_def] = ACTIONS(3343), + [anon_sym_global] = ACTIONS(3343), + [anon_sym_nonlocal] = ACTIONS(3343), + [anon_sym_exec] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_not] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_lambda] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), + [anon_sym_None] = ACTIONS(3343), + [anon_sym_0x] = ACTIONS(3341), + [anon_sym_0X] = ACTIONS(3341), + [anon_sym_0o] = ACTIONS(3341), + [anon_sym_0O] = ACTIONS(3341), + [anon_sym_0b] = ACTIONS(3341), + [anon_sym_0B] = ACTIONS(3341), + [aux_sym_integer_token4] = ACTIONS(3343), + [sym_float] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_api] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3343), + [anon_sym_include] = ACTIONS(3343), + [anon_sym_DEF] = ACTIONS(3343), + [anon_sym_IF] = ACTIONS(3343), + [anon_sym_cdef] = ACTIONS(3343), + [anon_sym_cpdef] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_ctypedef] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_packed] = ACTIONS(3343), + [anon_sym_inline] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3343), + [sym__dedent] = ACTIONS(3341), + [sym_string_start] = ACTIONS(3341), + }, + [1705] = { + [ts_builtin_sym_end] = ACTIONS(3885), + [sym_identifier] = ACTIONS(3883), + [anon_sym_SEMI] = ACTIONS(3885), + [anon_sym_import] = ACTIONS(3883), + [anon_sym_cimport] = ACTIONS(3883), + [anon_sym_from] = ACTIONS(3883), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_print] = ACTIONS(3883), + [anon_sym_assert] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_del] = ACTIONS(3883), + [anon_sym_raise] = ACTIONS(3883), + [anon_sym_pass] = ACTIONS(3883), + [anon_sym_break] = ACTIONS(3883), + [anon_sym_continue] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_match] = ACTIONS(3883), + [anon_sym_async] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_try] = ACTIONS(3883), + [anon_sym_with] = ACTIONS(3883), + [anon_sym_def] = ACTIONS(3883), + [anon_sym_global] = ACTIONS(3883), + [anon_sym_nonlocal] = ACTIONS(3883), + [anon_sym_exec] = ACTIONS(3883), + [anon_sym_type] = ACTIONS(3883), + [anon_sym_class] = ACTIONS(3883), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_AT] = ACTIONS(3885), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_TILDE] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3885), + [anon_sym_lambda] = ACTIONS(3883), + [anon_sym_yield] = ACTIONS(3883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3885), + [anon_sym_None] = ACTIONS(3883), + [anon_sym_0x] = ACTIONS(3885), + [anon_sym_0X] = ACTIONS(3885), + [anon_sym_0o] = ACTIONS(3885), + [anon_sym_0O] = ACTIONS(3885), + [anon_sym_0b] = ACTIONS(3885), + [anon_sym_0B] = ACTIONS(3885), + [aux_sym_integer_token4] = ACTIONS(3883), + [sym_float] = ACTIONS(3885), + [anon_sym_await] = ACTIONS(3883), + [anon_sym_api] = ACTIONS(3883), + [sym_true] = ACTIONS(3883), + [sym_false] = ACTIONS(3883), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3883), + [anon_sym_include] = ACTIONS(3883), + [anon_sym_DEF] = ACTIONS(3883), + [anon_sym_IF] = ACTIONS(3883), + [anon_sym_cdef] = ACTIONS(3883), + [anon_sym_cpdef] = ACTIONS(3883), + [anon_sym_new] = ACTIONS(3883), + [anon_sym_ctypedef] = ACTIONS(3883), + [anon_sym_public] = ACTIONS(3883), + [anon_sym_packed] = ACTIONS(3883), + [anon_sym_inline] = ACTIONS(3883), + [anon_sym_readonly] = ACTIONS(3883), + [anon_sym_sizeof] = ACTIONS(3883), + [sym_string_start] = ACTIONS(3885), + }, + [1706] = { + [ts_builtin_sym_end] = ACTIONS(3933), + [sym_identifier] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym_import] = ACTIONS(3935), + [anon_sym_cimport] = ACTIONS(3935), + [anon_sym_from] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_print] = ACTIONS(3935), + [anon_sym_assert] = ACTIONS(3935), + [anon_sym_return] = ACTIONS(3935), + [anon_sym_del] = ACTIONS(3935), + [anon_sym_raise] = ACTIONS(3935), + [anon_sym_pass] = ACTIONS(3935), + [anon_sym_break] = ACTIONS(3935), + [anon_sym_continue] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_match] = ACTIONS(3935), + [anon_sym_async] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3935), + [anon_sym_while] = ACTIONS(3935), + [anon_sym_try] = ACTIONS(3935), + [anon_sym_with] = ACTIONS(3935), + [anon_sym_def] = ACTIONS(3935), + [anon_sym_global] = ACTIONS(3935), + [anon_sym_nonlocal] = ACTIONS(3935), + [anon_sym_exec] = ACTIONS(3935), + [anon_sym_type] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_AT] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_not] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_lambda] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3933), + [anon_sym_None] = ACTIONS(3935), + [anon_sym_0x] = ACTIONS(3933), + [anon_sym_0X] = ACTIONS(3933), + [anon_sym_0o] = ACTIONS(3933), + [anon_sym_0O] = ACTIONS(3933), + [anon_sym_0b] = ACTIONS(3933), + [anon_sym_0B] = ACTIONS(3933), + [aux_sym_integer_token4] = ACTIONS(3935), + [sym_float] = ACTIONS(3933), + [anon_sym_await] = ACTIONS(3935), + [anon_sym_api] = ACTIONS(3935), + [sym_true] = ACTIONS(3935), + [sym_false] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3935), + [anon_sym_include] = ACTIONS(3935), + [anon_sym_DEF] = ACTIONS(3935), + [anon_sym_IF] = ACTIONS(3935), + [anon_sym_cdef] = ACTIONS(3935), + [anon_sym_cpdef] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3935), + [anon_sym_ctypedef] = ACTIONS(3935), + [anon_sym_public] = ACTIONS(3935), + [anon_sym_packed] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym_readonly] = ACTIONS(3935), + [anon_sym_sizeof] = ACTIONS(3935), + [sym_string_start] = ACTIONS(3933), + }, + [1707] = { + [sym_identifier] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_cimport] = ACTIONS(3347), + [anon_sym_from] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_print] = ACTIONS(3347), + [anon_sym_assert] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_del] = ACTIONS(3347), + [anon_sym_raise] = ACTIONS(3347), + [anon_sym_pass] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_match] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_def] = ACTIONS(3347), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_nonlocal] = ACTIONS(3347), + [anon_sym_exec] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_not] = ACTIONS(3347), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_lambda] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [anon_sym_None] = ACTIONS(3347), + [anon_sym_0x] = ACTIONS(3345), + [anon_sym_0X] = ACTIONS(3345), + [anon_sym_0o] = ACTIONS(3345), + [anon_sym_0O] = ACTIONS(3345), + [anon_sym_0b] = ACTIONS(3345), + [anon_sym_0B] = ACTIONS(3345), + [aux_sym_integer_token4] = ACTIONS(3347), + [sym_float] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_api] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3347), + [anon_sym_include] = ACTIONS(3347), + [anon_sym_DEF] = ACTIONS(3347), + [anon_sym_IF] = ACTIONS(3347), + [anon_sym_cdef] = ACTIONS(3347), + [anon_sym_cpdef] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_ctypedef] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_packed] = ACTIONS(3347), + [anon_sym_inline] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_sizeof] = ACTIONS(3347), + [sym__dedent] = ACTIONS(3345), + [sym_string_start] = ACTIONS(3345), + }, + [1708] = { + [sym_identifier] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_cimport] = ACTIONS(3319), + [anon_sym_from] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_print] = ACTIONS(3319), + [anon_sym_assert] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_del] = ACTIONS(3319), + [anon_sym_raise] = ACTIONS(3319), + [anon_sym_pass] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_def] = ACTIONS(3319), + [anon_sym_global] = ACTIONS(3319), + [anon_sym_nonlocal] = ACTIONS(3319), + [anon_sym_exec] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_not] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_lambda] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), + [anon_sym_None] = ACTIONS(3319), + [anon_sym_0x] = ACTIONS(3317), + [anon_sym_0X] = ACTIONS(3317), + [anon_sym_0o] = ACTIONS(3317), + [anon_sym_0O] = ACTIONS(3317), + [anon_sym_0b] = ACTIONS(3317), + [anon_sym_0B] = ACTIONS(3317), + [aux_sym_integer_token4] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_api] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3319), + [anon_sym_include] = ACTIONS(3319), + [anon_sym_DEF] = ACTIONS(3319), + [anon_sym_IF] = ACTIONS(3319), + [anon_sym_cdef] = ACTIONS(3319), + [anon_sym_cpdef] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_ctypedef] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_packed] = ACTIONS(3319), + [anon_sym_inline] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3319), + [sym__dedent] = ACTIONS(3317), + [sym_string_start] = ACTIONS(3317), + }, + [1709] = { + [sym_identifier] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_cimport] = ACTIONS(3351), + [anon_sym_from] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_print] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_del] = ACTIONS(3351), + [anon_sym_raise] = ACTIONS(3351), + [anon_sym_pass] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_def] = ACTIONS(3351), + [anon_sym_global] = ACTIONS(3351), + [anon_sym_nonlocal] = ACTIONS(3351), + [anon_sym_exec] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_not] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_lambda] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + [anon_sym_None] = ACTIONS(3351), + [anon_sym_0x] = ACTIONS(3349), + [anon_sym_0X] = ACTIONS(3349), + [anon_sym_0o] = ACTIONS(3349), + [anon_sym_0O] = ACTIONS(3349), + [anon_sym_0b] = ACTIONS(3349), + [anon_sym_0B] = ACTIONS(3349), + [aux_sym_integer_token4] = ACTIONS(3351), + [sym_float] = ACTIONS(3349), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_api] = ACTIONS(3351), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3351), + [anon_sym_include] = ACTIONS(3351), + [anon_sym_DEF] = ACTIONS(3351), + [anon_sym_IF] = ACTIONS(3351), + [anon_sym_cdef] = ACTIONS(3351), + [anon_sym_cpdef] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_ctypedef] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_packed] = ACTIONS(3351), + [anon_sym_inline] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_sizeof] = ACTIONS(3351), + [sym__dedent] = ACTIONS(3349), + [sym_string_start] = ACTIONS(3349), + }, + [1710] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3176), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1711] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5240), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(3411), + [sym_subscript] = STATE(3411), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(3937), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(3939), + [anon_sym_match] = ACTIONS(3939), + [anon_sym_async] = ACTIONS(3939), + [anon_sym_exec] = ACTIONS(3939), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(3941), + [anon_sym_api] = ACTIONS(3939), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1712] = { + [sym_identifier] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_cimport] = ACTIONS(3355), + [anon_sym_from] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_print] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_del] = ACTIONS(3355), + [anon_sym_raise] = ACTIONS(3355), + [anon_sym_pass] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_def] = ACTIONS(3355), + [anon_sym_global] = ACTIONS(3355), + [anon_sym_nonlocal] = ACTIONS(3355), + [anon_sym_exec] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_not] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_lambda] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), + [anon_sym_None] = ACTIONS(3355), + [anon_sym_0x] = ACTIONS(3353), + [anon_sym_0X] = ACTIONS(3353), + [anon_sym_0o] = ACTIONS(3353), + [anon_sym_0O] = ACTIONS(3353), + [anon_sym_0b] = ACTIONS(3353), + [anon_sym_0B] = ACTIONS(3353), + [aux_sym_integer_token4] = ACTIONS(3355), + [sym_float] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_api] = ACTIONS(3355), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3355), + [anon_sym_include] = ACTIONS(3355), + [anon_sym_DEF] = ACTIONS(3355), + [anon_sym_IF] = ACTIONS(3355), + [anon_sym_cdef] = ACTIONS(3355), + [anon_sym_cpdef] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_ctypedef] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_packed] = ACTIONS(3355), + [anon_sym_inline] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(3355), + [sym__dedent] = ACTIONS(3353), + [sym_string_start] = ACTIONS(3353), + }, + [1713] = { + [sym_identifier] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_cimport] = ACTIONS(3327), + [anon_sym_from] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_print] = ACTIONS(3327), + [anon_sym_assert] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_del] = ACTIONS(3327), + [anon_sym_raise] = ACTIONS(3327), + [anon_sym_pass] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_def] = ACTIONS(3327), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_nonlocal] = ACTIONS(3327), + [anon_sym_exec] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_not] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_lambda] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), + [anon_sym_None] = ACTIONS(3327), + [anon_sym_0x] = ACTIONS(3325), + [anon_sym_0X] = ACTIONS(3325), + [anon_sym_0o] = ACTIONS(3325), + [anon_sym_0O] = ACTIONS(3325), + [anon_sym_0b] = ACTIONS(3325), + [anon_sym_0B] = ACTIONS(3325), + [aux_sym_integer_token4] = ACTIONS(3327), + [sym_float] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_api] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3327), + [anon_sym_include] = ACTIONS(3327), + [anon_sym_DEF] = ACTIONS(3327), + [anon_sym_IF] = ACTIONS(3327), + [anon_sym_cdef] = ACTIONS(3327), + [anon_sym_cpdef] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_ctypedef] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_packed] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_sizeof] = ACTIONS(3327), + [sym__dedent] = ACTIONS(3325), + [sym_string_start] = ACTIONS(3325), + }, + [1714] = { + [sym_identifier] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_cimport] = ACTIONS(3359), + [anon_sym_from] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_print] = ACTIONS(3359), + [anon_sym_assert] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_del] = ACTIONS(3359), + [anon_sym_raise] = ACTIONS(3359), + [anon_sym_pass] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_match] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_def] = ACTIONS(3359), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_nonlocal] = ACTIONS(3359), + [anon_sym_exec] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_not] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_lambda] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_None] = ACTIONS(3359), + [anon_sym_0x] = ACTIONS(3357), + [anon_sym_0X] = ACTIONS(3357), + [anon_sym_0o] = ACTIONS(3357), + [anon_sym_0O] = ACTIONS(3357), + [anon_sym_0b] = ACTIONS(3357), + [anon_sym_0B] = ACTIONS(3357), + [aux_sym_integer_token4] = ACTIONS(3359), + [sym_float] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_api] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3359), + [anon_sym_include] = ACTIONS(3359), + [anon_sym_DEF] = ACTIONS(3359), + [anon_sym_IF] = ACTIONS(3359), + [anon_sym_cdef] = ACTIONS(3359), + [anon_sym_cpdef] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_ctypedef] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_packed] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_sizeof] = ACTIONS(3359), + [sym__dedent] = ACTIONS(3357), + [sym_string_start] = ACTIONS(3357), + }, + [1715] = { + [sym_identifier] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_cimport] = ACTIONS(3335), + [anon_sym_from] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_print] = ACTIONS(3335), + [anon_sym_assert] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_del] = ACTIONS(3335), + [anon_sym_raise] = ACTIONS(3335), + [anon_sym_pass] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_def] = ACTIONS(3335), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_nonlocal] = ACTIONS(3335), + [anon_sym_exec] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [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(3335), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_lambda] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_None] = ACTIONS(3335), + [anon_sym_0x] = ACTIONS(3333), + [anon_sym_0X] = ACTIONS(3333), + [anon_sym_0o] = ACTIONS(3333), + [anon_sym_0O] = ACTIONS(3333), + [anon_sym_0b] = ACTIONS(3333), + [anon_sym_0B] = ACTIONS(3333), + [aux_sym_integer_token4] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_api] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3335), + [anon_sym_include] = ACTIONS(3335), + [anon_sym_DEF] = ACTIONS(3335), + [anon_sym_IF] = ACTIONS(3335), + [anon_sym_cdef] = ACTIONS(3335), + [anon_sym_cpdef] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_ctypedef] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_packed] = ACTIONS(3335), + [anon_sym_inline] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_sizeof] = ACTIONS(3335), + [sym__dedent] = ACTIONS(3333), + [sym_string_start] = ACTIONS(3333), + }, + [1716] = { + [sym_identifier] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_cimport] = ACTIONS(3363), + [anon_sym_from] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_print] = ACTIONS(3363), + [anon_sym_assert] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_del] = ACTIONS(3363), + [anon_sym_raise] = ACTIONS(3363), + [anon_sym_pass] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_match] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_def] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_nonlocal] = ACTIONS(3363), + [anon_sym_exec] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_not] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_lambda] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), + [anon_sym_None] = ACTIONS(3363), + [anon_sym_0x] = ACTIONS(3361), + [anon_sym_0X] = ACTIONS(3361), + [anon_sym_0o] = ACTIONS(3361), + [anon_sym_0O] = ACTIONS(3361), + [anon_sym_0b] = ACTIONS(3361), + [anon_sym_0B] = ACTIONS(3361), + [aux_sym_integer_token4] = ACTIONS(3363), + [sym_float] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_api] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3363), + [anon_sym_include] = ACTIONS(3363), + [anon_sym_DEF] = ACTIONS(3363), + [anon_sym_IF] = ACTIONS(3363), + [anon_sym_cdef] = ACTIONS(3363), + [anon_sym_cpdef] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_ctypedef] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_packed] = ACTIONS(3363), + [anon_sym_inline] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_sizeof] = ACTIONS(3363), + [sym__dedent] = ACTIONS(3361), + [sym_string_start] = ACTIONS(3361), + }, + [1717] = { + [sym_identifier] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_cimport] = ACTIONS(3367), + [anon_sym_from] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3365), + [anon_sym_print] = ACTIONS(3367), + [anon_sym_assert] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_del] = ACTIONS(3367), + [anon_sym_raise] = ACTIONS(3367), + [anon_sym_pass] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_match] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_def] = ACTIONS(3367), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_nonlocal] = ACTIONS(3367), + [anon_sym_exec] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_not] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_lambda] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), + [anon_sym_None] = ACTIONS(3367), + [anon_sym_0x] = ACTIONS(3365), + [anon_sym_0X] = ACTIONS(3365), + [anon_sym_0o] = ACTIONS(3365), + [anon_sym_0O] = ACTIONS(3365), + [anon_sym_0b] = ACTIONS(3365), + [anon_sym_0B] = ACTIONS(3365), + [aux_sym_integer_token4] = ACTIONS(3367), + [sym_float] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_api] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3367), + [anon_sym_include] = ACTIONS(3367), + [anon_sym_DEF] = ACTIONS(3367), + [anon_sym_IF] = ACTIONS(3367), + [anon_sym_cdef] = ACTIONS(3367), + [anon_sym_cpdef] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_ctypedef] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_packed] = ACTIONS(3367), + [anon_sym_inline] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_sizeof] = ACTIONS(3367), + [sym__dedent] = ACTIONS(3365), + [sym_string_start] = ACTIONS(3365), + }, + [1718] = { + [sym_identifier] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3369), + [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_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), + [anon_sym_0x] = ACTIONS(3369), + [anon_sym_0X] = ACTIONS(3369), + [anon_sym_0o] = ACTIONS(3369), + [anon_sym_0O] = ACTIONS(3369), + [anon_sym_0b] = ACTIONS(3369), + [anon_sym_0B] = ACTIONS(3369), + [aux_sym_integer_token4] = 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), + }, + [1719] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(4822), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1720] = { + [sym_identifier] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_cimport] = ACTIONS(3375), + [anon_sym_from] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_print] = ACTIONS(3375), + [anon_sym_assert] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_del] = ACTIONS(3375), + [anon_sym_raise] = ACTIONS(3375), + [anon_sym_pass] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_match] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_def] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_nonlocal] = ACTIONS(3375), + [anon_sym_exec] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_not] = ACTIONS(3375), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_lambda] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_None] = ACTIONS(3375), + [anon_sym_0x] = ACTIONS(3373), + [anon_sym_0X] = ACTIONS(3373), + [anon_sym_0o] = ACTIONS(3373), + [anon_sym_0O] = ACTIONS(3373), + [anon_sym_0b] = ACTIONS(3373), + [anon_sym_0B] = ACTIONS(3373), + [aux_sym_integer_token4] = ACTIONS(3375), + [sym_float] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_api] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3375), + [anon_sym_include] = ACTIONS(3375), + [anon_sym_DEF] = ACTIONS(3375), + [anon_sym_IF] = ACTIONS(3375), + [anon_sym_cdef] = ACTIONS(3375), + [anon_sym_cpdef] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_ctypedef] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_packed] = ACTIONS(3375), + [anon_sym_inline] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_sizeof] = ACTIONS(3375), + [sym__dedent] = ACTIONS(3373), + [sym_string_start] = ACTIONS(3373), + }, + [1721] = { + [sym_identifier] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_cimport] = ACTIONS(3379), + [anon_sym_from] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_print] = ACTIONS(3379), + [anon_sym_assert] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_del] = ACTIONS(3379), + [anon_sym_raise] = ACTIONS(3379), + [anon_sym_pass] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_match] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_with] = ACTIONS(3379), + [anon_sym_def] = ACTIONS(3379), + [anon_sym_global] = ACTIONS(3379), + [anon_sym_nonlocal] = ACTIONS(3379), + [anon_sym_exec] = ACTIONS(3379), + [anon_sym_type] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_not] = ACTIONS(3379), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_lambda] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), + [anon_sym_None] = ACTIONS(3379), + [anon_sym_0x] = ACTIONS(3377), + [anon_sym_0X] = ACTIONS(3377), + [anon_sym_0o] = ACTIONS(3377), + [anon_sym_0O] = ACTIONS(3377), + [anon_sym_0b] = ACTIONS(3377), + [anon_sym_0B] = ACTIONS(3377), + [aux_sym_integer_token4] = ACTIONS(3379), + [sym_float] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_api] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3379), + [anon_sym_include] = ACTIONS(3379), + [anon_sym_DEF] = ACTIONS(3379), + [anon_sym_IF] = ACTIONS(3379), + [anon_sym_cdef] = ACTIONS(3379), + [anon_sym_cpdef] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_ctypedef] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_packed] = ACTIONS(3379), + [anon_sym_inline] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_sizeof] = ACTIONS(3379), + [sym__dedent] = ACTIONS(3377), + [sym_string_start] = ACTIONS(3377), + }, + [1722] = { + [sym_identifier] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_cimport] = ACTIONS(3383), + [anon_sym_from] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_print] = ACTIONS(3383), + [anon_sym_assert] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_del] = ACTIONS(3383), + [anon_sym_raise] = ACTIONS(3383), + [anon_sym_pass] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_match] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_def] = ACTIONS(3383), + [anon_sym_global] = ACTIONS(3383), + [anon_sym_nonlocal] = ACTIONS(3383), + [anon_sym_exec] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_lambda] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [anon_sym_None] = ACTIONS(3383), + [anon_sym_0x] = ACTIONS(3381), + [anon_sym_0X] = ACTIONS(3381), + [anon_sym_0o] = ACTIONS(3381), + [anon_sym_0O] = ACTIONS(3381), + [anon_sym_0b] = ACTIONS(3381), + [anon_sym_0B] = ACTIONS(3381), + [aux_sym_integer_token4] = ACTIONS(3383), + [sym_float] = ACTIONS(3381), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_api] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3383), + [anon_sym_include] = ACTIONS(3383), + [anon_sym_DEF] = ACTIONS(3383), + [anon_sym_IF] = ACTIONS(3383), + [anon_sym_cdef] = ACTIONS(3383), + [anon_sym_cpdef] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_ctypedef] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_packed] = ACTIONS(3383), + [anon_sym_inline] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_sizeof] = ACTIONS(3383), + [sym__dedent] = ACTIONS(3381), + [sym_string_start] = ACTIONS(3381), + }, + [1723] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5250), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1724] = { + [ts_builtin_sym_end] = ACTIONS(3889), + [sym_identifier] = ACTIONS(3887), + [anon_sym_SEMI] = ACTIONS(3889), + [anon_sym_import] = ACTIONS(3887), + [anon_sym_cimport] = ACTIONS(3887), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3889), + [anon_sym_print] = ACTIONS(3887), + [anon_sym_assert] = ACTIONS(3887), + [anon_sym_return] = ACTIONS(3887), + [anon_sym_del] = ACTIONS(3887), + [anon_sym_raise] = ACTIONS(3887), + [anon_sym_pass] = ACTIONS(3887), + [anon_sym_break] = ACTIONS(3887), + [anon_sym_continue] = ACTIONS(3887), + [anon_sym_if] = ACTIONS(3887), + [anon_sym_match] = ACTIONS(3887), + [anon_sym_async] = ACTIONS(3887), + [anon_sym_for] = ACTIONS(3887), + [anon_sym_while] = ACTIONS(3887), + [anon_sym_try] = ACTIONS(3887), + [anon_sym_with] = ACTIONS(3887), + [anon_sym_def] = ACTIONS(3887), + [anon_sym_global] = ACTIONS(3887), + [anon_sym_nonlocal] = ACTIONS(3887), + [anon_sym_exec] = ACTIONS(3887), + [anon_sym_type] = ACTIONS(3887), + [anon_sym_class] = ACTIONS(3887), + [anon_sym_LBRACK] = ACTIONS(3889), + [anon_sym_AT] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_LBRACE] = ACTIONS(3889), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_not] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3889), + [anon_sym_TILDE] = ACTIONS(3889), + [anon_sym_LT] = ACTIONS(3889), + [anon_sym_lambda] = ACTIONS(3887), + [anon_sym_yield] = ACTIONS(3887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3889), + [anon_sym_None] = ACTIONS(3887), + [anon_sym_0x] = ACTIONS(3889), + [anon_sym_0X] = ACTIONS(3889), + [anon_sym_0o] = ACTIONS(3889), + [anon_sym_0O] = ACTIONS(3889), + [anon_sym_0b] = ACTIONS(3889), + [anon_sym_0B] = ACTIONS(3889), + [aux_sym_integer_token4] = ACTIONS(3887), + [sym_float] = ACTIONS(3889), + [anon_sym_await] = ACTIONS(3887), + [anon_sym_api] = ACTIONS(3887), + [sym_true] = ACTIONS(3887), + [sym_false] = ACTIONS(3887), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3887), + [anon_sym_include] = ACTIONS(3887), + [anon_sym_DEF] = ACTIONS(3887), + [anon_sym_IF] = ACTIONS(3887), + [anon_sym_cdef] = ACTIONS(3887), + [anon_sym_cpdef] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3887), + [anon_sym_ctypedef] = ACTIONS(3887), + [anon_sym_public] = ACTIONS(3887), + [anon_sym_packed] = ACTIONS(3887), + [anon_sym_inline] = ACTIONS(3887), + [anon_sym_readonly] = ACTIONS(3887), + [anon_sym_sizeof] = ACTIONS(3887), + [sym_string_start] = ACTIONS(3889), + }, + [1725] = { + [sym_identifier] = ACTIONS(3775), + [anon_sym_SEMI] = ACTIONS(3773), + [anon_sym_import] = ACTIONS(3775), + [anon_sym_cimport] = ACTIONS(3775), + [anon_sym_from] = ACTIONS(3775), + [anon_sym_LPAREN] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3773), + [anon_sym_print] = ACTIONS(3775), + [anon_sym_assert] = ACTIONS(3775), + [anon_sym_return] = ACTIONS(3775), + [anon_sym_del] = ACTIONS(3775), + [anon_sym_raise] = ACTIONS(3775), + [anon_sym_pass] = ACTIONS(3775), + [anon_sym_break] = ACTIONS(3775), + [anon_sym_continue] = ACTIONS(3775), + [anon_sym_if] = ACTIONS(3775), + [anon_sym_match] = ACTIONS(3775), + [anon_sym_async] = ACTIONS(3775), + [anon_sym_for] = ACTIONS(3775), + [anon_sym_while] = ACTIONS(3775), + [anon_sym_try] = ACTIONS(3775), + [anon_sym_with] = ACTIONS(3775), + [anon_sym_def] = ACTIONS(3775), + [anon_sym_global] = ACTIONS(3775), + [anon_sym_nonlocal] = ACTIONS(3775), + [anon_sym_exec] = ACTIONS(3775), + [anon_sym_type] = ACTIONS(3775), + [anon_sym_class] = ACTIONS(3775), + [anon_sym_LBRACK] = ACTIONS(3773), + [anon_sym_AT] = ACTIONS(3773), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_LBRACE] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_not] = ACTIONS(3775), + [anon_sym_AMP] = ACTIONS(3773), + [anon_sym_TILDE] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3773), + [anon_sym_lambda] = ACTIONS(3775), + [anon_sym_yield] = ACTIONS(3775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3773), + [anon_sym_None] = ACTIONS(3775), + [anon_sym_0x] = ACTIONS(3773), + [anon_sym_0X] = ACTIONS(3773), + [anon_sym_0o] = ACTIONS(3773), + [anon_sym_0O] = ACTIONS(3773), + [anon_sym_0b] = ACTIONS(3773), + [anon_sym_0B] = ACTIONS(3773), + [aux_sym_integer_token4] = ACTIONS(3775), + [sym_float] = ACTIONS(3773), + [anon_sym_await] = ACTIONS(3775), + [anon_sym_api] = ACTIONS(3775), + [sym_true] = ACTIONS(3775), + [sym_false] = ACTIONS(3775), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3775), + [anon_sym_include] = ACTIONS(3775), + [anon_sym_DEF] = ACTIONS(3775), + [anon_sym_IF] = ACTIONS(3775), + [anon_sym_cdef] = ACTIONS(3775), + [anon_sym_cpdef] = ACTIONS(3775), + [anon_sym_new] = ACTIONS(3775), + [anon_sym_ctypedef] = ACTIONS(3775), + [anon_sym_public] = ACTIONS(3775), + [anon_sym_packed] = ACTIONS(3775), + [anon_sym_inline] = ACTIONS(3775), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_sizeof] = ACTIONS(3775), + [sym__dedent] = ACTIONS(3773), + [sym_string_start] = ACTIONS(3773), + }, + [1726] = { + [sym_identifier] = ACTIONS(3779), + [anon_sym_SEMI] = ACTIONS(3777), + [anon_sym_import] = ACTIONS(3779), + [anon_sym_cimport] = ACTIONS(3779), + [anon_sym_from] = ACTIONS(3779), + [anon_sym_LPAREN] = ACTIONS(3777), + [anon_sym_STAR] = ACTIONS(3777), + [anon_sym_print] = ACTIONS(3779), + [anon_sym_assert] = ACTIONS(3779), + [anon_sym_return] = ACTIONS(3779), + [anon_sym_del] = ACTIONS(3779), + [anon_sym_raise] = ACTIONS(3779), + [anon_sym_pass] = ACTIONS(3779), + [anon_sym_break] = ACTIONS(3779), + [anon_sym_continue] = ACTIONS(3779), + [anon_sym_if] = ACTIONS(3779), + [anon_sym_match] = ACTIONS(3779), + [anon_sym_async] = ACTIONS(3779), + [anon_sym_for] = ACTIONS(3779), + [anon_sym_while] = ACTIONS(3779), + [anon_sym_try] = ACTIONS(3779), + [anon_sym_with] = ACTIONS(3779), + [anon_sym_def] = ACTIONS(3779), + [anon_sym_global] = ACTIONS(3779), + [anon_sym_nonlocal] = ACTIONS(3779), + [anon_sym_exec] = ACTIONS(3779), + [anon_sym_type] = ACTIONS(3779), + [anon_sym_class] = ACTIONS(3779), + [anon_sym_LBRACK] = ACTIONS(3777), + [anon_sym_AT] = ACTIONS(3777), + [anon_sym_DASH] = ACTIONS(3777), + [anon_sym_LBRACE] = ACTIONS(3777), + [anon_sym_PLUS] = ACTIONS(3777), + [anon_sym_not] = ACTIONS(3779), + [anon_sym_AMP] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3777), + [anon_sym_LT] = ACTIONS(3777), + [anon_sym_lambda] = ACTIONS(3779), + [anon_sym_yield] = ACTIONS(3779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3777), + [anon_sym_None] = ACTIONS(3779), + [anon_sym_0x] = ACTIONS(3777), + [anon_sym_0X] = ACTIONS(3777), + [anon_sym_0o] = ACTIONS(3777), + [anon_sym_0O] = ACTIONS(3777), + [anon_sym_0b] = ACTIONS(3777), + [anon_sym_0B] = ACTIONS(3777), + [aux_sym_integer_token4] = ACTIONS(3779), + [sym_float] = ACTIONS(3777), + [anon_sym_await] = ACTIONS(3779), + [anon_sym_api] = ACTIONS(3779), + [sym_true] = ACTIONS(3779), + [sym_false] = ACTIONS(3779), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3779), + [anon_sym_include] = ACTIONS(3779), + [anon_sym_DEF] = ACTIONS(3779), + [anon_sym_IF] = ACTIONS(3779), + [anon_sym_cdef] = ACTIONS(3779), + [anon_sym_cpdef] = ACTIONS(3779), + [anon_sym_new] = ACTIONS(3779), + [anon_sym_ctypedef] = ACTIONS(3779), + [anon_sym_public] = ACTIONS(3779), + [anon_sym_packed] = ACTIONS(3779), + [anon_sym_inline] = ACTIONS(3779), + [anon_sym_readonly] = ACTIONS(3779), + [anon_sym_sizeof] = ACTIONS(3779), + [sym__dedent] = ACTIONS(3777), + [sym_string_start] = ACTIONS(3777), + }, + [1727] = { + [ts_builtin_sym_end] = ACTIONS(3893), + [sym_identifier] = ACTIONS(3891), + [anon_sym_SEMI] = ACTIONS(3893), + [anon_sym_import] = ACTIONS(3891), + [anon_sym_cimport] = ACTIONS(3891), + [anon_sym_from] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_print] = ACTIONS(3891), + [anon_sym_assert] = ACTIONS(3891), + [anon_sym_return] = ACTIONS(3891), + [anon_sym_del] = ACTIONS(3891), + [anon_sym_raise] = ACTIONS(3891), + [anon_sym_pass] = ACTIONS(3891), + [anon_sym_break] = ACTIONS(3891), + [anon_sym_continue] = ACTIONS(3891), + [anon_sym_if] = ACTIONS(3891), + [anon_sym_match] = ACTIONS(3891), + [anon_sym_async] = ACTIONS(3891), + [anon_sym_for] = ACTIONS(3891), + [anon_sym_while] = ACTIONS(3891), + [anon_sym_try] = ACTIONS(3891), + [anon_sym_with] = ACTIONS(3891), + [anon_sym_def] = ACTIONS(3891), + [anon_sym_global] = ACTIONS(3891), + [anon_sym_nonlocal] = ACTIONS(3891), + [anon_sym_exec] = ACTIONS(3891), + [anon_sym_type] = ACTIONS(3891), + [anon_sym_class] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_AT] = ACTIONS(3893), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_not] = ACTIONS(3891), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_TILDE] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3893), + [anon_sym_lambda] = ACTIONS(3891), + [anon_sym_yield] = ACTIONS(3891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3893), + [anon_sym_None] = ACTIONS(3891), + [anon_sym_0x] = ACTIONS(3893), + [anon_sym_0X] = ACTIONS(3893), + [anon_sym_0o] = ACTIONS(3893), + [anon_sym_0O] = ACTIONS(3893), + [anon_sym_0b] = ACTIONS(3893), + [anon_sym_0B] = ACTIONS(3893), + [aux_sym_integer_token4] = ACTIONS(3891), + [sym_float] = ACTIONS(3893), + [anon_sym_await] = ACTIONS(3891), + [anon_sym_api] = ACTIONS(3891), + [sym_true] = ACTIONS(3891), + [sym_false] = ACTIONS(3891), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3891), + [anon_sym_include] = ACTIONS(3891), + [anon_sym_DEF] = ACTIONS(3891), + [anon_sym_IF] = ACTIONS(3891), + [anon_sym_cdef] = ACTIONS(3891), + [anon_sym_cpdef] = ACTIONS(3891), + [anon_sym_new] = ACTIONS(3891), + [anon_sym_ctypedef] = ACTIONS(3891), + [anon_sym_public] = ACTIONS(3891), + [anon_sym_packed] = ACTIONS(3891), + [anon_sym_inline] = ACTIONS(3891), + [anon_sym_readonly] = ACTIONS(3891), + [anon_sym_sizeof] = ACTIONS(3891), + [sym_string_start] = ACTIONS(3893), + }, + [1728] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_from] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1729] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1730] = { + [sym_identifier] = ACTIONS(3795), + [anon_sym_SEMI] = ACTIONS(3793), + [anon_sym_import] = ACTIONS(3795), + [anon_sym_cimport] = ACTIONS(3795), + [anon_sym_from] = ACTIONS(3795), + [anon_sym_LPAREN] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3793), + [anon_sym_print] = ACTIONS(3795), + [anon_sym_assert] = ACTIONS(3795), + [anon_sym_return] = ACTIONS(3795), + [anon_sym_del] = ACTIONS(3795), + [anon_sym_raise] = ACTIONS(3795), + [anon_sym_pass] = ACTIONS(3795), + [anon_sym_break] = ACTIONS(3795), + [anon_sym_continue] = ACTIONS(3795), + [anon_sym_if] = ACTIONS(3795), + [anon_sym_match] = ACTIONS(3795), + [anon_sym_async] = ACTIONS(3795), + [anon_sym_for] = ACTIONS(3795), + [anon_sym_while] = ACTIONS(3795), + [anon_sym_try] = ACTIONS(3795), + [anon_sym_with] = ACTIONS(3795), + [anon_sym_def] = ACTIONS(3795), + [anon_sym_global] = ACTIONS(3795), + [anon_sym_nonlocal] = ACTIONS(3795), + [anon_sym_exec] = ACTIONS(3795), + [anon_sym_type] = ACTIONS(3795), + [anon_sym_class] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3793), + [anon_sym_AT] = ACTIONS(3793), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_LBRACE] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_not] = ACTIONS(3795), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_TILDE] = ACTIONS(3793), + [anon_sym_LT] = ACTIONS(3793), + [anon_sym_lambda] = ACTIONS(3795), + [anon_sym_yield] = ACTIONS(3795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3793), + [anon_sym_None] = ACTIONS(3795), + [anon_sym_0x] = ACTIONS(3793), + [anon_sym_0X] = ACTIONS(3793), + [anon_sym_0o] = ACTIONS(3793), + [anon_sym_0O] = ACTIONS(3793), + [anon_sym_0b] = ACTIONS(3793), + [anon_sym_0B] = ACTIONS(3793), + [aux_sym_integer_token4] = ACTIONS(3795), + [sym_float] = ACTIONS(3793), + [anon_sym_await] = ACTIONS(3795), + [anon_sym_api] = ACTIONS(3795), + [sym_true] = ACTIONS(3795), + [sym_false] = ACTIONS(3795), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3795), + [anon_sym_include] = ACTIONS(3795), + [anon_sym_DEF] = ACTIONS(3795), + [anon_sym_IF] = ACTIONS(3795), + [anon_sym_cdef] = ACTIONS(3795), + [anon_sym_cpdef] = ACTIONS(3795), + [anon_sym_new] = ACTIONS(3795), + [anon_sym_ctypedef] = ACTIONS(3795), + [anon_sym_public] = ACTIONS(3795), + [anon_sym_packed] = ACTIONS(3795), + [anon_sym_inline] = ACTIONS(3795), + [anon_sym_readonly] = ACTIONS(3795), + [anon_sym_sizeof] = ACTIONS(3795), + [sym__dedent] = ACTIONS(3793), + [sym_string_start] = ACTIONS(3793), + }, + [1731] = { + [sym_identifier] = ACTIONS(3799), + [anon_sym_SEMI] = ACTIONS(3797), + [anon_sym_import] = ACTIONS(3799), + [anon_sym_cimport] = ACTIONS(3799), + [anon_sym_from] = ACTIONS(3799), + [anon_sym_LPAREN] = ACTIONS(3797), + [anon_sym_STAR] = ACTIONS(3797), + [anon_sym_print] = ACTIONS(3799), + [anon_sym_assert] = ACTIONS(3799), + [anon_sym_return] = ACTIONS(3799), + [anon_sym_del] = ACTIONS(3799), + [anon_sym_raise] = ACTIONS(3799), + [anon_sym_pass] = ACTIONS(3799), + [anon_sym_break] = ACTIONS(3799), + [anon_sym_continue] = ACTIONS(3799), + [anon_sym_if] = ACTIONS(3799), + [anon_sym_match] = ACTIONS(3799), + [anon_sym_async] = ACTIONS(3799), + [anon_sym_for] = ACTIONS(3799), + [anon_sym_while] = ACTIONS(3799), + [anon_sym_try] = ACTIONS(3799), + [anon_sym_with] = ACTIONS(3799), + [anon_sym_def] = ACTIONS(3799), + [anon_sym_global] = ACTIONS(3799), + [anon_sym_nonlocal] = ACTIONS(3799), + [anon_sym_exec] = ACTIONS(3799), + [anon_sym_type] = ACTIONS(3799), + [anon_sym_class] = ACTIONS(3799), + [anon_sym_LBRACK] = ACTIONS(3797), + [anon_sym_AT] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_PLUS] = ACTIONS(3797), + [anon_sym_not] = ACTIONS(3799), + [anon_sym_AMP] = ACTIONS(3797), + [anon_sym_TILDE] = ACTIONS(3797), + [anon_sym_LT] = ACTIONS(3797), + [anon_sym_lambda] = ACTIONS(3799), + [anon_sym_yield] = ACTIONS(3799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3797), + [anon_sym_None] = ACTIONS(3799), + [anon_sym_0x] = ACTIONS(3797), + [anon_sym_0X] = ACTIONS(3797), + [anon_sym_0o] = ACTIONS(3797), + [anon_sym_0O] = ACTIONS(3797), + [anon_sym_0b] = ACTIONS(3797), + [anon_sym_0B] = ACTIONS(3797), + [aux_sym_integer_token4] = ACTIONS(3799), + [sym_float] = ACTIONS(3797), + [anon_sym_await] = ACTIONS(3799), + [anon_sym_api] = ACTIONS(3799), + [sym_true] = ACTIONS(3799), + [sym_false] = ACTIONS(3799), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3799), + [anon_sym_include] = ACTIONS(3799), + [anon_sym_DEF] = ACTIONS(3799), + [anon_sym_IF] = ACTIONS(3799), + [anon_sym_cdef] = ACTIONS(3799), + [anon_sym_cpdef] = ACTIONS(3799), + [anon_sym_new] = ACTIONS(3799), + [anon_sym_ctypedef] = ACTIONS(3799), + [anon_sym_public] = ACTIONS(3799), + [anon_sym_packed] = ACTIONS(3799), + [anon_sym_inline] = ACTIONS(3799), + [anon_sym_readonly] = ACTIONS(3799), + [anon_sym_sizeof] = ACTIONS(3799), + [sym__dedent] = ACTIONS(3797), + [sym_string_start] = ACTIONS(3797), + }, + [1732] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6635), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2852), + [sym_primary_expression] = STATE(2474), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1733] = { + [sym_identifier] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_cimport] = ACTIONS(3417), + [anon_sym_from] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_print] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_del] = ACTIONS(3417), + [anon_sym_raise] = ACTIONS(3417), + [anon_sym_pass] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_def] = ACTIONS(3417), + [anon_sym_global] = ACTIONS(3417), + [anon_sym_nonlocal] = ACTIONS(3417), + [anon_sym_exec] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_AT] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_not] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_lambda] = ACTIONS(3417), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3415), + [anon_sym_None] = ACTIONS(3417), + [anon_sym_0x] = ACTIONS(3415), + [anon_sym_0X] = ACTIONS(3415), + [anon_sym_0o] = ACTIONS(3415), + [anon_sym_0O] = ACTIONS(3415), + [anon_sym_0b] = ACTIONS(3415), + [anon_sym_0B] = ACTIONS(3415), + [aux_sym_integer_token4] = ACTIONS(3417), + [sym_float] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_api] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3417), + [anon_sym_include] = ACTIONS(3417), + [anon_sym_DEF] = ACTIONS(3417), + [anon_sym_IF] = ACTIONS(3417), + [anon_sym_cdef] = ACTIONS(3417), + [anon_sym_cpdef] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_ctypedef] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_packed] = ACTIONS(3417), + [anon_sym_inline] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3417), + [sym__dedent] = ACTIONS(3415), + [sym_string_start] = ACTIONS(3415), + }, + [1734] = { + [sym_identifier] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_cimport] = ACTIONS(3421), + [anon_sym_from] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_print] = ACTIONS(3421), + [anon_sym_assert] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_del] = ACTIONS(3421), + [anon_sym_raise] = ACTIONS(3421), + [anon_sym_pass] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_match] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_def] = ACTIONS(3421), + [anon_sym_global] = ACTIONS(3421), + [anon_sym_nonlocal] = ACTIONS(3421), + [anon_sym_exec] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_AT] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_not] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_lambda] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_None] = ACTIONS(3421), + [anon_sym_0x] = ACTIONS(3419), + [anon_sym_0X] = ACTIONS(3419), + [anon_sym_0o] = ACTIONS(3419), + [anon_sym_0O] = ACTIONS(3419), + [anon_sym_0b] = ACTIONS(3419), + [anon_sym_0B] = ACTIONS(3419), + [aux_sym_integer_token4] = ACTIONS(3421), + [sym_float] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_api] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3421), + [anon_sym_include] = ACTIONS(3421), + [anon_sym_DEF] = ACTIONS(3421), + [anon_sym_IF] = ACTIONS(3421), + [anon_sym_cdef] = ACTIONS(3421), + [anon_sym_cpdef] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_ctypedef] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_packed] = ACTIONS(3421), + [anon_sym_inline] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_sizeof] = ACTIONS(3421), + [sym__dedent] = ACTIONS(3419), + [sym_string_start] = ACTIONS(3419), + }, + [1735] = { + [sym_identifier] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_cimport] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_print] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_del] = ACTIONS(3429), + [anon_sym_raise] = ACTIONS(3429), + [anon_sym_pass] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_def] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3429), + [anon_sym_nonlocal] = ACTIONS(3429), + [anon_sym_exec] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_not] = ACTIONS(3429), + [anon_sym_AMP] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_lambda] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3427), + [anon_sym_None] = ACTIONS(3429), + [anon_sym_0x] = ACTIONS(3427), + [anon_sym_0X] = ACTIONS(3427), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0O] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(3427), + [anon_sym_0B] = ACTIONS(3427), + [aux_sym_integer_token4] = ACTIONS(3429), + [sym_float] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_api] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3429), + [anon_sym_include] = ACTIONS(3429), + [anon_sym_DEF] = ACTIONS(3429), + [anon_sym_IF] = ACTIONS(3429), + [anon_sym_cdef] = ACTIONS(3429), + [anon_sym_cpdef] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_ctypedef] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_packed] = ACTIONS(3429), + [anon_sym_inline] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_sizeof] = ACTIONS(3429), + [sym__dedent] = ACTIONS(3427), + [sym_string_start] = ACTIONS(3427), + }, + [1736] = { + [sym_identifier] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3433), + [anon_sym_cimport] = ACTIONS(3433), + [anon_sym_from] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_print] = ACTIONS(3433), + [anon_sym_assert] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3433), + [anon_sym_del] = ACTIONS(3433), + [anon_sym_raise] = ACTIONS(3433), + [anon_sym_pass] = ACTIONS(3433), + [anon_sym_break] = ACTIONS(3433), + [anon_sym_continue] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3433), + [anon_sym_match] = ACTIONS(3433), + [anon_sym_async] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_while] = ACTIONS(3433), + [anon_sym_try] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3433), + [anon_sym_def] = ACTIONS(3433), + [anon_sym_global] = ACTIONS(3433), + [anon_sym_nonlocal] = ACTIONS(3433), + [anon_sym_exec] = ACTIONS(3433), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_class] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_not] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_lambda] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3431), + [anon_sym_None] = ACTIONS(3433), + [anon_sym_0x] = ACTIONS(3431), + [anon_sym_0X] = ACTIONS(3431), + [anon_sym_0o] = ACTIONS(3431), + [anon_sym_0O] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(3431), + [anon_sym_0B] = ACTIONS(3431), + [aux_sym_integer_token4] = ACTIONS(3433), + [sym_float] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3433), + [anon_sym_api] = ACTIONS(3433), + [sym_true] = ACTIONS(3433), + [sym_false] = ACTIONS(3433), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3433), + [anon_sym_include] = ACTIONS(3433), + [anon_sym_DEF] = ACTIONS(3433), + [anon_sym_IF] = ACTIONS(3433), + [anon_sym_cdef] = ACTIONS(3433), + [anon_sym_cpdef] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3433), + [anon_sym_ctypedef] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3433), + [anon_sym_packed] = ACTIONS(3433), + [anon_sym_inline] = ACTIONS(3433), + [anon_sym_readonly] = ACTIONS(3433), + [anon_sym_sizeof] = ACTIONS(3433), + [sym__dedent] = ACTIONS(3431), + [sym_string_start] = ACTIONS(3431), + }, + [1737] = { + [sym_identifier] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_cimport] = ACTIONS(3437), + [anon_sym_from] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3435), + [anon_sym_STAR] = ACTIONS(3435), + [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_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(3435), + [anon_sym_AT] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_not] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3435), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_lambda] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3435), + [anon_sym_None] = ACTIONS(3437), + [anon_sym_0x] = ACTIONS(3435), + [anon_sym_0X] = ACTIONS(3435), + [anon_sym_0o] = ACTIONS(3435), + [anon_sym_0O] = ACTIONS(3435), + [anon_sym_0b] = ACTIONS(3435), + [anon_sym_0B] = ACTIONS(3435), + [aux_sym_integer_token4] = ACTIONS(3437), + [sym_float] = ACTIONS(3435), + [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(3435), + [sym_string_start] = ACTIONS(3435), + }, + [1738] = { + [sym_identifier] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3445), + [anon_sym_cimport] = ACTIONS(3445), + [anon_sym_from] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3443), + [anon_sym_print] = ACTIONS(3445), + [anon_sym_assert] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3445), + [anon_sym_del] = ACTIONS(3445), + [anon_sym_raise] = ACTIONS(3445), + [anon_sym_pass] = ACTIONS(3445), + [anon_sym_break] = ACTIONS(3445), + [anon_sym_continue] = ACTIONS(3445), + [anon_sym_if] = ACTIONS(3445), + [anon_sym_match] = ACTIONS(3445), + [anon_sym_async] = ACTIONS(3445), + [anon_sym_for] = ACTIONS(3445), + [anon_sym_while] = ACTIONS(3445), + [anon_sym_try] = ACTIONS(3445), + [anon_sym_with] = ACTIONS(3445), + [anon_sym_def] = ACTIONS(3445), + [anon_sym_global] = ACTIONS(3445), + [anon_sym_nonlocal] = ACTIONS(3445), + [anon_sym_exec] = ACTIONS(3445), + [anon_sym_type] = ACTIONS(3445), + [anon_sym_class] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_AT] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_not] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_lambda] = ACTIONS(3445), + [anon_sym_yield] = ACTIONS(3445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3443), + [anon_sym_None] = ACTIONS(3445), + [anon_sym_0x] = ACTIONS(3443), + [anon_sym_0X] = ACTIONS(3443), + [anon_sym_0o] = ACTIONS(3443), + [anon_sym_0O] = ACTIONS(3443), + [anon_sym_0b] = ACTIONS(3443), + [anon_sym_0B] = ACTIONS(3443), + [aux_sym_integer_token4] = ACTIONS(3445), + [sym_float] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3445), + [anon_sym_api] = ACTIONS(3445), + [sym_true] = ACTIONS(3445), + [sym_false] = ACTIONS(3445), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3445), + [anon_sym_include] = ACTIONS(3445), + [anon_sym_DEF] = ACTIONS(3445), + [anon_sym_IF] = ACTIONS(3445), + [anon_sym_cdef] = ACTIONS(3445), + [anon_sym_cpdef] = ACTIONS(3445), + [anon_sym_new] = ACTIONS(3445), + [anon_sym_ctypedef] = ACTIONS(3445), + [anon_sym_public] = ACTIONS(3445), + [anon_sym_packed] = ACTIONS(3445), + [anon_sym_inline] = ACTIONS(3445), + [anon_sym_readonly] = ACTIONS(3445), + [anon_sym_sizeof] = ACTIONS(3445), + [sym__dedent] = ACTIONS(3443), + [sym_string_start] = ACTIONS(3443), + }, + [1739] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5015), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1740] = { + [sym_identifier] = ACTIONS(3531), + [anon_sym_SEMI] = ACTIONS(3529), + [anon_sym_import] = ACTIONS(3531), + [anon_sym_cimport] = ACTIONS(3531), + [anon_sym_from] = ACTIONS(3531), + [anon_sym_LPAREN] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3529), + [anon_sym_print] = ACTIONS(3531), + [anon_sym_assert] = ACTIONS(3531), + [anon_sym_return] = ACTIONS(3531), + [anon_sym_del] = ACTIONS(3531), + [anon_sym_raise] = ACTIONS(3531), + [anon_sym_pass] = ACTIONS(3531), + [anon_sym_break] = ACTIONS(3531), + [anon_sym_continue] = ACTIONS(3531), + [anon_sym_if] = ACTIONS(3531), + [anon_sym_match] = ACTIONS(3531), + [anon_sym_async] = ACTIONS(3531), + [anon_sym_for] = ACTIONS(3531), + [anon_sym_while] = ACTIONS(3531), + [anon_sym_try] = ACTIONS(3531), + [anon_sym_with] = ACTIONS(3531), + [anon_sym_def] = ACTIONS(3531), + [anon_sym_global] = ACTIONS(3531), + [anon_sym_nonlocal] = ACTIONS(3531), + [anon_sym_exec] = ACTIONS(3531), + [anon_sym_type] = ACTIONS(3531), + [anon_sym_class] = ACTIONS(3531), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_AT] = ACTIONS(3529), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3529), + [anon_sym_not] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_TILDE] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_lambda] = ACTIONS(3531), + [anon_sym_yield] = ACTIONS(3531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), + [anon_sym_None] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3529), + [anon_sym_0X] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3529), + [anon_sym_0O] = ACTIONS(3529), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0B] = ACTIONS(3529), + [aux_sym_integer_token4] = ACTIONS(3531), + [sym_float] = ACTIONS(3529), + [anon_sym_await] = ACTIONS(3531), + [anon_sym_api] = ACTIONS(3531), + [sym_true] = ACTIONS(3531), + [sym_false] = ACTIONS(3531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3531), + [anon_sym_include] = ACTIONS(3531), + [anon_sym_DEF] = ACTIONS(3531), + [anon_sym_IF] = ACTIONS(3531), + [anon_sym_cdef] = ACTIONS(3531), + [anon_sym_cpdef] = ACTIONS(3531), + [anon_sym_new] = ACTIONS(3531), + [anon_sym_ctypedef] = ACTIONS(3531), + [anon_sym_public] = ACTIONS(3531), + [anon_sym_packed] = ACTIONS(3531), + [anon_sym_inline] = ACTIONS(3531), + [anon_sym_readonly] = ACTIONS(3531), + [anon_sym_sizeof] = ACTIONS(3531), + [sym__dedent] = ACTIONS(3529), + [sym_string_start] = ACTIONS(3529), + }, + [1741] = { + [sym_identifier] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3533), + [anon_sym_import] = ACTIONS(3535), + [anon_sym_cimport] = ACTIONS(3535), + [anon_sym_from] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3533), + [anon_sym_print] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_del] = ACTIONS(3535), + [anon_sym_raise] = ACTIONS(3535), + [anon_sym_pass] = ACTIONS(3535), + [anon_sym_break] = ACTIONS(3535), + [anon_sym_continue] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_async] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(3535), + [anon_sym_def] = ACTIONS(3535), + [anon_sym_global] = ACTIONS(3535), + [anon_sym_nonlocal] = ACTIONS(3535), + [anon_sym_exec] = ACTIONS(3535), + [anon_sym_type] = ACTIONS(3535), + [anon_sym_class] = ACTIONS(3535), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_AT] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3533), + [anon_sym_LT] = ACTIONS(3533), + [anon_sym_lambda] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), + [anon_sym_None] = ACTIONS(3535), + [anon_sym_0x] = ACTIONS(3533), + [anon_sym_0X] = ACTIONS(3533), + [anon_sym_0o] = ACTIONS(3533), + [anon_sym_0O] = ACTIONS(3533), + [anon_sym_0b] = ACTIONS(3533), + [anon_sym_0B] = ACTIONS(3533), + [aux_sym_integer_token4] = ACTIONS(3535), + [sym_float] = ACTIONS(3533), + [anon_sym_await] = ACTIONS(3535), + [anon_sym_api] = ACTIONS(3535), + [sym_true] = ACTIONS(3535), + [sym_false] = ACTIONS(3535), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3535), + [anon_sym_include] = ACTIONS(3535), + [anon_sym_DEF] = ACTIONS(3535), + [anon_sym_IF] = ACTIONS(3535), + [anon_sym_cdef] = ACTIONS(3535), + [anon_sym_cpdef] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_ctypedef] = ACTIONS(3535), + [anon_sym_public] = ACTIONS(3535), + [anon_sym_packed] = ACTIONS(3535), + [anon_sym_inline] = ACTIONS(3535), + [anon_sym_readonly] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3535), + [sym__dedent] = ACTIONS(3533), + [sym_string_start] = ACTIONS(3533), + }, + [1742] = { + [sym_identifier] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3537), + [anon_sym_import] = ACTIONS(3539), + [anon_sym_cimport] = ACTIONS(3539), + [anon_sym_from] = ACTIONS(3539), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(3537), + [anon_sym_print] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_del] = ACTIONS(3539), + [anon_sym_raise] = ACTIONS(3539), + [anon_sym_pass] = ACTIONS(3539), + [anon_sym_break] = ACTIONS(3539), + [anon_sym_continue] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_async] = ACTIONS(3539), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_with] = ACTIONS(3539), + [anon_sym_def] = ACTIONS(3539), + [anon_sym_global] = ACTIONS(3539), + [anon_sym_nonlocal] = ACTIONS(3539), + [anon_sym_exec] = ACTIONS(3539), + [anon_sym_type] = ACTIONS(3539), + [anon_sym_class] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3537), + [anon_sym_AT] = ACTIONS(3537), + [anon_sym_DASH] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3537), + [anon_sym_PLUS] = ACTIONS(3537), + [anon_sym_not] = ACTIONS(3539), + [anon_sym_AMP] = ACTIONS(3537), + [anon_sym_TILDE] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_lambda] = ACTIONS(3539), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3537), + [anon_sym_None] = ACTIONS(3539), + [anon_sym_0x] = ACTIONS(3537), + [anon_sym_0X] = ACTIONS(3537), + [anon_sym_0o] = ACTIONS(3537), + [anon_sym_0O] = ACTIONS(3537), + [anon_sym_0b] = ACTIONS(3537), + [anon_sym_0B] = ACTIONS(3537), + [aux_sym_integer_token4] = ACTIONS(3539), + [sym_float] = ACTIONS(3537), + [anon_sym_await] = ACTIONS(3539), + [anon_sym_api] = ACTIONS(3539), + [sym_true] = ACTIONS(3539), + [sym_false] = ACTIONS(3539), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3539), + [anon_sym_include] = ACTIONS(3539), + [anon_sym_DEF] = ACTIONS(3539), + [anon_sym_IF] = ACTIONS(3539), + [anon_sym_cdef] = ACTIONS(3539), + [anon_sym_cpdef] = ACTIONS(3539), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_ctypedef] = ACTIONS(3539), + [anon_sym_public] = ACTIONS(3539), + [anon_sym_packed] = ACTIONS(3539), + [anon_sym_inline] = ACTIONS(3539), + [anon_sym_readonly] = ACTIONS(3539), + [anon_sym_sizeof] = ACTIONS(3539), + [sym__dedent] = ACTIONS(3537), + [sym_string_start] = ACTIONS(3537), + }, + [1743] = { + [sym_identifier] = ACTIONS(3543), + [anon_sym_SEMI] = ACTIONS(3541), + [anon_sym_import] = ACTIONS(3543), + [anon_sym_cimport] = ACTIONS(3543), + [anon_sym_from] = ACTIONS(3543), + [anon_sym_LPAREN] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3541), + [anon_sym_print] = ACTIONS(3543), + [anon_sym_assert] = ACTIONS(3543), + [anon_sym_return] = ACTIONS(3543), + [anon_sym_del] = ACTIONS(3543), + [anon_sym_raise] = ACTIONS(3543), + [anon_sym_pass] = ACTIONS(3543), + [anon_sym_break] = ACTIONS(3543), + [anon_sym_continue] = ACTIONS(3543), + [anon_sym_if] = ACTIONS(3543), + [anon_sym_match] = ACTIONS(3543), + [anon_sym_async] = ACTIONS(3543), + [anon_sym_for] = ACTIONS(3543), + [anon_sym_while] = ACTIONS(3543), + [anon_sym_try] = ACTIONS(3543), + [anon_sym_with] = ACTIONS(3543), + [anon_sym_def] = ACTIONS(3543), + [anon_sym_global] = ACTIONS(3543), + [anon_sym_nonlocal] = ACTIONS(3543), + [anon_sym_exec] = ACTIONS(3543), + [anon_sym_type] = ACTIONS(3543), + [anon_sym_class] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_AT] = ACTIONS(3541), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3541), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_not] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_TILDE] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_lambda] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3541), + [anon_sym_None] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3541), + [anon_sym_0X] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3541), + [anon_sym_0O] = ACTIONS(3541), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0B] = ACTIONS(3541), + [aux_sym_integer_token4] = ACTIONS(3543), + [sym_float] = ACTIONS(3541), + [anon_sym_await] = ACTIONS(3543), + [anon_sym_api] = ACTIONS(3543), + [sym_true] = ACTIONS(3543), + [sym_false] = ACTIONS(3543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3543), + [anon_sym_include] = ACTIONS(3543), + [anon_sym_DEF] = ACTIONS(3543), + [anon_sym_IF] = ACTIONS(3543), + [anon_sym_cdef] = ACTIONS(3543), + [anon_sym_cpdef] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3543), + [anon_sym_ctypedef] = ACTIONS(3543), + [anon_sym_public] = ACTIONS(3543), + [anon_sym_packed] = ACTIONS(3543), + [anon_sym_inline] = ACTIONS(3543), + [anon_sym_readonly] = ACTIONS(3543), + [anon_sym_sizeof] = ACTIONS(3543), + [sym__dedent] = ACTIONS(3541), + [sym_string_start] = ACTIONS(3541), + }, + [1744] = { + [ts_builtin_sym_end] = ACTIONS(3843), + [sym_identifier] = ACTIONS(3841), + [anon_sym_SEMI] = ACTIONS(3843), + [anon_sym_import] = ACTIONS(3841), + [anon_sym_cimport] = ACTIONS(3841), + [anon_sym_from] = ACTIONS(3841), + [anon_sym_LPAREN] = ACTIONS(3843), + [anon_sym_STAR] = ACTIONS(3843), + [anon_sym_print] = ACTIONS(3841), + [anon_sym_assert] = ACTIONS(3841), + [anon_sym_return] = ACTIONS(3841), + [anon_sym_del] = ACTIONS(3841), + [anon_sym_raise] = ACTIONS(3841), + [anon_sym_pass] = ACTIONS(3841), + [anon_sym_break] = ACTIONS(3841), + [anon_sym_continue] = ACTIONS(3841), + [anon_sym_if] = ACTIONS(3841), + [anon_sym_match] = ACTIONS(3841), + [anon_sym_async] = ACTIONS(3841), + [anon_sym_for] = ACTIONS(3841), + [anon_sym_while] = ACTIONS(3841), + [anon_sym_try] = ACTIONS(3841), + [anon_sym_with] = ACTIONS(3841), + [anon_sym_def] = ACTIONS(3841), + [anon_sym_global] = ACTIONS(3841), + [anon_sym_nonlocal] = ACTIONS(3841), + [anon_sym_exec] = ACTIONS(3841), + [anon_sym_type] = ACTIONS(3841), + [anon_sym_class] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(3843), + [anon_sym_AT] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3843), + [anon_sym_LBRACE] = ACTIONS(3843), + [anon_sym_PLUS] = ACTIONS(3843), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_AMP] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_LT] = ACTIONS(3843), + [anon_sym_lambda] = ACTIONS(3841), + [anon_sym_yield] = ACTIONS(3841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3843), + [anon_sym_None] = ACTIONS(3841), + [anon_sym_0x] = ACTIONS(3843), + [anon_sym_0X] = ACTIONS(3843), + [anon_sym_0o] = ACTIONS(3843), + [anon_sym_0O] = ACTIONS(3843), + [anon_sym_0b] = ACTIONS(3843), + [anon_sym_0B] = ACTIONS(3843), + [aux_sym_integer_token4] = ACTIONS(3841), + [sym_float] = ACTIONS(3843), + [anon_sym_await] = ACTIONS(3841), + [anon_sym_api] = ACTIONS(3841), + [sym_true] = ACTIONS(3841), + [sym_false] = ACTIONS(3841), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3841), + [anon_sym_include] = ACTIONS(3841), + [anon_sym_DEF] = ACTIONS(3841), + [anon_sym_IF] = ACTIONS(3841), + [anon_sym_cdef] = ACTIONS(3841), + [anon_sym_cpdef] = ACTIONS(3841), + [anon_sym_new] = ACTIONS(3841), + [anon_sym_ctypedef] = ACTIONS(3841), + [anon_sym_public] = ACTIONS(3841), + [anon_sym_packed] = ACTIONS(3841), + [anon_sym_inline] = ACTIONS(3841), + [anon_sym_readonly] = ACTIONS(3841), + [anon_sym_sizeof] = ACTIONS(3841), + [sym_string_start] = ACTIONS(3843), + }, + [1745] = { + [sym_identifier] = ACTIONS(3547), + [anon_sym_SEMI] = ACTIONS(3545), + [anon_sym_import] = ACTIONS(3547), + [anon_sym_cimport] = ACTIONS(3547), + [anon_sym_from] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3545), + [anon_sym_print] = ACTIONS(3547), + [anon_sym_assert] = ACTIONS(3547), + [anon_sym_return] = ACTIONS(3547), + [anon_sym_del] = ACTIONS(3547), + [anon_sym_raise] = ACTIONS(3547), + [anon_sym_pass] = ACTIONS(3547), + [anon_sym_break] = ACTIONS(3547), + [anon_sym_continue] = ACTIONS(3547), + [anon_sym_if] = ACTIONS(3547), + [anon_sym_match] = ACTIONS(3547), + [anon_sym_async] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3547), + [anon_sym_while] = ACTIONS(3547), + [anon_sym_try] = ACTIONS(3547), + [anon_sym_with] = ACTIONS(3547), + [anon_sym_def] = ACTIONS(3547), + [anon_sym_global] = ACTIONS(3547), + [anon_sym_nonlocal] = ACTIONS(3547), + [anon_sym_exec] = ACTIONS(3547), + [anon_sym_type] = ACTIONS(3547), + [anon_sym_class] = ACTIONS(3547), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_AT] = ACTIONS(3545), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_PLUS] = ACTIONS(3545), + [anon_sym_not] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3545), + [anon_sym_LT] = ACTIONS(3545), + [anon_sym_lambda] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), + [anon_sym_None] = ACTIONS(3547), + [anon_sym_0x] = ACTIONS(3545), + [anon_sym_0X] = ACTIONS(3545), + [anon_sym_0o] = ACTIONS(3545), + [anon_sym_0O] = ACTIONS(3545), + [anon_sym_0b] = ACTIONS(3545), + [anon_sym_0B] = ACTIONS(3545), + [aux_sym_integer_token4] = ACTIONS(3547), + [sym_float] = ACTIONS(3545), + [anon_sym_await] = ACTIONS(3547), + [anon_sym_api] = ACTIONS(3547), + [sym_true] = ACTIONS(3547), + [sym_false] = ACTIONS(3547), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3547), + [anon_sym_include] = ACTIONS(3547), + [anon_sym_DEF] = ACTIONS(3547), + [anon_sym_IF] = ACTIONS(3547), + [anon_sym_cdef] = ACTIONS(3547), + [anon_sym_cpdef] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3547), + [anon_sym_ctypedef] = ACTIONS(3547), + [anon_sym_public] = ACTIONS(3547), + [anon_sym_packed] = ACTIONS(3547), + [anon_sym_inline] = ACTIONS(3547), + [anon_sym_readonly] = ACTIONS(3547), + [anon_sym_sizeof] = ACTIONS(3547), + [sym__dedent] = ACTIONS(3545), + [sym_string_start] = ACTIONS(3545), + }, + [1746] = { + [sym_identifier] = ACTIONS(3551), + [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_import] = ACTIONS(3551), + [anon_sym_cimport] = ACTIONS(3551), + [anon_sym_from] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(3549), + [anon_sym_print] = ACTIONS(3551), + [anon_sym_assert] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3551), + [anon_sym_del] = ACTIONS(3551), + [anon_sym_raise] = ACTIONS(3551), + [anon_sym_pass] = ACTIONS(3551), + [anon_sym_break] = ACTIONS(3551), + [anon_sym_continue] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_match] = ACTIONS(3551), + [anon_sym_async] = ACTIONS(3551), + [anon_sym_for] = ACTIONS(3551), + [anon_sym_while] = ACTIONS(3551), + [anon_sym_try] = ACTIONS(3551), + [anon_sym_with] = ACTIONS(3551), + [anon_sym_def] = ACTIONS(3551), + [anon_sym_global] = ACTIONS(3551), + [anon_sym_nonlocal] = ACTIONS(3551), + [anon_sym_exec] = ACTIONS(3551), + [anon_sym_type] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_AT] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_not] = ACTIONS(3551), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3549), + [anon_sym_lambda] = ACTIONS(3551), + [anon_sym_yield] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), + [anon_sym_None] = ACTIONS(3551), + [anon_sym_0x] = ACTIONS(3549), + [anon_sym_0X] = ACTIONS(3549), + [anon_sym_0o] = ACTIONS(3549), + [anon_sym_0O] = ACTIONS(3549), + [anon_sym_0b] = ACTIONS(3549), + [anon_sym_0B] = ACTIONS(3549), + [aux_sym_integer_token4] = ACTIONS(3551), + [sym_float] = ACTIONS(3549), + [anon_sym_await] = ACTIONS(3551), + [anon_sym_api] = ACTIONS(3551), + [sym_true] = ACTIONS(3551), + [sym_false] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3551), + [anon_sym_include] = ACTIONS(3551), + [anon_sym_DEF] = ACTIONS(3551), + [anon_sym_IF] = ACTIONS(3551), + [anon_sym_cdef] = ACTIONS(3551), + [anon_sym_cpdef] = ACTIONS(3551), + [anon_sym_new] = ACTIONS(3551), + [anon_sym_ctypedef] = ACTIONS(3551), + [anon_sym_public] = ACTIONS(3551), + [anon_sym_packed] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym_readonly] = ACTIONS(3551), + [anon_sym_sizeof] = ACTIONS(3551), + [sym__dedent] = ACTIONS(3549), + [sym_string_start] = ACTIONS(3549), + }, + [1747] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4980), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1748] = { + [sym_identifier] = ACTIONS(3591), + [anon_sym_SEMI] = ACTIONS(3589), + [anon_sym_import] = ACTIONS(3591), + [anon_sym_cimport] = ACTIONS(3591), + [anon_sym_from] = ACTIONS(3591), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_print] = ACTIONS(3591), + [anon_sym_assert] = ACTIONS(3591), + [anon_sym_return] = ACTIONS(3591), + [anon_sym_del] = ACTIONS(3591), + [anon_sym_raise] = ACTIONS(3591), + [anon_sym_pass] = ACTIONS(3591), + [anon_sym_break] = ACTIONS(3591), + [anon_sym_continue] = ACTIONS(3591), + [anon_sym_if] = ACTIONS(3591), + [anon_sym_match] = ACTIONS(3591), + [anon_sym_async] = ACTIONS(3591), + [anon_sym_for] = ACTIONS(3591), + [anon_sym_while] = ACTIONS(3591), + [anon_sym_try] = ACTIONS(3591), + [anon_sym_with] = ACTIONS(3591), + [anon_sym_def] = ACTIONS(3591), + [anon_sym_global] = ACTIONS(3591), + [anon_sym_nonlocal] = ACTIONS(3591), + [anon_sym_exec] = ACTIONS(3591), + [anon_sym_type] = ACTIONS(3591), + [anon_sym_class] = ACTIONS(3591), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_AT] = ACTIONS(3589), + [anon_sym_DASH] = ACTIONS(3589), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_PLUS] = ACTIONS(3589), + [anon_sym_not] = ACTIONS(3591), + [anon_sym_AMP] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_LT] = ACTIONS(3589), + [anon_sym_lambda] = ACTIONS(3591), + [anon_sym_yield] = ACTIONS(3591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [anon_sym_None] = ACTIONS(3591), + [anon_sym_0x] = ACTIONS(3589), + [anon_sym_0X] = ACTIONS(3589), + [anon_sym_0o] = ACTIONS(3589), + [anon_sym_0O] = ACTIONS(3589), + [anon_sym_0b] = ACTIONS(3589), + [anon_sym_0B] = ACTIONS(3589), + [aux_sym_integer_token4] = ACTIONS(3591), + [sym_float] = ACTIONS(3589), + [anon_sym_await] = ACTIONS(3591), + [anon_sym_api] = ACTIONS(3591), + [sym_true] = ACTIONS(3591), + [sym_false] = ACTIONS(3591), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3591), + [anon_sym_include] = ACTIONS(3591), + [anon_sym_DEF] = ACTIONS(3591), + [anon_sym_IF] = ACTIONS(3591), + [anon_sym_cdef] = ACTIONS(3591), + [anon_sym_cpdef] = ACTIONS(3591), + [anon_sym_new] = ACTIONS(3591), + [anon_sym_ctypedef] = ACTIONS(3591), + [anon_sym_public] = ACTIONS(3591), + [anon_sym_packed] = ACTIONS(3591), + [anon_sym_inline] = ACTIONS(3591), + [anon_sym_readonly] = ACTIONS(3591), + [anon_sym_sizeof] = ACTIONS(3591), + [sym__dedent] = ACTIONS(3589), + [sym_string_start] = ACTIONS(3589), + }, + [1749] = { + [sym_identifier] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym_import] = ACTIONS(3555), + [anon_sym_cimport] = ACTIONS(3555), + [anon_sym_from] = ACTIONS(3555), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_print] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_del] = ACTIONS(3555), + [anon_sym_raise] = ACTIONS(3555), + [anon_sym_pass] = ACTIONS(3555), + [anon_sym_break] = ACTIONS(3555), + [anon_sym_continue] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_async] = ACTIONS(3555), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_with] = ACTIONS(3555), + [anon_sym_def] = ACTIONS(3555), + [anon_sym_global] = ACTIONS(3555), + [anon_sym_nonlocal] = ACTIONS(3555), + [anon_sym_exec] = ACTIONS(3555), + [anon_sym_type] = ACTIONS(3555), + [anon_sym_class] = ACTIONS(3555), + [anon_sym_LBRACK] = ACTIONS(3553), + [anon_sym_AT] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3553), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_PLUS] = ACTIONS(3553), + [anon_sym_not] = ACTIONS(3555), + [anon_sym_AMP] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_LT] = ACTIONS(3553), + [anon_sym_lambda] = ACTIONS(3555), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [anon_sym_None] = ACTIONS(3555), + [anon_sym_0x] = ACTIONS(3553), + [anon_sym_0X] = ACTIONS(3553), + [anon_sym_0o] = ACTIONS(3553), + [anon_sym_0O] = ACTIONS(3553), + [anon_sym_0b] = ACTIONS(3553), + [anon_sym_0B] = ACTIONS(3553), + [aux_sym_integer_token4] = ACTIONS(3555), + [sym_float] = ACTIONS(3553), + [anon_sym_await] = ACTIONS(3555), + [anon_sym_api] = ACTIONS(3555), + [sym_true] = ACTIONS(3555), + [sym_false] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3555), + [anon_sym_include] = ACTIONS(3555), + [anon_sym_DEF] = ACTIONS(3555), + [anon_sym_IF] = ACTIONS(3555), + [anon_sym_cdef] = ACTIONS(3555), + [anon_sym_cpdef] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_ctypedef] = ACTIONS(3555), + [anon_sym_public] = ACTIONS(3555), + [anon_sym_packed] = ACTIONS(3555), + [anon_sym_inline] = ACTIONS(3555), + [anon_sym_readonly] = ACTIONS(3555), + [anon_sym_sizeof] = ACTIONS(3555), + [sym__dedent] = ACTIONS(3553), + [sym_string_start] = ACTIONS(3553), + }, + [1750] = { + [sym_identifier] = ACTIONS(3559), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym_import] = ACTIONS(3559), + [anon_sym_cimport] = ACTIONS(3559), + [anon_sym_from] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3557), + [anon_sym_print] = ACTIONS(3559), + [anon_sym_assert] = ACTIONS(3559), + [anon_sym_return] = ACTIONS(3559), + [anon_sym_del] = ACTIONS(3559), + [anon_sym_raise] = ACTIONS(3559), + [anon_sym_pass] = ACTIONS(3559), + [anon_sym_break] = ACTIONS(3559), + [anon_sym_continue] = ACTIONS(3559), + [anon_sym_if] = ACTIONS(3559), + [anon_sym_match] = ACTIONS(3559), + [anon_sym_async] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3559), + [anon_sym_while] = ACTIONS(3559), + [anon_sym_try] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3559), + [anon_sym_def] = ACTIONS(3559), + [anon_sym_global] = ACTIONS(3559), + [anon_sym_nonlocal] = ACTIONS(3559), + [anon_sym_exec] = ACTIONS(3559), + [anon_sym_type] = ACTIONS(3559), + [anon_sym_class] = ACTIONS(3559), + [anon_sym_LBRACK] = ACTIONS(3557), + [anon_sym_AT] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_not] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_lambda] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [anon_sym_None] = ACTIONS(3559), + [anon_sym_0x] = ACTIONS(3557), + [anon_sym_0X] = ACTIONS(3557), + [anon_sym_0o] = ACTIONS(3557), + [anon_sym_0O] = ACTIONS(3557), + [anon_sym_0b] = ACTIONS(3557), + [anon_sym_0B] = ACTIONS(3557), + [aux_sym_integer_token4] = ACTIONS(3559), + [sym_float] = ACTIONS(3557), + [anon_sym_await] = ACTIONS(3559), + [anon_sym_api] = ACTIONS(3559), + [sym_true] = ACTIONS(3559), + [sym_false] = ACTIONS(3559), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3559), + [anon_sym_include] = ACTIONS(3559), + [anon_sym_DEF] = ACTIONS(3559), + [anon_sym_IF] = ACTIONS(3559), + [anon_sym_cdef] = ACTIONS(3559), + [anon_sym_cpdef] = ACTIONS(3559), + [anon_sym_new] = ACTIONS(3559), + [anon_sym_ctypedef] = ACTIONS(3559), + [anon_sym_public] = ACTIONS(3559), + [anon_sym_packed] = ACTIONS(3559), + [anon_sym_inline] = ACTIONS(3559), + [anon_sym_readonly] = ACTIONS(3559), + [anon_sym_sizeof] = ACTIONS(3559), + [sym__dedent] = ACTIONS(3557), + [sym_string_start] = ACTIONS(3557), + }, + [1751] = { + [sym_identifier] = ACTIONS(3563), + [anon_sym_SEMI] = ACTIONS(3561), + [anon_sym_import] = ACTIONS(3563), + [anon_sym_cimport] = ACTIONS(3563), + [anon_sym_from] = ACTIONS(3563), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3561), + [anon_sym_print] = ACTIONS(3563), + [anon_sym_assert] = ACTIONS(3563), + [anon_sym_return] = ACTIONS(3563), + [anon_sym_del] = ACTIONS(3563), + [anon_sym_raise] = ACTIONS(3563), + [anon_sym_pass] = ACTIONS(3563), + [anon_sym_break] = ACTIONS(3563), + [anon_sym_continue] = ACTIONS(3563), + [anon_sym_if] = ACTIONS(3563), + [anon_sym_match] = ACTIONS(3563), + [anon_sym_async] = ACTIONS(3563), + [anon_sym_for] = ACTIONS(3563), + [anon_sym_while] = ACTIONS(3563), + [anon_sym_try] = ACTIONS(3563), + [anon_sym_with] = ACTIONS(3563), + [anon_sym_def] = ACTIONS(3563), + [anon_sym_global] = ACTIONS(3563), + [anon_sym_nonlocal] = ACTIONS(3563), + [anon_sym_exec] = ACTIONS(3563), + [anon_sym_type] = ACTIONS(3563), + [anon_sym_class] = ACTIONS(3563), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_AT] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_not] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3561), + [anon_sym_LT] = ACTIONS(3561), + [anon_sym_lambda] = ACTIONS(3563), + [anon_sym_yield] = ACTIONS(3563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), + [anon_sym_None] = ACTIONS(3563), + [anon_sym_0x] = ACTIONS(3561), + [anon_sym_0X] = ACTIONS(3561), + [anon_sym_0o] = ACTIONS(3561), + [anon_sym_0O] = ACTIONS(3561), + [anon_sym_0b] = ACTIONS(3561), + [anon_sym_0B] = ACTIONS(3561), + [aux_sym_integer_token4] = ACTIONS(3563), + [sym_float] = ACTIONS(3561), + [anon_sym_await] = ACTIONS(3563), + [anon_sym_api] = ACTIONS(3563), + [sym_true] = ACTIONS(3563), + [sym_false] = ACTIONS(3563), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3563), + [anon_sym_include] = ACTIONS(3563), + [anon_sym_DEF] = ACTIONS(3563), + [anon_sym_IF] = ACTIONS(3563), + [anon_sym_cdef] = ACTIONS(3563), + [anon_sym_cpdef] = ACTIONS(3563), + [anon_sym_new] = ACTIONS(3563), + [anon_sym_ctypedef] = ACTIONS(3563), + [anon_sym_public] = ACTIONS(3563), + [anon_sym_packed] = ACTIONS(3563), + [anon_sym_inline] = ACTIONS(3563), + [anon_sym_readonly] = ACTIONS(3563), + [anon_sym_sizeof] = ACTIONS(3563), + [sym__dedent] = ACTIONS(3561), + [sym_string_start] = ACTIONS(3561), + }, + [1752] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4716), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1753] = { + [sym_identifier] = ACTIONS(3567), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_import] = ACTIONS(3567), + [anon_sym_cimport] = ACTIONS(3567), + [anon_sym_from] = ACTIONS(3567), + [anon_sym_LPAREN] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3565), + [anon_sym_print] = ACTIONS(3567), + [anon_sym_assert] = ACTIONS(3567), + [anon_sym_return] = ACTIONS(3567), + [anon_sym_del] = ACTIONS(3567), + [anon_sym_raise] = ACTIONS(3567), + [anon_sym_pass] = ACTIONS(3567), + [anon_sym_break] = ACTIONS(3567), + [anon_sym_continue] = ACTIONS(3567), + [anon_sym_if] = ACTIONS(3567), + [anon_sym_match] = ACTIONS(3567), + [anon_sym_async] = ACTIONS(3567), + [anon_sym_for] = ACTIONS(3567), + [anon_sym_while] = ACTIONS(3567), + [anon_sym_try] = ACTIONS(3567), + [anon_sym_with] = ACTIONS(3567), + [anon_sym_def] = ACTIONS(3567), + [anon_sym_global] = ACTIONS(3567), + [anon_sym_nonlocal] = ACTIONS(3567), + [anon_sym_exec] = ACTIONS(3567), + [anon_sym_type] = ACTIONS(3567), + [anon_sym_class] = ACTIONS(3567), + [anon_sym_LBRACK] = ACTIONS(3565), + [anon_sym_AT] = ACTIONS(3565), + [anon_sym_DASH] = ACTIONS(3565), + [anon_sym_LBRACE] = ACTIONS(3565), + [anon_sym_PLUS] = ACTIONS(3565), + [anon_sym_not] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_TILDE] = ACTIONS(3565), + [anon_sym_LT] = ACTIONS(3565), + [anon_sym_lambda] = ACTIONS(3567), + [anon_sym_yield] = ACTIONS(3567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), + [anon_sym_None] = ACTIONS(3567), + [anon_sym_0x] = ACTIONS(3565), + [anon_sym_0X] = ACTIONS(3565), + [anon_sym_0o] = ACTIONS(3565), + [anon_sym_0O] = ACTIONS(3565), + [anon_sym_0b] = ACTIONS(3565), + [anon_sym_0B] = ACTIONS(3565), + [aux_sym_integer_token4] = ACTIONS(3567), + [sym_float] = ACTIONS(3565), + [anon_sym_await] = ACTIONS(3567), + [anon_sym_api] = ACTIONS(3567), + [sym_true] = ACTIONS(3567), + [sym_false] = ACTIONS(3567), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3567), + [anon_sym_include] = ACTIONS(3567), + [anon_sym_DEF] = ACTIONS(3567), + [anon_sym_IF] = ACTIONS(3567), + [anon_sym_cdef] = ACTIONS(3567), + [anon_sym_cpdef] = ACTIONS(3567), + [anon_sym_new] = ACTIONS(3567), + [anon_sym_ctypedef] = ACTIONS(3567), + [anon_sym_public] = ACTIONS(3567), + [anon_sym_packed] = ACTIONS(3567), + [anon_sym_inline] = ACTIONS(3567), + [anon_sym_readonly] = ACTIONS(3567), + [anon_sym_sizeof] = ACTIONS(3567), + [sym__dedent] = ACTIONS(3565), + [sym_string_start] = ACTIONS(3565), + }, + [1754] = { + [sym_identifier] = ACTIONS(3571), + [anon_sym_SEMI] = ACTIONS(3569), + [anon_sym_import] = ACTIONS(3571), + [anon_sym_cimport] = ACTIONS(3571), + [anon_sym_from] = ACTIONS(3571), + [anon_sym_LPAREN] = ACTIONS(3569), + [anon_sym_STAR] = ACTIONS(3569), + [anon_sym_print] = ACTIONS(3571), + [anon_sym_assert] = ACTIONS(3571), + [anon_sym_return] = ACTIONS(3571), + [anon_sym_del] = ACTIONS(3571), + [anon_sym_raise] = ACTIONS(3571), + [anon_sym_pass] = ACTIONS(3571), + [anon_sym_break] = ACTIONS(3571), + [anon_sym_continue] = ACTIONS(3571), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_match] = ACTIONS(3571), + [anon_sym_async] = ACTIONS(3571), + [anon_sym_for] = ACTIONS(3571), + [anon_sym_while] = ACTIONS(3571), + [anon_sym_try] = ACTIONS(3571), + [anon_sym_with] = ACTIONS(3571), + [anon_sym_def] = ACTIONS(3571), + [anon_sym_global] = ACTIONS(3571), + [anon_sym_nonlocal] = ACTIONS(3571), + [anon_sym_exec] = ACTIONS(3571), + [anon_sym_type] = ACTIONS(3571), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3569), + [anon_sym_AT] = ACTIONS(3569), + [anon_sym_DASH] = ACTIONS(3569), + [anon_sym_LBRACE] = ACTIONS(3569), + [anon_sym_PLUS] = ACTIONS(3569), + [anon_sym_not] = ACTIONS(3571), + [anon_sym_AMP] = ACTIONS(3569), + [anon_sym_TILDE] = ACTIONS(3569), + [anon_sym_LT] = ACTIONS(3569), + [anon_sym_lambda] = ACTIONS(3571), + [anon_sym_yield] = ACTIONS(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), + [anon_sym_None] = ACTIONS(3571), + [anon_sym_0x] = ACTIONS(3569), + [anon_sym_0X] = ACTIONS(3569), + [anon_sym_0o] = ACTIONS(3569), + [anon_sym_0O] = ACTIONS(3569), + [anon_sym_0b] = ACTIONS(3569), + [anon_sym_0B] = ACTIONS(3569), + [aux_sym_integer_token4] = ACTIONS(3571), + [sym_float] = ACTIONS(3569), + [anon_sym_await] = ACTIONS(3571), + [anon_sym_api] = ACTIONS(3571), + [sym_true] = ACTIONS(3571), + [sym_false] = ACTIONS(3571), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3571), + [anon_sym_include] = ACTIONS(3571), + [anon_sym_DEF] = ACTIONS(3571), + [anon_sym_IF] = ACTIONS(3571), + [anon_sym_cdef] = ACTIONS(3571), + [anon_sym_cpdef] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3571), + [anon_sym_ctypedef] = ACTIONS(3571), + [anon_sym_public] = ACTIONS(3571), + [anon_sym_packed] = ACTIONS(3571), + [anon_sym_inline] = ACTIONS(3571), + [anon_sym_readonly] = ACTIONS(3571), + [anon_sym_sizeof] = ACTIONS(3571), + [sym__dedent] = ACTIONS(3569), + [sym_string_start] = ACTIONS(3569), + }, + [1755] = { + [sym_identifier] = ACTIONS(3575), + [anon_sym_SEMI] = ACTIONS(3573), + [anon_sym_import] = ACTIONS(3575), + [anon_sym_cimport] = ACTIONS(3575), + [anon_sym_from] = ACTIONS(3575), + [anon_sym_LPAREN] = ACTIONS(3573), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_print] = ACTIONS(3575), + [anon_sym_assert] = ACTIONS(3575), + [anon_sym_return] = ACTIONS(3575), + [anon_sym_del] = ACTIONS(3575), + [anon_sym_raise] = ACTIONS(3575), + [anon_sym_pass] = ACTIONS(3575), + [anon_sym_break] = ACTIONS(3575), + [anon_sym_continue] = ACTIONS(3575), + [anon_sym_if] = ACTIONS(3575), + [anon_sym_match] = ACTIONS(3575), + [anon_sym_async] = ACTIONS(3575), + [anon_sym_for] = ACTIONS(3575), + [anon_sym_while] = ACTIONS(3575), + [anon_sym_try] = ACTIONS(3575), + [anon_sym_with] = ACTIONS(3575), + [anon_sym_def] = ACTIONS(3575), + [anon_sym_global] = ACTIONS(3575), + [anon_sym_nonlocal] = ACTIONS(3575), + [anon_sym_exec] = ACTIONS(3575), + [anon_sym_type] = ACTIONS(3575), + [anon_sym_class] = ACTIONS(3575), + [anon_sym_LBRACK] = ACTIONS(3573), + [anon_sym_AT] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3573), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_PLUS] = ACTIONS(3573), + [anon_sym_not] = ACTIONS(3575), + [anon_sym_AMP] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_LT] = ACTIONS(3573), + [anon_sym_lambda] = ACTIONS(3575), + [anon_sym_yield] = ACTIONS(3575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [anon_sym_None] = ACTIONS(3575), + [anon_sym_0x] = ACTIONS(3573), + [anon_sym_0X] = ACTIONS(3573), + [anon_sym_0o] = ACTIONS(3573), + [anon_sym_0O] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3573), + [anon_sym_0B] = ACTIONS(3573), + [aux_sym_integer_token4] = ACTIONS(3575), + [sym_float] = ACTIONS(3573), + [anon_sym_await] = ACTIONS(3575), + [anon_sym_api] = ACTIONS(3575), + [sym_true] = ACTIONS(3575), + [sym_false] = ACTIONS(3575), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3575), + [anon_sym_include] = ACTIONS(3575), + [anon_sym_DEF] = ACTIONS(3575), + [anon_sym_IF] = ACTIONS(3575), + [anon_sym_cdef] = ACTIONS(3575), + [anon_sym_cpdef] = ACTIONS(3575), + [anon_sym_new] = ACTIONS(3575), + [anon_sym_ctypedef] = ACTIONS(3575), + [anon_sym_public] = ACTIONS(3575), + [anon_sym_packed] = ACTIONS(3575), + [anon_sym_inline] = ACTIONS(3575), + [anon_sym_readonly] = ACTIONS(3575), + [anon_sym_sizeof] = ACTIONS(3575), + [sym__dedent] = ACTIONS(3573), + [sym_string_start] = ACTIONS(3573), + }, + [1756] = { + [sym_identifier] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3533), + [anon_sym_import] = ACTIONS(3535), + [anon_sym_cimport] = ACTIONS(3535), + [anon_sym_from] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3533), + [anon_sym_print] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_del] = ACTIONS(3535), + [anon_sym_raise] = ACTIONS(3535), + [anon_sym_pass] = ACTIONS(3535), + [anon_sym_break] = ACTIONS(3535), + [anon_sym_continue] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_async] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(3535), + [anon_sym_def] = ACTIONS(3535), + [anon_sym_global] = ACTIONS(3535), + [anon_sym_nonlocal] = ACTIONS(3535), + [anon_sym_exec] = ACTIONS(3535), + [anon_sym_type] = ACTIONS(3535), + [anon_sym_class] = ACTIONS(3535), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_AT] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3533), + [anon_sym_LT] = ACTIONS(3533), + [anon_sym_lambda] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), + [anon_sym_None] = ACTIONS(3535), + [anon_sym_0x] = ACTIONS(3533), + [anon_sym_0X] = ACTIONS(3533), + [anon_sym_0o] = ACTIONS(3533), + [anon_sym_0O] = ACTIONS(3533), + [anon_sym_0b] = ACTIONS(3533), + [anon_sym_0B] = ACTIONS(3533), + [aux_sym_integer_token4] = ACTIONS(3535), + [sym_float] = ACTIONS(3533), + [anon_sym_await] = ACTIONS(3535), + [anon_sym_api] = ACTIONS(3535), + [sym_true] = ACTIONS(3535), + [sym_false] = ACTIONS(3535), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3535), + [anon_sym_include] = ACTIONS(3535), + [anon_sym_DEF] = ACTIONS(3535), + [anon_sym_IF] = ACTIONS(3535), + [anon_sym_cdef] = ACTIONS(3535), + [anon_sym_cpdef] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_ctypedef] = ACTIONS(3535), + [anon_sym_public] = ACTIONS(3535), + [anon_sym_packed] = ACTIONS(3535), + [anon_sym_inline] = ACTIONS(3535), + [anon_sym_readonly] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3535), + [sym__dedent] = ACTIONS(3533), + [sym_string_start] = ACTIONS(3533), + }, + [1757] = { + [sym_identifier] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(3577), + [anon_sym_import] = ACTIONS(3579), + [anon_sym_cimport] = ACTIONS(3579), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3577), + [anon_sym_print] = ACTIONS(3579), + [anon_sym_assert] = ACTIONS(3579), + [anon_sym_return] = ACTIONS(3579), + [anon_sym_del] = ACTIONS(3579), + [anon_sym_raise] = ACTIONS(3579), + [anon_sym_pass] = ACTIONS(3579), + [anon_sym_break] = ACTIONS(3579), + [anon_sym_continue] = ACTIONS(3579), + [anon_sym_if] = ACTIONS(3579), + [anon_sym_match] = ACTIONS(3579), + [anon_sym_async] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3579), + [anon_sym_while] = ACTIONS(3579), + [anon_sym_try] = ACTIONS(3579), + [anon_sym_with] = ACTIONS(3579), + [anon_sym_def] = ACTIONS(3579), + [anon_sym_global] = ACTIONS(3579), + [anon_sym_nonlocal] = ACTIONS(3579), + [anon_sym_exec] = ACTIONS(3579), + [anon_sym_type] = ACTIONS(3579), + [anon_sym_class] = ACTIONS(3579), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_AT] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_not] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3577), + [anon_sym_LT] = ACTIONS(3577), + [anon_sym_lambda] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), + [anon_sym_None] = ACTIONS(3579), + [anon_sym_0x] = ACTIONS(3577), + [anon_sym_0X] = ACTIONS(3577), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0O] = ACTIONS(3577), + [anon_sym_0b] = ACTIONS(3577), + [anon_sym_0B] = ACTIONS(3577), + [aux_sym_integer_token4] = ACTIONS(3579), + [sym_float] = ACTIONS(3577), + [anon_sym_await] = ACTIONS(3579), + [anon_sym_api] = ACTIONS(3579), + [sym_true] = ACTIONS(3579), + [sym_false] = ACTIONS(3579), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3579), + [anon_sym_include] = ACTIONS(3579), + [anon_sym_DEF] = ACTIONS(3579), + [anon_sym_IF] = ACTIONS(3579), + [anon_sym_cdef] = ACTIONS(3579), + [anon_sym_cpdef] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3579), + [anon_sym_ctypedef] = ACTIONS(3579), + [anon_sym_public] = ACTIONS(3579), + [anon_sym_packed] = ACTIONS(3579), + [anon_sym_inline] = ACTIONS(3579), + [anon_sym_readonly] = ACTIONS(3579), + [anon_sym_sizeof] = ACTIONS(3579), + [sym__dedent] = ACTIONS(3577), + [sym_string_start] = ACTIONS(3577), + }, + [1758] = { + [sym_identifier] = ACTIONS(3583), + [anon_sym_SEMI] = ACTIONS(3581), + [anon_sym_import] = ACTIONS(3583), + [anon_sym_cimport] = ACTIONS(3583), + [anon_sym_from] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3581), + [anon_sym_print] = ACTIONS(3583), + [anon_sym_assert] = ACTIONS(3583), + [anon_sym_return] = ACTIONS(3583), + [anon_sym_del] = ACTIONS(3583), + [anon_sym_raise] = ACTIONS(3583), + [anon_sym_pass] = ACTIONS(3583), + [anon_sym_break] = ACTIONS(3583), + [anon_sym_continue] = ACTIONS(3583), + [anon_sym_if] = ACTIONS(3583), + [anon_sym_match] = ACTIONS(3583), + [anon_sym_async] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3583), + [anon_sym_while] = ACTIONS(3583), + [anon_sym_try] = ACTIONS(3583), + [anon_sym_with] = ACTIONS(3583), + [anon_sym_def] = ACTIONS(3583), + [anon_sym_global] = ACTIONS(3583), + [anon_sym_nonlocal] = ACTIONS(3583), + [anon_sym_exec] = ACTIONS(3583), + [anon_sym_type] = ACTIONS(3583), + [anon_sym_class] = ACTIONS(3583), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_AT] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_not] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3581), + [anon_sym_LT] = ACTIONS(3581), + [anon_sym_lambda] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), + [anon_sym_None] = ACTIONS(3583), + [anon_sym_0x] = ACTIONS(3581), + [anon_sym_0X] = ACTIONS(3581), + [anon_sym_0o] = ACTIONS(3581), + [anon_sym_0O] = ACTIONS(3581), + [anon_sym_0b] = ACTIONS(3581), + [anon_sym_0B] = ACTIONS(3581), + [aux_sym_integer_token4] = ACTIONS(3583), + [sym_float] = ACTIONS(3581), + [anon_sym_await] = ACTIONS(3583), + [anon_sym_api] = ACTIONS(3583), + [sym_true] = ACTIONS(3583), + [sym_false] = ACTIONS(3583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3583), + [anon_sym_include] = ACTIONS(3583), + [anon_sym_DEF] = ACTIONS(3583), + [anon_sym_IF] = ACTIONS(3583), + [anon_sym_cdef] = ACTIONS(3583), + [anon_sym_cpdef] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3583), + [anon_sym_ctypedef] = ACTIONS(3583), + [anon_sym_public] = ACTIONS(3583), + [anon_sym_packed] = ACTIONS(3583), + [anon_sym_inline] = ACTIONS(3583), + [anon_sym_readonly] = ACTIONS(3583), + [anon_sym_sizeof] = ACTIONS(3583), + [sym__dedent] = ACTIONS(3581), + [sym_string_start] = ACTIONS(3581), + }, + [1759] = { + [sym_identifier] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3585), + [anon_sym_import] = ACTIONS(3587), + [anon_sym_cimport] = ACTIONS(3587), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_STAR] = ACTIONS(3585), + [anon_sym_print] = ACTIONS(3587), + [anon_sym_assert] = ACTIONS(3587), + [anon_sym_return] = ACTIONS(3587), + [anon_sym_del] = ACTIONS(3587), + [anon_sym_raise] = ACTIONS(3587), + [anon_sym_pass] = ACTIONS(3587), + [anon_sym_break] = ACTIONS(3587), + [anon_sym_continue] = ACTIONS(3587), + [anon_sym_if] = ACTIONS(3587), + [anon_sym_match] = ACTIONS(3587), + [anon_sym_async] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3587), + [anon_sym_while] = ACTIONS(3587), + [anon_sym_try] = ACTIONS(3587), + [anon_sym_with] = ACTIONS(3587), + [anon_sym_def] = ACTIONS(3587), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_nonlocal] = ACTIONS(3587), + [anon_sym_exec] = ACTIONS(3587), + [anon_sym_type] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_AT] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_not] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3585), + [anon_sym_LT] = ACTIONS(3585), + [anon_sym_lambda] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), + [anon_sym_None] = ACTIONS(3587), + [anon_sym_0x] = ACTIONS(3585), + [anon_sym_0X] = ACTIONS(3585), + [anon_sym_0o] = ACTIONS(3585), + [anon_sym_0O] = ACTIONS(3585), + [anon_sym_0b] = ACTIONS(3585), + [anon_sym_0B] = ACTIONS(3585), + [aux_sym_integer_token4] = ACTIONS(3587), + [sym_float] = ACTIONS(3585), + [anon_sym_await] = ACTIONS(3587), + [anon_sym_api] = ACTIONS(3587), + [sym_true] = ACTIONS(3587), + [sym_false] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3587), + [anon_sym_include] = ACTIONS(3587), + [anon_sym_DEF] = ACTIONS(3587), + [anon_sym_IF] = ACTIONS(3587), + [anon_sym_cdef] = ACTIONS(3587), + [anon_sym_cpdef] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3587), + [anon_sym_ctypedef] = ACTIONS(3587), + [anon_sym_public] = ACTIONS(3587), + [anon_sym_packed] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym_readonly] = ACTIONS(3587), + [anon_sym_sizeof] = ACTIONS(3587), + [sym__dedent] = ACTIONS(3585), + [sym_string_start] = ACTIONS(3585), + }, + [1760] = { + [sym_identifier] = ACTIONS(3595), + [anon_sym_SEMI] = ACTIONS(3593), + [anon_sym_import] = ACTIONS(3595), + [anon_sym_cimport] = ACTIONS(3595), + [anon_sym_from] = ACTIONS(3595), + [anon_sym_LPAREN] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3593), + [anon_sym_print] = ACTIONS(3595), + [anon_sym_assert] = ACTIONS(3595), + [anon_sym_return] = ACTIONS(3595), + [anon_sym_del] = ACTIONS(3595), + [anon_sym_raise] = ACTIONS(3595), + [anon_sym_pass] = ACTIONS(3595), + [anon_sym_break] = ACTIONS(3595), + [anon_sym_continue] = ACTIONS(3595), + [anon_sym_if] = ACTIONS(3595), + [anon_sym_match] = ACTIONS(3595), + [anon_sym_async] = ACTIONS(3595), + [anon_sym_for] = ACTIONS(3595), + [anon_sym_while] = ACTIONS(3595), + [anon_sym_try] = ACTIONS(3595), + [anon_sym_with] = ACTIONS(3595), + [anon_sym_def] = ACTIONS(3595), + [anon_sym_global] = ACTIONS(3595), + [anon_sym_nonlocal] = ACTIONS(3595), + [anon_sym_exec] = ACTIONS(3595), + [anon_sym_type] = ACTIONS(3595), + [anon_sym_class] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_AT] = ACTIONS(3593), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3593), + [anon_sym_not] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(3593), + [anon_sym_LT] = ACTIONS(3593), + [anon_sym_lambda] = ACTIONS(3595), + [anon_sym_yield] = ACTIONS(3595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), + [anon_sym_None] = ACTIONS(3595), + [anon_sym_0x] = ACTIONS(3593), + [anon_sym_0X] = ACTIONS(3593), + [anon_sym_0o] = ACTIONS(3593), + [anon_sym_0O] = ACTIONS(3593), + [anon_sym_0b] = ACTIONS(3593), + [anon_sym_0B] = ACTIONS(3593), + [aux_sym_integer_token4] = ACTIONS(3595), + [sym_float] = ACTIONS(3593), + [anon_sym_await] = ACTIONS(3595), + [anon_sym_api] = ACTIONS(3595), + [sym_true] = ACTIONS(3595), + [sym_false] = ACTIONS(3595), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3595), + [anon_sym_include] = ACTIONS(3595), + [anon_sym_DEF] = ACTIONS(3595), + [anon_sym_IF] = ACTIONS(3595), + [anon_sym_cdef] = ACTIONS(3595), + [anon_sym_cpdef] = ACTIONS(3595), + [anon_sym_new] = ACTIONS(3595), + [anon_sym_ctypedef] = ACTIONS(3595), + [anon_sym_public] = ACTIONS(3595), + [anon_sym_packed] = ACTIONS(3595), + [anon_sym_inline] = ACTIONS(3595), + [anon_sym_readonly] = ACTIONS(3595), + [anon_sym_sizeof] = ACTIONS(3595), + [sym__dedent] = ACTIONS(3593), + [sym_string_start] = ACTIONS(3593), + }, + [1761] = { + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_import] = ACTIONS(3599), + [anon_sym_cimport] = ACTIONS(3599), + [anon_sym_from] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3597), + [anon_sym_print] = ACTIONS(3599), + [anon_sym_assert] = ACTIONS(3599), + [anon_sym_return] = ACTIONS(3599), + [anon_sym_del] = ACTIONS(3599), + [anon_sym_raise] = ACTIONS(3599), + [anon_sym_pass] = ACTIONS(3599), + [anon_sym_break] = ACTIONS(3599), + [anon_sym_continue] = ACTIONS(3599), + [anon_sym_if] = ACTIONS(3599), + [anon_sym_match] = ACTIONS(3599), + [anon_sym_async] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_try] = ACTIONS(3599), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_def] = ACTIONS(3599), + [anon_sym_global] = ACTIONS(3599), + [anon_sym_nonlocal] = ACTIONS(3599), + [anon_sym_exec] = ACTIONS(3599), + [anon_sym_type] = ACTIONS(3599), + [anon_sym_class] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_AT] = ACTIONS(3597), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_LBRACE] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_not] = ACTIONS(3599), + [anon_sym_AMP] = ACTIONS(3597), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_LT] = ACTIONS(3597), + [anon_sym_lambda] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_None] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3597), + [anon_sym_0X] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3597), + [anon_sym_0O] = ACTIONS(3597), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0B] = ACTIONS(3597), + [aux_sym_integer_token4] = ACTIONS(3599), + [sym_float] = ACTIONS(3597), + [anon_sym_await] = ACTIONS(3599), + [anon_sym_api] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3599), + [anon_sym_include] = ACTIONS(3599), + [anon_sym_DEF] = ACTIONS(3599), + [anon_sym_IF] = ACTIONS(3599), + [anon_sym_cdef] = ACTIONS(3599), + [anon_sym_cpdef] = ACTIONS(3599), + [anon_sym_new] = ACTIONS(3599), + [anon_sym_ctypedef] = ACTIONS(3599), + [anon_sym_public] = ACTIONS(3599), + [anon_sym_packed] = ACTIONS(3599), + [anon_sym_inline] = ACTIONS(3599), + [anon_sym_readonly] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [sym__dedent] = ACTIONS(3597), + [sym_string_start] = ACTIONS(3597), + }, + [1762] = { + [ts_builtin_sym_end] = ACTIONS(3943), + [sym_identifier] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_import] = ACTIONS(3945), + [anon_sym_cimport] = ACTIONS(3945), + [anon_sym_from] = ACTIONS(3945), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3943), + [anon_sym_print] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_del] = ACTIONS(3945), + [anon_sym_raise] = ACTIONS(3945), + [anon_sym_pass] = ACTIONS(3945), + [anon_sym_break] = ACTIONS(3945), + [anon_sym_continue] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_async] = ACTIONS(3945), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_with] = ACTIONS(3945), + [anon_sym_def] = ACTIONS(3945), + [anon_sym_global] = ACTIONS(3945), + [anon_sym_nonlocal] = ACTIONS(3945), + [anon_sym_exec] = ACTIONS(3945), + [anon_sym_type] = ACTIONS(3945), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_not] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_TILDE] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_lambda] = ACTIONS(3945), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3943), + [anon_sym_None] = ACTIONS(3945), + [anon_sym_0x] = ACTIONS(3943), + [anon_sym_0X] = ACTIONS(3943), + [anon_sym_0o] = ACTIONS(3943), + [anon_sym_0O] = ACTIONS(3943), + [anon_sym_0b] = ACTIONS(3943), + [anon_sym_0B] = ACTIONS(3943), + [aux_sym_integer_token4] = ACTIONS(3945), + [sym_float] = ACTIONS(3943), + [anon_sym_await] = ACTIONS(3945), + [anon_sym_api] = ACTIONS(3945), + [sym_true] = ACTIONS(3945), + [sym_false] = ACTIONS(3945), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3945), + [anon_sym_include] = ACTIONS(3945), + [anon_sym_DEF] = ACTIONS(3945), + [anon_sym_IF] = ACTIONS(3945), + [anon_sym_cdef] = ACTIONS(3945), + [anon_sym_cpdef] = ACTIONS(3945), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_ctypedef] = ACTIONS(3945), + [anon_sym_public] = ACTIONS(3945), + [anon_sym_packed] = ACTIONS(3945), + [anon_sym_inline] = ACTIONS(3945), + [anon_sym_readonly] = ACTIONS(3945), + [anon_sym_sizeof] = ACTIONS(3945), + [sym_string_start] = ACTIONS(3943), + }, + [1763] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6931), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3061), + [sym_primary_expression] = STATE(2499), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1764] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1765] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5187), + [sym_primary_expression] = STATE(2637), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3177), + [sym_subscript] = STATE(3177), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_async] = ACTIONS(3949), + [anon_sym_exec] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(3951), + [anon_sym_api] = ACTIONS(3949), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1766] = { + [sym_identifier] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3609), + [anon_sym_import] = ACTIONS(3611), + [anon_sym_cimport] = ACTIONS(3611), + [anon_sym_from] = ACTIONS(3611), + [anon_sym_LPAREN] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), + [anon_sym_print] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_del] = ACTIONS(3611), + [anon_sym_raise] = ACTIONS(3611), + [anon_sym_pass] = ACTIONS(3611), + [anon_sym_break] = ACTIONS(3611), + [anon_sym_continue] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_async] = ACTIONS(3611), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_with] = ACTIONS(3611), + [anon_sym_def] = ACTIONS(3611), + [anon_sym_global] = ACTIONS(3611), + [anon_sym_nonlocal] = ACTIONS(3611), + [anon_sym_exec] = ACTIONS(3611), + [anon_sym_type] = ACTIONS(3611), + [anon_sym_class] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_AT] = ACTIONS(3609), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_lambda] = ACTIONS(3611), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), + [anon_sym_None] = ACTIONS(3611), + [anon_sym_0x] = ACTIONS(3609), + [anon_sym_0X] = ACTIONS(3609), + [anon_sym_0o] = ACTIONS(3609), + [anon_sym_0O] = ACTIONS(3609), + [anon_sym_0b] = ACTIONS(3609), + [anon_sym_0B] = ACTIONS(3609), + [aux_sym_integer_token4] = ACTIONS(3611), + [sym_float] = ACTIONS(3609), + [anon_sym_await] = ACTIONS(3611), + [anon_sym_api] = ACTIONS(3611), + [sym_true] = ACTIONS(3611), + [sym_false] = ACTIONS(3611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3611), + [anon_sym_include] = ACTIONS(3611), + [anon_sym_DEF] = ACTIONS(3611), + [anon_sym_IF] = ACTIONS(3611), + [anon_sym_cdef] = ACTIONS(3611), + [anon_sym_cpdef] = ACTIONS(3611), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_ctypedef] = ACTIONS(3611), + [anon_sym_public] = ACTIONS(3611), + [anon_sym_packed] = ACTIONS(3611), + [anon_sym_inline] = ACTIONS(3611), + [anon_sym_readonly] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3611), + [sym__dedent] = ACTIONS(3609), + [sym_string_start] = ACTIONS(3609), + }, + [1767] = { + [ts_builtin_sym_end] = ACTIONS(3897), + [sym_identifier] = ACTIONS(3895), + [anon_sym_import] = ACTIONS(3895), + [anon_sym_cimport] = ACTIONS(3895), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_LPAREN] = ACTIONS(3897), + [anon_sym_STAR] = ACTIONS(3897), + [anon_sym_print] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_del] = ACTIONS(3895), + [anon_sym_raise] = ACTIONS(3895), + [anon_sym_pass] = ACTIONS(3895), + [anon_sym_break] = ACTIONS(3895), + [anon_sym_continue] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_async] = ACTIONS(3895), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_finally] = ACTIONS(3895), + [anon_sym_with] = ACTIONS(3895), + [anon_sym_def] = ACTIONS(3895), + [anon_sym_global] = ACTIONS(3895), + [anon_sym_nonlocal] = ACTIONS(3895), + [anon_sym_exec] = ACTIONS(3895), + [anon_sym_type] = ACTIONS(3895), + [anon_sym_class] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_AT] = ACTIONS(3897), + [anon_sym_DASH] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3897), + [anon_sym_PLUS] = ACTIONS(3897), + [anon_sym_not] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_TILDE] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_lambda] = ACTIONS(3895), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3897), + [anon_sym_None] = ACTIONS(3895), + [anon_sym_0x] = ACTIONS(3897), + [anon_sym_0X] = ACTIONS(3897), + [anon_sym_0o] = ACTIONS(3897), + [anon_sym_0O] = ACTIONS(3897), + [anon_sym_0b] = ACTIONS(3897), + [anon_sym_0B] = ACTIONS(3897), + [aux_sym_integer_token4] = ACTIONS(3895), + [sym_float] = ACTIONS(3897), + [anon_sym_await] = ACTIONS(3895), + [anon_sym_api] = ACTIONS(3895), + [sym_true] = ACTIONS(3895), + [sym_false] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3895), + [anon_sym_include] = ACTIONS(3895), + [anon_sym_DEF] = ACTIONS(3895), + [anon_sym_IF] = ACTIONS(3895), + [anon_sym_cdef] = ACTIONS(3895), + [anon_sym_cpdef] = ACTIONS(3895), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_ctypedef] = ACTIONS(3895), + [anon_sym_public] = ACTIONS(3895), + [anon_sym_packed] = ACTIONS(3895), + [anon_sym_inline] = ACTIONS(3895), + [anon_sym_readonly] = ACTIONS(3895), + [anon_sym_sizeof] = ACTIONS(3895), + [sym_string_start] = ACTIONS(3897), + }, + [1768] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5384), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1769] = { + [sym_identifier] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_import] = ACTIONS(3615), + [anon_sym_cimport] = ACTIONS(3615), + [anon_sym_from] = ACTIONS(3615), + [anon_sym_LPAREN] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3613), + [anon_sym_print] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_del] = ACTIONS(3615), + [anon_sym_raise] = ACTIONS(3615), + [anon_sym_pass] = ACTIONS(3615), + [anon_sym_break] = ACTIONS(3615), + [anon_sym_continue] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_async] = ACTIONS(3615), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_with] = ACTIONS(3615), + [anon_sym_def] = ACTIONS(3615), + [anon_sym_global] = ACTIONS(3615), + [anon_sym_nonlocal] = ACTIONS(3615), + [anon_sym_exec] = ACTIONS(3615), + [anon_sym_type] = ACTIONS(3615), + [anon_sym_class] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_AT] = ACTIONS(3613), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3613), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_lambda] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), + [anon_sym_None] = ACTIONS(3615), + [anon_sym_0x] = ACTIONS(3613), + [anon_sym_0X] = ACTIONS(3613), + [anon_sym_0o] = ACTIONS(3613), + [anon_sym_0O] = ACTIONS(3613), + [anon_sym_0b] = ACTIONS(3613), + [anon_sym_0B] = ACTIONS(3613), + [aux_sym_integer_token4] = ACTIONS(3615), + [sym_float] = ACTIONS(3613), + [anon_sym_await] = ACTIONS(3615), + [anon_sym_api] = ACTIONS(3615), + [sym_true] = ACTIONS(3615), + [sym_false] = ACTIONS(3615), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3615), + [anon_sym_include] = ACTIONS(3615), + [anon_sym_DEF] = ACTIONS(3615), + [anon_sym_IF] = ACTIONS(3615), + [anon_sym_cdef] = ACTIONS(3615), + [anon_sym_cpdef] = ACTIONS(3615), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_ctypedef] = ACTIONS(3615), + [anon_sym_public] = ACTIONS(3615), + [anon_sym_packed] = ACTIONS(3615), + [anon_sym_inline] = ACTIONS(3615), + [anon_sym_readonly] = ACTIONS(3615), + [anon_sym_sizeof] = ACTIONS(3615), + [sym__dedent] = ACTIONS(3613), + [sym_string_start] = ACTIONS(3613), + }, + [1770] = { + [sym_identifier] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3617), + [anon_sym_import] = ACTIONS(3619), + [anon_sym_cimport] = ACTIONS(3619), + [anon_sym_from] = ACTIONS(3619), + [anon_sym_LPAREN] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3617), + [anon_sym_print] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_del] = ACTIONS(3619), + [anon_sym_raise] = ACTIONS(3619), + [anon_sym_pass] = ACTIONS(3619), + [anon_sym_break] = ACTIONS(3619), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_async] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_with] = ACTIONS(3619), + [anon_sym_def] = ACTIONS(3619), + [anon_sym_global] = ACTIONS(3619), + [anon_sym_nonlocal] = ACTIONS(3619), + [anon_sym_exec] = ACTIONS(3619), + [anon_sym_type] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_AT] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_not] = ACTIONS(3619), + [anon_sym_AMP] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_lambda] = ACTIONS(3619), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3617), + [anon_sym_None] = ACTIONS(3619), + [anon_sym_0x] = ACTIONS(3617), + [anon_sym_0X] = ACTIONS(3617), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0O] = ACTIONS(3617), + [anon_sym_0b] = ACTIONS(3617), + [anon_sym_0B] = ACTIONS(3617), + [aux_sym_integer_token4] = ACTIONS(3619), + [sym_float] = ACTIONS(3617), + [anon_sym_await] = ACTIONS(3619), + [anon_sym_api] = ACTIONS(3619), + [sym_true] = ACTIONS(3619), + [sym_false] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3619), + [anon_sym_include] = ACTIONS(3619), + [anon_sym_DEF] = ACTIONS(3619), + [anon_sym_IF] = ACTIONS(3619), + [anon_sym_cdef] = ACTIONS(3619), + [anon_sym_cpdef] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_ctypedef] = ACTIONS(3619), + [anon_sym_public] = ACTIONS(3619), + [anon_sym_packed] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym_readonly] = ACTIONS(3619), + [anon_sym_sizeof] = ACTIONS(3619), + [sym__dedent] = ACTIONS(3617), + [sym_string_start] = ACTIONS(3617), + }, + [1771] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3357), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1772] = { + [sym_identifier] = ACTIONS(3623), + [anon_sym_SEMI] = ACTIONS(3621), + [anon_sym_import] = ACTIONS(3623), + [anon_sym_cimport] = ACTIONS(3623), + [anon_sym_from] = ACTIONS(3623), + [anon_sym_LPAREN] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_print] = ACTIONS(3623), + [anon_sym_assert] = ACTIONS(3623), + [anon_sym_return] = ACTIONS(3623), + [anon_sym_del] = ACTIONS(3623), + [anon_sym_raise] = ACTIONS(3623), + [anon_sym_pass] = ACTIONS(3623), + [anon_sym_break] = ACTIONS(3623), + [anon_sym_continue] = ACTIONS(3623), + [anon_sym_if] = ACTIONS(3623), + [anon_sym_match] = ACTIONS(3623), + [anon_sym_async] = ACTIONS(3623), + [anon_sym_for] = ACTIONS(3623), + [anon_sym_while] = ACTIONS(3623), + [anon_sym_try] = ACTIONS(3623), + [anon_sym_with] = ACTIONS(3623), + [anon_sym_def] = ACTIONS(3623), + [anon_sym_global] = ACTIONS(3623), + [anon_sym_nonlocal] = ACTIONS(3623), + [anon_sym_exec] = ACTIONS(3623), + [anon_sym_type] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_AT] = ACTIONS(3621), + [anon_sym_DASH] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_PLUS] = ACTIONS(3621), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_LT] = ACTIONS(3621), + [anon_sym_lambda] = ACTIONS(3623), + [anon_sym_yield] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [anon_sym_None] = ACTIONS(3623), + [anon_sym_0x] = ACTIONS(3621), + [anon_sym_0X] = ACTIONS(3621), + [anon_sym_0o] = ACTIONS(3621), + [anon_sym_0O] = ACTIONS(3621), + [anon_sym_0b] = ACTIONS(3621), + [anon_sym_0B] = ACTIONS(3621), + [aux_sym_integer_token4] = ACTIONS(3623), + [sym_float] = ACTIONS(3621), + [anon_sym_await] = ACTIONS(3623), + [anon_sym_api] = ACTIONS(3623), + [sym_true] = ACTIONS(3623), + [sym_false] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3623), + [anon_sym_include] = ACTIONS(3623), + [anon_sym_DEF] = ACTIONS(3623), + [anon_sym_IF] = ACTIONS(3623), + [anon_sym_cdef] = ACTIONS(3623), + [anon_sym_cpdef] = ACTIONS(3623), + [anon_sym_new] = ACTIONS(3623), + [anon_sym_ctypedef] = ACTIONS(3623), + [anon_sym_public] = ACTIONS(3623), + [anon_sym_packed] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym_readonly] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3623), + [sym__dedent] = ACTIONS(3621), + [sym_string_start] = ACTIONS(3621), + }, + [1773] = { + [sym_identifier] = ACTIONS(3643), + [anon_sym_SEMI] = ACTIONS(3641), + [anon_sym_import] = ACTIONS(3643), + [anon_sym_cimport] = ACTIONS(3643), + [anon_sym_from] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_print] = ACTIONS(3643), + [anon_sym_assert] = ACTIONS(3643), + [anon_sym_return] = ACTIONS(3643), + [anon_sym_del] = ACTIONS(3643), + [anon_sym_raise] = ACTIONS(3643), + [anon_sym_pass] = ACTIONS(3643), + [anon_sym_break] = ACTIONS(3643), + [anon_sym_continue] = ACTIONS(3643), + [anon_sym_if] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(3643), + [anon_sym_async] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3643), + [anon_sym_while] = ACTIONS(3643), + [anon_sym_try] = ACTIONS(3643), + [anon_sym_with] = ACTIONS(3643), + [anon_sym_def] = ACTIONS(3643), + [anon_sym_global] = ACTIONS(3643), + [anon_sym_nonlocal] = ACTIONS(3643), + [anon_sym_exec] = ACTIONS(3643), + [anon_sym_type] = ACTIONS(3643), + [anon_sym_class] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_AT] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_not] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3641), + [anon_sym_LT] = ACTIONS(3641), + [anon_sym_lambda] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3641), + [anon_sym_None] = ACTIONS(3643), + [anon_sym_0x] = ACTIONS(3641), + [anon_sym_0X] = ACTIONS(3641), + [anon_sym_0o] = ACTIONS(3641), + [anon_sym_0O] = ACTIONS(3641), + [anon_sym_0b] = ACTIONS(3641), + [anon_sym_0B] = ACTIONS(3641), + [aux_sym_integer_token4] = ACTIONS(3643), + [sym_float] = ACTIONS(3641), + [anon_sym_await] = ACTIONS(3643), + [anon_sym_api] = ACTIONS(3643), + [sym_true] = ACTIONS(3643), + [sym_false] = ACTIONS(3643), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3643), + [anon_sym_include] = ACTIONS(3643), + [anon_sym_DEF] = ACTIONS(3643), + [anon_sym_IF] = ACTIONS(3643), + [anon_sym_cdef] = ACTIONS(3643), + [anon_sym_cpdef] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3643), + [anon_sym_ctypedef] = ACTIONS(3643), + [anon_sym_public] = ACTIONS(3643), + [anon_sym_packed] = ACTIONS(3643), + [anon_sym_inline] = ACTIONS(3643), + [anon_sym_readonly] = ACTIONS(3643), + [anon_sym_sizeof] = ACTIONS(3643), + [sym__dedent] = ACTIONS(3641), + [sym_string_start] = ACTIONS(3641), + }, + [1774] = { + [sym_identifier] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3645), + [anon_sym_import] = ACTIONS(3647), + [anon_sym_cimport] = ACTIONS(3647), + [anon_sym_from] = ACTIONS(3647), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_STAR] = ACTIONS(3645), + [anon_sym_print] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_del] = ACTIONS(3647), + [anon_sym_raise] = ACTIONS(3647), + [anon_sym_pass] = ACTIONS(3647), + [anon_sym_break] = ACTIONS(3647), + [anon_sym_continue] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_async] = ACTIONS(3647), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_with] = ACTIONS(3647), + [anon_sym_def] = ACTIONS(3647), + [anon_sym_global] = ACTIONS(3647), + [anon_sym_nonlocal] = ACTIONS(3647), + [anon_sym_exec] = ACTIONS(3647), + [anon_sym_type] = ACTIONS(3647), + [anon_sym_class] = ACTIONS(3647), + [anon_sym_LBRACK] = ACTIONS(3645), + [anon_sym_AT] = ACTIONS(3645), + [anon_sym_DASH] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3645), + [anon_sym_PLUS] = ACTIONS(3645), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3645), + [anon_sym_TILDE] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_lambda] = ACTIONS(3647), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3645), + [anon_sym_None] = ACTIONS(3647), + [anon_sym_0x] = ACTIONS(3645), + [anon_sym_0X] = ACTIONS(3645), + [anon_sym_0o] = ACTIONS(3645), + [anon_sym_0O] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(3645), + [anon_sym_0B] = ACTIONS(3645), + [aux_sym_integer_token4] = ACTIONS(3647), + [sym_float] = ACTIONS(3645), + [anon_sym_await] = ACTIONS(3647), + [anon_sym_api] = ACTIONS(3647), + [sym_true] = ACTIONS(3647), + [sym_false] = ACTIONS(3647), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3647), + [anon_sym_include] = ACTIONS(3647), + [anon_sym_DEF] = ACTIONS(3647), + [anon_sym_IF] = ACTIONS(3647), + [anon_sym_cdef] = ACTIONS(3647), + [anon_sym_cpdef] = ACTIONS(3647), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_ctypedef] = ACTIONS(3647), + [anon_sym_public] = ACTIONS(3647), + [anon_sym_packed] = ACTIONS(3647), + [anon_sym_inline] = ACTIONS(3647), + [anon_sym_readonly] = ACTIONS(3647), + [anon_sym_sizeof] = ACTIONS(3647), + [sym__dedent] = ACTIONS(3645), + [sym_string_start] = ACTIONS(3645), + }, + [1775] = { + [sym_identifier] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3649), + [anon_sym_import] = ACTIONS(3651), + [anon_sym_cimport] = ACTIONS(3651), + [anon_sym_from] = ACTIONS(3651), + [anon_sym_LPAREN] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(3649), + [anon_sym_print] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_del] = ACTIONS(3651), + [anon_sym_raise] = ACTIONS(3651), + [anon_sym_pass] = ACTIONS(3651), + [anon_sym_break] = ACTIONS(3651), + [anon_sym_continue] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_async] = ACTIONS(3651), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_with] = ACTIONS(3651), + [anon_sym_def] = ACTIONS(3651), + [anon_sym_global] = ACTIONS(3651), + [anon_sym_nonlocal] = ACTIONS(3651), + [anon_sym_exec] = ACTIONS(3651), + [anon_sym_type] = ACTIONS(3651), + [anon_sym_class] = ACTIONS(3651), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_AT] = ACTIONS(3649), + [anon_sym_DASH] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3649), + [anon_sym_PLUS] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym_TILDE] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_lambda] = ACTIONS(3651), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), + [anon_sym_None] = ACTIONS(3651), + [anon_sym_0x] = ACTIONS(3649), + [anon_sym_0X] = ACTIONS(3649), + [anon_sym_0o] = ACTIONS(3649), + [anon_sym_0O] = ACTIONS(3649), + [anon_sym_0b] = ACTIONS(3649), + [anon_sym_0B] = ACTIONS(3649), + [aux_sym_integer_token4] = ACTIONS(3651), + [sym_float] = ACTIONS(3649), + [anon_sym_await] = ACTIONS(3651), + [anon_sym_api] = ACTIONS(3651), + [sym_true] = ACTIONS(3651), + [sym_false] = ACTIONS(3651), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3651), + [anon_sym_include] = ACTIONS(3651), + [anon_sym_DEF] = ACTIONS(3651), + [anon_sym_IF] = ACTIONS(3651), + [anon_sym_cdef] = ACTIONS(3651), + [anon_sym_cpdef] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_ctypedef] = ACTIONS(3651), + [anon_sym_public] = ACTIONS(3651), + [anon_sym_packed] = ACTIONS(3651), + [anon_sym_inline] = ACTIONS(3651), + [anon_sym_readonly] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(3651), + [sym__dedent] = ACTIONS(3649), + [sym_string_start] = ACTIONS(3649), + }, + [1776] = { + [sym_identifier] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3653), + [anon_sym_import] = ACTIONS(3655), + [anon_sym_cimport] = ACTIONS(3655), + [anon_sym_from] = ACTIONS(3655), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3653), + [anon_sym_print] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_del] = ACTIONS(3655), + [anon_sym_raise] = ACTIONS(3655), + [anon_sym_pass] = ACTIONS(3655), + [anon_sym_break] = ACTIONS(3655), + [anon_sym_continue] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_async] = ACTIONS(3655), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_with] = ACTIONS(3655), + [anon_sym_def] = ACTIONS(3655), + [anon_sym_global] = ACTIONS(3655), + [anon_sym_nonlocal] = ACTIONS(3655), + [anon_sym_exec] = ACTIONS(3655), + [anon_sym_type] = ACTIONS(3655), + [anon_sym_class] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3653), + [anon_sym_AT] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3653), + [anon_sym_PLUS] = ACTIONS(3653), + [anon_sym_not] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_lambda] = ACTIONS(3655), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3653), + [anon_sym_None] = ACTIONS(3655), + [anon_sym_0x] = ACTIONS(3653), + [anon_sym_0X] = ACTIONS(3653), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0O] = ACTIONS(3653), + [anon_sym_0b] = ACTIONS(3653), + [anon_sym_0B] = ACTIONS(3653), + [aux_sym_integer_token4] = ACTIONS(3655), + [sym_float] = ACTIONS(3653), + [anon_sym_await] = ACTIONS(3655), + [anon_sym_api] = ACTIONS(3655), + [sym_true] = ACTIONS(3655), + [sym_false] = ACTIONS(3655), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3655), + [anon_sym_include] = ACTIONS(3655), + [anon_sym_DEF] = ACTIONS(3655), + [anon_sym_IF] = ACTIONS(3655), + [anon_sym_cdef] = ACTIONS(3655), + [anon_sym_cpdef] = ACTIONS(3655), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_ctypedef] = ACTIONS(3655), + [anon_sym_public] = ACTIONS(3655), + [anon_sym_packed] = ACTIONS(3655), + [anon_sym_inline] = ACTIONS(3655), + [anon_sym_readonly] = ACTIONS(3655), + [anon_sym_sizeof] = ACTIONS(3655), + [sym__dedent] = ACTIONS(3653), + [sym_string_start] = ACTIONS(3653), + }, + [1777] = { + [sym_identifier] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_import] = ACTIONS(3659), + [anon_sym_cimport] = ACTIONS(3659), + [anon_sym_from] = ACTIONS(3659), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_print] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_del] = ACTIONS(3659), + [anon_sym_raise] = ACTIONS(3659), + [anon_sym_pass] = ACTIONS(3659), + [anon_sym_break] = ACTIONS(3659), + [anon_sym_continue] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_async] = ACTIONS(3659), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_with] = ACTIONS(3659), + [anon_sym_def] = ACTIONS(3659), + [anon_sym_global] = ACTIONS(3659), + [anon_sym_nonlocal] = ACTIONS(3659), + [anon_sym_exec] = ACTIONS(3659), + [anon_sym_type] = ACTIONS(3659), + [anon_sym_class] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_AT] = ACTIONS(3657), + [anon_sym_DASH] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3657), + [anon_sym_not] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym_TILDE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3657), + [anon_sym_None] = ACTIONS(3659), + [anon_sym_0x] = ACTIONS(3657), + [anon_sym_0X] = ACTIONS(3657), + [anon_sym_0o] = ACTIONS(3657), + [anon_sym_0O] = ACTIONS(3657), + [anon_sym_0b] = ACTIONS(3657), + [anon_sym_0B] = ACTIONS(3657), + [aux_sym_integer_token4] = ACTIONS(3659), + [sym_float] = ACTIONS(3657), + [anon_sym_await] = ACTIONS(3659), + [anon_sym_api] = ACTIONS(3659), + [sym_true] = ACTIONS(3659), + [sym_false] = ACTIONS(3659), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3659), + [anon_sym_include] = ACTIONS(3659), + [anon_sym_DEF] = ACTIONS(3659), + [anon_sym_IF] = ACTIONS(3659), + [anon_sym_cdef] = ACTIONS(3659), + [anon_sym_cpdef] = ACTIONS(3659), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_ctypedef] = ACTIONS(3659), + [anon_sym_public] = ACTIONS(3659), + [anon_sym_packed] = ACTIONS(3659), + [anon_sym_inline] = ACTIONS(3659), + [anon_sym_readonly] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3659), + [sym__dedent] = ACTIONS(3657), + [sym_string_start] = ACTIONS(3657), + }, + [1778] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4680), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1779] = { + [sym_identifier] = ACTIONS(3663), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_import] = ACTIONS(3663), + [anon_sym_cimport] = ACTIONS(3663), + [anon_sym_from] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_print] = ACTIONS(3663), + [anon_sym_assert] = ACTIONS(3663), + [anon_sym_return] = ACTIONS(3663), + [anon_sym_del] = ACTIONS(3663), + [anon_sym_raise] = ACTIONS(3663), + [anon_sym_pass] = ACTIONS(3663), + [anon_sym_break] = ACTIONS(3663), + [anon_sym_continue] = ACTIONS(3663), + [anon_sym_if] = ACTIONS(3663), + [anon_sym_match] = ACTIONS(3663), + [anon_sym_async] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3663), + [anon_sym_while] = ACTIONS(3663), + [anon_sym_try] = ACTIONS(3663), + [anon_sym_with] = ACTIONS(3663), + [anon_sym_def] = ACTIONS(3663), + [anon_sym_global] = ACTIONS(3663), + [anon_sym_nonlocal] = ACTIONS(3663), + [anon_sym_exec] = ACTIONS(3663), + [anon_sym_type] = ACTIONS(3663), + [anon_sym_class] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_AT] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_not] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3661), + [anon_sym_lambda] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3661), + [anon_sym_None] = ACTIONS(3663), + [anon_sym_0x] = ACTIONS(3661), + [anon_sym_0X] = ACTIONS(3661), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0O] = ACTIONS(3661), + [anon_sym_0b] = ACTIONS(3661), + [anon_sym_0B] = ACTIONS(3661), + [aux_sym_integer_token4] = ACTIONS(3663), + [sym_float] = ACTIONS(3661), + [anon_sym_await] = ACTIONS(3663), + [anon_sym_api] = ACTIONS(3663), + [sym_true] = ACTIONS(3663), + [sym_false] = ACTIONS(3663), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3663), + [anon_sym_include] = ACTIONS(3663), + [anon_sym_DEF] = ACTIONS(3663), + [anon_sym_IF] = ACTIONS(3663), + [anon_sym_cdef] = ACTIONS(3663), + [anon_sym_cpdef] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3663), + [anon_sym_ctypedef] = ACTIONS(3663), + [anon_sym_public] = ACTIONS(3663), + [anon_sym_packed] = ACTIONS(3663), + [anon_sym_inline] = ACTIONS(3663), + [anon_sym_readonly] = ACTIONS(3663), + [anon_sym_sizeof] = ACTIONS(3663), + [sym__dedent] = ACTIONS(3661), + [sym_string_start] = ACTIONS(3661), + }, + [1780] = { + [sym_identifier] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_import] = ACTIONS(3667), + [anon_sym_cimport] = ACTIONS(3667), + [anon_sym_from] = ACTIONS(3667), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_print] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_del] = ACTIONS(3667), + [anon_sym_raise] = ACTIONS(3667), + [anon_sym_pass] = ACTIONS(3667), + [anon_sym_break] = ACTIONS(3667), + [anon_sym_continue] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_async] = ACTIONS(3667), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_with] = ACTIONS(3667), + [anon_sym_def] = ACTIONS(3667), + [anon_sym_global] = ACTIONS(3667), + [anon_sym_nonlocal] = ACTIONS(3667), + [anon_sym_exec] = ACTIONS(3667), + [anon_sym_type] = ACTIONS(3667), + [anon_sym_class] = ACTIONS(3667), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_AT] = ACTIONS(3665), + [anon_sym_DASH] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3665), + [anon_sym_not] = ACTIONS(3667), + [anon_sym_AMP] = ACTIONS(3665), + [anon_sym_TILDE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_lambda] = ACTIONS(3667), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3665), + [anon_sym_None] = ACTIONS(3667), + [anon_sym_0x] = ACTIONS(3665), + [anon_sym_0X] = ACTIONS(3665), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0O] = ACTIONS(3665), + [anon_sym_0b] = ACTIONS(3665), + [anon_sym_0B] = ACTIONS(3665), + [aux_sym_integer_token4] = ACTIONS(3667), + [sym_float] = ACTIONS(3665), + [anon_sym_await] = ACTIONS(3667), + [anon_sym_api] = ACTIONS(3667), + [sym_true] = ACTIONS(3667), + [sym_false] = ACTIONS(3667), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3667), + [anon_sym_include] = ACTIONS(3667), + [anon_sym_DEF] = ACTIONS(3667), + [anon_sym_IF] = ACTIONS(3667), + [anon_sym_cdef] = ACTIONS(3667), + [anon_sym_cpdef] = ACTIONS(3667), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_ctypedef] = ACTIONS(3667), + [anon_sym_public] = ACTIONS(3667), + [anon_sym_packed] = ACTIONS(3667), + [anon_sym_inline] = ACTIONS(3667), + [anon_sym_readonly] = ACTIONS(3667), + [anon_sym_sizeof] = ACTIONS(3667), + [sym__dedent] = ACTIONS(3665), + [sym_string_start] = ACTIONS(3665), + }, + [1781] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5210), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1782] = { + [sym_identifier] = ACTIONS(3527), + [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_import] = ACTIONS(3527), + [anon_sym_cimport] = ACTIONS(3527), + [anon_sym_from] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3525), + [anon_sym_print] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_del] = ACTIONS(3527), + [anon_sym_raise] = ACTIONS(3527), + [anon_sym_pass] = ACTIONS(3527), + [anon_sym_break] = ACTIONS(3527), + [anon_sym_continue] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_async] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_with] = ACTIONS(3527), + [anon_sym_def] = ACTIONS(3527), + [anon_sym_global] = ACTIONS(3527), + [anon_sym_nonlocal] = ACTIONS(3527), + [anon_sym_exec] = ACTIONS(3527), + [anon_sym_type] = ACTIONS(3527), + [anon_sym_class] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_AT] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_not] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_lambda] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), + [anon_sym_None] = ACTIONS(3527), + [anon_sym_0x] = ACTIONS(3525), + [anon_sym_0X] = ACTIONS(3525), + [anon_sym_0o] = ACTIONS(3525), + [anon_sym_0O] = ACTIONS(3525), + [anon_sym_0b] = ACTIONS(3525), + [anon_sym_0B] = ACTIONS(3525), + [aux_sym_integer_token4] = ACTIONS(3527), + [sym_float] = ACTIONS(3525), + [anon_sym_await] = ACTIONS(3527), + [anon_sym_api] = ACTIONS(3527), + [sym_true] = ACTIONS(3527), + [sym_false] = ACTIONS(3527), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3527), + [anon_sym_include] = ACTIONS(3527), + [anon_sym_DEF] = ACTIONS(3527), + [anon_sym_IF] = ACTIONS(3527), + [anon_sym_cdef] = ACTIONS(3527), + [anon_sym_cpdef] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_ctypedef] = ACTIONS(3527), + [anon_sym_public] = ACTIONS(3527), + [anon_sym_packed] = ACTIONS(3527), + [anon_sym_inline] = ACTIONS(3527), + [anon_sym_readonly] = ACTIONS(3527), + [anon_sym_sizeof] = ACTIONS(3527), + [sym__dedent] = ACTIONS(3525), + [sym_string_start] = ACTIONS(3525), + }, + [1783] = { + [sym_identifier] = ACTIONS(3671), + [anon_sym_SEMI] = ACTIONS(3669), + [anon_sym_import] = ACTIONS(3671), + [anon_sym_cimport] = ACTIONS(3671), + [anon_sym_from] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_STAR] = ACTIONS(3669), + [anon_sym_print] = ACTIONS(3671), + [anon_sym_assert] = ACTIONS(3671), + [anon_sym_return] = ACTIONS(3671), + [anon_sym_del] = ACTIONS(3671), + [anon_sym_raise] = ACTIONS(3671), + [anon_sym_pass] = ACTIONS(3671), + [anon_sym_break] = ACTIONS(3671), + [anon_sym_continue] = ACTIONS(3671), + [anon_sym_if] = ACTIONS(3671), + [anon_sym_match] = ACTIONS(3671), + [anon_sym_async] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3671), + [anon_sym_while] = ACTIONS(3671), + [anon_sym_try] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3671), + [anon_sym_def] = ACTIONS(3671), + [anon_sym_global] = ACTIONS(3671), + [anon_sym_nonlocal] = ACTIONS(3671), + [anon_sym_exec] = ACTIONS(3671), + [anon_sym_type] = ACTIONS(3671), + [anon_sym_class] = ACTIONS(3671), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_AT] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_not] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3669), + [anon_sym_lambda] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3669), + [anon_sym_None] = ACTIONS(3671), + [anon_sym_0x] = ACTIONS(3669), + [anon_sym_0X] = ACTIONS(3669), + [anon_sym_0o] = ACTIONS(3669), + [anon_sym_0O] = ACTIONS(3669), + [anon_sym_0b] = ACTIONS(3669), + [anon_sym_0B] = ACTIONS(3669), + [aux_sym_integer_token4] = ACTIONS(3671), + [sym_float] = ACTIONS(3669), + [anon_sym_await] = ACTIONS(3671), + [anon_sym_api] = ACTIONS(3671), + [sym_true] = ACTIONS(3671), + [sym_false] = ACTIONS(3671), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3671), + [anon_sym_include] = ACTIONS(3671), + [anon_sym_DEF] = ACTIONS(3671), + [anon_sym_IF] = ACTIONS(3671), + [anon_sym_cdef] = ACTIONS(3671), + [anon_sym_cpdef] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3671), + [anon_sym_ctypedef] = ACTIONS(3671), + [anon_sym_public] = ACTIONS(3671), + [anon_sym_packed] = ACTIONS(3671), + [anon_sym_inline] = ACTIONS(3671), + [anon_sym_readonly] = ACTIONS(3671), + [anon_sym_sizeof] = ACTIONS(3671), + [sym__dedent] = ACTIONS(3669), + [sym_string_start] = ACTIONS(3669), + }, + [1784] = { + [sym_identifier] = ACTIONS(3675), + [anon_sym_SEMI] = ACTIONS(3673), + [anon_sym_import] = ACTIONS(3675), + [anon_sym_cimport] = ACTIONS(3675), + [anon_sym_from] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3673), + [anon_sym_print] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_del] = ACTIONS(3675), + [anon_sym_raise] = ACTIONS(3675), + [anon_sym_pass] = ACTIONS(3675), + [anon_sym_break] = ACTIONS(3675), + [anon_sym_continue] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_async] = ACTIONS(3675), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3675), + [anon_sym_def] = ACTIONS(3675), + [anon_sym_global] = ACTIONS(3675), + [anon_sym_nonlocal] = ACTIONS(3675), + [anon_sym_exec] = ACTIONS(3675), + [anon_sym_type] = ACTIONS(3675), + [anon_sym_class] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3673), + [anon_sym_AT] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_LBRACE] = ACTIONS(3673), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_not] = ACTIONS(3675), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_TILDE] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_lambda] = ACTIONS(3675), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3673), + [anon_sym_None] = ACTIONS(3675), + [anon_sym_0x] = ACTIONS(3673), + [anon_sym_0X] = ACTIONS(3673), + [anon_sym_0o] = ACTIONS(3673), + [anon_sym_0O] = ACTIONS(3673), + [anon_sym_0b] = ACTIONS(3673), + [anon_sym_0B] = ACTIONS(3673), + [aux_sym_integer_token4] = ACTIONS(3675), + [sym_float] = ACTIONS(3673), + [anon_sym_await] = ACTIONS(3675), + [anon_sym_api] = ACTIONS(3675), + [sym_true] = ACTIONS(3675), + [sym_false] = ACTIONS(3675), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3675), + [anon_sym_include] = ACTIONS(3675), + [anon_sym_DEF] = ACTIONS(3675), + [anon_sym_IF] = ACTIONS(3675), + [anon_sym_cdef] = ACTIONS(3675), + [anon_sym_cpdef] = ACTIONS(3675), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_ctypedef] = ACTIONS(3675), + [anon_sym_public] = ACTIONS(3675), + [anon_sym_packed] = ACTIONS(3675), + [anon_sym_inline] = ACTIONS(3675), + [anon_sym_readonly] = ACTIONS(3675), + [anon_sym_sizeof] = ACTIONS(3675), + [sym__dedent] = ACTIONS(3673), + [sym_string_start] = ACTIONS(3673), + }, + [1785] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3233), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1786] = { + [sym_identifier] = ACTIONS(3679), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym_import] = ACTIONS(3679), + [anon_sym_cimport] = ACTIONS(3679), + [anon_sym_from] = ACTIONS(3679), + [anon_sym_LPAREN] = ACTIONS(3677), + [anon_sym_STAR] = ACTIONS(3677), + [anon_sym_print] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_del] = ACTIONS(3679), + [anon_sym_raise] = ACTIONS(3679), + [anon_sym_pass] = ACTIONS(3679), + [anon_sym_break] = ACTIONS(3679), + [anon_sym_continue] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_async] = ACTIONS(3679), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_with] = ACTIONS(3679), + [anon_sym_def] = ACTIONS(3679), + [anon_sym_global] = ACTIONS(3679), + [anon_sym_nonlocal] = ACTIONS(3679), + [anon_sym_exec] = ACTIONS(3679), + [anon_sym_type] = ACTIONS(3679), + [anon_sym_class] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_AT] = ACTIONS(3677), + [anon_sym_DASH] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3677), + [anon_sym_not] = ACTIONS(3679), + [anon_sym_AMP] = ACTIONS(3677), + [anon_sym_TILDE] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_lambda] = ACTIONS(3679), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3677), + [anon_sym_None] = ACTIONS(3679), + [anon_sym_0x] = ACTIONS(3677), + [anon_sym_0X] = ACTIONS(3677), + [anon_sym_0o] = ACTIONS(3677), + [anon_sym_0O] = ACTIONS(3677), + [anon_sym_0b] = ACTIONS(3677), + [anon_sym_0B] = ACTIONS(3677), + [aux_sym_integer_token4] = ACTIONS(3679), + [sym_float] = ACTIONS(3677), + [anon_sym_await] = ACTIONS(3679), + [anon_sym_api] = ACTIONS(3679), + [sym_true] = ACTIONS(3679), + [sym_false] = ACTIONS(3679), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3679), + [anon_sym_include] = ACTIONS(3679), + [anon_sym_DEF] = ACTIONS(3679), + [anon_sym_IF] = ACTIONS(3679), + [anon_sym_cdef] = ACTIONS(3679), + [anon_sym_cpdef] = ACTIONS(3679), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_ctypedef] = ACTIONS(3679), + [anon_sym_public] = ACTIONS(3679), + [anon_sym_packed] = ACTIONS(3679), + [anon_sym_inline] = ACTIONS(3679), + [anon_sym_readonly] = ACTIONS(3679), + [anon_sym_sizeof] = ACTIONS(3679), + [sym__dedent] = ACTIONS(3677), + [sym_string_start] = ACTIONS(3677), + }, + [1787] = { + [sym_identifier] = ACTIONS(3683), + [anon_sym_SEMI] = ACTIONS(3681), + [anon_sym_import] = ACTIONS(3683), + [anon_sym_cimport] = ACTIONS(3683), + [anon_sym_from] = ACTIONS(3683), + [anon_sym_LPAREN] = ACTIONS(3681), + [anon_sym_STAR] = ACTIONS(3681), + [anon_sym_print] = ACTIONS(3683), + [anon_sym_assert] = ACTIONS(3683), + [anon_sym_return] = ACTIONS(3683), + [anon_sym_del] = ACTIONS(3683), + [anon_sym_raise] = ACTIONS(3683), + [anon_sym_pass] = ACTIONS(3683), + [anon_sym_break] = ACTIONS(3683), + [anon_sym_continue] = ACTIONS(3683), + [anon_sym_if] = ACTIONS(3683), + [anon_sym_match] = ACTIONS(3683), + [anon_sym_async] = ACTIONS(3683), + [anon_sym_for] = ACTIONS(3683), + [anon_sym_while] = ACTIONS(3683), + [anon_sym_try] = ACTIONS(3683), + [anon_sym_with] = ACTIONS(3683), + [anon_sym_def] = ACTIONS(3683), + [anon_sym_global] = ACTIONS(3683), + [anon_sym_nonlocal] = ACTIONS(3683), + [anon_sym_exec] = ACTIONS(3683), + [anon_sym_type] = ACTIONS(3683), + [anon_sym_class] = ACTIONS(3683), + [anon_sym_LBRACK] = ACTIONS(3681), + [anon_sym_AT] = ACTIONS(3681), + [anon_sym_DASH] = ACTIONS(3681), + [anon_sym_LBRACE] = ACTIONS(3681), + [anon_sym_PLUS] = ACTIONS(3681), + [anon_sym_not] = ACTIONS(3683), + [anon_sym_AMP] = ACTIONS(3681), + [anon_sym_TILDE] = ACTIONS(3681), + [anon_sym_LT] = ACTIONS(3681), + [anon_sym_lambda] = ACTIONS(3683), + [anon_sym_yield] = ACTIONS(3683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3681), + [anon_sym_None] = ACTIONS(3683), + [anon_sym_0x] = ACTIONS(3681), + [anon_sym_0X] = ACTIONS(3681), + [anon_sym_0o] = ACTIONS(3681), + [anon_sym_0O] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3681), + [anon_sym_0B] = ACTIONS(3681), + [aux_sym_integer_token4] = ACTIONS(3683), + [sym_float] = ACTIONS(3681), + [anon_sym_await] = ACTIONS(3683), + [anon_sym_api] = ACTIONS(3683), + [sym_true] = ACTIONS(3683), + [sym_false] = ACTIONS(3683), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3683), + [anon_sym_include] = ACTIONS(3683), + [anon_sym_DEF] = ACTIONS(3683), + [anon_sym_IF] = ACTIONS(3683), + [anon_sym_cdef] = ACTIONS(3683), + [anon_sym_cpdef] = ACTIONS(3683), + [anon_sym_new] = ACTIONS(3683), + [anon_sym_ctypedef] = ACTIONS(3683), + [anon_sym_public] = ACTIONS(3683), + [anon_sym_packed] = ACTIONS(3683), + [anon_sym_inline] = ACTIONS(3683), + [anon_sym_readonly] = ACTIONS(3683), + [anon_sym_sizeof] = ACTIONS(3683), + [sym__dedent] = ACTIONS(3681), + [sym_string_start] = ACTIONS(3681), + }, + [1788] = { + [sym_identifier] = ACTIONS(3687), + [anon_sym_SEMI] = ACTIONS(3685), + [anon_sym_import] = ACTIONS(3687), + [anon_sym_cimport] = ACTIONS(3687), + [anon_sym_from] = ACTIONS(3687), + [anon_sym_LPAREN] = ACTIONS(3685), + [anon_sym_STAR] = ACTIONS(3685), + [anon_sym_print] = ACTIONS(3687), + [anon_sym_assert] = ACTIONS(3687), + [anon_sym_return] = ACTIONS(3687), + [anon_sym_del] = ACTIONS(3687), + [anon_sym_raise] = ACTIONS(3687), + [anon_sym_pass] = ACTIONS(3687), + [anon_sym_break] = ACTIONS(3687), + [anon_sym_continue] = ACTIONS(3687), + [anon_sym_if] = ACTIONS(3687), + [anon_sym_match] = ACTIONS(3687), + [anon_sym_async] = ACTIONS(3687), + [anon_sym_for] = ACTIONS(3687), + [anon_sym_while] = ACTIONS(3687), + [anon_sym_try] = ACTIONS(3687), + [anon_sym_with] = ACTIONS(3687), + [anon_sym_def] = ACTIONS(3687), + [anon_sym_global] = ACTIONS(3687), + [anon_sym_nonlocal] = ACTIONS(3687), + [anon_sym_exec] = ACTIONS(3687), + [anon_sym_type] = ACTIONS(3687), + [anon_sym_class] = ACTIONS(3687), + [anon_sym_LBRACK] = ACTIONS(3685), + [anon_sym_AT] = ACTIONS(3685), + [anon_sym_DASH] = ACTIONS(3685), + [anon_sym_LBRACE] = ACTIONS(3685), + [anon_sym_PLUS] = ACTIONS(3685), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(3685), + [anon_sym_TILDE] = ACTIONS(3685), + [anon_sym_LT] = ACTIONS(3685), + [anon_sym_lambda] = ACTIONS(3687), + [anon_sym_yield] = ACTIONS(3687), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_None] = ACTIONS(3687), + [anon_sym_0x] = ACTIONS(3685), + [anon_sym_0X] = ACTIONS(3685), + [anon_sym_0o] = ACTIONS(3685), + [anon_sym_0O] = ACTIONS(3685), + [anon_sym_0b] = ACTIONS(3685), + [anon_sym_0B] = ACTIONS(3685), + [aux_sym_integer_token4] = ACTIONS(3687), + [sym_float] = ACTIONS(3685), + [anon_sym_await] = ACTIONS(3687), + [anon_sym_api] = ACTIONS(3687), + [sym_true] = ACTIONS(3687), + [sym_false] = ACTIONS(3687), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3687), + [anon_sym_include] = ACTIONS(3687), + [anon_sym_DEF] = ACTIONS(3687), + [anon_sym_IF] = ACTIONS(3687), + [anon_sym_cdef] = ACTIONS(3687), + [anon_sym_cpdef] = ACTIONS(3687), + [anon_sym_new] = ACTIONS(3687), + [anon_sym_ctypedef] = ACTIONS(3687), + [anon_sym_public] = ACTIONS(3687), + [anon_sym_packed] = ACTIONS(3687), + [anon_sym_inline] = ACTIONS(3687), + [anon_sym_readonly] = ACTIONS(3687), + [anon_sym_sizeof] = ACTIONS(3687), + [sym__dedent] = ACTIONS(3685), + [sym_string_start] = ACTIONS(3685), + }, + [1789] = { + [sym_identifier] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3689), + [anon_sym_import] = ACTIONS(3691), + [anon_sym_cimport] = ACTIONS(3691), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_STAR] = ACTIONS(3689), + [anon_sym_print] = ACTIONS(3691), + [anon_sym_assert] = ACTIONS(3691), + [anon_sym_return] = ACTIONS(3691), + [anon_sym_del] = ACTIONS(3691), + [anon_sym_raise] = ACTIONS(3691), + [anon_sym_pass] = ACTIONS(3691), + [anon_sym_break] = ACTIONS(3691), + [anon_sym_continue] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3691), + [anon_sym_match] = ACTIONS(3691), + [anon_sym_async] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3691), + [anon_sym_while] = ACTIONS(3691), + [anon_sym_try] = ACTIONS(3691), + [anon_sym_with] = ACTIONS(3691), + [anon_sym_def] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_nonlocal] = ACTIONS(3691), + [anon_sym_exec] = ACTIONS(3691), + [anon_sym_type] = ACTIONS(3691), + [anon_sym_class] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_AT] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_not] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3689), + [anon_sym_LT] = ACTIONS(3689), + [anon_sym_lambda] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), + [anon_sym_None] = ACTIONS(3691), + [anon_sym_0x] = ACTIONS(3689), + [anon_sym_0X] = ACTIONS(3689), + [anon_sym_0o] = ACTIONS(3689), + [anon_sym_0O] = ACTIONS(3689), + [anon_sym_0b] = ACTIONS(3689), + [anon_sym_0B] = ACTIONS(3689), + [aux_sym_integer_token4] = ACTIONS(3691), + [sym_float] = ACTIONS(3689), + [anon_sym_await] = ACTIONS(3691), + [anon_sym_api] = ACTIONS(3691), + [sym_true] = ACTIONS(3691), + [sym_false] = ACTIONS(3691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3691), + [anon_sym_include] = ACTIONS(3691), + [anon_sym_DEF] = ACTIONS(3691), + [anon_sym_IF] = ACTIONS(3691), + [anon_sym_cdef] = ACTIONS(3691), + [anon_sym_cpdef] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_ctypedef] = ACTIONS(3691), + [anon_sym_public] = ACTIONS(3691), + [anon_sym_packed] = ACTIONS(3691), + [anon_sym_inline] = ACTIONS(3691), + [anon_sym_readonly] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(3691), + [sym__dedent] = ACTIONS(3689), + [sym_string_start] = ACTIONS(3689), + }, + [1790] = { + [sym_identifier] = ACTIONS(3695), + [anon_sym_SEMI] = ACTIONS(3693), + [anon_sym_import] = ACTIONS(3695), + [anon_sym_cimport] = ACTIONS(3695), + [anon_sym_from] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(3695), + [anon_sym_assert] = ACTIONS(3695), + [anon_sym_return] = ACTIONS(3695), + [anon_sym_del] = ACTIONS(3695), + [anon_sym_raise] = ACTIONS(3695), + [anon_sym_pass] = ACTIONS(3695), + [anon_sym_break] = ACTIONS(3695), + [anon_sym_continue] = ACTIONS(3695), + [anon_sym_if] = ACTIONS(3695), + [anon_sym_match] = ACTIONS(3695), + [anon_sym_async] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3695), + [anon_sym_while] = ACTIONS(3695), + [anon_sym_try] = ACTIONS(3695), + [anon_sym_with] = ACTIONS(3695), + [anon_sym_def] = ACTIONS(3695), + [anon_sym_global] = ACTIONS(3695), + [anon_sym_nonlocal] = ACTIONS(3695), + [anon_sym_exec] = ACTIONS(3695), + [anon_sym_type] = ACTIONS(3695), + [anon_sym_class] = ACTIONS(3695), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_AT] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3693), + [anon_sym_LT] = ACTIONS(3693), + [anon_sym_lambda] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3693), + [anon_sym_None] = ACTIONS(3695), + [anon_sym_0x] = ACTIONS(3693), + [anon_sym_0X] = ACTIONS(3693), + [anon_sym_0o] = ACTIONS(3693), + [anon_sym_0O] = ACTIONS(3693), + [anon_sym_0b] = ACTIONS(3693), + [anon_sym_0B] = ACTIONS(3693), + [aux_sym_integer_token4] = ACTIONS(3695), + [sym_float] = ACTIONS(3693), + [anon_sym_await] = ACTIONS(3695), + [anon_sym_api] = ACTIONS(3695), + [sym_true] = ACTIONS(3695), + [sym_false] = ACTIONS(3695), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3695), + [anon_sym_include] = ACTIONS(3695), + [anon_sym_DEF] = ACTIONS(3695), + [anon_sym_IF] = ACTIONS(3695), + [anon_sym_cdef] = ACTIONS(3695), + [anon_sym_cpdef] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3695), + [anon_sym_ctypedef] = ACTIONS(3695), + [anon_sym_public] = ACTIONS(3695), + [anon_sym_packed] = ACTIONS(3695), + [anon_sym_inline] = ACTIONS(3695), + [anon_sym_readonly] = ACTIONS(3695), + [anon_sym_sizeof] = ACTIONS(3695), + [sym__dedent] = ACTIONS(3693), + [sym_string_start] = ACTIONS(3693), + }, + [1791] = { + [sym_identifier] = ACTIONS(3699), + [anon_sym_SEMI] = ACTIONS(3697), + [anon_sym_import] = ACTIONS(3699), + [anon_sym_cimport] = ACTIONS(3699), + [anon_sym_from] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_STAR] = ACTIONS(3697), + [anon_sym_print] = ACTIONS(3699), + [anon_sym_assert] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3699), + [anon_sym_del] = ACTIONS(3699), + [anon_sym_raise] = ACTIONS(3699), + [anon_sym_pass] = ACTIONS(3699), + [anon_sym_break] = ACTIONS(3699), + [anon_sym_continue] = ACTIONS(3699), + [anon_sym_if] = ACTIONS(3699), + [anon_sym_match] = ACTIONS(3699), + [anon_sym_async] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3699), + [anon_sym_while] = ACTIONS(3699), + [anon_sym_try] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3699), + [anon_sym_def] = ACTIONS(3699), + [anon_sym_global] = ACTIONS(3699), + [anon_sym_nonlocal] = ACTIONS(3699), + [anon_sym_exec] = ACTIONS(3699), + [anon_sym_type] = ACTIONS(3699), + [anon_sym_class] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_AT] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_not] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3697), + [anon_sym_None] = ACTIONS(3699), + [anon_sym_0x] = ACTIONS(3697), + [anon_sym_0X] = ACTIONS(3697), + [anon_sym_0o] = ACTIONS(3697), + [anon_sym_0O] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3697), + [anon_sym_0B] = ACTIONS(3697), + [aux_sym_integer_token4] = ACTIONS(3699), + [sym_float] = ACTIONS(3697), + [anon_sym_await] = ACTIONS(3699), + [anon_sym_api] = ACTIONS(3699), + [sym_true] = ACTIONS(3699), + [sym_false] = ACTIONS(3699), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3699), + [anon_sym_include] = ACTIONS(3699), + [anon_sym_DEF] = ACTIONS(3699), + [anon_sym_IF] = ACTIONS(3699), + [anon_sym_cdef] = ACTIONS(3699), + [anon_sym_cpdef] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3699), + [anon_sym_ctypedef] = ACTIONS(3699), + [anon_sym_public] = ACTIONS(3699), + [anon_sym_packed] = ACTIONS(3699), + [anon_sym_inline] = ACTIONS(3699), + [anon_sym_readonly] = ACTIONS(3699), + [anon_sym_sizeof] = ACTIONS(3699), + [sym__dedent] = ACTIONS(3697), + [sym_string_start] = ACTIONS(3697), + }, + [1792] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2975), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1793] = { + [sym_identifier] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3705), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_cimport] = ACTIONS(3707), + [anon_sym_from] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_STAR] = ACTIONS(3705), + [anon_sym_print] = ACTIONS(3707), + [anon_sym_assert] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_del] = ACTIONS(3707), + [anon_sym_raise] = ACTIONS(3707), + [anon_sym_pass] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_match] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_def] = ACTIONS(3707), + [anon_sym_global] = ACTIONS(3707), + [anon_sym_nonlocal] = ACTIONS(3707), + [anon_sym_exec] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_AT] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_not] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3705), + [anon_sym_LT] = ACTIONS(3705), + [anon_sym_lambda] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3705), + [anon_sym_None] = ACTIONS(3707), + [anon_sym_0x] = ACTIONS(3705), + [anon_sym_0X] = ACTIONS(3705), + [anon_sym_0o] = ACTIONS(3705), + [anon_sym_0O] = ACTIONS(3705), + [anon_sym_0b] = ACTIONS(3705), + [anon_sym_0B] = ACTIONS(3705), + [aux_sym_integer_token4] = ACTIONS(3707), + [sym_float] = ACTIONS(3705), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_api] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3707), + [anon_sym_include] = ACTIONS(3707), + [anon_sym_DEF] = ACTIONS(3707), + [anon_sym_IF] = ACTIONS(3707), + [anon_sym_cdef] = ACTIONS(3707), + [anon_sym_cpdef] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_ctypedef] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_packed] = ACTIONS(3707), + [anon_sym_inline] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(3707), + [sym__dedent] = ACTIONS(3705), + [sym_string_start] = ACTIONS(3705), + }, + [1794] = { + [sym_identifier] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3717), + [anon_sym_import] = ACTIONS(3719), + [anon_sym_cimport] = ACTIONS(3719), + [anon_sym_from] = ACTIONS(3719), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_print] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_del] = ACTIONS(3719), + [anon_sym_raise] = ACTIONS(3719), + [anon_sym_pass] = ACTIONS(3719), + [anon_sym_break] = ACTIONS(3719), + [anon_sym_continue] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_async] = ACTIONS(3719), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_with] = ACTIONS(3719), + [anon_sym_def] = ACTIONS(3719), + [anon_sym_global] = ACTIONS(3719), + [anon_sym_nonlocal] = ACTIONS(3719), + [anon_sym_exec] = ACTIONS(3719), + [anon_sym_type] = ACTIONS(3719), + [anon_sym_class] = ACTIONS(3719), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_AT] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_not] = ACTIONS(3719), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3717), + [anon_sym_None] = ACTIONS(3719), + [anon_sym_0x] = ACTIONS(3717), + [anon_sym_0X] = ACTIONS(3717), + [anon_sym_0o] = ACTIONS(3717), + [anon_sym_0O] = ACTIONS(3717), + [anon_sym_0b] = ACTIONS(3717), + [anon_sym_0B] = ACTIONS(3717), + [aux_sym_integer_token4] = ACTIONS(3719), + [sym_float] = ACTIONS(3717), + [anon_sym_await] = ACTIONS(3719), + [anon_sym_api] = ACTIONS(3719), + [sym_true] = ACTIONS(3719), + [sym_false] = ACTIONS(3719), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3719), + [anon_sym_include] = ACTIONS(3719), + [anon_sym_DEF] = ACTIONS(3719), + [anon_sym_IF] = ACTIONS(3719), + [anon_sym_cdef] = ACTIONS(3719), + [anon_sym_cpdef] = ACTIONS(3719), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_ctypedef] = ACTIONS(3719), + [anon_sym_public] = ACTIONS(3719), + [anon_sym_packed] = ACTIONS(3719), + [anon_sym_inline] = ACTIONS(3719), + [anon_sym_readonly] = ACTIONS(3719), + [anon_sym_sizeof] = ACTIONS(3719), + [sym__dedent] = ACTIONS(3717), + [sym_string_start] = ACTIONS(3717), + }, + [1795] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5217), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1796] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(3035), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1797] = { + [sym_identifier] = ACTIONS(3735), + [anon_sym_SEMI] = ACTIONS(3733), + [anon_sym_import] = ACTIONS(3735), + [anon_sym_cimport] = ACTIONS(3735), + [anon_sym_from] = ACTIONS(3735), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_STAR] = ACTIONS(3733), + [anon_sym_print] = ACTIONS(3735), + [anon_sym_assert] = ACTIONS(3735), + [anon_sym_return] = ACTIONS(3735), + [anon_sym_del] = ACTIONS(3735), + [anon_sym_raise] = ACTIONS(3735), + [anon_sym_pass] = ACTIONS(3735), + [anon_sym_break] = ACTIONS(3735), + [anon_sym_continue] = ACTIONS(3735), + [anon_sym_if] = ACTIONS(3735), + [anon_sym_match] = ACTIONS(3735), + [anon_sym_async] = ACTIONS(3735), + [anon_sym_for] = ACTIONS(3735), + [anon_sym_while] = ACTIONS(3735), + [anon_sym_try] = ACTIONS(3735), + [anon_sym_with] = ACTIONS(3735), + [anon_sym_def] = ACTIONS(3735), + [anon_sym_global] = ACTIONS(3735), + [anon_sym_nonlocal] = ACTIONS(3735), + [anon_sym_exec] = ACTIONS(3735), + [anon_sym_type] = ACTIONS(3735), + [anon_sym_class] = ACTIONS(3735), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_AT] = ACTIONS(3733), + [anon_sym_DASH] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3733), + [anon_sym_PLUS] = ACTIONS(3733), + [anon_sym_not] = ACTIONS(3735), + [anon_sym_AMP] = ACTIONS(3733), + [anon_sym_TILDE] = ACTIONS(3733), + [anon_sym_LT] = ACTIONS(3733), + [anon_sym_lambda] = ACTIONS(3735), + [anon_sym_yield] = ACTIONS(3735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3733), + [anon_sym_None] = ACTIONS(3735), + [anon_sym_0x] = ACTIONS(3733), + [anon_sym_0X] = ACTIONS(3733), + [anon_sym_0o] = ACTIONS(3733), + [anon_sym_0O] = ACTIONS(3733), + [anon_sym_0b] = ACTIONS(3733), + [anon_sym_0B] = ACTIONS(3733), + [aux_sym_integer_token4] = ACTIONS(3735), + [sym_float] = ACTIONS(3733), + [anon_sym_await] = ACTIONS(3735), + [anon_sym_api] = ACTIONS(3735), + [sym_true] = ACTIONS(3735), + [sym_false] = ACTIONS(3735), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3735), + [anon_sym_include] = ACTIONS(3735), + [anon_sym_DEF] = ACTIONS(3735), + [anon_sym_IF] = ACTIONS(3735), + [anon_sym_cdef] = ACTIONS(3735), + [anon_sym_cpdef] = ACTIONS(3735), + [anon_sym_new] = ACTIONS(3735), + [anon_sym_ctypedef] = ACTIONS(3735), + [anon_sym_public] = ACTIONS(3735), + [anon_sym_packed] = ACTIONS(3735), + [anon_sym_inline] = ACTIONS(3735), + [anon_sym_readonly] = ACTIONS(3735), + [anon_sym_sizeof] = ACTIONS(3735), + [sym__dedent] = ACTIONS(3733), + [sym_string_start] = ACTIONS(3733), + }, + [1798] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3951), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1799] = { + [sym_identifier] = ACTIONS(3739), + [anon_sym_SEMI] = ACTIONS(3737), + [anon_sym_import] = ACTIONS(3739), + [anon_sym_cimport] = ACTIONS(3739), + [anon_sym_from] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3737), + [anon_sym_STAR] = ACTIONS(3737), + [anon_sym_print] = ACTIONS(3739), + [anon_sym_assert] = ACTIONS(3739), + [anon_sym_return] = ACTIONS(3739), + [anon_sym_del] = ACTIONS(3739), + [anon_sym_raise] = ACTIONS(3739), + [anon_sym_pass] = ACTIONS(3739), + [anon_sym_break] = ACTIONS(3739), + [anon_sym_continue] = ACTIONS(3739), + [anon_sym_if] = ACTIONS(3739), + [anon_sym_match] = ACTIONS(3739), + [anon_sym_async] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3739), + [anon_sym_while] = ACTIONS(3739), + [anon_sym_try] = ACTIONS(3739), + [anon_sym_with] = ACTIONS(3739), + [anon_sym_def] = ACTIONS(3739), + [anon_sym_global] = ACTIONS(3739), + [anon_sym_nonlocal] = ACTIONS(3739), + [anon_sym_exec] = ACTIONS(3739), + [anon_sym_type] = ACTIONS(3739), + [anon_sym_class] = ACTIONS(3739), + [anon_sym_LBRACK] = ACTIONS(3737), + [anon_sym_AT] = ACTIONS(3737), + [anon_sym_DASH] = ACTIONS(3737), + [anon_sym_LBRACE] = ACTIONS(3737), + [anon_sym_PLUS] = ACTIONS(3737), + [anon_sym_not] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3737), + [anon_sym_LT] = ACTIONS(3737), + [anon_sym_lambda] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3737), + [anon_sym_None] = ACTIONS(3739), + [anon_sym_0x] = ACTIONS(3737), + [anon_sym_0X] = ACTIONS(3737), + [anon_sym_0o] = ACTIONS(3737), + [anon_sym_0O] = ACTIONS(3737), + [anon_sym_0b] = ACTIONS(3737), + [anon_sym_0B] = ACTIONS(3737), + [aux_sym_integer_token4] = ACTIONS(3739), + [sym_float] = ACTIONS(3737), + [anon_sym_await] = ACTIONS(3739), + [anon_sym_api] = ACTIONS(3739), + [sym_true] = ACTIONS(3739), + [sym_false] = ACTIONS(3739), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3739), + [anon_sym_include] = ACTIONS(3739), + [anon_sym_DEF] = ACTIONS(3739), + [anon_sym_IF] = ACTIONS(3739), + [anon_sym_cdef] = ACTIONS(3739), + [anon_sym_cpdef] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3739), + [anon_sym_ctypedef] = ACTIONS(3739), + [anon_sym_public] = ACTIONS(3739), + [anon_sym_packed] = ACTIONS(3739), + [anon_sym_inline] = ACTIONS(3739), + [anon_sym_readonly] = ACTIONS(3739), + [anon_sym_sizeof] = ACTIONS(3739), + [sym__dedent] = ACTIONS(3737), + [sym_string_start] = ACTIONS(3737), + }, + [1800] = { + [sym_identifier] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3741), + [anon_sym_import] = ACTIONS(3743), + [anon_sym_cimport] = ACTIONS(3743), + [anon_sym_from] = ACTIONS(3743), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_STAR] = ACTIONS(3741), + [anon_sym_print] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_del] = ACTIONS(3743), + [anon_sym_raise] = ACTIONS(3743), + [anon_sym_pass] = ACTIONS(3743), + [anon_sym_break] = ACTIONS(3743), + [anon_sym_continue] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_async] = ACTIONS(3743), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_with] = ACTIONS(3743), + [anon_sym_def] = ACTIONS(3743), + [anon_sym_global] = ACTIONS(3743), + [anon_sym_nonlocal] = ACTIONS(3743), + [anon_sym_exec] = ACTIONS(3743), + [anon_sym_type] = ACTIONS(3743), + [anon_sym_class] = ACTIONS(3743), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_AT] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_not] = ACTIONS(3743), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3741), + [anon_sym_LT] = ACTIONS(3741), + [anon_sym_lambda] = ACTIONS(3743), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [anon_sym_None] = ACTIONS(3743), + [anon_sym_0x] = ACTIONS(3741), + [anon_sym_0X] = ACTIONS(3741), + [anon_sym_0o] = ACTIONS(3741), + [anon_sym_0O] = ACTIONS(3741), + [anon_sym_0b] = ACTIONS(3741), + [anon_sym_0B] = ACTIONS(3741), + [aux_sym_integer_token4] = ACTIONS(3743), + [sym_float] = ACTIONS(3741), + [anon_sym_await] = ACTIONS(3743), + [anon_sym_api] = ACTIONS(3743), + [sym_true] = ACTIONS(3743), + [sym_false] = ACTIONS(3743), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3743), + [anon_sym_include] = ACTIONS(3743), + [anon_sym_DEF] = ACTIONS(3743), + [anon_sym_IF] = ACTIONS(3743), + [anon_sym_cdef] = ACTIONS(3743), + [anon_sym_cpdef] = ACTIONS(3743), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_ctypedef] = ACTIONS(3743), + [anon_sym_public] = ACTIONS(3743), + [anon_sym_packed] = ACTIONS(3743), + [anon_sym_inline] = ACTIONS(3743), + [anon_sym_readonly] = ACTIONS(3743), + [anon_sym_sizeof] = ACTIONS(3743), + [sym__dedent] = ACTIONS(3741), + [sym_string_start] = ACTIONS(3741), + }, + [1801] = { + [sym_identifier] = ACTIONS(3747), + [anon_sym_SEMI] = ACTIONS(3745), + [anon_sym_import] = ACTIONS(3747), + [anon_sym_cimport] = ACTIONS(3747), + [anon_sym_from] = ACTIONS(3747), + [anon_sym_LPAREN] = ACTIONS(3745), + [anon_sym_STAR] = ACTIONS(3745), + [anon_sym_print] = ACTIONS(3747), + [anon_sym_assert] = ACTIONS(3747), + [anon_sym_return] = ACTIONS(3747), + [anon_sym_del] = ACTIONS(3747), + [anon_sym_raise] = ACTIONS(3747), + [anon_sym_pass] = ACTIONS(3747), + [anon_sym_break] = ACTIONS(3747), + [anon_sym_continue] = ACTIONS(3747), + [anon_sym_if] = ACTIONS(3747), + [anon_sym_match] = ACTIONS(3747), + [anon_sym_async] = ACTIONS(3747), + [anon_sym_for] = ACTIONS(3747), + [anon_sym_while] = ACTIONS(3747), + [anon_sym_try] = ACTIONS(3747), + [anon_sym_with] = ACTIONS(3747), + [anon_sym_def] = ACTIONS(3747), + [anon_sym_global] = ACTIONS(3747), + [anon_sym_nonlocal] = ACTIONS(3747), + [anon_sym_exec] = ACTIONS(3747), + [anon_sym_type] = ACTIONS(3747), + [anon_sym_class] = ACTIONS(3747), + [anon_sym_LBRACK] = ACTIONS(3745), + [anon_sym_AT] = ACTIONS(3745), + [anon_sym_DASH] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_PLUS] = ACTIONS(3745), + [anon_sym_not] = ACTIONS(3747), + [anon_sym_AMP] = ACTIONS(3745), + [anon_sym_TILDE] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_lambda] = ACTIONS(3747), + [anon_sym_yield] = ACTIONS(3747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3745), + [anon_sym_None] = ACTIONS(3747), + [anon_sym_0x] = ACTIONS(3745), + [anon_sym_0X] = ACTIONS(3745), + [anon_sym_0o] = ACTIONS(3745), + [anon_sym_0O] = ACTIONS(3745), + [anon_sym_0b] = ACTIONS(3745), + [anon_sym_0B] = ACTIONS(3745), + [aux_sym_integer_token4] = ACTIONS(3747), + [sym_float] = ACTIONS(3745), + [anon_sym_await] = ACTIONS(3747), + [anon_sym_api] = ACTIONS(3747), + [sym_true] = ACTIONS(3747), + [sym_false] = ACTIONS(3747), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3747), + [anon_sym_include] = ACTIONS(3747), + [anon_sym_DEF] = ACTIONS(3747), + [anon_sym_IF] = ACTIONS(3747), + [anon_sym_cdef] = ACTIONS(3747), + [anon_sym_cpdef] = ACTIONS(3747), + [anon_sym_new] = ACTIONS(3747), + [anon_sym_ctypedef] = ACTIONS(3747), + [anon_sym_public] = ACTIONS(3747), + [anon_sym_packed] = ACTIONS(3747), + [anon_sym_inline] = ACTIONS(3747), + [anon_sym_readonly] = ACTIONS(3747), + [anon_sym_sizeof] = ACTIONS(3747), + [sym__dedent] = ACTIONS(3745), + [sym_string_start] = ACTIONS(3745), + }, + [1802] = { + [sym_identifier] = ACTIONS(3751), + [anon_sym_SEMI] = ACTIONS(3749), + [anon_sym_import] = ACTIONS(3751), + [anon_sym_cimport] = ACTIONS(3751), + [anon_sym_from] = ACTIONS(3751), + [anon_sym_LPAREN] = ACTIONS(3749), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_print] = ACTIONS(3751), + [anon_sym_assert] = ACTIONS(3751), + [anon_sym_return] = ACTIONS(3751), + [anon_sym_del] = ACTIONS(3751), + [anon_sym_raise] = ACTIONS(3751), + [anon_sym_pass] = ACTIONS(3751), + [anon_sym_break] = ACTIONS(3751), + [anon_sym_continue] = ACTIONS(3751), + [anon_sym_if] = ACTIONS(3751), + [anon_sym_match] = ACTIONS(3751), + [anon_sym_async] = ACTIONS(3751), + [anon_sym_for] = ACTIONS(3751), + [anon_sym_while] = ACTIONS(3751), + [anon_sym_try] = ACTIONS(3751), + [anon_sym_with] = ACTIONS(3751), + [anon_sym_def] = ACTIONS(3751), + [anon_sym_global] = ACTIONS(3751), + [anon_sym_nonlocal] = ACTIONS(3751), + [anon_sym_exec] = ACTIONS(3751), + [anon_sym_type] = ACTIONS(3751), + [anon_sym_class] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3749), + [anon_sym_AT] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3749), + [anon_sym_PLUS] = ACTIONS(3749), + [anon_sym_not] = ACTIONS(3751), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym_TILDE] = ACTIONS(3749), + [anon_sym_LT] = ACTIONS(3749), + [anon_sym_lambda] = ACTIONS(3751), + [anon_sym_yield] = ACTIONS(3751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3749), + [anon_sym_None] = ACTIONS(3751), + [anon_sym_0x] = ACTIONS(3749), + [anon_sym_0X] = ACTIONS(3749), + [anon_sym_0o] = ACTIONS(3749), + [anon_sym_0O] = ACTIONS(3749), + [anon_sym_0b] = ACTIONS(3749), + [anon_sym_0B] = ACTIONS(3749), + [aux_sym_integer_token4] = ACTIONS(3751), + [sym_float] = ACTIONS(3749), + [anon_sym_await] = ACTIONS(3751), + [anon_sym_api] = ACTIONS(3751), + [sym_true] = ACTIONS(3751), + [sym_false] = ACTIONS(3751), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3751), + [anon_sym_include] = ACTIONS(3751), + [anon_sym_DEF] = ACTIONS(3751), + [anon_sym_IF] = ACTIONS(3751), + [anon_sym_cdef] = ACTIONS(3751), + [anon_sym_cpdef] = ACTIONS(3751), + [anon_sym_new] = ACTIONS(3751), + [anon_sym_ctypedef] = ACTIONS(3751), + [anon_sym_public] = ACTIONS(3751), + [anon_sym_packed] = ACTIONS(3751), + [anon_sym_inline] = ACTIONS(3751), + [anon_sym_readonly] = ACTIONS(3751), + [anon_sym_sizeof] = ACTIONS(3751), + [sym__dedent] = ACTIONS(3749), + [sym_string_start] = ACTIONS(3749), + }, + [1803] = { + [sym_identifier] = ACTIONS(3755), + [anon_sym_SEMI] = ACTIONS(3753), + [anon_sym_import] = ACTIONS(3755), + [anon_sym_cimport] = ACTIONS(3755), + [anon_sym_from] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3753), + [anon_sym_STAR] = ACTIONS(3753), + [anon_sym_print] = ACTIONS(3755), + [anon_sym_assert] = ACTIONS(3755), + [anon_sym_return] = ACTIONS(3755), + [anon_sym_del] = ACTIONS(3755), + [anon_sym_raise] = ACTIONS(3755), + [anon_sym_pass] = ACTIONS(3755), + [anon_sym_break] = ACTIONS(3755), + [anon_sym_continue] = ACTIONS(3755), + [anon_sym_if] = ACTIONS(3755), + [anon_sym_match] = ACTIONS(3755), + [anon_sym_async] = ACTIONS(3755), + [anon_sym_for] = ACTIONS(3755), + [anon_sym_while] = ACTIONS(3755), + [anon_sym_try] = ACTIONS(3755), + [anon_sym_with] = ACTIONS(3755), + [anon_sym_def] = ACTIONS(3755), + [anon_sym_global] = ACTIONS(3755), + [anon_sym_nonlocal] = ACTIONS(3755), + [anon_sym_exec] = ACTIONS(3755), + [anon_sym_type] = ACTIONS(3755), + [anon_sym_class] = ACTIONS(3755), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_AT] = ACTIONS(3753), + [anon_sym_DASH] = ACTIONS(3753), + [anon_sym_LBRACE] = ACTIONS(3753), + [anon_sym_PLUS] = ACTIONS(3753), + [anon_sym_not] = ACTIONS(3755), + [anon_sym_AMP] = ACTIONS(3753), + [anon_sym_TILDE] = ACTIONS(3753), + [anon_sym_LT] = ACTIONS(3753), + [anon_sym_lambda] = ACTIONS(3755), + [anon_sym_yield] = ACTIONS(3755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3753), + [anon_sym_None] = ACTIONS(3755), + [anon_sym_0x] = ACTIONS(3753), + [anon_sym_0X] = ACTIONS(3753), + [anon_sym_0o] = ACTIONS(3753), + [anon_sym_0O] = ACTIONS(3753), + [anon_sym_0b] = ACTIONS(3753), + [anon_sym_0B] = ACTIONS(3753), + [aux_sym_integer_token4] = ACTIONS(3755), + [sym_float] = ACTIONS(3753), + [anon_sym_await] = ACTIONS(3755), + [anon_sym_api] = ACTIONS(3755), + [sym_true] = ACTIONS(3755), + [sym_false] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3755), + [anon_sym_include] = ACTIONS(3755), + [anon_sym_DEF] = ACTIONS(3755), + [anon_sym_IF] = ACTIONS(3755), + [anon_sym_cdef] = ACTIONS(3755), + [anon_sym_cpdef] = ACTIONS(3755), + [anon_sym_new] = ACTIONS(3755), + [anon_sym_ctypedef] = ACTIONS(3755), + [anon_sym_public] = ACTIONS(3755), + [anon_sym_packed] = ACTIONS(3755), + [anon_sym_inline] = ACTIONS(3755), + [anon_sym_readonly] = ACTIONS(3755), + [anon_sym_sizeof] = ACTIONS(3755), + [sym__dedent] = ACTIONS(3753), + [sym_string_start] = ACTIONS(3753), + }, + [1804] = { + [sym_identifier] = ACTIONS(3759), + [anon_sym_SEMI] = ACTIONS(3757), + [anon_sym_import] = ACTIONS(3759), + [anon_sym_cimport] = ACTIONS(3759), + [anon_sym_from] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(3757), + [anon_sym_print] = ACTIONS(3759), + [anon_sym_assert] = ACTIONS(3759), + [anon_sym_return] = ACTIONS(3759), + [anon_sym_del] = ACTIONS(3759), + [anon_sym_raise] = ACTIONS(3759), + [anon_sym_pass] = ACTIONS(3759), + [anon_sym_break] = ACTIONS(3759), + [anon_sym_continue] = ACTIONS(3759), + [anon_sym_if] = ACTIONS(3759), + [anon_sym_match] = ACTIONS(3759), + [anon_sym_async] = ACTIONS(3759), + [anon_sym_for] = ACTIONS(3759), + [anon_sym_while] = ACTIONS(3759), + [anon_sym_try] = ACTIONS(3759), + [anon_sym_with] = ACTIONS(3759), + [anon_sym_def] = ACTIONS(3759), + [anon_sym_global] = ACTIONS(3759), + [anon_sym_nonlocal] = ACTIONS(3759), + [anon_sym_exec] = ACTIONS(3759), + [anon_sym_type] = ACTIONS(3759), + [anon_sym_class] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(3757), + [anon_sym_AT] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_PLUS] = ACTIONS(3757), + [anon_sym_not] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3757), + [anon_sym_TILDE] = ACTIONS(3757), + [anon_sym_LT] = ACTIONS(3757), + [anon_sym_lambda] = ACTIONS(3759), + [anon_sym_yield] = ACTIONS(3759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3757), + [anon_sym_None] = ACTIONS(3759), + [anon_sym_0x] = ACTIONS(3757), + [anon_sym_0X] = ACTIONS(3757), + [anon_sym_0o] = ACTIONS(3757), + [anon_sym_0O] = ACTIONS(3757), + [anon_sym_0b] = ACTIONS(3757), + [anon_sym_0B] = ACTIONS(3757), + [aux_sym_integer_token4] = ACTIONS(3759), + [sym_float] = ACTIONS(3757), + [anon_sym_await] = ACTIONS(3759), + [anon_sym_api] = ACTIONS(3759), + [sym_true] = ACTIONS(3759), + [sym_false] = ACTIONS(3759), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3759), + [anon_sym_include] = ACTIONS(3759), + [anon_sym_DEF] = ACTIONS(3759), + [anon_sym_IF] = ACTIONS(3759), + [anon_sym_cdef] = ACTIONS(3759), + [anon_sym_cpdef] = ACTIONS(3759), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_ctypedef] = ACTIONS(3759), + [anon_sym_public] = ACTIONS(3759), + [anon_sym_packed] = ACTIONS(3759), + [anon_sym_inline] = ACTIONS(3759), + [anon_sym_readonly] = ACTIONS(3759), + [anon_sym_sizeof] = ACTIONS(3759), + [sym__dedent] = ACTIONS(3757), + [sym_string_start] = ACTIONS(3757), + }, + [1805] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2854), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1806] = { + [sym_identifier] = ACTIONS(3763), + [anon_sym_SEMI] = ACTIONS(3761), + [anon_sym_import] = ACTIONS(3763), + [anon_sym_cimport] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_LPAREN] = ACTIONS(3761), + [anon_sym_STAR] = ACTIONS(3761), + [anon_sym_print] = ACTIONS(3763), + [anon_sym_assert] = ACTIONS(3763), + [anon_sym_return] = ACTIONS(3763), + [anon_sym_del] = ACTIONS(3763), + [anon_sym_raise] = ACTIONS(3763), + [anon_sym_pass] = ACTIONS(3763), + [anon_sym_break] = ACTIONS(3763), + [anon_sym_continue] = ACTIONS(3763), + [anon_sym_if] = ACTIONS(3763), + [anon_sym_match] = ACTIONS(3763), + [anon_sym_async] = ACTIONS(3763), + [anon_sym_for] = ACTIONS(3763), + [anon_sym_while] = ACTIONS(3763), + [anon_sym_try] = ACTIONS(3763), + [anon_sym_with] = ACTIONS(3763), + [anon_sym_def] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_nonlocal] = ACTIONS(3763), + [anon_sym_exec] = ACTIONS(3763), + [anon_sym_type] = ACTIONS(3763), + [anon_sym_class] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(3761), + [anon_sym_AT] = ACTIONS(3761), + [anon_sym_DASH] = ACTIONS(3761), + [anon_sym_LBRACE] = ACTIONS(3761), + [anon_sym_PLUS] = ACTIONS(3761), + [anon_sym_not] = ACTIONS(3763), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_TILDE] = ACTIONS(3761), + [anon_sym_LT] = ACTIONS(3761), + [anon_sym_lambda] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3761), + [anon_sym_None] = ACTIONS(3763), + [anon_sym_0x] = ACTIONS(3761), + [anon_sym_0X] = ACTIONS(3761), + [anon_sym_0o] = ACTIONS(3761), + [anon_sym_0O] = ACTIONS(3761), + [anon_sym_0b] = ACTIONS(3761), + [anon_sym_0B] = ACTIONS(3761), + [aux_sym_integer_token4] = ACTIONS(3763), + [sym_float] = ACTIONS(3761), + [anon_sym_await] = ACTIONS(3763), + [anon_sym_api] = ACTIONS(3763), + [sym_true] = ACTIONS(3763), + [sym_false] = ACTIONS(3763), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3763), + [anon_sym_include] = ACTIONS(3763), + [anon_sym_DEF] = ACTIONS(3763), + [anon_sym_IF] = ACTIONS(3763), + [anon_sym_cdef] = ACTIONS(3763), + [anon_sym_cpdef] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3763), + [anon_sym_ctypedef] = ACTIONS(3763), + [anon_sym_public] = ACTIONS(3763), + [anon_sym_packed] = ACTIONS(3763), + [anon_sym_inline] = ACTIONS(3763), + [anon_sym_readonly] = ACTIONS(3763), + [anon_sym_sizeof] = ACTIONS(3763), + [sym__dedent] = ACTIONS(3761), + [sym_string_start] = ACTIONS(3761), + }, + [1807] = { + [sym_identifier] = ACTIONS(3771), + [anon_sym_SEMI] = ACTIONS(3769), + [anon_sym_import] = ACTIONS(3771), + [anon_sym_cimport] = ACTIONS(3771), + [anon_sym_from] = ACTIONS(3771), + [anon_sym_LPAREN] = ACTIONS(3769), + [anon_sym_STAR] = ACTIONS(3769), + [anon_sym_print] = ACTIONS(3771), + [anon_sym_assert] = ACTIONS(3771), + [anon_sym_return] = ACTIONS(3771), + [anon_sym_del] = ACTIONS(3771), + [anon_sym_raise] = ACTIONS(3771), + [anon_sym_pass] = ACTIONS(3771), + [anon_sym_break] = ACTIONS(3771), + [anon_sym_continue] = ACTIONS(3771), + [anon_sym_if] = ACTIONS(3771), + [anon_sym_match] = ACTIONS(3771), + [anon_sym_async] = ACTIONS(3771), + [anon_sym_for] = ACTIONS(3771), + [anon_sym_while] = ACTIONS(3771), + [anon_sym_try] = ACTIONS(3771), + [anon_sym_with] = ACTIONS(3771), + [anon_sym_def] = ACTIONS(3771), + [anon_sym_global] = ACTIONS(3771), + [anon_sym_nonlocal] = ACTIONS(3771), + [anon_sym_exec] = ACTIONS(3771), + [anon_sym_type] = ACTIONS(3771), + [anon_sym_class] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3769), + [anon_sym_AT] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(3769), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3769), + [anon_sym_not] = ACTIONS(3771), + [anon_sym_AMP] = ACTIONS(3769), + [anon_sym_TILDE] = ACTIONS(3769), + [anon_sym_LT] = ACTIONS(3769), + [anon_sym_lambda] = ACTIONS(3771), + [anon_sym_yield] = ACTIONS(3771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3769), + [anon_sym_None] = ACTIONS(3771), + [anon_sym_0x] = ACTIONS(3769), + [anon_sym_0X] = ACTIONS(3769), + [anon_sym_0o] = ACTIONS(3769), + [anon_sym_0O] = ACTIONS(3769), + [anon_sym_0b] = ACTIONS(3769), + [anon_sym_0B] = ACTIONS(3769), + [aux_sym_integer_token4] = ACTIONS(3771), + [sym_float] = ACTIONS(3769), + [anon_sym_await] = ACTIONS(3771), + [anon_sym_api] = ACTIONS(3771), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3771), + [anon_sym_include] = ACTIONS(3771), + [anon_sym_DEF] = ACTIONS(3771), + [anon_sym_IF] = ACTIONS(3771), + [anon_sym_cdef] = ACTIONS(3771), + [anon_sym_cpdef] = ACTIONS(3771), + [anon_sym_new] = ACTIONS(3771), + [anon_sym_ctypedef] = ACTIONS(3771), + [anon_sym_public] = ACTIONS(3771), + [anon_sym_packed] = ACTIONS(3771), + [anon_sym_inline] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3771), + [anon_sym_sizeof] = ACTIONS(3771), + [sym__dedent] = ACTIONS(3769), + [sym_string_start] = ACTIONS(3769), + }, + [1808] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2610), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1809] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2860), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1810] = { + [sym_identifier] = ACTIONS(3787), + [anon_sym_SEMI] = ACTIONS(3785), + [anon_sym_import] = ACTIONS(3787), + [anon_sym_cimport] = ACTIONS(3787), + [anon_sym_from] = ACTIONS(3787), + [anon_sym_LPAREN] = ACTIONS(3785), + [anon_sym_STAR] = ACTIONS(3785), + [anon_sym_print] = ACTIONS(3787), + [anon_sym_assert] = ACTIONS(3787), + [anon_sym_return] = ACTIONS(3787), + [anon_sym_del] = ACTIONS(3787), + [anon_sym_raise] = ACTIONS(3787), + [anon_sym_pass] = ACTIONS(3787), + [anon_sym_break] = ACTIONS(3787), + [anon_sym_continue] = ACTIONS(3787), + [anon_sym_if] = ACTIONS(3787), + [anon_sym_match] = ACTIONS(3787), + [anon_sym_async] = ACTIONS(3787), + [anon_sym_for] = ACTIONS(3787), + [anon_sym_while] = ACTIONS(3787), + [anon_sym_try] = ACTIONS(3787), + [anon_sym_with] = ACTIONS(3787), + [anon_sym_def] = ACTIONS(3787), + [anon_sym_global] = ACTIONS(3787), + [anon_sym_nonlocal] = ACTIONS(3787), + [anon_sym_exec] = ACTIONS(3787), + [anon_sym_type] = ACTIONS(3787), + [anon_sym_class] = ACTIONS(3787), + [anon_sym_LBRACK] = ACTIONS(3785), + [anon_sym_AT] = ACTIONS(3785), + [anon_sym_DASH] = ACTIONS(3785), + [anon_sym_LBRACE] = ACTIONS(3785), + [anon_sym_PLUS] = ACTIONS(3785), + [anon_sym_not] = ACTIONS(3787), + [anon_sym_AMP] = ACTIONS(3785), + [anon_sym_TILDE] = ACTIONS(3785), + [anon_sym_LT] = ACTIONS(3785), + [anon_sym_lambda] = ACTIONS(3787), + [anon_sym_yield] = ACTIONS(3787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3785), + [anon_sym_None] = ACTIONS(3787), + [anon_sym_0x] = ACTIONS(3785), + [anon_sym_0X] = ACTIONS(3785), + [anon_sym_0o] = ACTIONS(3785), + [anon_sym_0O] = ACTIONS(3785), + [anon_sym_0b] = ACTIONS(3785), + [anon_sym_0B] = ACTIONS(3785), + [aux_sym_integer_token4] = ACTIONS(3787), + [sym_float] = ACTIONS(3785), + [anon_sym_await] = ACTIONS(3787), + [anon_sym_api] = ACTIONS(3787), + [sym_true] = ACTIONS(3787), + [sym_false] = ACTIONS(3787), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3787), + [anon_sym_include] = ACTIONS(3787), + [anon_sym_DEF] = ACTIONS(3787), + [anon_sym_IF] = ACTIONS(3787), + [anon_sym_cdef] = ACTIONS(3787), + [anon_sym_cpdef] = ACTIONS(3787), + [anon_sym_new] = ACTIONS(3787), + [anon_sym_ctypedef] = ACTIONS(3787), + [anon_sym_public] = ACTIONS(3787), + [anon_sym_packed] = ACTIONS(3787), + [anon_sym_inline] = ACTIONS(3787), + [anon_sym_readonly] = ACTIONS(3787), + [anon_sym_sizeof] = ACTIONS(3787), + [sym__dedent] = ACTIONS(3785), + [sym_string_start] = ACTIONS(3785), + }, + [1811] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1812] = { + [sym_identifier] = ACTIONS(3791), + [anon_sym_SEMI] = ACTIONS(3789), + [anon_sym_import] = ACTIONS(3791), + [anon_sym_cimport] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_LPAREN] = ACTIONS(3789), + [anon_sym_STAR] = ACTIONS(3789), + [anon_sym_print] = ACTIONS(3791), + [anon_sym_assert] = ACTIONS(3791), + [anon_sym_return] = ACTIONS(3791), + [anon_sym_del] = ACTIONS(3791), + [anon_sym_raise] = ACTIONS(3791), + [anon_sym_pass] = ACTIONS(3791), + [anon_sym_break] = ACTIONS(3791), + [anon_sym_continue] = ACTIONS(3791), + [anon_sym_if] = ACTIONS(3791), + [anon_sym_match] = ACTIONS(3791), + [anon_sym_async] = ACTIONS(3791), + [anon_sym_for] = ACTIONS(3791), + [anon_sym_while] = ACTIONS(3791), + [anon_sym_try] = ACTIONS(3791), + [anon_sym_with] = ACTIONS(3791), + [anon_sym_def] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_nonlocal] = ACTIONS(3791), + [anon_sym_exec] = ACTIONS(3791), + [anon_sym_type] = ACTIONS(3791), + [anon_sym_class] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(3789), + [anon_sym_AT] = ACTIONS(3789), + [anon_sym_DASH] = ACTIONS(3789), + [anon_sym_LBRACE] = ACTIONS(3789), + [anon_sym_PLUS] = ACTIONS(3789), + [anon_sym_not] = ACTIONS(3791), + [anon_sym_AMP] = ACTIONS(3789), + [anon_sym_TILDE] = ACTIONS(3789), + [anon_sym_LT] = ACTIONS(3789), + [anon_sym_lambda] = ACTIONS(3791), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3789), + [anon_sym_None] = ACTIONS(3791), + [anon_sym_0x] = ACTIONS(3789), + [anon_sym_0X] = ACTIONS(3789), + [anon_sym_0o] = ACTIONS(3789), + [anon_sym_0O] = ACTIONS(3789), + [anon_sym_0b] = ACTIONS(3789), + [anon_sym_0B] = ACTIONS(3789), + [aux_sym_integer_token4] = ACTIONS(3791), + [sym_float] = ACTIONS(3789), + [anon_sym_await] = ACTIONS(3791), + [anon_sym_api] = ACTIONS(3791), + [sym_true] = ACTIONS(3791), + [sym_false] = ACTIONS(3791), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3791), + [anon_sym_include] = ACTIONS(3791), + [anon_sym_DEF] = ACTIONS(3791), + [anon_sym_IF] = ACTIONS(3791), + [anon_sym_cdef] = ACTIONS(3791), + [anon_sym_cpdef] = ACTIONS(3791), + [anon_sym_new] = ACTIONS(3791), + [anon_sym_ctypedef] = ACTIONS(3791), + [anon_sym_public] = ACTIONS(3791), + [anon_sym_packed] = ACTIONS(3791), + [anon_sym_inline] = ACTIONS(3791), + [anon_sym_readonly] = ACTIONS(3791), + [anon_sym_sizeof] = ACTIONS(3791), + [sym__dedent] = ACTIONS(3789), + [sym_string_start] = ACTIONS(3789), + }, + [1813] = { + [ts_builtin_sym_end] = ACTIONS(3953), + [sym_identifier] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_import] = ACTIONS(3955), + [anon_sym_cimport] = ACTIONS(3955), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_print] = ACTIONS(3955), + [anon_sym_assert] = ACTIONS(3955), + [anon_sym_return] = ACTIONS(3955), + [anon_sym_del] = ACTIONS(3955), + [anon_sym_raise] = ACTIONS(3955), + [anon_sym_pass] = ACTIONS(3955), + [anon_sym_break] = ACTIONS(3955), + [anon_sym_continue] = ACTIONS(3955), + [anon_sym_if] = ACTIONS(3955), + [anon_sym_match] = ACTIONS(3955), + [anon_sym_async] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3955), + [anon_sym_while] = ACTIONS(3955), + [anon_sym_try] = ACTIONS(3955), + [anon_sym_with] = ACTIONS(3955), + [anon_sym_def] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_nonlocal] = ACTIONS(3955), + [anon_sym_exec] = ACTIONS(3955), + [anon_sym_type] = ACTIONS(3955), + [anon_sym_class] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_AT] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_not] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3953), + [anon_sym_lambda] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3953), + [anon_sym_None] = ACTIONS(3955), + [anon_sym_0x] = ACTIONS(3953), + [anon_sym_0X] = ACTIONS(3953), + [anon_sym_0o] = ACTIONS(3953), + [anon_sym_0O] = ACTIONS(3953), + [anon_sym_0b] = ACTIONS(3953), + [anon_sym_0B] = ACTIONS(3953), + [aux_sym_integer_token4] = ACTIONS(3955), + [sym_float] = ACTIONS(3953), + [anon_sym_await] = ACTIONS(3955), + [anon_sym_api] = ACTIONS(3955), + [sym_true] = ACTIONS(3955), + [sym_false] = ACTIONS(3955), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3955), + [anon_sym_include] = ACTIONS(3955), + [anon_sym_DEF] = ACTIONS(3955), + [anon_sym_IF] = ACTIONS(3955), + [anon_sym_cdef] = ACTIONS(3955), + [anon_sym_cpdef] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3955), + [anon_sym_ctypedef] = ACTIONS(3955), + [anon_sym_public] = ACTIONS(3955), + [anon_sym_packed] = ACTIONS(3955), + [anon_sym_inline] = ACTIONS(3955), + [anon_sym_readonly] = ACTIONS(3955), + [anon_sym_sizeof] = ACTIONS(3955), + [sym_string_start] = ACTIONS(3953), + }, + [1814] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5219), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1815] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5261), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1816] = { + [sym_named_expression] = STATE(3204), + [sym__named_expression_lhs] = STATE(6933), + [sym_list_splat_pattern] = STATE(3178), + [sym_as_pattern] = STATE(3204), + [sym_expression] = STATE(3061), + [sym_primary_expression] = STATE(2504), + [sym_not_operator] = STATE(3204), + [sym_boolean_operator] = STATE(3204), + [sym_binary_operator] = STATE(3183), + [sym_unary_operator] = STATE(3183), + [sym_comparison_operator] = STATE(3204), + [sym_lambda] = STATE(3204), + [sym_attribute] = STATE(3183), + [sym_subscript] = STATE(3183), + [sym_ellipsis] = STATE(3183), + [sym_call] = STATE(3183), + [sym_list] = STATE(3183), + [sym_set] = STATE(3183), + [sym_tuple] = STATE(3183), + [sym_dictionary] = STATE(3183), + [sym_list_comprehension] = STATE(3183), + [sym_dictionary_comprehension] = STATE(3183), + [sym_set_comprehension] = STATE(3183), + [sym_generator_expression] = STATE(3183), + [sym_parenthesized_expression] = STATE(3183), + [sym_conditional_expression] = STATE(3204), + [sym_concatenated_string] = STATE(3183), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3183), + [sym_none] = STATE(3183), + [sym_await] = STATE(3183), + [sym_new_expression] = STATE(3204), + [sym_sizeof_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [aux_sym_integer_repeat4] = STATE(2461), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_exec] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_lambda] = ACTIONS(3449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_None] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1646), + [anon_sym_0X] = ACTIONS(1646), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0O] = ACTIONS(1648), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0B] = ACTIONS(1650), + [aux_sym_integer_token4] = ACTIONS(1652), + [sym_float] = ACTIONS(1654), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_api] = ACTIONS(1790), + [sym_true] = ACTIONS(1658), + [sym_false] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_string_start] = ACTIONS(1674), + }, + [1817] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4304), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1818] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3951), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1819] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4608), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1820] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1821] = { + [ts_builtin_sym_end] = ACTIONS(3957), + [sym_identifier] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_import] = ACTIONS(3959), + [anon_sym_cimport] = ACTIONS(3959), + [anon_sym_from] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_print] = ACTIONS(3959), + [anon_sym_assert] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_del] = ACTIONS(3959), + [anon_sym_raise] = ACTIONS(3959), + [anon_sym_pass] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_match] = ACTIONS(3959), + [anon_sym_async] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_with] = ACTIONS(3959), + [anon_sym_def] = ACTIONS(3959), + [anon_sym_global] = ACTIONS(3959), + [anon_sym_nonlocal] = ACTIONS(3959), + [anon_sym_exec] = ACTIONS(3959), + [anon_sym_type] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_AT] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_not] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3957), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3957), + [anon_sym_None] = ACTIONS(3959), + [anon_sym_0x] = ACTIONS(3957), + [anon_sym_0X] = ACTIONS(3957), + [anon_sym_0o] = ACTIONS(3957), + [anon_sym_0O] = ACTIONS(3957), + [anon_sym_0b] = ACTIONS(3957), + [anon_sym_0B] = ACTIONS(3957), + [aux_sym_integer_token4] = ACTIONS(3959), + [sym_float] = ACTIONS(3957), + [anon_sym_await] = ACTIONS(3959), + [anon_sym_api] = ACTIONS(3959), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3959), + [anon_sym_include] = ACTIONS(3959), + [anon_sym_DEF] = ACTIONS(3959), + [anon_sym_IF] = ACTIONS(3959), + [anon_sym_cdef] = ACTIONS(3959), + [anon_sym_cpdef] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3959), + [anon_sym_ctypedef] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_packed] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym_readonly] = ACTIONS(3959), + [anon_sym_sizeof] = ACTIONS(3959), + [sym_string_start] = ACTIONS(3957), + }, + [1822] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6801), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2956), + [sym_primary_expression] = STATE(2580), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1823] = { + [ts_builtin_sym_end] = ACTIONS(3861), + [sym_identifier] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3861), + [anon_sym_import] = ACTIONS(3859), + [anon_sym_cimport] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3861), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_print] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_del] = ACTIONS(3859), + [anon_sym_raise] = ACTIONS(3859), + [anon_sym_pass] = ACTIONS(3859), + [anon_sym_break] = ACTIONS(3859), + [anon_sym_continue] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_async] = ACTIONS(3859), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3859), + [anon_sym_def] = ACTIONS(3859), + [anon_sym_global] = ACTIONS(3859), + [anon_sym_nonlocal] = ACTIONS(3859), + [anon_sym_exec] = ACTIONS(3859), + [anon_sym_type] = ACTIONS(3859), + [anon_sym_class] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_AT] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_PLUS] = ACTIONS(3861), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_lambda] = ACTIONS(3859), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3861), + [anon_sym_None] = ACTIONS(3859), + [anon_sym_0x] = ACTIONS(3861), + [anon_sym_0X] = ACTIONS(3861), + [anon_sym_0o] = ACTIONS(3861), + [anon_sym_0O] = ACTIONS(3861), + [anon_sym_0b] = ACTIONS(3861), + [anon_sym_0B] = ACTIONS(3861), + [aux_sym_integer_token4] = ACTIONS(3859), + [sym_float] = ACTIONS(3861), + [anon_sym_await] = ACTIONS(3859), + [anon_sym_api] = ACTIONS(3859), + [sym_true] = ACTIONS(3859), + [sym_false] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3859), + [anon_sym_include] = ACTIONS(3859), + [anon_sym_DEF] = ACTIONS(3859), + [anon_sym_IF] = ACTIONS(3859), + [anon_sym_cdef] = ACTIONS(3859), + [anon_sym_cpdef] = ACTIONS(3859), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_ctypedef] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3859), + [anon_sym_packed] = ACTIONS(3859), + [anon_sym_inline] = ACTIONS(3859), + [anon_sym_readonly] = ACTIONS(3859), + [anon_sym_sizeof] = ACTIONS(3859), + [sym_string_start] = ACTIONS(3861), + }, + [1824] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6825), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2956), + [sym_primary_expression] = STATE(2587), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1825] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4848), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1826] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6866), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(3176), + [sym_primary_expression] = STATE(2505), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1827] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4865), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1828] = { + [sym_named_expression] = STATE(2931), + [sym__named_expression_lhs] = STATE(6887), + [sym_list_splat_pattern] = STATE(2895), + [sym_as_pattern] = STATE(2931), + [sym_expression] = STATE(2852), + [sym_primary_expression] = STATE(2468), + [sym_not_operator] = STATE(2931), + [sym_boolean_operator] = STATE(2931), + [sym_binary_operator] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_comparison_operator] = STATE(2931), + [sym_lambda] = STATE(2931), + [sym_attribute] = STATE(2897), + [sym_subscript] = STATE(2897), + [sym_ellipsis] = STATE(2897), + [sym_call] = STATE(2897), + [sym_list] = STATE(2897), + [sym_set] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_dictionary] = STATE(2897), + [sym_list_comprehension] = STATE(2897), + [sym_dictionary_comprehension] = STATE(2897), + [sym_set_comprehension] = STATE(2897), + [sym_generator_expression] = STATE(2897), + [sym_parenthesized_expression] = STATE(2897), + [sym_conditional_expression] = STATE(2931), + [sym_concatenated_string] = STATE(2897), + [sym_string] = STATE(2557), + [sym_integer] = STATE(2897), + [sym_none] = STATE(2897), + [sym_await] = STATE(2897), + [sym_new_expression] = STATE(2931), + [sym_sizeof_expression] = STATE(2897), + [sym_cast_expression] = STATE(2897), + [aux_sym_integer_repeat4] = STATE(2455), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1865), + [anon_sym_0x] = ACTIONS(1867), + [anon_sym_0X] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0O] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0B] = ACTIONS(1871), + [aux_sym_integer_token4] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1881), + }, + [1829] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4304), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1830] = { + [sym_named_expression] = STATE(2844), + [sym__named_expression_lhs] = STATE(6945), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(2844), + [sym_expression] = STATE(2847), + [sym_primary_expression] = STATE(2469), + [sym_not_operator] = STATE(2844), + [sym_boolean_operator] = STATE(2844), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(2844), + [sym_lambda] = STATE(2844), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1831] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6985), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(3357), + [sym_primary_expression] = STATE(2661), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1832] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6600), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(3233), + [sym_primary_expression] = STATE(2522), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1833] = { + [sym_named_expression] = STATE(2953), + [sym__named_expression_lhs] = STATE(6626), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(2953), + [sym_expression] = STATE(2956), + [sym_primary_expression] = STATE(2777), + [sym_not_operator] = STATE(2953), + [sym_boolean_operator] = STATE(2953), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(2953), + [sym_lambda] = STATE(2953), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(2953), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(2953), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1834] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6639), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2516), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1835] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4853), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1836] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4899), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1837] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4302), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1838] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5465), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1839] = { + [sym_identifier] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_import] = ACTIONS(3959), + [anon_sym_cimport] = ACTIONS(3959), + [anon_sym_from] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_print] = ACTIONS(3959), + [anon_sym_assert] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_del] = ACTIONS(3959), + [anon_sym_raise] = ACTIONS(3959), + [anon_sym_pass] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_match] = ACTIONS(3959), + [anon_sym_async] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_with] = ACTIONS(3959), + [anon_sym_def] = ACTIONS(3959), + [anon_sym_global] = ACTIONS(3959), + [anon_sym_nonlocal] = ACTIONS(3959), + [anon_sym_exec] = ACTIONS(3959), + [anon_sym_type] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_AT] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_not] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3957), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3957), + [anon_sym_None] = ACTIONS(3959), + [anon_sym_0x] = ACTIONS(3957), + [anon_sym_0X] = ACTIONS(3957), + [anon_sym_0o] = ACTIONS(3957), + [anon_sym_0O] = ACTIONS(3957), + [anon_sym_0b] = ACTIONS(3957), + [anon_sym_0B] = ACTIONS(3957), + [aux_sym_integer_token4] = ACTIONS(3959), + [sym_float] = ACTIONS(3957), + [anon_sym_await] = ACTIONS(3959), + [anon_sym_api] = ACTIONS(3959), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3959), + [anon_sym_include] = ACTIONS(3959), + [anon_sym_DEF] = ACTIONS(3959), + [anon_sym_IF] = ACTIONS(3959), + [anon_sym_cdef] = ACTIONS(3959), + [anon_sym_cpdef] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3959), + [anon_sym_ctypedef] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_packed] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym_readonly] = ACTIONS(3959), + [anon_sym_sizeof] = ACTIONS(3959), + [sym__dedent] = ACTIONS(3957), + [sym_string_start] = ACTIONS(3957), + }, + [1840] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5162), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1841] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4904), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1842] = { + [ts_builtin_sym_end] = ACTIONS(3865), + [sym_identifier] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3865), + [anon_sym_import] = ACTIONS(3863), + [anon_sym_cimport] = ACTIONS(3863), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_STAR] = ACTIONS(3865), + [anon_sym_print] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_del] = ACTIONS(3863), + [anon_sym_raise] = ACTIONS(3863), + [anon_sym_pass] = ACTIONS(3863), + [anon_sym_break] = ACTIONS(3863), + [anon_sym_continue] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_async] = ACTIONS(3863), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + [anon_sym_def] = ACTIONS(3863), + [anon_sym_global] = ACTIONS(3863), + [anon_sym_nonlocal] = ACTIONS(3863), + [anon_sym_exec] = ACTIONS(3863), + [anon_sym_type] = ACTIONS(3863), + [anon_sym_class] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3865), + [anon_sym_AT] = ACTIONS(3865), + [anon_sym_DASH] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3865), + [anon_sym_PLUS] = ACTIONS(3865), + [anon_sym_not] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3865), + [anon_sym_TILDE] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_lambda] = ACTIONS(3863), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3865), + [anon_sym_None] = ACTIONS(3863), + [anon_sym_0x] = ACTIONS(3865), + [anon_sym_0X] = ACTIONS(3865), + [anon_sym_0o] = ACTIONS(3865), + [anon_sym_0O] = ACTIONS(3865), + [anon_sym_0b] = ACTIONS(3865), + [anon_sym_0B] = ACTIONS(3865), + [aux_sym_integer_token4] = ACTIONS(3863), + [sym_float] = ACTIONS(3865), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(3863), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3863), + [anon_sym_include] = ACTIONS(3863), + [anon_sym_DEF] = ACTIONS(3863), + [anon_sym_IF] = ACTIONS(3863), + [anon_sym_cdef] = ACTIONS(3863), + [anon_sym_cpdef] = ACTIONS(3863), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_ctypedef] = ACTIONS(3863), + [anon_sym_public] = ACTIONS(3863), + [anon_sym_packed] = ACTIONS(3863), + [anon_sym_inline] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3863), + [anon_sym_sizeof] = ACTIONS(3863), + [sym_string_start] = ACTIONS(3865), + }, + [1843] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5478), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1844] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5123), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1845] = { + [ts_builtin_sym_end] = ACTIONS(3057), + [sym_identifier] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym_import] = ACTIONS(3055), + [anon_sym_cimport] = ACTIONS(3055), + [anon_sym_from] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_print] = ACTIONS(3055), + [anon_sym_assert] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_del] = ACTIONS(3055), + [anon_sym_raise] = ACTIONS(3055), + [anon_sym_pass] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_async] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_while] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3055), + [anon_sym_with] = ACTIONS(3055), + [anon_sym_def] = ACTIONS(3055), + [anon_sym_global] = ACTIONS(3055), + [anon_sym_nonlocal] = ACTIONS(3055), + [anon_sym_exec] = ACTIONS(3055), + [anon_sym_type] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_AT] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_not] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_lambda] = ACTIONS(3055), + [anon_sym_yield] = ACTIONS(3055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3057), + [anon_sym_None] = ACTIONS(3055), + [anon_sym_0x] = ACTIONS(3057), + [anon_sym_0X] = ACTIONS(3057), + [anon_sym_0o] = ACTIONS(3057), + [anon_sym_0O] = ACTIONS(3057), + [anon_sym_0b] = ACTIONS(3057), + [anon_sym_0B] = ACTIONS(3057), + [aux_sym_integer_token4] = ACTIONS(3055), + [sym_float] = ACTIONS(3057), + [anon_sym_await] = ACTIONS(3055), + [anon_sym_api] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3055), + [anon_sym_include] = ACTIONS(3055), + [anon_sym_DEF] = ACTIONS(3055), + [anon_sym_IF] = ACTIONS(3055), + [anon_sym_cdef] = ACTIONS(3055), + [anon_sym_cpdef] = ACTIONS(3055), + [anon_sym_new] = ACTIONS(3055), + [anon_sym_ctypedef] = ACTIONS(3055), + [anon_sym_public] = ACTIONS(3055), + [anon_sym_packed] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_sizeof] = ACTIONS(3055), + [sym_string_start] = ACTIONS(3057), + }, + [1846] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5169), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1847] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5149), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1848] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5150), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1849] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4969), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1850] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1851] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5077), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1852] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5086), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1853] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5087), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1854] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5088), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1855] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5136), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1856] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5137), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1857] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5138), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1858] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5139), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1859] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5142), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1860] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4934), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1861] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4936), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1862] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4937), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1863] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4938), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1864] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4939), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1865] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6641), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5106), + [sym_primary_expression] = STATE(2519), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1866] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5393), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1867] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6656), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2892), + [sym_primary_expression] = STATE(2470), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1868] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4875), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1869] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4946), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1870] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4998), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1871] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4999), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1872] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5013), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1873] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5016), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1874] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5017), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1875] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5043), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1876] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5045), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1877] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5046), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1878] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5064), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1879] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5065), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1880] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5066), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1881] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5067), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1882] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5068), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1883] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5081), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1884] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5082), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1885] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5083), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1886] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5084), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1887] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5094), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1888] = { + [ts_builtin_sym_end] = ACTIONS(3869), + [sym_identifier] = ACTIONS(3867), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_import] = ACTIONS(3867), + [anon_sym_cimport] = ACTIONS(3867), + [anon_sym_from] = ACTIONS(3867), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(3867), + [anon_sym_assert] = ACTIONS(3867), + [anon_sym_return] = ACTIONS(3867), + [anon_sym_del] = ACTIONS(3867), + [anon_sym_raise] = ACTIONS(3867), + [anon_sym_pass] = ACTIONS(3867), + [anon_sym_break] = ACTIONS(3867), + [anon_sym_continue] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(3867), + [anon_sym_match] = ACTIONS(3867), + [anon_sym_async] = ACTIONS(3867), + [anon_sym_for] = ACTIONS(3867), + [anon_sym_while] = ACTIONS(3867), + [anon_sym_try] = ACTIONS(3867), + [anon_sym_with] = ACTIONS(3867), + [anon_sym_def] = ACTIONS(3867), + [anon_sym_global] = ACTIONS(3867), + [anon_sym_nonlocal] = ACTIONS(3867), + [anon_sym_exec] = ACTIONS(3867), + [anon_sym_type] = ACTIONS(3867), + [anon_sym_class] = ACTIONS(3867), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_AT] = ACTIONS(3869), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3869), + [anon_sym_not] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_TILDE] = ACTIONS(3869), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_yield] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3869), + [anon_sym_None] = ACTIONS(3867), + [anon_sym_0x] = ACTIONS(3869), + [anon_sym_0X] = ACTIONS(3869), + [anon_sym_0o] = ACTIONS(3869), + [anon_sym_0O] = ACTIONS(3869), + [anon_sym_0b] = ACTIONS(3869), + [anon_sym_0B] = ACTIONS(3869), + [aux_sym_integer_token4] = ACTIONS(3867), + [sym_float] = ACTIONS(3869), + [anon_sym_await] = ACTIONS(3867), + [anon_sym_api] = ACTIONS(3867), + [sym_true] = ACTIONS(3867), + [sym_false] = ACTIONS(3867), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3867), + [anon_sym_include] = ACTIONS(3867), + [anon_sym_DEF] = ACTIONS(3867), + [anon_sym_IF] = ACTIONS(3867), + [anon_sym_cdef] = ACTIONS(3867), + [anon_sym_cpdef] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3867), + [anon_sym_ctypedef] = ACTIONS(3867), + [anon_sym_public] = ACTIONS(3867), + [anon_sym_packed] = ACTIONS(3867), + [anon_sym_inline] = ACTIONS(3867), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_sizeof] = ACTIONS(3867), + [sym_string_start] = ACTIONS(3869), + }, + [1889] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5321), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1890] = { + [ts_builtin_sym_end] = ACTIONS(3961), + [sym_identifier] = ACTIONS(3963), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_import] = ACTIONS(3963), + [anon_sym_cimport] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_print] = ACTIONS(3963), + [anon_sym_assert] = ACTIONS(3963), + [anon_sym_return] = ACTIONS(3963), + [anon_sym_del] = ACTIONS(3963), + [anon_sym_raise] = ACTIONS(3963), + [anon_sym_pass] = ACTIONS(3963), + [anon_sym_break] = ACTIONS(3963), + [anon_sym_continue] = ACTIONS(3963), + [anon_sym_if] = ACTIONS(3963), + [anon_sym_match] = ACTIONS(3963), + [anon_sym_async] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3963), + [anon_sym_while] = ACTIONS(3963), + [anon_sym_try] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [anon_sym_def] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3963), + [anon_sym_nonlocal] = ACTIONS(3963), + [anon_sym_exec] = ACTIONS(3963), + [anon_sym_type] = ACTIONS(3963), + [anon_sym_class] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_AT] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_not] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_lambda] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3961), + [anon_sym_None] = ACTIONS(3963), + [anon_sym_0x] = ACTIONS(3961), + [anon_sym_0X] = ACTIONS(3961), + [anon_sym_0o] = ACTIONS(3961), + [anon_sym_0O] = ACTIONS(3961), + [anon_sym_0b] = ACTIONS(3961), + [anon_sym_0B] = ACTIONS(3961), + [aux_sym_integer_token4] = ACTIONS(3963), + [sym_float] = ACTIONS(3961), + [anon_sym_await] = ACTIONS(3963), + [anon_sym_api] = ACTIONS(3963), + [sym_true] = ACTIONS(3963), + [sym_false] = ACTIONS(3963), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3963), + [anon_sym_include] = ACTIONS(3963), + [anon_sym_DEF] = ACTIONS(3963), + [anon_sym_IF] = ACTIONS(3963), + [anon_sym_cdef] = ACTIONS(3963), + [anon_sym_cpdef] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3963), + [anon_sym_ctypedef] = ACTIONS(3963), + [anon_sym_public] = ACTIONS(3963), + [anon_sym_packed] = ACTIONS(3963), + [anon_sym_inline] = ACTIONS(3963), + [anon_sym_readonly] = ACTIONS(3963), + [anon_sym_sizeof] = ACTIONS(3963), + [sym_string_start] = ACTIONS(3961), + }, + [1891] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5141), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1892] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4941), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1893] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4942), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1894] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(4953), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1895] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4957), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1896] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4958), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1897] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4970), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1898] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4971), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1899] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4972), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1900] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4981), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1901] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4982), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1902] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4983), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1903] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4984), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1904] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4985), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1905] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4989), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1906] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4990), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1907] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4991), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1908] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4992), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1909] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4994), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1910] = { + [ts_builtin_sym_end] = ACTIONS(3873), + [sym_identifier] = ACTIONS(3871), + [anon_sym_SEMI] = ACTIONS(3873), + [anon_sym_import] = ACTIONS(3871), + [anon_sym_cimport] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3873), + [anon_sym_STAR] = ACTIONS(3873), + [anon_sym_print] = ACTIONS(3871), + [anon_sym_assert] = ACTIONS(3871), + [anon_sym_return] = ACTIONS(3871), + [anon_sym_del] = ACTIONS(3871), + [anon_sym_raise] = ACTIONS(3871), + [anon_sym_pass] = ACTIONS(3871), + [anon_sym_break] = ACTIONS(3871), + [anon_sym_continue] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(3871), + [anon_sym_match] = ACTIONS(3871), + [anon_sym_async] = ACTIONS(3871), + [anon_sym_for] = ACTIONS(3871), + [anon_sym_while] = ACTIONS(3871), + [anon_sym_try] = ACTIONS(3871), + [anon_sym_with] = ACTIONS(3871), + [anon_sym_def] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_nonlocal] = ACTIONS(3871), + [anon_sym_exec] = ACTIONS(3871), + [anon_sym_type] = ACTIONS(3871), + [anon_sym_class] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_AT] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3873), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3873), + [anon_sym_None] = ACTIONS(3871), + [anon_sym_0x] = ACTIONS(3873), + [anon_sym_0X] = ACTIONS(3873), + [anon_sym_0o] = ACTIONS(3873), + [anon_sym_0O] = ACTIONS(3873), + [anon_sym_0b] = ACTIONS(3873), + [anon_sym_0B] = ACTIONS(3873), + [aux_sym_integer_token4] = ACTIONS(3871), + [sym_float] = ACTIONS(3873), + [anon_sym_await] = ACTIONS(3871), + [anon_sym_api] = ACTIONS(3871), + [sym_true] = ACTIONS(3871), + [sym_false] = ACTIONS(3871), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3871), + [anon_sym_include] = ACTIONS(3871), + [anon_sym_DEF] = ACTIONS(3871), + [anon_sym_IF] = ACTIONS(3871), + [anon_sym_cdef] = ACTIONS(3871), + [anon_sym_cpdef] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3871), + [anon_sym_ctypedef] = ACTIONS(3871), + [anon_sym_public] = ACTIONS(3871), + [anon_sym_packed] = ACTIONS(3871), + [anon_sym_inline] = ACTIONS(3871), + [anon_sym_readonly] = ACTIONS(3871), + [anon_sym_sizeof] = ACTIONS(3871), + [sym_string_start] = ACTIONS(3873), + }, + [1911] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5461), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1912] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4877), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1913] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5014), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1914] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4024), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1915] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5501), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1916] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3952), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1917] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5027), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [1918] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1919] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5308), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1920] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4878), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1921] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4832), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1922] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5327), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1923] = { + [sym_named_expression] = STATE(3065), + [sym__named_expression_lhs] = STATE(6965), + [sym_list_splat_pattern] = STATE(3221), + [sym_as_pattern] = STATE(3065), + [sym_expression] = STATE(4987), + [sym_primary_expression] = STATE(2485), + [sym_not_operator] = STATE(3065), + [sym_boolean_operator] = STATE(3065), + [sym_binary_operator] = STATE(3062), + [sym_unary_operator] = STATE(3062), + [sym_comparison_operator] = STATE(3065), + [sym_lambda] = STATE(3065), + [sym_attribute] = STATE(3062), + [sym_subscript] = STATE(3062), + [sym_ellipsis] = STATE(3062), + [sym_call] = STATE(3062), + [sym_list] = STATE(3062), + [sym_set] = STATE(3062), + [sym_tuple] = STATE(3062), + [sym_dictionary] = STATE(3062), + [sym_list_comprehension] = STATE(3062), + [sym_dictionary_comprehension] = STATE(3062), + [sym_set_comprehension] = STATE(3062), + [sym_generator_expression] = STATE(3062), + [sym_parenthesized_expression] = STATE(3062), + [sym_conditional_expression] = STATE(3065), + [sym_concatenated_string] = STATE(3062), + [sym_string] = STATE(2698), + [sym_integer] = STATE(3062), + [sym_none] = STATE(3062), + [sym_await] = STATE(3062), + [sym_new_expression] = STATE(3065), + [sym_sizeof_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [aux_sym_integer_repeat4] = STATE(2459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1949), + [anon_sym_0X] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0O] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0B] = ACTIONS(1953), + [aux_sym_integer_token4] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1963), + }, + [1924] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5338), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1925] = { + [ts_builtin_sym_end] = ACTIONS(3847), + [sym_identifier] = ACTIONS(3845), + [anon_sym_SEMI] = ACTIONS(3847), + [anon_sym_import] = ACTIONS(3845), + [anon_sym_cimport] = ACTIONS(3845), + [anon_sym_from] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_print] = ACTIONS(3845), + [anon_sym_assert] = ACTIONS(3845), + [anon_sym_return] = ACTIONS(3845), + [anon_sym_del] = ACTIONS(3845), + [anon_sym_raise] = ACTIONS(3845), + [anon_sym_pass] = ACTIONS(3845), + [anon_sym_break] = ACTIONS(3845), + [anon_sym_continue] = ACTIONS(3845), + [anon_sym_if] = ACTIONS(3845), + [anon_sym_match] = ACTIONS(3845), + [anon_sym_async] = ACTIONS(3845), + [anon_sym_for] = ACTIONS(3845), + [anon_sym_while] = ACTIONS(3845), + [anon_sym_try] = ACTIONS(3845), + [anon_sym_with] = ACTIONS(3845), + [anon_sym_def] = ACTIONS(3845), + [anon_sym_global] = ACTIONS(3845), + [anon_sym_nonlocal] = ACTIONS(3845), + [anon_sym_exec] = ACTIONS(3845), + [anon_sym_type] = ACTIONS(3845), + [anon_sym_class] = ACTIONS(3845), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_AT] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_not] = ACTIONS(3845), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3847), + [anon_sym_lambda] = ACTIONS(3845), + [anon_sym_yield] = ACTIONS(3845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3847), + [anon_sym_None] = ACTIONS(3845), + [anon_sym_0x] = ACTIONS(3847), + [anon_sym_0X] = ACTIONS(3847), + [anon_sym_0o] = ACTIONS(3847), + [anon_sym_0O] = ACTIONS(3847), + [anon_sym_0b] = ACTIONS(3847), + [anon_sym_0B] = ACTIONS(3847), + [aux_sym_integer_token4] = ACTIONS(3845), + [sym_float] = ACTIONS(3847), + [anon_sym_await] = ACTIONS(3845), + [anon_sym_api] = ACTIONS(3845), + [sym_true] = ACTIONS(3845), + [sym_false] = ACTIONS(3845), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3845), + [anon_sym_include] = ACTIONS(3845), + [anon_sym_DEF] = ACTIONS(3845), + [anon_sym_IF] = ACTIONS(3845), + [anon_sym_cdef] = ACTIONS(3845), + [anon_sym_cpdef] = ACTIONS(3845), + [anon_sym_new] = ACTIONS(3845), + [anon_sym_ctypedef] = ACTIONS(3845), + [anon_sym_public] = ACTIONS(3845), + [anon_sym_packed] = ACTIONS(3845), + [anon_sym_inline] = ACTIONS(3845), + [anon_sym_readonly] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3845), + [sym_string_start] = ACTIONS(3847), + }, + [1926] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5352), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1927] = { + [ts_builtin_sym_end] = ACTIONS(3083), + [sym_identifier] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3083), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_cimport] = ACTIONS(3081), + [anon_sym_from] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3083), + [anon_sym_print] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_del] = ACTIONS(3081), + [anon_sym_raise] = ACTIONS(3081), + [anon_sym_pass] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_def] = ACTIONS(3081), + [anon_sym_global] = ACTIONS(3081), + [anon_sym_nonlocal] = ACTIONS(3081), + [anon_sym_exec] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_AT] = ACTIONS(3083), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_TILDE] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_lambda] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), + [anon_sym_None] = ACTIONS(3081), + [anon_sym_0x] = ACTIONS(3083), + [anon_sym_0X] = ACTIONS(3083), + [anon_sym_0o] = ACTIONS(3083), + [anon_sym_0O] = ACTIONS(3083), + [anon_sym_0b] = ACTIONS(3083), + [anon_sym_0B] = ACTIONS(3083), + [aux_sym_integer_token4] = ACTIONS(3081), + [sym_float] = ACTIONS(3083), + [anon_sym_await] = ACTIONS(3081), + [anon_sym_api] = ACTIONS(3081), + [sym_true] = ACTIONS(3081), + [sym_false] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3081), + [anon_sym_include] = ACTIONS(3081), + [anon_sym_DEF] = ACTIONS(3081), + [anon_sym_IF] = ACTIONS(3081), + [anon_sym_cdef] = ACTIONS(3081), + [anon_sym_cpdef] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_ctypedef] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_packed] = ACTIONS(3081), + [anon_sym_inline] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3081), + [sym_string_start] = ACTIONS(3083), + }, + [1928] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5359), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1929] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5259), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1930] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5371), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1931] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5510), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1932] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5376), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1933] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5380), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1934] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5382), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1935] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5387), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1936] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5388), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1937] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5390), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1938] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5392), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1939] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5395), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1940] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5396), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1941] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5400), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1942] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5401), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1943] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5403), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1944] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5408), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1945] = { + [sym_identifier] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_import] = ACTIONS(3061), + [anon_sym_cimport] = ACTIONS(3061), + [anon_sym_from] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_print] = ACTIONS(3061), + [anon_sym_assert] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_del] = ACTIONS(3061), + [anon_sym_raise] = ACTIONS(3061), + [anon_sym_pass] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_def] = ACTIONS(3061), + [anon_sym_global] = ACTIONS(3061), + [anon_sym_nonlocal] = ACTIONS(3061), + [anon_sym_exec] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_class] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_AT] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_not] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_lambda] = ACTIONS(3061), + [anon_sym_yield] = ACTIONS(3061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), + [anon_sym_None] = ACTIONS(3061), + [anon_sym_0x] = ACTIONS(3059), + [anon_sym_0X] = ACTIONS(3059), + [anon_sym_0o] = ACTIONS(3059), + [anon_sym_0O] = ACTIONS(3059), + [anon_sym_0b] = ACTIONS(3059), + [anon_sym_0B] = ACTIONS(3059), + [aux_sym_integer_token4] = ACTIONS(3061), + [sym_float] = ACTIONS(3059), + [anon_sym_await] = ACTIONS(3061), + [anon_sym_api] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3061), + [anon_sym_include] = ACTIONS(3061), + [anon_sym_DEF] = ACTIONS(3061), + [anon_sym_IF] = ACTIONS(3061), + [anon_sym_cdef] = ACTIONS(3061), + [anon_sym_cpdef] = ACTIONS(3061), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_ctypedef] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_packed] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_readonly] = ACTIONS(3061), + [anon_sym_sizeof] = ACTIONS(3061), + [sym__dedent] = ACTIONS(3059), + [sym_string_start] = ACTIONS(3059), + }, + [1946] = { + [sym_identifier] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3087), + [anon_sym_cimport] = ACTIONS(3087), + [anon_sym_from] = ACTIONS(3087), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_print] = ACTIONS(3087), + [anon_sym_assert] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_del] = ACTIONS(3087), + [anon_sym_raise] = ACTIONS(3087), + [anon_sym_pass] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_match] = ACTIONS(3087), + [anon_sym_async] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_with] = ACTIONS(3087), + [anon_sym_def] = ACTIONS(3087), + [anon_sym_global] = ACTIONS(3087), + [anon_sym_nonlocal] = ACTIONS(3087), + [anon_sym_exec] = ACTIONS(3087), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_AT] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_lambda] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [anon_sym_None] = ACTIONS(3087), + [anon_sym_0x] = ACTIONS(3085), + [anon_sym_0X] = ACTIONS(3085), + [anon_sym_0o] = ACTIONS(3085), + [anon_sym_0O] = ACTIONS(3085), + [anon_sym_0b] = ACTIONS(3085), + [anon_sym_0B] = ACTIONS(3085), + [aux_sym_integer_token4] = ACTIONS(3087), + [sym_float] = ACTIONS(3085), + [anon_sym_await] = ACTIONS(3087), + [anon_sym_api] = ACTIONS(3087), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3087), + [anon_sym_include] = ACTIONS(3087), + [anon_sym_DEF] = ACTIONS(3087), + [anon_sym_IF] = ACTIONS(3087), + [anon_sym_cdef] = ACTIONS(3087), + [anon_sym_cpdef] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_ctypedef] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_packed] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3087), + [sym__dedent] = ACTIONS(3085), + [sym_string_start] = ACTIONS(3085), + }, + [1947] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5410), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1948] = { + [ts_builtin_sym_end] = ACTIONS(3905), + [sym_identifier] = ACTIONS(3903), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_import] = ACTIONS(3903), + [anon_sym_cimport] = ACTIONS(3903), + [anon_sym_from] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3905), + [anon_sym_print] = ACTIONS(3903), + [anon_sym_assert] = ACTIONS(3903), + [anon_sym_return] = ACTIONS(3903), + [anon_sym_del] = ACTIONS(3903), + [anon_sym_raise] = ACTIONS(3903), + [anon_sym_pass] = ACTIONS(3903), + [anon_sym_break] = ACTIONS(3903), + [anon_sym_continue] = ACTIONS(3903), + [anon_sym_if] = ACTIONS(3903), + [anon_sym_match] = ACTIONS(3903), + [anon_sym_async] = ACTIONS(3903), + [anon_sym_for] = ACTIONS(3903), + [anon_sym_while] = ACTIONS(3903), + [anon_sym_try] = ACTIONS(3903), + [anon_sym_with] = ACTIONS(3903), + [anon_sym_def] = ACTIONS(3903), + [anon_sym_global] = ACTIONS(3903), + [anon_sym_nonlocal] = ACTIONS(3903), + [anon_sym_exec] = ACTIONS(3903), + [anon_sym_type] = ACTIONS(3903), + [anon_sym_class] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(3905), + [anon_sym_AT] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_LBRACE] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_not] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_TILDE] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_yield] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3905), + [anon_sym_None] = ACTIONS(3903), + [anon_sym_0x] = ACTIONS(3905), + [anon_sym_0X] = ACTIONS(3905), + [anon_sym_0o] = ACTIONS(3905), + [anon_sym_0O] = ACTIONS(3905), + [anon_sym_0b] = ACTIONS(3905), + [anon_sym_0B] = ACTIONS(3905), + [aux_sym_integer_token4] = ACTIONS(3903), + [sym_float] = ACTIONS(3905), + [anon_sym_await] = ACTIONS(3903), + [anon_sym_api] = ACTIONS(3903), + [sym_true] = ACTIONS(3903), + [sym_false] = ACTIONS(3903), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3903), + [anon_sym_include] = ACTIONS(3903), + [anon_sym_DEF] = ACTIONS(3903), + [anon_sym_IF] = ACTIONS(3903), + [anon_sym_cdef] = ACTIONS(3903), + [anon_sym_cpdef] = ACTIONS(3903), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_ctypedef] = ACTIONS(3903), + [anon_sym_public] = ACTIONS(3903), + [anon_sym_packed] = ACTIONS(3903), + [anon_sym_inline] = ACTIONS(3903), + [anon_sym_readonly] = ACTIONS(3903), + [anon_sym_sizeof] = ACTIONS(3903), + [sym_string_start] = ACTIONS(3905), + }, + [1949] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5412), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1950] = { + [sym_identifier] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3125), + [anon_sym_cimport] = ACTIONS(3125), + [anon_sym_from] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_STAR] = ACTIONS(3123), + [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_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(3123), + [anon_sym_AT] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_not] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_lambda] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), + [anon_sym_None] = ACTIONS(3125), + [anon_sym_0x] = ACTIONS(3123), + [anon_sym_0X] = ACTIONS(3123), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0O] = ACTIONS(3123), + [anon_sym_0b] = ACTIONS(3123), + [anon_sym_0B] = ACTIONS(3123), + [aux_sym_integer_token4] = ACTIONS(3125), + [sym_float] = ACTIONS(3123), + [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(3123), + [sym_string_start] = ACTIONS(3123), + }, + [1951] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4777), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1952] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5420), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1953] = { + [ts_builtin_sym_end] = ACTIONS(3121), + [sym_identifier] = ACTIONS(3119), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym_import] = ACTIONS(3119), + [anon_sym_cimport] = ACTIONS(3119), + [anon_sym_from] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3121), + [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_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_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(3121), + [anon_sym_AT] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_lambda] = ACTIONS(3119), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [anon_sym_None] = ACTIONS(3119), + [anon_sym_0x] = ACTIONS(3121), + [anon_sym_0X] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0O] = ACTIONS(3121), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0B] = ACTIONS(3121), + [aux_sym_integer_token4] = ACTIONS(3119), + [sym_float] = ACTIONS(3121), + [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_IF] = 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(3121), + }, + [1954] = { + [sym_named_expression] = STATE(2593), + [sym__named_expression_lhs] = STATE(6774), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(2593), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(2489), + [sym_not_operator] = STATE(2593), + [sym_boolean_operator] = STATE(2593), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(2593), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1955] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_from] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1000), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1956] = { + [ts_builtin_sym_end] = ACTIONS(3877), + [sym_identifier] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3877), + [anon_sym_import] = ACTIONS(3875), + [anon_sym_cimport] = ACTIONS(3875), + [anon_sym_from] = ACTIONS(3875), + [anon_sym_LPAREN] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3877), + [anon_sym_print] = ACTIONS(3875), + [anon_sym_assert] = ACTIONS(3875), + [anon_sym_return] = ACTIONS(3875), + [anon_sym_del] = ACTIONS(3875), + [anon_sym_raise] = ACTIONS(3875), + [anon_sym_pass] = ACTIONS(3875), + [anon_sym_break] = ACTIONS(3875), + [anon_sym_continue] = ACTIONS(3875), + [anon_sym_if] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(3875), + [anon_sym_async] = ACTIONS(3875), + [anon_sym_for] = ACTIONS(3875), + [anon_sym_while] = ACTIONS(3875), + [anon_sym_try] = ACTIONS(3875), + [anon_sym_with] = ACTIONS(3875), + [anon_sym_def] = ACTIONS(3875), + [anon_sym_global] = ACTIONS(3875), + [anon_sym_nonlocal] = ACTIONS(3875), + [anon_sym_exec] = ACTIONS(3875), + [anon_sym_type] = ACTIONS(3875), + [anon_sym_class] = ACTIONS(3875), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_AT] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_LT] = ACTIONS(3877), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_yield] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3877), + [anon_sym_None] = ACTIONS(3875), + [anon_sym_0x] = ACTIONS(3877), + [anon_sym_0X] = ACTIONS(3877), + [anon_sym_0o] = ACTIONS(3877), + [anon_sym_0O] = ACTIONS(3877), + [anon_sym_0b] = ACTIONS(3877), + [anon_sym_0B] = ACTIONS(3877), + [aux_sym_integer_token4] = ACTIONS(3875), + [sym_float] = ACTIONS(3877), + [anon_sym_await] = ACTIONS(3875), + [anon_sym_api] = ACTIONS(3875), + [sym_true] = ACTIONS(3875), + [sym_false] = ACTIONS(3875), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3875), + [anon_sym_include] = ACTIONS(3875), + [anon_sym_DEF] = ACTIONS(3875), + [anon_sym_IF] = ACTIONS(3875), + [anon_sym_cdef] = ACTIONS(3875), + [anon_sym_cpdef] = ACTIONS(3875), + [anon_sym_new] = ACTIONS(3875), + [anon_sym_ctypedef] = ACTIONS(3875), + [anon_sym_public] = ACTIONS(3875), + [anon_sym_packed] = ACTIONS(3875), + [anon_sym_inline] = ACTIONS(3875), + [anon_sym_readonly] = ACTIONS(3875), + [anon_sym_sizeof] = ACTIONS(3875), + [sym_string_start] = ACTIONS(3877), + }, + [1957] = { + [ts_builtin_sym_end] = ACTIONS(3909), + [sym_identifier] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_import] = ACTIONS(3907), + [anon_sym_cimport] = ACTIONS(3907), + [anon_sym_from] = ACTIONS(3907), + [anon_sym_LPAREN] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3909), + [anon_sym_print] = ACTIONS(3907), + [anon_sym_assert] = ACTIONS(3907), + [anon_sym_return] = ACTIONS(3907), + [anon_sym_del] = ACTIONS(3907), + [anon_sym_raise] = ACTIONS(3907), + [anon_sym_pass] = ACTIONS(3907), + [anon_sym_break] = ACTIONS(3907), + [anon_sym_continue] = ACTIONS(3907), + [anon_sym_if] = ACTIONS(3907), + [anon_sym_match] = ACTIONS(3907), + [anon_sym_async] = ACTIONS(3907), + [anon_sym_for] = ACTIONS(3907), + [anon_sym_while] = ACTIONS(3907), + [anon_sym_try] = ACTIONS(3907), + [anon_sym_with] = ACTIONS(3907), + [anon_sym_def] = ACTIONS(3907), + [anon_sym_global] = ACTIONS(3907), + [anon_sym_nonlocal] = ACTIONS(3907), + [anon_sym_exec] = ACTIONS(3907), + [anon_sym_type] = ACTIONS(3907), + [anon_sym_class] = ACTIONS(3907), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_AT] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_not] = ACTIONS(3907), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_TILDE] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_yield] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3909), + [anon_sym_None] = ACTIONS(3907), + [anon_sym_0x] = ACTIONS(3909), + [anon_sym_0X] = ACTIONS(3909), + [anon_sym_0o] = ACTIONS(3909), + [anon_sym_0O] = ACTIONS(3909), + [anon_sym_0b] = ACTIONS(3909), + [anon_sym_0B] = ACTIONS(3909), + [aux_sym_integer_token4] = ACTIONS(3907), + [sym_float] = ACTIONS(3909), + [anon_sym_await] = ACTIONS(3907), + [anon_sym_api] = ACTIONS(3907), + [sym_true] = ACTIONS(3907), + [sym_false] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3907), + [anon_sym_include] = ACTIONS(3907), + [anon_sym_DEF] = ACTIONS(3907), + [anon_sym_IF] = ACTIONS(3907), + [anon_sym_cdef] = ACTIONS(3907), + [anon_sym_cpdef] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3907), + [anon_sym_ctypedef] = ACTIONS(3907), + [anon_sym_public] = ACTIONS(3907), + [anon_sym_packed] = ACTIONS(3907), + [anon_sym_inline] = ACTIONS(3907), + [anon_sym_readonly] = ACTIONS(3907), + [anon_sym_sizeof] = ACTIONS(3907), + [sym_string_start] = ACTIONS(3909), + }, + [1958] = { + [ts_builtin_sym_end] = ACTIONS(3913), + [sym_identifier] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_import] = ACTIONS(3911), + [anon_sym_cimport] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_print] = ACTIONS(3911), + [anon_sym_assert] = ACTIONS(3911), + [anon_sym_return] = ACTIONS(3911), + [anon_sym_del] = ACTIONS(3911), + [anon_sym_raise] = ACTIONS(3911), + [anon_sym_pass] = ACTIONS(3911), + [anon_sym_break] = ACTIONS(3911), + [anon_sym_continue] = ACTIONS(3911), + [anon_sym_if] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(3911), + [anon_sym_async] = ACTIONS(3911), + [anon_sym_for] = ACTIONS(3911), + [anon_sym_while] = ACTIONS(3911), + [anon_sym_try] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3911), + [anon_sym_def] = ACTIONS(3911), + [anon_sym_global] = ACTIONS(3911), + [anon_sym_nonlocal] = ACTIONS(3911), + [anon_sym_exec] = ACTIONS(3911), + [anon_sym_type] = ACTIONS(3911), + [anon_sym_class] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_AT] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_LBRACE] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_not] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_TILDE] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_lambda] = ACTIONS(3911), + [anon_sym_yield] = ACTIONS(3911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3913), + [anon_sym_None] = ACTIONS(3911), + [anon_sym_0x] = ACTIONS(3913), + [anon_sym_0X] = ACTIONS(3913), + [anon_sym_0o] = ACTIONS(3913), + [anon_sym_0O] = ACTIONS(3913), + [anon_sym_0b] = ACTIONS(3913), + [anon_sym_0B] = ACTIONS(3913), + [aux_sym_integer_token4] = ACTIONS(3911), + [sym_float] = ACTIONS(3913), + [anon_sym_await] = ACTIONS(3911), + [anon_sym_api] = ACTIONS(3911), + [sym_true] = ACTIONS(3911), + [sym_false] = ACTIONS(3911), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3911), + [anon_sym_include] = ACTIONS(3911), + [anon_sym_DEF] = ACTIONS(3911), + [anon_sym_IF] = ACTIONS(3911), + [anon_sym_cdef] = ACTIONS(3911), + [anon_sym_cpdef] = ACTIONS(3911), + [anon_sym_new] = ACTIONS(3911), + [anon_sym_ctypedef] = ACTIONS(3911), + [anon_sym_public] = ACTIONS(3911), + [anon_sym_packed] = ACTIONS(3911), + [anon_sym_inline] = ACTIONS(3911), + [anon_sym_readonly] = ACTIONS(3911), + [anon_sym_sizeof] = ACTIONS(3911), + [sym_string_start] = ACTIONS(3913), + }, + [1959] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6715), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(5102), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [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), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1960] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5425), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1961] = { + [sym_identifier] = ACTIONS(3963), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_import] = ACTIONS(3963), + [anon_sym_cimport] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_print] = ACTIONS(3963), + [anon_sym_assert] = ACTIONS(3963), + [anon_sym_return] = ACTIONS(3963), + [anon_sym_del] = ACTIONS(3963), + [anon_sym_raise] = ACTIONS(3963), + [anon_sym_pass] = ACTIONS(3963), + [anon_sym_break] = ACTIONS(3963), + [anon_sym_continue] = ACTIONS(3963), + [anon_sym_if] = ACTIONS(3963), + [anon_sym_match] = ACTIONS(3963), + [anon_sym_async] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3963), + [anon_sym_while] = ACTIONS(3963), + [anon_sym_try] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [anon_sym_def] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3963), + [anon_sym_nonlocal] = ACTIONS(3963), + [anon_sym_exec] = ACTIONS(3963), + [anon_sym_type] = ACTIONS(3963), + [anon_sym_class] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_AT] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_not] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_lambda] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3961), + [anon_sym_None] = ACTIONS(3963), + [anon_sym_0x] = ACTIONS(3961), + [anon_sym_0X] = ACTIONS(3961), + [anon_sym_0o] = ACTIONS(3961), + [anon_sym_0O] = ACTIONS(3961), + [anon_sym_0b] = ACTIONS(3961), + [anon_sym_0B] = ACTIONS(3961), + [aux_sym_integer_token4] = ACTIONS(3963), + [sym_float] = ACTIONS(3961), + [anon_sym_await] = ACTIONS(3963), + [anon_sym_api] = ACTIONS(3963), + [sym_true] = ACTIONS(3963), + [sym_false] = ACTIONS(3963), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3963), + [anon_sym_include] = ACTIONS(3963), + [anon_sym_DEF] = ACTIONS(3963), + [anon_sym_IF] = ACTIONS(3963), + [anon_sym_cdef] = ACTIONS(3963), + [anon_sym_cpdef] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3963), + [anon_sym_ctypedef] = ACTIONS(3963), + [anon_sym_public] = ACTIONS(3963), + [anon_sym_packed] = ACTIONS(3963), + [anon_sym_inline] = ACTIONS(3963), + [anon_sym_readonly] = ACTIONS(3963), + [anon_sym_sizeof] = ACTIONS(3963), + [sym__dedent] = ACTIONS(3961), + [sym_string_start] = ACTIONS(3961), + }, + [1962] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6711), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4031), + [sym_primary_expression] = STATE(2846), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1963] = { + [sym_identifier] = ACTIONS(3703), + [anon_sym_SEMI] = ACTIONS(3701), + [anon_sym_import] = ACTIONS(3703), + [anon_sym_cimport] = ACTIONS(3703), + [anon_sym_from] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3701), + [anon_sym_print] = ACTIONS(3703), + [anon_sym_assert] = ACTIONS(3703), + [anon_sym_return] = ACTIONS(3703), + [anon_sym_del] = ACTIONS(3703), + [anon_sym_raise] = ACTIONS(3703), + [anon_sym_pass] = ACTIONS(3703), + [anon_sym_break] = ACTIONS(3703), + [anon_sym_continue] = ACTIONS(3703), + [anon_sym_if] = ACTIONS(3703), + [anon_sym_match] = ACTIONS(3703), + [anon_sym_async] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3703), + [anon_sym_while] = ACTIONS(3703), + [anon_sym_try] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3703), + [anon_sym_def] = ACTIONS(3703), + [anon_sym_global] = ACTIONS(3703), + [anon_sym_nonlocal] = ACTIONS(3703), + [anon_sym_exec] = ACTIONS(3703), + [anon_sym_type] = ACTIONS(3703), + [anon_sym_class] = ACTIONS(3703), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_AT] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3701), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_lambda] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3701), + [anon_sym_None] = ACTIONS(3703), + [anon_sym_0x] = ACTIONS(3701), + [anon_sym_0X] = ACTIONS(3701), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0O] = ACTIONS(3701), + [anon_sym_0b] = ACTIONS(3701), + [anon_sym_0B] = ACTIONS(3701), + [aux_sym_integer_token4] = ACTIONS(3703), + [sym_float] = ACTIONS(3701), + [anon_sym_await] = ACTIONS(3703), + [anon_sym_api] = ACTIONS(3703), + [sym_true] = ACTIONS(3703), + [sym_false] = ACTIONS(3703), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3703), + [anon_sym_include] = ACTIONS(3703), + [anon_sym_DEF] = ACTIONS(3703), + [anon_sym_IF] = ACTIONS(3703), + [anon_sym_cdef] = ACTIONS(3703), + [anon_sym_cpdef] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3703), + [anon_sym_ctypedef] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(3703), + [anon_sym_packed] = ACTIONS(3703), + [anon_sym_inline] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3703), + [anon_sym_sizeof] = ACTIONS(3703), + [sym__dedent] = ACTIONS(3701), + [sym_string_start] = ACTIONS(3701), + }, + [1964] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5429), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1965] = { + [sym_identifier] = ACTIONS(3853), + [anon_sym_SEMI] = ACTIONS(3851), + [anon_sym_import] = ACTIONS(3853), + [anon_sym_cimport] = ACTIONS(3853), + [anon_sym_from] = ACTIONS(3853), + [anon_sym_LPAREN] = ACTIONS(3851), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_print] = ACTIONS(3853), + [anon_sym_assert] = ACTIONS(3853), + [anon_sym_return] = ACTIONS(3853), + [anon_sym_del] = ACTIONS(3853), + [anon_sym_raise] = ACTIONS(3853), + [anon_sym_pass] = ACTIONS(3853), + [anon_sym_break] = ACTIONS(3853), + [anon_sym_continue] = ACTIONS(3853), + [anon_sym_if] = ACTIONS(3853), + [anon_sym_match] = ACTIONS(3853), + [anon_sym_async] = ACTIONS(3853), + [anon_sym_for] = ACTIONS(3853), + [anon_sym_while] = ACTIONS(3853), + [anon_sym_try] = ACTIONS(3853), + [anon_sym_with] = ACTIONS(3853), + [anon_sym_def] = ACTIONS(3853), + [anon_sym_global] = ACTIONS(3853), + [anon_sym_nonlocal] = ACTIONS(3853), + [anon_sym_exec] = ACTIONS(3853), + [anon_sym_type] = ACTIONS(3853), + [anon_sym_class] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3851), + [anon_sym_AT] = ACTIONS(3851), + [anon_sym_DASH] = ACTIONS(3851), + [anon_sym_LBRACE] = ACTIONS(3851), + [anon_sym_PLUS] = ACTIONS(3851), + [anon_sym_not] = ACTIONS(3853), + [anon_sym_AMP] = ACTIONS(3851), + [anon_sym_TILDE] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_lambda] = ACTIONS(3853), + [anon_sym_yield] = ACTIONS(3853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3851), + [anon_sym_None] = ACTIONS(3853), + [anon_sym_0x] = ACTIONS(3851), + [anon_sym_0X] = ACTIONS(3851), + [anon_sym_0o] = ACTIONS(3851), + [anon_sym_0O] = ACTIONS(3851), + [anon_sym_0b] = ACTIONS(3851), + [anon_sym_0B] = ACTIONS(3851), + [aux_sym_integer_token4] = ACTIONS(3853), + [sym_float] = ACTIONS(3851), + [anon_sym_await] = ACTIONS(3853), + [anon_sym_api] = ACTIONS(3853), + [sym_true] = ACTIONS(3853), + [sym_false] = ACTIONS(3853), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3853), + [anon_sym_include] = ACTIONS(3853), + [anon_sym_DEF] = ACTIONS(3853), + [anon_sym_IF] = ACTIONS(3853), + [anon_sym_cdef] = ACTIONS(3853), + [anon_sym_cpdef] = ACTIONS(3853), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_ctypedef] = ACTIONS(3853), + [anon_sym_public] = ACTIONS(3853), + [anon_sym_packed] = ACTIONS(3853), + [anon_sym_inline] = ACTIONS(3853), + [anon_sym_readonly] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(3853), + [sym__dedent] = ACTIONS(3851), + [sym_string_start] = ACTIONS(3851), + }, + [1966] = { + [ts_builtin_sym_end] = ACTIONS(3917), + [sym_identifier] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3917), + [anon_sym_import] = ACTIONS(3915), + [anon_sym_cimport] = ACTIONS(3915), + [anon_sym_from] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_print] = ACTIONS(3915), + [anon_sym_assert] = ACTIONS(3915), + [anon_sym_return] = ACTIONS(3915), + [anon_sym_del] = ACTIONS(3915), + [anon_sym_raise] = ACTIONS(3915), + [anon_sym_pass] = ACTIONS(3915), + [anon_sym_break] = ACTIONS(3915), + [anon_sym_continue] = ACTIONS(3915), + [anon_sym_if] = ACTIONS(3915), + [anon_sym_match] = ACTIONS(3915), + [anon_sym_async] = ACTIONS(3915), + [anon_sym_for] = ACTIONS(3915), + [anon_sym_while] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(3915), + [anon_sym_with] = ACTIONS(3915), + [anon_sym_def] = ACTIONS(3915), + [anon_sym_global] = ACTIONS(3915), + [anon_sym_nonlocal] = ACTIONS(3915), + [anon_sym_exec] = ACTIONS(3915), + [anon_sym_type] = ACTIONS(3915), + [anon_sym_class] = ACTIONS(3915), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_AT] = ACTIONS(3917), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_not] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_TILDE] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3917), + [anon_sym_lambda] = ACTIONS(3915), + [anon_sym_yield] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3917), + [anon_sym_None] = ACTIONS(3915), + [anon_sym_0x] = ACTIONS(3917), + [anon_sym_0X] = ACTIONS(3917), + [anon_sym_0o] = ACTIONS(3917), + [anon_sym_0O] = ACTIONS(3917), + [anon_sym_0b] = ACTIONS(3917), + [anon_sym_0B] = ACTIONS(3917), + [aux_sym_integer_token4] = ACTIONS(3915), + [sym_float] = ACTIONS(3917), + [anon_sym_await] = ACTIONS(3915), + [anon_sym_api] = ACTIONS(3915), + [sym_true] = ACTIONS(3915), + [sym_false] = ACTIONS(3915), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3915), + [anon_sym_include] = ACTIONS(3915), + [anon_sym_DEF] = ACTIONS(3915), + [anon_sym_IF] = ACTIONS(3915), + [anon_sym_cdef] = ACTIONS(3915), + [anon_sym_cpdef] = ACTIONS(3915), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_ctypedef] = ACTIONS(3915), + [anon_sym_public] = ACTIONS(3915), + [anon_sym_packed] = ACTIONS(3915), + [anon_sym_inline] = ACTIONS(3915), + [anon_sym_readonly] = ACTIONS(3915), + [anon_sym_sizeof] = ACTIONS(3915), + [sym_string_start] = ACTIONS(3917), + }, + [1967] = { + [sym_identifier] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_import] = ACTIONS(3945), + [anon_sym_cimport] = ACTIONS(3945), + [anon_sym_from] = ACTIONS(3945), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3943), + [anon_sym_print] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_del] = ACTIONS(3945), + [anon_sym_raise] = ACTIONS(3945), + [anon_sym_pass] = ACTIONS(3945), + [anon_sym_break] = ACTIONS(3945), + [anon_sym_continue] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_async] = ACTIONS(3945), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_with] = ACTIONS(3945), + [anon_sym_def] = ACTIONS(3945), + [anon_sym_global] = ACTIONS(3945), + [anon_sym_nonlocal] = ACTIONS(3945), + [anon_sym_exec] = ACTIONS(3945), + [anon_sym_type] = ACTIONS(3945), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_not] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_TILDE] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_lambda] = ACTIONS(3945), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3943), + [anon_sym_None] = ACTIONS(3945), + [anon_sym_0x] = ACTIONS(3943), + [anon_sym_0X] = ACTIONS(3943), + [anon_sym_0o] = ACTIONS(3943), + [anon_sym_0O] = ACTIONS(3943), + [anon_sym_0b] = ACTIONS(3943), + [anon_sym_0B] = ACTIONS(3943), + [aux_sym_integer_token4] = ACTIONS(3945), + [sym_float] = ACTIONS(3943), + [anon_sym_await] = ACTIONS(3945), + [anon_sym_api] = ACTIONS(3945), + [sym_true] = ACTIONS(3945), + [sym_false] = ACTIONS(3945), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3945), + [anon_sym_include] = ACTIONS(3945), + [anon_sym_DEF] = ACTIONS(3945), + [anon_sym_IF] = ACTIONS(3945), + [anon_sym_cdef] = ACTIONS(3945), + [anon_sym_cpdef] = ACTIONS(3945), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_ctypedef] = ACTIONS(3945), + [anon_sym_public] = ACTIONS(3945), + [anon_sym_packed] = ACTIONS(3945), + [anon_sym_inline] = ACTIONS(3945), + [anon_sym_readonly] = ACTIONS(3945), + [anon_sym_sizeof] = ACTIONS(3945), + [sym__dedent] = ACTIONS(3943), + [sym_string_start] = ACTIONS(3943), + }, + [1968] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5430), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1969] = { + [sym_identifier] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_import] = ACTIONS(3955), + [anon_sym_cimport] = ACTIONS(3955), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_print] = ACTIONS(3955), + [anon_sym_assert] = ACTIONS(3955), + [anon_sym_return] = ACTIONS(3955), + [anon_sym_del] = ACTIONS(3955), + [anon_sym_raise] = ACTIONS(3955), + [anon_sym_pass] = ACTIONS(3955), + [anon_sym_break] = ACTIONS(3955), + [anon_sym_continue] = ACTIONS(3955), + [anon_sym_if] = ACTIONS(3955), + [anon_sym_match] = ACTIONS(3955), + [anon_sym_async] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3955), + [anon_sym_while] = ACTIONS(3955), + [anon_sym_try] = ACTIONS(3955), + [anon_sym_with] = ACTIONS(3955), + [anon_sym_def] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_nonlocal] = ACTIONS(3955), + [anon_sym_exec] = ACTIONS(3955), + [anon_sym_type] = ACTIONS(3955), + [anon_sym_class] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_AT] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_not] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3953), + [anon_sym_lambda] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3953), + [anon_sym_None] = ACTIONS(3955), + [anon_sym_0x] = ACTIONS(3953), + [anon_sym_0X] = ACTIONS(3953), + [anon_sym_0o] = ACTIONS(3953), + [anon_sym_0O] = ACTIONS(3953), + [anon_sym_0b] = ACTIONS(3953), + [anon_sym_0B] = ACTIONS(3953), + [aux_sym_integer_token4] = ACTIONS(3955), + [sym_float] = ACTIONS(3953), + [anon_sym_await] = ACTIONS(3955), + [anon_sym_api] = ACTIONS(3955), + [sym_true] = ACTIONS(3955), + [sym_false] = ACTIONS(3955), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3955), + [anon_sym_include] = ACTIONS(3955), + [anon_sym_DEF] = ACTIONS(3955), + [anon_sym_IF] = ACTIONS(3955), + [anon_sym_cdef] = ACTIONS(3955), + [anon_sym_cpdef] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3955), + [anon_sym_ctypedef] = ACTIONS(3955), + [anon_sym_public] = ACTIONS(3955), + [anon_sym_packed] = ACTIONS(3955), + [anon_sym_inline] = ACTIONS(3955), + [anon_sym_readonly] = ACTIONS(3955), + [anon_sym_sizeof] = ACTIONS(3955), + [sym__dedent] = ACTIONS(3953), + [sym_string_start] = ACTIONS(3953), + }, + [1970] = { + [ts_builtin_sym_end] = ACTIONS(3921), + [sym_identifier] = ACTIONS(3919), + [anon_sym_SEMI] = ACTIONS(3921), + [anon_sym_import] = ACTIONS(3919), + [anon_sym_cimport] = ACTIONS(3919), + [anon_sym_from] = ACTIONS(3919), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3921), + [anon_sym_print] = ACTIONS(3919), + [anon_sym_assert] = ACTIONS(3919), + [anon_sym_return] = ACTIONS(3919), + [anon_sym_del] = ACTIONS(3919), + [anon_sym_raise] = ACTIONS(3919), + [anon_sym_pass] = ACTIONS(3919), + [anon_sym_break] = ACTIONS(3919), + [anon_sym_continue] = ACTIONS(3919), + [anon_sym_if] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(3919), + [anon_sym_async] = ACTIONS(3919), + [anon_sym_for] = ACTIONS(3919), + [anon_sym_while] = ACTIONS(3919), + [anon_sym_try] = ACTIONS(3919), + [anon_sym_with] = ACTIONS(3919), + [anon_sym_def] = ACTIONS(3919), + [anon_sym_global] = ACTIONS(3919), + [anon_sym_nonlocal] = ACTIONS(3919), + [anon_sym_exec] = ACTIONS(3919), + [anon_sym_type] = ACTIONS(3919), + [anon_sym_class] = ACTIONS(3919), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_AT] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_lambda] = ACTIONS(3919), + [anon_sym_yield] = ACTIONS(3919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3921), + [anon_sym_None] = ACTIONS(3919), + [anon_sym_0x] = ACTIONS(3921), + [anon_sym_0X] = ACTIONS(3921), + [anon_sym_0o] = ACTIONS(3921), + [anon_sym_0O] = ACTIONS(3921), + [anon_sym_0b] = ACTIONS(3921), + [anon_sym_0B] = ACTIONS(3921), + [aux_sym_integer_token4] = ACTIONS(3919), + [sym_float] = ACTIONS(3921), + [anon_sym_await] = ACTIONS(3919), + [anon_sym_api] = ACTIONS(3919), + [sym_true] = ACTIONS(3919), + [sym_false] = ACTIONS(3919), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3919), + [anon_sym_include] = ACTIONS(3919), + [anon_sym_DEF] = ACTIONS(3919), + [anon_sym_IF] = ACTIONS(3919), + [anon_sym_cdef] = ACTIONS(3919), + [anon_sym_cpdef] = ACTIONS(3919), + [anon_sym_new] = ACTIONS(3919), + [anon_sym_ctypedef] = ACTIONS(3919), + [anon_sym_public] = ACTIONS(3919), + [anon_sym_packed] = ACTIONS(3919), + [anon_sym_inline] = ACTIONS(3919), + [anon_sym_readonly] = ACTIONS(3919), + [anon_sym_sizeof] = ACTIONS(3919), + [sym_string_start] = ACTIONS(3921), + }, + [1971] = { + [sym_identifier] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_import] = ACTIONS(3203), + [anon_sym_cimport] = ACTIONS(3203), + [anon_sym_from] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_print] = ACTIONS(3203), + [anon_sym_assert] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_del] = ACTIONS(3203), + [anon_sym_raise] = ACTIONS(3203), + [anon_sym_pass] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_match] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3203), + [anon_sym_def] = ACTIONS(3203), + [anon_sym_global] = ACTIONS(3203), + [anon_sym_nonlocal] = ACTIONS(3203), + [anon_sym_exec] = ACTIONS(3203), + [anon_sym_type] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_AT] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_not] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_lambda] = ACTIONS(3203), + [anon_sym_yield] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3201), + [anon_sym_None] = ACTIONS(3203), + [anon_sym_0x] = ACTIONS(3201), + [anon_sym_0X] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0O] = ACTIONS(3201), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0B] = ACTIONS(3201), + [aux_sym_integer_token4] = ACTIONS(3203), + [sym_float] = ACTIONS(3201), + [anon_sym_await] = ACTIONS(3203), + [anon_sym_api] = ACTIONS(3203), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3203), + [anon_sym_include] = ACTIONS(3203), + [anon_sym_DEF] = ACTIONS(3203), + [anon_sym_IF] = ACTIONS(3203), + [anon_sym_cdef] = ACTIONS(3203), + [anon_sym_cpdef] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_ctypedef] = ACTIONS(3203), + [anon_sym_public] = ACTIONS(3203), + [anon_sym_packed] = ACTIONS(3203), + [anon_sym_inline] = ACTIONS(3203), + [anon_sym_readonly] = ACTIONS(3203), + [anon_sym_sizeof] = ACTIONS(3203), + [sym__dedent] = ACTIONS(3201), + [sym_string_start] = ACTIONS(3201), + }, + [1972] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5431), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1973] = { + [sym_identifier] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_cimport] = ACTIONS(3283), + [anon_sym_from] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_print] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_del] = ACTIONS(3283), + [anon_sym_raise] = ACTIONS(3283), + [anon_sym_pass] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_def] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_nonlocal] = ACTIONS(3283), + [anon_sym_exec] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [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(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_lambda] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), + [anon_sym_None] = ACTIONS(3283), + [anon_sym_0x] = ACTIONS(3281), + [anon_sym_0X] = ACTIONS(3281), + [anon_sym_0o] = ACTIONS(3281), + [anon_sym_0O] = ACTIONS(3281), + [anon_sym_0b] = ACTIONS(3281), + [anon_sym_0B] = ACTIONS(3281), + [aux_sym_integer_token4] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_api] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3283), + [anon_sym_include] = ACTIONS(3283), + [anon_sym_DEF] = ACTIONS(3283), + [anon_sym_IF] = ACTIONS(3283), + [anon_sym_cdef] = ACTIONS(3283), + [anon_sym_cpdef] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_ctypedef] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_packed] = ACTIONS(3283), + [anon_sym_inline] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_sizeof] = ACTIONS(3283), + [sym__dedent] = ACTIONS(3281), + [sym_string_start] = ACTIONS(3281), + }, + [1974] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4919), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1975] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4921), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1976] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4922), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1977] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3952), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1978] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4923), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1979] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5297), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1980] = { + [sym_named_expression] = STATE(3334), + [sym__named_expression_lhs] = STATE(6832), + [sym_list_splat_pattern] = STATE(3359), + [sym_as_pattern] = STATE(3334), + [sym_expression] = STATE(5203), + [sym_primary_expression] = STATE(2679), + [sym_not_operator] = STATE(3334), + [sym_boolean_operator] = STATE(3334), + [sym_binary_operator] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_comparison_operator] = STATE(3334), + [sym_lambda] = STATE(3334), + [sym_attribute] = STATE(3333), + [sym_subscript] = STATE(3333), + [sym_ellipsis] = STATE(3333), + [sym_call] = STATE(3333), + [sym_list] = STATE(3333), + [sym_set] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_dictionary] = STATE(3333), + [sym_list_comprehension] = STATE(3333), + [sym_dictionary_comprehension] = STATE(3333), + [sym_set_comprehension] = STATE(3333), + [sym_generator_expression] = STATE(3333), + [sym_parenthesized_expression] = STATE(3333), + [sym_conditional_expression] = STATE(3334), + [sym_concatenated_string] = STATE(3333), + [sym_string] = STATE(3015), + [sym_integer] = STATE(3333), + [sym_none] = STATE(3333), + [sym_await] = STATE(3333), + [sym_new_expression] = STATE(3334), + [sym_sizeof_expression] = STATE(3333), + [sym_cast_expression] = STATE(3333), + [aux_sym_integer_repeat4] = STATE(2524), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_exec] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_not] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_lambda] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1706), + [anon_sym_None] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1710), + [anon_sym_0X] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0O] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0B] = ACTIONS(1714), + [aux_sym_integer_token4] = ACTIONS(1716), + [sym_float] = ACTIONS(1718), + [anon_sym_await] = ACTIONS(1806), + [anon_sym_api] = ACTIONS(1804), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_string_start] = ACTIONS(1728), + }, + [1981] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4924), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1982] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6967), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1983] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(4925), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1984] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5286), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1985] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5287), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1986] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5288), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1987] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4723), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1988] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5289), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1989] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5290), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1990] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(5291), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1991] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6685), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4827), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1992] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6914), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(3951), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1519), + [anon_sym_0X] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1993] = { + [sym_named_expression] = STATE(4714), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(2890), + [sym_as_pattern] = STATE(4714), + [sym_expression] = STATE(4716), + [sym_primary_expression] = STATE(2462), + [sym_not_operator] = STATE(4714), + [sym_boolean_operator] = STATE(4714), + [sym_binary_operator] = STATE(2971), + [sym_unary_operator] = STATE(2971), + [sym_comparison_operator] = STATE(4714), + [sym_lambda] = STATE(4714), + [sym_attribute] = STATE(2971), + [sym_subscript] = STATE(2971), + [sym_ellipsis] = STATE(2971), + [sym_call] = STATE(2971), + [sym_list] = STATE(2971), + [sym_set] = STATE(2971), + [sym_tuple] = STATE(2971), + [sym_dictionary] = STATE(2971), + [sym_list_comprehension] = STATE(2971), + [sym_dictionary_comprehension] = STATE(2971), + [sym_set_comprehension] = STATE(2971), + [sym_generator_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2971), + [sym_conditional_expression] = STATE(4714), + [sym_concatenated_string] = STATE(2971), + [sym_string] = STATE(2634), + [sym_integer] = STATE(2971), + [sym_none] = STATE(2971), + [sym_await] = STATE(2971), + [sym_new_expression] = STATE(4714), + [sym_sizeof_expression] = STATE(2971), + [sym_cast_expression] = STATE(2971), + [aux_sym_integer_repeat4] = STATE(2456), + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_None] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1828), + [anon_sym_0X] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0O] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0B] = ACTIONS(1832), + [aux_sym_integer_token4] = ACTIONS(1834), + [sym_float] = ACTIONS(1836), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_string_start] = ACTIONS(1842), + }, + [1994] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5505), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1995] = { + [sym_named_expression] = STATE(3946), + [sym__named_expression_lhs] = STATE(6729), + [sym_list_splat_pattern] = STATE(2843), + [sym_as_pattern] = STATE(3946), + [sym_expression] = STATE(5506), + [sym_primary_expression] = STATE(2725), + [sym_not_operator] = STATE(3946), + [sym_boolean_operator] = STATE(3946), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_comparison_operator] = STATE(3946), + [sym_lambda] = STATE(3946), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_conditional_expression] = STATE(3946), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_new_expression] = STATE(3946), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_print] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_exec] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(2009), + [anon_sym_0X] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(1499), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [1996] = { + [sym_identifier] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3899), + [anon_sym_import] = ACTIONS(3901), + [anon_sym_cimport] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_STAR] = ACTIONS(3899), + [anon_sym_print] = ACTIONS(3901), + [anon_sym_assert] = ACTIONS(3901), + [anon_sym_return] = ACTIONS(3901), + [anon_sym_del] = ACTIONS(3901), + [anon_sym_raise] = ACTIONS(3901), + [anon_sym_pass] = ACTIONS(3901), + [anon_sym_break] = ACTIONS(3901), + [anon_sym_continue] = ACTIONS(3901), + [anon_sym_if] = ACTIONS(3901), + [anon_sym_match] = ACTIONS(3901), + [anon_sym_async] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3901), + [anon_sym_while] = ACTIONS(3901), + [anon_sym_try] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3901), + [anon_sym_def] = ACTIONS(3901), + [anon_sym_global] = ACTIONS(3901), + [anon_sym_nonlocal] = ACTIONS(3901), + [anon_sym_exec] = ACTIONS(3901), + [anon_sym_type] = ACTIONS(3901), + [anon_sym_class] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_AT] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3899), + [anon_sym_lambda] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3899), + [anon_sym_None] = ACTIONS(3901), + [anon_sym_0x] = ACTIONS(3899), + [anon_sym_0X] = ACTIONS(3899), + [anon_sym_0o] = ACTIONS(3899), + [anon_sym_0O] = ACTIONS(3899), + [anon_sym_0b] = ACTIONS(3899), + [anon_sym_0B] = ACTIONS(3899), + [aux_sym_integer_token4] = ACTIONS(3901), + [sym_float] = ACTIONS(3899), + [anon_sym_await] = ACTIONS(3901), + [anon_sym_api] = ACTIONS(3901), + [sym_true] = ACTIONS(3901), + [sym_false] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3901), + [anon_sym_include] = ACTIONS(3901), + [anon_sym_DEF] = ACTIONS(3901), + [anon_sym_IF] = ACTIONS(3901), + [anon_sym_cdef] = ACTIONS(3901), + [anon_sym_cpdef] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3901), + [anon_sym_ctypedef] = ACTIONS(3901), + [anon_sym_public] = ACTIONS(3901), + [anon_sym_packed] = ACTIONS(3901), + [anon_sym_inline] = ACTIONS(3901), + [anon_sym_readonly] = ACTIONS(3901), + [anon_sym_sizeof] = ACTIONS(3901), + [sym__dedent] = ACTIONS(3899), + [sym_string_start] = ACTIONS(3899), + }, + [1997] = { + [sym_identifier] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym_import] = ACTIONS(3935), + [anon_sym_cimport] = ACTIONS(3935), + [anon_sym_from] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_print] = ACTIONS(3935), + [anon_sym_assert] = ACTIONS(3935), + [anon_sym_return] = ACTIONS(3935), + [anon_sym_del] = ACTIONS(3935), + [anon_sym_raise] = ACTIONS(3935), + [anon_sym_pass] = ACTIONS(3935), + [anon_sym_break] = ACTIONS(3935), + [anon_sym_continue] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_match] = ACTIONS(3935), + [anon_sym_async] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3935), + [anon_sym_while] = ACTIONS(3935), + [anon_sym_try] = ACTIONS(3935), + [anon_sym_with] = ACTIONS(3935), + [anon_sym_def] = ACTIONS(3935), + [anon_sym_global] = ACTIONS(3935), + [anon_sym_nonlocal] = ACTIONS(3935), + [anon_sym_exec] = ACTIONS(3935), + [anon_sym_type] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_AT] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_not] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_lambda] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3933), + [anon_sym_None] = ACTIONS(3935), + [anon_sym_0x] = ACTIONS(3933), + [anon_sym_0X] = ACTIONS(3933), + [anon_sym_0o] = ACTIONS(3933), + [anon_sym_0O] = ACTIONS(3933), + [anon_sym_0b] = ACTIONS(3933), + [anon_sym_0B] = ACTIONS(3933), + [aux_sym_integer_token4] = ACTIONS(3935), + [sym_float] = ACTIONS(3933), + [anon_sym_await] = ACTIONS(3935), + [anon_sym_api] = ACTIONS(3935), + [sym_true] = ACTIONS(3935), + [sym_false] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3935), + [anon_sym_include] = ACTIONS(3935), + [anon_sym_DEF] = ACTIONS(3935), + [anon_sym_IF] = ACTIONS(3935), + [anon_sym_cdef] = ACTIONS(3935), + [anon_sym_cpdef] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3935), + [anon_sym_ctypedef] = ACTIONS(3935), + [anon_sym_public] = ACTIONS(3935), + [anon_sym_packed] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym_readonly] = ACTIONS(3935), + [anon_sym_sizeof] = ACTIONS(3935), + [sym__dedent] = ACTIONS(3933), + [sym_string_start] = ACTIONS(3933), + }, + [1998] = { + [ts_builtin_sym_end] = ACTIONS(3925), + [sym_identifier] = ACTIONS(3923), + [anon_sym_SEMI] = ACTIONS(3925), + [anon_sym_import] = ACTIONS(3923), + [anon_sym_cimport] = ACTIONS(3923), + [anon_sym_from] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_STAR] = ACTIONS(3925), + [anon_sym_print] = ACTIONS(3923), + [anon_sym_assert] = ACTIONS(3923), + [anon_sym_return] = ACTIONS(3923), + [anon_sym_del] = ACTIONS(3923), + [anon_sym_raise] = ACTIONS(3923), + [anon_sym_pass] = ACTIONS(3923), + [anon_sym_break] = ACTIONS(3923), + [anon_sym_continue] = ACTIONS(3923), + [anon_sym_if] = ACTIONS(3923), + [anon_sym_match] = ACTIONS(3923), + [anon_sym_async] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3923), + [anon_sym_while] = ACTIONS(3923), + [anon_sym_try] = ACTIONS(3923), + [anon_sym_with] = ACTIONS(3923), + [anon_sym_def] = ACTIONS(3923), + [anon_sym_global] = ACTIONS(3923), + [anon_sym_nonlocal] = ACTIONS(3923), + [anon_sym_exec] = ACTIONS(3923), + [anon_sym_type] = ACTIONS(3923), + [anon_sym_class] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_AT] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_not] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3925), + [anon_sym_LT] = ACTIONS(3925), + [anon_sym_lambda] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3925), + [anon_sym_None] = ACTIONS(3923), + [anon_sym_0x] = ACTIONS(3925), + [anon_sym_0X] = ACTIONS(3925), + [anon_sym_0o] = ACTIONS(3925), + [anon_sym_0O] = ACTIONS(3925), + [anon_sym_0b] = ACTIONS(3925), + [anon_sym_0B] = ACTIONS(3925), + [aux_sym_integer_token4] = ACTIONS(3923), + [sym_float] = ACTIONS(3925), + [anon_sym_await] = ACTIONS(3923), + [anon_sym_api] = ACTIONS(3923), + [sym_true] = ACTIONS(3923), + [sym_false] = ACTIONS(3923), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3923), + [anon_sym_include] = ACTIONS(3923), + [anon_sym_DEF] = ACTIONS(3923), + [anon_sym_IF] = ACTIONS(3923), + [anon_sym_cdef] = ACTIONS(3923), + [anon_sym_cpdef] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3923), + [anon_sym_ctypedef] = ACTIONS(3923), + [anon_sym_public] = ACTIONS(3923), + [anon_sym_packed] = ACTIONS(3923), + [anon_sym_inline] = ACTIONS(3923), + [anon_sym_readonly] = ACTIONS(3923), + [anon_sym_sizeof] = ACTIONS(3923), + [sym_string_start] = ACTIONS(3925), + }, + [1999] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6703), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4850), + [sym_primary_expression] = STATE(2487), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_lambda] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2000] = { + [sym_named_expression] = STATE(3226), + [sym__named_expression_lhs] = STATE(6903), + [sym_list_splat_pattern] = STATE(3239), + [sym_as_pattern] = STATE(3226), + [sym_expression] = STATE(5260), + [sym_primary_expression] = STATE(2622), + [sym_not_operator] = STATE(3226), + [sym_boolean_operator] = STATE(3226), + [sym_binary_operator] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_comparison_operator] = STATE(3226), + [sym_lambda] = STATE(3226), + [sym_attribute] = STATE(3225), + [sym_subscript] = STATE(3225), + [sym_ellipsis] = STATE(3225), + [sym_call] = STATE(3225), + [sym_list] = STATE(3225), + [sym_set] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_dictionary] = STATE(3225), + [sym_list_comprehension] = STATE(3225), + [sym_dictionary_comprehension] = STATE(3225), + [sym_set_comprehension] = STATE(3225), + [sym_generator_expression] = STATE(3225), + [sym_parenthesized_expression] = STATE(3225), + [sym_conditional_expression] = STATE(3226), + [sym_concatenated_string] = STATE(3225), + [sym_string] = STATE(2727), + [sym_integer] = STATE(3225), + [sym_none] = STATE(3225), + [sym_await] = STATE(3225), + [sym_new_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [aux_sym_integer_repeat4] = STATE(2488), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_None] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1987), + [anon_sym_0X] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0O] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0B] = ACTIONS(1991), + [aux_sym_integer_token4] = ACTIONS(1993), + [sym_float] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(1999), + [sym_string_start] = ACTIONS(2001), + }, + [2001] = { + [sym_identifier] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3397), + [anon_sym_cimport] = ACTIONS(3397), + [anon_sym_from] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_print] = ACTIONS(3397), + [anon_sym_assert] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3397), + [anon_sym_del] = ACTIONS(3397), + [anon_sym_raise] = ACTIONS(3397), + [anon_sym_pass] = ACTIONS(3397), + [anon_sym_break] = ACTIONS(3397), + [anon_sym_continue] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3397), + [anon_sym_match] = ACTIONS(3397), + [anon_sym_async] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3397), + [anon_sym_try] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3397), + [anon_sym_def] = ACTIONS(3397), + [anon_sym_global] = ACTIONS(3397), + [anon_sym_nonlocal] = ACTIONS(3397), + [anon_sym_exec] = ACTIONS(3397), + [anon_sym_type] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_lambda] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3395), + [anon_sym_None] = ACTIONS(3397), + [anon_sym_0x] = ACTIONS(3395), + [anon_sym_0X] = ACTIONS(3395), + [anon_sym_0o] = ACTIONS(3395), + [anon_sym_0O] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3395), + [anon_sym_0B] = ACTIONS(3395), + [aux_sym_integer_token4] = ACTIONS(3397), + [sym_float] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3397), + [anon_sym_api] = ACTIONS(3397), + [sym_true] = ACTIONS(3397), + [sym_false] = ACTIONS(3397), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3397), + [anon_sym_include] = ACTIONS(3397), + [anon_sym_DEF] = ACTIONS(3397), + [anon_sym_IF] = ACTIONS(3397), + [anon_sym_cdef] = ACTIONS(3397), + [anon_sym_cpdef] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_ctypedef] = ACTIONS(3397), + [anon_sym_public] = ACTIONS(3397), + [anon_sym_packed] = ACTIONS(3397), + [anon_sym_inline] = ACTIONS(3397), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(3397), + [sym__dedent] = ACTIONS(3395), + [sym_string_start] = ACTIONS(3395), + }, + [2002] = { + [sym_identifier] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_cimport] = ACTIONS(3401), + [anon_sym_from] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3399), + [anon_sym_print] = ACTIONS(3401), + [anon_sym_assert] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_del] = ACTIONS(3401), + [anon_sym_raise] = ACTIONS(3401), + [anon_sym_pass] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_match] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_def] = ACTIONS(3401), + [anon_sym_global] = ACTIONS(3401), + [anon_sym_nonlocal] = ACTIONS(3401), + [anon_sym_exec] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_not] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_lambda] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3399), + [anon_sym_None] = ACTIONS(3401), + [anon_sym_0x] = ACTIONS(3399), + [anon_sym_0X] = ACTIONS(3399), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0O] = ACTIONS(3399), + [anon_sym_0b] = ACTIONS(3399), + [anon_sym_0B] = ACTIONS(3399), + [aux_sym_integer_token4] = ACTIONS(3401), + [sym_float] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_api] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3401), + [anon_sym_include] = ACTIONS(3401), + [anon_sym_DEF] = ACTIONS(3401), + [anon_sym_IF] = ACTIONS(3401), + [anon_sym_cdef] = ACTIONS(3401), + [anon_sym_cpdef] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_ctypedef] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_packed] = ACTIONS(3401), + [anon_sym_inline] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3401), + [anon_sym_sizeof] = ACTIONS(3401), + [sym__dedent] = ACTIONS(3399), + [sym_string_start] = ACTIONS(3399), + }, + [2003] = { + [sym_identifier] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_cimport] = ACTIONS(3405), + [anon_sym_from] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3403), + [anon_sym_print] = ACTIONS(3405), + [anon_sym_assert] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_del] = ACTIONS(3405), + [anon_sym_raise] = ACTIONS(3405), + [anon_sym_pass] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_match] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_def] = ACTIONS(3405), + [anon_sym_global] = ACTIONS(3405), + [anon_sym_nonlocal] = ACTIONS(3405), + [anon_sym_exec] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_lambda] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3403), + [anon_sym_None] = ACTIONS(3405), + [anon_sym_0x] = ACTIONS(3403), + [anon_sym_0X] = ACTIONS(3403), + [anon_sym_0o] = ACTIONS(3403), + [anon_sym_0O] = ACTIONS(3403), + [anon_sym_0b] = ACTIONS(3403), + [anon_sym_0B] = ACTIONS(3403), + [aux_sym_integer_token4] = ACTIONS(3405), + [sym_float] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_api] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3405), + [anon_sym_include] = ACTIONS(3405), + [anon_sym_DEF] = ACTIONS(3405), + [anon_sym_IF] = ACTIONS(3405), + [anon_sym_cdef] = ACTIONS(3405), + [anon_sym_cpdef] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_ctypedef] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_packed] = ACTIONS(3405), + [anon_sym_inline] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3405), + [sym__dedent] = ACTIONS(3403), + [sym_string_start] = ACTIONS(3403), + }, + [2004] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4687), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2005] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4690), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2006] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4691), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2007] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4302), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2008] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4692), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2009] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4693), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2010] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4695), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2011] = { + [sym_identifier] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_cimport] = ACTIONS(3409), + [anon_sym_from] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3407), + [anon_sym_print] = ACTIONS(3409), + [anon_sym_assert] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_del] = ACTIONS(3409), + [anon_sym_raise] = ACTIONS(3409), + [anon_sym_pass] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_match] = ACTIONS(3409), + [anon_sym_async] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_with] = ACTIONS(3409), + [anon_sym_def] = ACTIONS(3409), + [anon_sym_global] = ACTIONS(3409), + [anon_sym_nonlocal] = ACTIONS(3409), + [anon_sym_exec] = ACTIONS(3409), + [anon_sym_type] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_not] = ACTIONS(3409), + [anon_sym_AMP] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_lambda] = ACTIONS(3409), + [anon_sym_yield] = ACTIONS(3409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_None] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3407), + [anon_sym_0X] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3407), + [anon_sym_0O] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0B] = ACTIONS(3407), + [aux_sym_integer_token4] = ACTIONS(3409), + [sym_float] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3409), + [anon_sym_api] = ACTIONS(3409), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3409), + [anon_sym_include] = ACTIONS(3409), + [anon_sym_DEF] = ACTIONS(3409), + [anon_sym_IF] = ACTIONS(3409), + [anon_sym_cdef] = ACTIONS(3409), + [anon_sym_cpdef] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_ctypedef] = ACTIONS(3409), + [anon_sym_public] = ACTIONS(3409), + [anon_sym_packed] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_readonly] = ACTIONS(3409), + [anon_sym_sizeof] = ACTIONS(3409), + [sym__dedent] = ACTIONS(3407), + [sym_string_start] = ACTIONS(3407), + }, + [2012] = { + [sym_identifier] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_cimport] = ACTIONS(3413), + [anon_sym_from] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_print] = ACTIONS(3413), + [anon_sym_assert] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_del] = ACTIONS(3413), + [anon_sym_raise] = ACTIONS(3413), + [anon_sym_pass] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_match] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_def] = ACTIONS(3413), + [anon_sym_global] = ACTIONS(3413), + [anon_sym_nonlocal] = ACTIONS(3413), + [anon_sym_exec] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3411), + [anon_sym_AT] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_not] = ACTIONS(3413), + [anon_sym_AMP] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_lambda] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3411), + [anon_sym_None] = ACTIONS(3413), + [anon_sym_0x] = ACTIONS(3411), + [anon_sym_0X] = ACTIONS(3411), + [anon_sym_0o] = ACTIONS(3411), + [anon_sym_0O] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(3411), + [anon_sym_0B] = ACTIONS(3411), + [aux_sym_integer_token4] = ACTIONS(3413), + [sym_float] = ACTIONS(3411), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_api] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3413), + [anon_sym_include] = ACTIONS(3413), + [anon_sym_DEF] = ACTIONS(3413), + [anon_sym_IF] = ACTIONS(3413), + [anon_sym_cdef] = ACTIONS(3413), + [anon_sym_cpdef] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_ctypedef] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_packed] = ACTIONS(3413), + [anon_sym_inline] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_sizeof] = ACTIONS(3413), + [sym__dedent] = ACTIONS(3411), + [sym_string_start] = ACTIONS(3411), + }, + [2013] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6995), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4304), + [sym_primary_expression] = STATE(2482), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1016), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2014] = { + [sym_named_expression] = STATE(4285), + [sym__named_expression_lhs] = STATE(6918), + [sym_list_splat_pattern] = STATE(2599), + [sym_as_pattern] = STATE(4285), + [sym_expression] = STATE(4864), + [sym_primary_expression] = STATE(2495), + [sym_not_operator] = STATE(4285), + [sym_boolean_operator] = STATE(4285), + [sym_binary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_comparison_operator] = STATE(4285), + [sym_lambda] = STATE(4285), + [sym_attribute] = STATE(2544), + [sym_subscript] = STATE(2544), + [sym_ellipsis] = STATE(2544), + [sym_call] = STATE(2544), + [sym_list] = STATE(2544), + [sym_set] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_dictionary] = STATE(2544), + [sym_list_comprehension] = STATE(2544), + [sym_dictionary_comprehension] = STATE(2544), + [sym_set_comprehension] = STATE(2544), + [sym_generator_expression] = STATE(2544), + [sym_parenthesized_expression] = STATE(2544), + [sym_conditional_expression] = STATE(4285), + [sym_concatenated_string] = STATE(2544), + [sym_string] = STATE(2457), + [sym_integer] = STATE(2544), + [sym_none] = STATE(2544), + [sym_await] = STATE(2544), + [sym_new_expression] = STATE(4285), + [sym_sizeof_expression] = STATE(2544), + [sym_cast_expression] = STATE(2544), + [aux_sym_integer_repeat4] = STATE(2428), + [sym_identifier] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_print] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_exec] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(994), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [2015] = { + [ts_builtin_sym_end] = ACTIONS(3965), + [sym_identifier] = ACTIONS(3967), + [anon_sym_import] = ACTIONS(3967), + [anon_sym_cimport] = ACTIONS(3967), + [anon_sym_from] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_STAR] = ACTIONS(3965), + [anon_sym_print] = ACTIONS(3967), + [anon_sym_assert] = ACTIONS(3967), + [anon_sym_return] = ACTIONS(3967), + [anon_sym_del] = ACTIONS(3967), + [anon_sym_raise] = ACTIONS(3967), + [anon_sym_pass] = ACTIONS(3967), + [anon_sym_break] = ACTIONS(3967), + [anon_sym_continue] = ACTIONS(3967), + [anon_sym_if] = ACTIONS(3967), + [anon_sym_match] = ACTIONS(3967), + [anon_sym_async] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3967), + [anon_sym_while] = ACTIONS(3967), + [anon_sym_try] = ACTIONS(3967), + [anon_sym_with] = ACTIONS(3967), + [anon_sym_def] = ACTIONS(3967), + [anon_sym_global] = ACTIONS(3967), + [anon_sym_nonlocal] = ACTIONS(3967), + [anon_sym_exec] = ACTIONS(3967), + [anon_sym_type] = ACTIONS(3967), + [anon_sym_class] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_AT] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_not] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3965), + [anon_sym_LT] = ACTIONS(3965), + [anon_sym_lambda] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3965), + [anon_sym_None] = ACTIONS(3967), + [anon_sym_0x] = ACTIONS(3965), + [anon_sym_0X] = ACTIONS(3965), + [anon_sym_0o] = ACTIONS(3965), + [anon_sym_0O] = ACTIONS(3965), + [anon_sym_0b] = ACTIONS(3965), + [anon_sym_0B] = ACTIONS(3965), + [aux_sym_integer_token4] = ACTIONS(3967), + [sym_float] = ACTIONS(3965), + [anon_sym_await] = ACTIONS(3967), + [anon_sym_api] = ACTIONS(3967), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3967), + [anon_sym_include] = ACTIONS(3967), + [anon_sym_DEF] = ACTIONS(3967), + [anon_sym_IF] = ACTIONS(3967), + [anon_sym_cdef] = ACTIONS(3967), + [anon_sym_cpdef] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3967), + [anon_sym_ctypedef] = ACTIONS(3967), + [anon_sym_public] = ACTIONS(3967), + [anon_sym_packed] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym_readonly] = ACTIONS(3967), + [anon_sym_sizeof] = ACTIONS(3967), + [sym_string_start] = ACTIONS(3965), + }, + [2016] = { + [ts_builtin_sym_end] = ACTIONS(3969), + [sym_identifier] = ACTIONS(3971), + [anon_sym_import] = ACTIONS(3971), + [anon_sym_cimport] = ACTIONS(3971), + [anon_sym_from] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_STAR] = ACTIONS(3969), + [anon_sym_print] = ACTIONS(3971), + [anon_sym_assert] = ACTIONS(3971), + [anon_sym_return] = ACTIONS(3971), + [anon_sym_del] = ACTIONS(3971), + [anon_sym_raise] = ACTIONS(3971), + [anon_sym_pass] = ACTIONS(3971), + [anon_sym_break] = ACTIONS(3971), + [anon_sym_continue] = ACTIONS(3971), + [anon_sym_if] = ACTIONS(3971), + [anon_sym_match] = ACTIONS(3971), + [anon_sym_async] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3971), + [anon_sym_while] = ACTIONS(3971), + [anon_sym_try] = ACTIONS(3971), + [anon_sym_with] = ACTIONS(3971), + [anon_sym_def] = ACTIONS(3971), + [anon_sym_global] = ACTIONS(3971), + [anon_sym_nonlocal] = ACTIONS(3971), + [anon_sym_exec] = ACTIONS(3971), + [anon_sym_type] = ACTIONS(3971), + [anon_sym_class] = ACTIONS(3971), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_AT] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_not] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3969), + [anon_sym_LT] = ACTIONS(3969), + [anon_sym_lambda] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3969), + [anon_sym_None] = ACTIONS(3971), + [anon_sym_0x] = ACTIONS(3969), + [anon_sym_0X] = ACTIONS(3969), + [anon_sym_0o] = ACTIONS(3969), + [anon_sym_0O] = ACTIONS(3969), + [anon_sym_0b] = ACTIONS(3969), + [anon_sym_0B] = ACTIONS(3969), + [aux_sym_integer_token4] = ACTIONS(3971), + [sym_float] = ACTIONS(3969), + [anon_sym_await] = ACTIONS(3971), + [anon_sym_api] = ACTIONS(3971), + [sym_true] = ACTIONS(3971), + [sym_false] = ACTIONS(3971), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3971), + [anon_sym_include] = ACTIONS(3971), + [anon_sym_DEF] = ACTIONS(3971), + [anon_sym_IF] = ACTIONS(3971), + [anon_sym_cdef] = ACTIONS(3971), + [anon_sym_cpdef] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3971), + [anon_sym_ctypedef] = ACTIONS(3971), + [anon_sym_public] = ACTIONS(3971), + [anon_sym_packed] = ACTIONS(3971), + [anon_sym_inline] = ACTIONS(3971), + [anon_sym_readonly] = ACTIONS(3971), + [anon_sym_sizeof] = ACTIONS(3971), + [sym_string_start] = ACTIONS(3969), + }, + [2017] = { + [ts_builtin_sym_end] = ACTIONS(3973), + [sym_identifier] = ACTIONS(3975), + [anon_sym_import] = ACTIONS(3975), + [anon_sym_cimport] = ACTIONS(3975), + [anon_sym_from] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3973), + [anon_sym_print] = ACTIONS(3975), + [anon_sym_assert] = ACTIONS(3975), + [anon_sym_return] = ACTIONS(3975), + [anon_sym_del] = ACTIONS(3975), + [anon_sym_raise] = ACTIONS(3975), + [anon_sym_pass] = ACTIONS(3975), + [anon_sym_break] = ACTIONS(3975), + [anon_sym_continue] = ACTIONS(3975), + [anon_sym_if] = ACTIONS(3975), + [anon_sym_match] = ACTIONS(3975), + [anon_sym_async] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3975), + [anon_sym_while] = ACTIONS(3975), + [anon_sym_try] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3975), + [anon_sym_def] = ACTIONS(3975), + [anon_sym_global] = ACTIONS(3975), + [anon_sym_nonlocal] = ACTIONS(3975), + [anon_sym_exec] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(3975), + [anon_sym_class] = ACTIONS(3975), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_AT] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_not] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3973), + [anon_sym_lambda] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3973), + [anon_sym_None] = ACTIONS(3975), + [anon_sym_0x] = ACTIONS(3973), + [anon_sym_0X] = ACTIONS(3973), + [anon_sym_0o] = ACTIONS(3973), + [anon_sym_0O] = ACTIONS(3973), + [anon_sym_0b] = ACTIONS(3973), + [anon_sym_0B] = ACTIONS(3973), + [aux_sym_integer_token4] = ACTIONS(3975), + [sym_float] = ACTIONS(3973), + [anon_sym_await] = ACTIONS(3975), + [anon_sym_api] = ACTIONS(3975), + [sym_true] = ACTIONS(3975), + [sym_false] = ACTIONS(3975), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3975), + [anon_sym_include] = ACTIONS(3975), + [anon_sym_DEF] = ACTIONS(3975), + [anon_sym_IF] = ACTIONS(3975), + [anon_sym_cdef] = ACTIONS(3975), + [anon_sym_cpdef] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3975), + [anon_sym_ctypedef] = ACTIONS(3975), + [anon_sym_public] = ACTIONS(3975), + [anon_sym_packed] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym_readonly] = ACTIONS(3975), + [anon_sym_sizeof] = ACTIONS(3975), + [sym_string_start] = ACTIONS(3973), + }, + [2018] = { + [ts_builtin_sym_end] = ACTIONS(3977), + [sym_identifier] = ACTIONS(3979), + [anon_sym_import] = ACTIONS(3979), + [anon_sym_cimport] = ACTIONS(3979), + [anon_sym_from] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3977), + [anon_sym_print] = ACTIONS(3979), + [anon_sym_assert] = ACTIONS(3979), + [anon_sym_return] = ACTIONS(3979), + [anon_sym_del] = ACTIONS(3979), + [anon_sym_raise] = ACTIONS(3979), + [anon_sym_pass] = ACTIONS(3979), + [anon_sym_break] = ACTIONS(3979), + [anon_sym_continue] = ACTIONS(3979), + [anon_sym_if] = ACTIONS(3979), + [anon_sym_match] = ACTIONS(3979), + [anon_sym_async] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3979), + [anon_sym_while] = ACTIONS(3979), + [anon_sym_try] = ACTIONS(3979), + [anon_sym_with] = ACTIONS(3979), + [anon_sym_def] = ACTIONS(3979), + [anon_sym_global] = ACTIONS(3979), + [anon_sym_nonlocal] = ACTIONS(3979), + [anon_sym_exec] = ACTIONS(3979), + [anon_sym_type] = ACTIONS(3979), + [anon_sym_class] = ACTIONS(3979), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_AT] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_lambda] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3977), + [anon_sym_None] = ACTIONS(3979), + [anon_sym_0x] = ACTIONS(3977), + [anon_sym_0X] = ACTIONS(3977), + [anon_sym_0o] = ACTIONS(3977), + [anon_sym_0O] = ACTIONS(3977), + [anon_sym_0b] = ACTIONS(3977), + [anon_sym_0B] = ACTIONS(3977), + [aux_sym_integer_token4] = ACTIONS(3979), + [sym_float] = ACTIONS(3977), + [anon_sym_await] = ACTIONS(3979), + [anon_sym_api] = ACTIONS(3979), + [sym_true] = ACTIONS(3979), + [sym_false] = ACTIONS(3979), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3979), + [anon_sym_include] = ACTIONS(3979), + [anon_sym_DEF] = ACTIONS(3979), + [anon_sym_IF] = ACTIONS(3979), + [anon_sym_cdef] = ACTIONS(3979), + [anon_sym_cpdef] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3979), + [anon_sym_ctypedef] = ACTIONS(3979), + [anon_sym_public] = ACTIONS(3979), + [anon_sym_packed] = ACTIONS(3979), + [anon_sym_inline] = ACTIONS(3979), + [anon_sym_readonly] = ACTIONS(3979), + [anon_sym_sizeof] = ACTIONS(3979), + [sym_string_start] = ACTIONS(3977), + }, + [2019] = { + [ts_builtin_sym_end] = ACTIONS(3981), + [sym_identifier] = ACTIONS(3983), + [anon_sym_import] = ACTIONS(3983), + [anon_sym_cimport] = ACTIONS(3983), + [anon_sym_from] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_print] = ACTIONS(3983), + [anon_sym_assert] = ACTIONS(3983), + [anon_sym_return] = ACTIONS(3983), + [anon_sym_del] = ACTIONS(3983), + [anon_sym_raise] = ACTIONS(3983), + [anon_sym_pass] = ACTIONS(3983), + [anon_sym_break] = ACTIONS(3983), + [anon_sym_continue] = ACTIONS(3983), + [anon_sym_if] = ACTIONS(3983), + [anon_sym_match] = ACTIONS(3983), + [anon_sym_async] = ACTIONS(3983), + [anon_sym_for] = ACTIONS(3983), + [anon_sym_while] = ACTIONS(3983), + [anon_sym_try] = ACTIONS(3983), + [anon_sym_with] = ACTIONS(3983), + [anon_sym_def] = ACTIONS(3983), + [anon_sym_global] = ACTIONS(3983), + [anon_sym_nonlocal] = ACTIONS(3983), + [anon_sym_exec] = ACTIONS(3983), + [anon_sym_type] = ACTIONS(3983), + [anon_sym_class] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_AT] = ACTIONS(3981), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_not] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_TILDE] = ACTIONS(3981), + [anon_sym_LT] = ACTIONS(3981), + [anon_sym_lambda] = ACTIONS(3983), + [anon_sym_yield] = ACTIONS(3983), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3981), + [anon_sym_None] = ACTIONS(3983), + [anon_sym_0x] = ACTIONS(3981), + [anon_sym_0X] = ACTIONS(3981), + [anon_sym_0o] = ACTIONS(3981), + [anon_sym_0O] = ACTIONS(3981), + [anon_sym_0b] = ACTIONS(3981), + [anon_sym_0B] = ACTIONS(3981), + [aux_sym_integer_token4] = ACTIONS(3983), + [sym_float] = ACTIONS(3981), + [anon_sym_await] = ACTIONS(3983), + [anon_sym_api] = ACTIONS(3983), + [sym_true] = ACTIONS(3983), + [sym_false] = ACTIONS(3983), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3983), + [anon_sym_include] = ACTIONS(3983), + [anon_sym_DEF] = ACTIONS(3983), + [anon_sym_IF] = ACTIONS(3983), + [anon_sym_cdef] = ACTIONS(3983), + [anon_sym_cpdef] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3983), + [anon_sym_ctypedef] = ACTIONS(3983), + [anon_sym_public] = ACTIONS(3983), + [anon_sym_packed] = ACTIONS(3983), + [anon_sym_inline] = ACTIONS(3983), + [anon_sym_readonly] = ACTIONS(3983), + [anon_sym_sizeof] = ACTIONS(3983), + [sym_string_start] = ACTIONS(3981), + }, + [2020] = { + [ts_builtin_sym_end] = ACTIONS(3985), + [sym_identifier] = ACTIONS(3987), + [anon_sym_import] = ACTIONS(3987), + [anon_sym_cimport] = ACTIONS(3987), + [anon_sym_from] = ACTIONS(3987), + [anon_sym_LPAREN] = ACTIONS(3985), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_print] = ACTIONS(3987), + [anon_sym_assert] = ACTIONS(3987), + [anon_sym_return] = ACTIONS(3987), + [anon_sym_del] = ACTIONS(3987), + [anon_sym_raise] = ACTIONS(3987), + [anon_sym_pass] = ACTIONS(3987), + [anon_sym_break] = ACTIONS(3987), + [anon_sym_continue] = ACTIONS(3987), + [anon_sym_if] = ACTIONS(3987), + [anon_sym_match] = ACTIONS(3987), + [anon_sym_async] = ACTIONS(3987), + [anon_sym_for] = ACTIONS(3987), + [anon_sym_while] = ACTIONS(3987), + [anon_sym_try] = ACTIONS(3987), + [anon_sym_with] = ACTIONS(3987), + [anon_sym_def] = ACTIONS(3987), + [anon_sym_global] = ACTIONS(3987), + [anon_sym_nonlocal] = ACTIONS(3987), + [anon_sym_exec] = ACTIONS(3987), + [anon_sym_type] = ACTIONS(3987), + [anon_sym_class] = ACTIONS(3987), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_AT] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3985), + [anon_sym_not] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_TILDE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3985), + [anon_sym_lambda] = ACTIONS(3987), + [anon_sym_yield] = ACTIONS(3987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3985), + [anon_sym_None] = ACTIONS(3987), + [anon_sym_0x] = ACTIONS(3985), + [anon_sym_0X] = ACTIONS(3985), + [anon_sym_0o] = ACTIONS(3985), + [anon_sym_0O] = ACTIONS(3985), + [anon_sym_0b] = ACTIONS(3985), + [anon_sym_0B] = ACTIONS(3985), + [aux_sym_integer_token4] = ACTIONS(3987), + [sym_float] = ACTIONS(3985), + [anon_sym_await] = ACTIONS(3987), + [anon_sym_api] = ACTIONS(3987), + [sym_true] = ACTIONS(3987), + [sym_false] = ACTIONS(3987), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3987), + [anon_sym_include] = ACTIONS(3987), + [anon_sym_DEF] = ACTIONS(3987), + [anon_sym_IF] = ACTIONS(3987), + [anon_sym_cdef] = ACTIONS(3987), + [anon_sym_cpdef] = ACTIONS(3987), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_ctypedef] = ACTIONS(3987), + [anon_sym_public] = ACTIONS(3987), + [anon_sym_packed] = ACTIONS(3987), + [anon_sym_inline] = ACTIONS(3987), + [anon_sym_readonly] = ACTIONS(3987), + [anon_sym_sizeof] = ACTIONS(3987), + [sym_string_start] = ACTIONS(3985), + }, + [2021] = { + [ts_builtin_sym_end] = ACTIONS(3989), + [sym_identifier] = ACTIONS(3991), + [anon_sym_import] = ACTIONS(3991), + [anon_sym_cimport] = ACTIONS(3991), + [anon_sym_from] = ACTIONS(3991), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_print] = ACTIONS(3991), + [anon_sym_assert] = ACTIONS(3991), + [anon_sym_return] = ACTIONS(3991), + [anon_sym_del] = ACTIONS(3991), + [anon_sym_raise] = ACTIONS(3991), + [anon_sym_pass] = ACTIONS(3991), + [anon_sym_break] = ACTIONS(3991), + [anon_sym_continue] = ACTIONS(3991), + [anon_sym_if] = ACTIONS(3991), + [anon_sym_match] = ACTIONS(3991), + [anon_sym_async] = ACTIONS(3991), + [anon_sym_for] = ACTIONS(3991), + [anon_sym_while] = ACTIONS(3991), + [anon_sym_try] = ACTIONS(3991), + [anon_sym_with] = ACTIONS(3991), + [anon_sym_def] = ACTIONS(3991), + [anon_sym_global] = ACTIONS(3991), + [anon_sym_nonlocal] = ACTIONS(3991), + [anon_sym_exec] = ACTIONS(3991), + [anon_sym_type] = ACTIONS(3991), + [anon_sym_class] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_AT] = ACTIONS(3989), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3989), + [anon_sym_not] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_TILDE] = ACTIONS(3989), + [anon_sym_LT] = ACTIONS(3989), + [anon_sym_lambda] = ACTIONS(3991), + [anon_sym_yield] = ACTIONS(3991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3989), + [anon_sym_None] = ACTIONS(3991), + [anon_sym_0x] = ACTIONS(3989), + [anon_sym_0X] = ACTIONS(3989), + [anon_sym_0o] = ACTIONS(3989), + [anon_sym_0O] = ACTIONS(3989), + [anon_sym_0b] = ACTIONS(3989), + [anon_sym_0B] = ACTIONS(3989), + [aux_sym_integer_token4] = ACTIONS(3991), + [sym_float] = ACTIONS(3989), + [anon_sym_await] = ACTIONS(3991), + [anon_sym_api] = ACTIONS(3991), + [sym_true] = ACTIONS(3991), + [sym_false] = ACTIONS(3991), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3991), + [anon_sym_include] = ACTIONS(3991), + [anon_sym_DEF] = ACTIONS(3991), + [anon_sym_IF] = ACTIONS(3991), + [anon_sym_cdef] = ACTIONS(3991), + [anon_sym_cpdef] = ACTIONS(3991), + [anon_sym_new] = ACTIONS(3991), + [anon_sym_ctypedef] = ACTIONS(3991), + [anon_sym_public] = ACTIONS(3991), + [anon_sym_packed] = ACTIONS(3991), + [anon_sym_inline] = ACTIONS(3991), + [anon_sym_readonly] = ACTIONS(3991), + [anon_sym_sizeof] = ACTIONS(3991), + [sym_string_start] = ACTIONS(3989), + }, + [2022] = { + [ts_builtin_sym_end] = ACTIONS(3993), + [sym_identifier] = ACTIONS(3995), + [anon_sym_import] = ACTIONS(3995), + [anon_sym_cimport] = ACTIONS(3995), + [anon_sym_from] = ACTIONS(3995), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_STAR] = ACTIONS(3993), + [anon_sym_print] = ACTIONS(3995), + [anon_sym_assert] = ACTIONS(3995), + [anon_sym_return] = ACTIONS(3995), + [anon_sym_del] = ACTIONS(3995), + [anon_sym_raise] = ACTIONS(3995), + [anon_sym_pass] = ACTIONS(3995), + [anon_sym_break] = ACTIONS(3995), + [anon_sym_continue] = ACTIONS(3995), + [anon_sym_if] = ACTIONS(3995), + [anon_sym_match] = ACTIONS(3995), + [anon_sym_async] = ACTIONS(3995), + [anon_sym_for] = ACTIONS(3995), + [anon_sym_while] = ACTIONS(3995), + [anon_sym_try] = ACTIONS(3995), + [anon_sym_with] = ACTIONS(3995), + [anon_sym_def] = ACTIONS(3995), + [anon_sym_global] = ACTIONS(3995), + [anon_sym_nonlocal] = ACTIONS(3995), + [anon_sym_exec] = ACTIONS(3995), + [anon_sym_type] = ACTIONS(3995), + [anon_sym_class] = ACTIONS(3995), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_AT] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3993), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_not] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_TILDE] = ACTIONS(3993), + [anon_sym_LT] = ACTIONS(3993), + [anon_sym_lambda] = ACTIONS(3995), + [anon_sym_yield] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3993), + [anon_sym_None] = ACTIONS(3995), + [anon_sym_0x] = ACTIONS(3993), + [anon_sym_0X] = ACTIONS(3993), + [anon_sym_0o] = ACTIONS(3993), + [anon_sym_0O] = ACTIONS(3993), + [anon_sym_0b] = ACTIONS(3993), + [anon_sym_0B] = ACTIONS(3993), + [aux_sym_integer_token4] = ACTIONS(3995), + [sym_float] = ACTIONS(3993), + [anon_sym_await] = ACTIONS(3995), + [anon_sym_api] = ACTIONS(3995), + [sym_true] = ACTIONS(3995), + [sym_false] = ACTIONS(3995), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3995), + [anon_sym_include] = ACTIONS(3995), + [anon_sym_DEF] = ACTIONS(3995), + [anon_sym_IF] = ACTIONS(3995), + [anon_sym_cdef] = ACTIONS(3995), + [anon_sym_cpdef] = ACTIONS(3995), + [anon_sym_new] = ACTIONS(3995), + [anon_sym_ctypedef] = ACTIONS(3995), + [anon_sym_public] = ACTIONS(3995), + [anon_sym_packed] = ACTIONS(3995), + [anon_sym_inline] = ACTIONS(3995), + [anon_sym_readonly] = ACTIONS(3995), + [anon_sym_sizeof] = ACTIONS(3995), + [sym_string_start] = ACTIONS(3993), + }, + [2023] = { + [ts_builtin_sym_end] = ACTIONS(3997), + [sym_identifier] = ACTIONS(3999), + [anon_sym_import] = ACTIONS(3999), + [anon_sym_cimport] = ACTIONS(3999), + [anon_sym_from] = ACTIONS(3999), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_print] = ACTIONS(3999), + [anon_sym_assert] = ACTIONS(3999), + [anon_sym_return] = ACTIONS(3999), + [anon_sym_del] = ACTIONS(3999), + [anon_sym_raise] = ACTIONS(3999), + [anon_sym_pass] = ACTIONS(3999), + [anon_sym_break] = ACTIONS(3999), + [anon_sym_continue] = ACTIONS(3999), + [anon_sym_if] = ACTIONS(3999), + [anon_sym_match] = ACTIONS(3999), + [anon_sym_async] = ACTIONS(3999), + [anon_sym_for] = ACTIONS(3999), + [anon_sym_while] = ACTIONS(3999), + [anon_sym_try] = ACTIONS(3999), + [anon_sym_with] = ACTIONS(3999), + [anon_sym_def] = ACTIONS(3999), + [anon_sym_global] = ACTIONS(3999), + [anon_sym_nonlocal] = ACTIONS(3999), + [anon_sym_exec] = ACTIONS(3999), + [anon_sym_type] = ACTIONS(3999), + [anon_sym_class] = ACTIONS(3999), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3997), + [anon_sym_not] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_TILDE] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3997), + [anon_sym_lambda] = ACTIONS(3999), + [anon_sym_yield] = ACTIONS(3999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_None] = ACTIONS(3999), + [anon_sym_0x] = ACTIONS(3997), + [anon_sym_0X] = ACTIONS(3997), + [anon_sym_0o] = ACTIONS(3997), + [anon_sym_0O] = ACTIONS(3997), + [anon_sym_0b] = ACTIONS(3997), + [anon_sym_0B] = ACTIONS(3997), + [aux_sym_integer_token4] = ACTIONS(3999), + [sym_float] = ACTIONS(3997), + [anon_sym_await] = ACTIONS(3999), + [anon_sym_api] = ACTIONS(3999), + [sym_true] = ACTIONS(3999), + [sym_false] = ACTIONS(3999), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3999), + [anon_sym_include] = ACTIONS(3999), + [anon_sym_DEF] = ACTIONS(3999), + [anon_sym_IF] = ACTIONS(3999), + [anon_sym_cdef] = ACTIONS(3999), + [anon_sym_cpdef] = ACTIONS(3999), + [anon_sym_new] = ACTIONS(3999), + [anon_sym_ctypedef] = ACTIONS(3999), + [anon_sym_public] = ACTIONS(3999), + [anon_sym_packed] = ACTIONS(3999), + [anon_sym_inline] = ACTIONS(3999), + [anon_sym_readonly] = ACTIONS(3999), + [anon_sym_sizeof] = ACTIONS(3999), + [sym_string_start] = ACTIONS(3997), + }, + [2024] = { + [ts_builtin_sym_end] = ACTIONS(4001), + [sym_identifier] = ACTIONS(4003), + [anon_sym_import] = ACTIONS(4003), + [anon_sym_cimport] = ACTIONS(4003), + [anon_sym_from] = ACTIONS(4003), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_print] = ACTIONS(4003), + [anon_sym_assert] = ACTIONS(4003), + [anon_sym_return] = ACTIONS(4003), + [anon_sym_del] = ACTIONS(4003), + [anon_sym_raise] = ACTIONS(4003), + [anon_sym_pass] = ACTIONS(4003), + [anon_sym_break] = ACTIONS(4003), + [anon_sym_continue] = ACTIONS(4003), + [anon_sym_if] = ACTIONS(4003), + [anon_sym_match] = ACTIONS(4003), + [anon_sym_async] = ACTIONS(4003), + [anon_sym_for] = ACTIONS(4003), + [anon_sym_while] = ACTIONS(4003), + [anon_sym_try] = ACTIONS(4003), + [anon_sym_with] = ACTIONS(4003), + [anon_sym_def] = ACTIONS(4003), + [anon_sym_global] = ACTIONS(4003), + [anon_sym_nonlocal] = ACTIONS(4003), + [anon_sym_exec] = ACTIONS(4003), + [anon_sym_type] = ACTIONS(4003), + [anon_sym_class] = ACTIONS(4003), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_AT] = ACTIONS(4001), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4001), + [anon_sym_not] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_TILDE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4001), + [anon_sym_lambda] = ACTIONS(4003), + [anon_sym_yield] = ACTIONS(4003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4001), + [anon_sym_None] = ACTIONS(4003), + [anon_sym_0x] = ACTIONS(4001), + [anon_sym_0X] = ACTIONS(4001), + [anon_sym_0o] = ACTIONS(4001), + [anon_sym_0O] = ACTIONS(4001), + [anon_sym_0b] = ACTIONS(4001), + [anon_sym_0B] = ACTIONS(4001), + [aux_sym_integer_token4] = ACTIONS(4003), + [sym_float] = ACTIONS(4001), + [anon_sym_await] = ACTIONS(4003), + [anon_sym_api] = ACTIONS(4003), + [sym_true] = ACTIONS(4003), + [sym_false] = ACTIONS(4003), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4003), + [anon_sym_include] = ACTIONS(4003), + [anon_sym_DEF] = ACTIONS(4003), + [anon_sym_IF] = ACTIONS(4003), + [anon_sym_cdef] = ACTIONS(4003), + [anon_sym_cpdef] = ACTIONS(4003), + [anon_sym_new] = ACTIONS(4003), + [anon_sym_ctypedef] = ACTIONS(4003), + [anon_sym_public] = ACTIONS(4003), + [anon_sym_packed] = ACTIONS(4003), + [anon_sym_inline] = ACTIONS(4003), + [anon_sym_readonly] = ACTIONS(4003), + [anon_sym_sizeof] = ACTIONS(4003), + [sym_string_start] = ACTIONS(4001), + }, + [2025] = { + [ts_builtin_sym_end] = ACTIONS(4005), + [sym_identifier] = ACTIONS(4007), + [anon_sym_import] = ACTIONS(4007), + [anon_sym_cimport] = ACTIONS(4007), + [anon_sym_from] = ACTIONS(4007), + [anon_sym_LPAREN] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4005), + [anon_sym_print] = ACTIONS(4007), + [anon_sym_assert] = ACTIONS(4007), + [anon_sym_return] = ACTIONS(4007), + [anon_sym_del] = ACTIONS(4007), + [anon_sym_raise] = ACTIONS(4007), + [anon_sym_pass] = ACTIONS(4007), + [anon_sym_break] = ACTIONS(4007), + [anon_sym_continue] = ACTIONS(4007), + [anon_sym_if] = ACTIONS(4007), + [anon_sym_match] = ACTIONS(4007), + [anon_sym_async] = ACTIONS(4007), + [anon_sym_for] = ACTIONS(4007), + [anon_sym_while] = ACTIONS(4007), + [anon_sym_try] = ACTIONS(4007), + [anon_sym_with] = ACTIONS(4007), + [anon_sym_def] = ACTIONS(4007), + [anon_sym_global] = ACTIONS(4007), + [anon_sym_nonlocal] = ACTIONS(4007), + [anon_sym_exec] = ACTIONS(4007), + [anon_sym_type] = ACTIONS(4007), + [anon_sym_class] = ACTIONS(4007), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_AT] = ACTIONS(4005), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_not] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_TILDE] = ACTIONS(4005), + [anon_sym_LT] = ACTIONS(4005), + [anon_sym_lambda] = ACTIONS(4007), + [anon_sym_yield] = ACTIONS(4007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4005), + [anon_sym_None] = ACTIONS(4007), + [anon_sym_0x] = ACTIONS(4005), + [anon_sym_0X] = ACTIONS(4005), + [anon_sym_0o] = ACTIONS(4005), + [anon_sym_0O] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(4005), + [anon_sym_0B] = ACTIONS(4005), + [aux_sym_integer_token4] = ACTIONS(4007), + [sym_float] = ACTIONS(4005), + [anon_sym_await] = ACTIONS(4007), + [anon_sym_api] = ACTIONS(4007), + [sym_true] = ACTIONS(4007), + [sym_false] = ACTIONS(4007), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4007), + [anon_sym_include] = ACTIONS(4007), + [anon_sym_DEF] = ACTIONS(4007), + [anon_sym_IF] = ACTIONS(4007), + [anon_sym_cdef] = ACTIONS(4007), + [anon_sym_cpdef] = ACTIONS(4007), + [anon_sym_new] = ACTIONS(4007), + [anon_sym_ctypedef] = ACTIONS(4007), + [anon_sym_public] = ACTIONS(4007), + [anon_sym_packed] = ACTIONS(4007), + [anon_sym_inline] = ACTIONS(4007), + [anon_sym_readonly] = ACTIONS(4007), + [anon_sym_sizeof] = ACTIONS(4007), + [sym_string_start] = ACTIONS(4005), + }, + [2026] = { + [ts_builtin_sym_end] = ACTIONS(4009), + [sym_identifier] = ACTIONS(4011), + [anon_sym_import] = ACTIONS(4011), + [anon_sym_cimport] = ACTIONS(4011), + [anon_sym_from] = ACTIONS(4011), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4009), + [anon_sym_print] = ACTIONS(4011), + [anon_sym_assert] = ACTIONS(4011), + [anon_sym_return] = ACTIONS(4011), + [anon_sym_del] = ACTIONS(4011), + [anon_sym_raise] = ACTIONS(4011), + [anon_sym_pass] = ACTIONS(4011), + [anon_sym_break] = ACTIONS(4011), + [anon_sym_continue] = ACTIONS(4011), + [anon_sym_if] = ACTIONS(4011), + [anon_sym_match] = ACTIONS(4011), + [anon_sym_async] = ACTIONS(4011), + [anon_sym_for] = ACTIONS(4011), + [anon_sym_while] = ACTIONS(4011), + [anon_sym_try] = ACTIONS(4011), + [anon_sym_with] = ACTIONS(4011), + [anon_sym_def] = ACTIONS(4011), + [anon_sym_global] = ACTIONS(4011), + [anon_sym_nonlocal] = ACTIONS(4011), + [anon_sym_exec] = ACTIONS(4011), + [anon_sym_type] = ACTIONS(4011), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_not] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_TILDE] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_lambda] = ACTIONS(4011), + [anon_sym_yield] = ACTIONS(4011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4009), + [anon_sym_None] = ACTIONS(4011), + [anon_sym_0x] = ACTIONS(4009), + [anon_sym_0X] = ACTIONS(4009), + [anon_sym_0o] = ACTIONS(4009), + [anon_sym_0O] = ACTIONS(4009), + [anon_sym_0b] = ACTIONS(4009), + [anon_sym_0B] = ACTIONS(4009), + [aux_sym_integer_token4] = ACTIONS(4011), + [sym_float] = ACTIONS(4009), + [anon_sym_await] = ACTIONS(4011), + [anon_sym_api] = ACTIONS(4011), + [sym_true] = ACTIONS(4011), + [sym_false] = ACTIONS(4011), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4011), + [anon_sym_include] = ACTIONS(4011), + [anon_sym_DEF] = ACTIONS(4011), + [anon_sym_IF] = ACTIONS(4011), + [anon_sym_cdef] = ACTIONS(4011), + [anon_sym_cpdef] = ACTIONS(4011), + [anon_sym_new] = ACTIONS(4011), + [anon_sym_ctypedef] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_packed] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_readonly] = ACTIONS(4011), + [anon_sym_sizeof] = ACTIONS(4011), + [sym_string_start] = ACTIONS(4009), + }, + [2027] = { + [ts_builtin_sym_end] = ACTIONS(4013), + [sym_identifier] = ACTIONS(4015), + [anon_sym_import] = ACTIONS(4015), + [anon_sym_cimport] = ACTIONS(4015), + [anon_sym_from] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_print] = ACTIONS(4015), + [anon_sym_assert] = ACTIONS(4015), + [anon_sym_return] = ACTIONS(4015), + [anon_sym_del] = ACTIONS(4015), + [anon_sym_raise] = ACTIONS(4015), + [anon_sym_pass] = ACTIONS(4015), + [anon_sym_break] = ACTIONS(4015), + [anon_sym_continue] = ACTIONS(4015), + [anon_sym_if] = ACTIONS(4015), + [anon_sym_match] = ACTIONS(4015), + [anon_sym_async] = ACTIONS(4015), + [anon_sym_for] = ACTIONS(4015), + [anon_sym_while] = ACTIONS(4015), + [anon_sym_try] = ACTIONS(4015), + [anon_sym_with] = ACTIONS(4015), + [anon_sym_def] = ACTIONS(4015), + [anon_sym_global] = ACTIONS(4015), + [anon_sym_nonlocal] = ACTIONS(4015), + [anon_sym_exec] = ACTIONS(4015), + [anon_sym_type] = ACTIONS(4015), + [anon_sym_class] = ACTIONS(4015), + [anon_sym_LBRACK] = ACTIONS(4013), + [anon_sym_AT] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_not] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_TILDE] = ACTIONS(4013), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_lambda] = ACTIONS(4015), + [anon_sym_yield] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4013), + [anon_sym_None] = ACTIONS(4015), + [anon_sym_0x] = ACTIONS(4013), + [anon_sym_0X] = ACTIONS(4013), + [anon_sym_0o] = ACTIONS(4013), + [anon_sym_0O] = ACTIONS(4013), + [anon_sym_0b] = ACTIONS(4013), + [anon_sym_0B] = ACTIONS(4013), + [aux_sym_integer_token4] = ACTIONS(4015), + [sym_float] = ACTIONS(4013), + [anon_sym_await] = ACTIONS(4015), + [anon_sym_api] = ACTIONS(4015), + [sym_true] = ACTIONS(4015), + [sym_false] = ACTIONS(4015), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4015), + [anon_sym_include] = ACTIONS(4015), + [anon_sym_DEF] = ACTIONS(4015), + [anon_sym_IF] = ACTIONS(4015), + [anon_sym_cdef] = ACTIONS(4015), + [anon_sym_cpdef] = ACTIONS(4015), + [anon_sym_new] = ACTIONS(4015), + [anon_sym_ctypedef] = ACTIONS(4015), + [anon_sym_public] = ACTIONS(4015), + [anon_sym_packed] = ACTIONS(4015), + [anon_sym_inline] = ACTIONS(4015), + [anon_sym_readonly] = ACTIONS(4015), + [anon_sym_sizeof] = ACTIONS(4015), + [sym_string_start] = ACTIONS(4013), + }, + [2028] = { + [ts_builtin_sym_end] = ACTIONS(4017), + [sym_identifier] = ACTIONS(4019), + [anon_sym_import] = ACTIONS(4019), + [anon_sym_cimport] = ACTIONS(4019), + [anon_sym_from] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_print] = ACTIONS(4019), + [anon_sym_assert] = ACTIONS(4019), + [anon_sym_return] = ACTIONS(4019), + [anon_sym_del] = ACTIONS(4019), + [anon_sym_raise] = ACTIONS(4019), + [anon_sym_pass] = ACTIONS(4019), + [anon_sym_break] = ACTIONS(4019), + [anon_sym_continue] = ACTIONS(4019), + [anon_sym_if] = ACTIONS(4019), + [anon_sym_match] = ACTIONS(4019), + [anon_sym_async] = ACTIONS(4019), + [anon_sym_for] = ACTIONS(4019), + [anon_sym_while] = ACTIONS(4019), + [anon_sym_try] = ACTIONS(4019), + [anon_sym_with] = ACTIONS(4019), + [anon_sym_def] = ACTIONS(4019), + [anon_sym_global] = ACTIONS(4019), + [anon_sym_nonlocal] = ACTIONS(4019), + [anon_sym_exec] = ACTIONS(4019), + [anon_sym_type] = ACTIONS(4019), + [anon_sym_class] = ACTIONS(4019), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_AT] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_not] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_TILDE] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_lambda] = ACTIONS(4019), + [anon_sym_yield] = ACTIONS(4019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4017), + [anon_sym_None] = ACTIONS(4019), + [anon_sym_0x] = ACTIONS(4017), + [anon_sym_0X] = ACTIONS(4017), + [anon_sym_0o] = ACTIONS(4017), + [anon_sym_0O] = ACTIONS(4017), + [anon_sym_0b] = ACTIONS(4017), + [anon_sym_0B] = ACTIONS(4017), + [aux_sym_integer_token4] = ACTIONS(4019), + [sym_float] = ACTIONS(4017), + [anon_sym_await] = ACTIONS(4019), + [anon_sym_api] = ACTIONS(4019), + [sym_true] = ACTIONS(4019), + [sym_false] = ACTIONS(4019), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4019), + [anon_sym_include] = ACTIONS(4019), + [anon_sym_DEF] = ACTIONS(4019), + [anon_sym_IF] = ACTIONS(4019), + [anon_sym_cdef] = ACTIONS(4019), + [anon_sym_cpdef] = ACTIONS(4019), + [anon_sym_new] = ACTIONS(4019), + [anon_sym_ctypedef] = ACTIONS(4019), + [anon_sym_public] = ACTIONS(4019), + [anon_sym_packed] = ACTIONS(4019), + [anon_sym_inline] = ACTIONS(4019), + [anon_sym_readonly] = ACTIONS(4019), + [anon_sym_sizeof] = ACTIONS(4019), + [sym_string_start] = ACTIONS(4017), + }, + [2029] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACK] = ACTIONS(1014), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2030] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2031] = { + [ts_builtin_sym_end] = ACTIONS(4021), + [sym_identifier] = ACTIONS(4023), + [anon_sym_import] = ACTIONS(4023), + [anon_sym_cimport] = ACTIONS(4023), + [anon_sym_from] = ACTIONS(4023), + [anon_sym_LPAREN] = ACTIONS(4021), + [anon_sym_STAR] = ACTIONS(4021), + [anon_sym_print] = ACTIONS(4023), + [anon_sym_assert] = ACTIONS(4023), + [anon_sym_return] = ACTIONS(4023), + [anon_sym_del] = ACTIONS(4023), + [anon_sym_raise] = ACTIONS(4023), + [anon_sym_pass] = ACTIONS(4023), + [anon_sym_break] = ACTIONS(4023), + [anon_sym_continue] = ACTIONS(4023), + [anon_sym_if] = ACTIONS(4023), + [anon_sym_match] = ACTIONS(4023), + [anon_sym_async] = ACTIONS(4023), + [anon_sym_for] = ACTIONS(4023), + [anon_sym_while] = ACTIONS(4023), + [anon_sym_try] = ACTIONS(4023), + [anon_sym_with] = ACTIONS(4023), + [anon_sym_def] = ACTIONS(4023), + [anon_sym_global] = ACTIONS(4023), + [anon_sym_nonlocal] = ACTIONS(4023), + [anon_sym_exec] = ACTIONS(4023), + [anon_sym_type] = ACTIONS(4023), + [anon_sym_class] = ACTIONS(4023), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_AT] = ACTIONS(4021), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4021), + [anon_sym_PLUS] = ACTIONS(4021), + [anon_sym_not] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_TILDE] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4021), + [anon_sym_lambda] = ACTIONS(4023), + [anon_sym_yield] = ACTIONS(4023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4021), + [anon_sym_None] = ACTIONS(4023), + [anon_sym_0x] = ACTIONS(4021), + [anon_sym_0X] = ACTIONS(4021), + [anon_sym_0o] = ACTIONS(4021), + [anon_sym_0O] = ACTIONS(4021), + [anon_sym_0b] = ACTIONS(4021), + [anon_sym_0B] = ACTIONS(4021), + [aux_sym_integer_token4] = ACTIONS(4023), + [sym_float] = ACTIONS(4021), + [anon_sym_await] = ACTIONS(4023), + [anon_sym_api] = ACTIONS(4023), + [sym_true] = ACTIONS(4023), + [sym_false] = ACTIONS(4023), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4023), + [anon_sym_include] = ACTIONS(4023), + [anon_sym_DEF] = ACTIONS(4023), + [anon_sym_IF] = ACTIONS(4023), + [anon_sym_cdef] = ACTIONS(4023), + [anon_sym_cpdef] = ACTIONS(4023), + [anon_sym_new] = ACTIONS(4023), + [anon_sym_ctypedef] = ACTIONS(4023), + [anon_sym_public] = ACTIONS(4023), + [anon_sym_packed] = ACTIONS(4023), + [anon_sym_inline] = ACTIONS(4023), + [anon_sym_readonly] = ACTIONS(4023), + [anon_sym_sizeof] = ACTIONS(4023), + [sym_string_start] = ACTIONS(4021), + }, + [2032] = { + [ts_builtin_sym_end] = ACTIONS(4025), + [sym_identifier] = ACTIONS(4027), + [anon_sym_import] = ACTIONS(4027), + [anon_sym_cimport] = ACTIONS(4027), + [anon_sym_from] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4025), + [anon_sym_print] = ACTIONS(4027), + [anon_sym_assert] = ACTIONS(4027), + [anon_sym_return] = ACTIONS(4027), + [anon_sym_del] = ACTIONS(4027), + [anon_sym_raise] = ACTIONS(4027), + [anon_sym_pass] = ACTIONS(4027), + [anon_sym_break] = ACTIONS(4027), + [anon_sym_continue] = ACTIONS(4027), + [anon_sym_if] = ACTIONS(4027), + [anon_sym_match] = ACTIONS(4027), + [anon_sym_async] = ACTIONS(4027), + [anon_sym_for] = ACTIONS(4027), + [anon_sym_while] = ACTIONS(4027), + [anon_sym_try] = ACTIONS(4027), + [anon_sym_with] = ACTIONS(4027), + [anon_sym_def] = ACTIONS(4027), + [anon_sym_global] = ACTIONS(4027), + [anon_sym_nonlocal] = ACTIONS(4027), + [anon_sym_exec] = ACTIONS(4027), + [anon_sym_type] = ACTIONS(4027), + [anon_sym_class] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_AT] = ACTIONS(4025), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_not] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_TILDE] = ACTIONS(4025), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_lambda] = ACTIONS(4027), + [anon_sym_yield] = ACTIONS(4027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4025), + [anon_sym_None] = ACTIONS(4027), + [anon_sym_0x] = ACTIONS(4025), + [anon_sym_0X] = ACTIONS(4025), + [anon_sym_0o] = ACTIONS(4025), + [anon_sym_0O] = ACTIONS(4025), + [anon_sym_0b] = ACTIONS(4025), + [anon_sym_0B] = ACTIONS(4025), + [aux_sym_integer_token4] = ACTIONS(4027), + [sym_float] = ACTIONS(4025), + [anon_sym_await] = ACTIONS(4027), + [anon_sym_api] = ACTIONS(4027), + [sym_true] = ACTIONS(4027), + [sym_false] = ACTIONS(4027), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4027), + [anon_sym_include] = ACTIONS(4027), + [anon_sym_DEF] = ACTIONS(4027), + [anon_sym_IF] = ACTIONS(4027), + [anon_sym_cdef] = ACTIONS(4027), + [anon_sym_cpdef] = ACTIONS(4027), + [anon_sym_new] = ACTIONS(4027), + [anon_sym_ctypedef] = ACTIONS(4027), + [anon_sym_public] = ACTIONS(4027), + [anon_sym_packed] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym_readonly] = ACTIONS(4027), + [anon_sym_sizeof] = ACTIONS(4027), + [sym_string_start] = ACTIONS(4025), + }, + [2033] = { + [ts_builtin_sym_end] = ACTIONS(4029), + [sym_identifier] = ACTIONS(4031), + [anon_sym_import] = ACTIONS(4031), + [anon_sym_cimport] = ACTIONS(4031), + [anon_sym_from] = ACTIONS(4031), + [anon_sym_LPAREN] = ACTIONS(4029), + [anon_sym_STAR] = ACTIONS(4029), + [anon_sym_print] = ACTIONS(4031), + [anon_sym_assert] = ACTIONS(4031), + [anon_sym_return] = ACTIONS(4031), + [anon_sym_del] = ACTIONS(4031), + [anon_sym_raise] = ACTIONS(4031), + [anon_sym_pass] = ACTIONS(4031), + [anon_sym_break] = ACTIONS(4031), + [anon_sym_continue] = ACTIONS(4031), + [anon_sym_if] = ACTIONS(4031), + [anon_sym_match] = ACTIONS(4031), + [anon_sym_async] = ACTIONS(4031), + [anon_sym_for] = ACTIONS(4031), + [anon_sym_while] = ACTIONS(4031), + [anon_sym_try] = ACTIONS(4031), + [anon_sym_with] = ACTIONS(4031), + [anon_sym_def] = ACTIONS(4031), + [anon_sym_global] = ACTIONS(4031), + [anon_sym_nonlocal] = ACTIONS(4031), + [anon_sym_exec] = ACTIONS(4031), + [anon_sym_type] = ACTIONS(4031), + [anon_sym_class] = ACTIONS(4031), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_AT] = ACTIONS(4029), + [anon_sym_DASH] = ACTIONS(4029), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_PLUS] = ACTIONS(4029), + [anon_sym_not] = ACTIONS(4031), + [anon_sym_AMP] = ACTIONS(4029), + [anon_sym_TILDE] = ACTIONS(4029), + [anon_sym_LT] = ACTIONS(4029), + [anon_sym_lambda] = ACTIONS(4031), + [anon_sym_yield] = ACTIONS(4031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4029), + [anon_sym_None] = ACTIONS(4031), + [anon_sym_0x] = ACTIONS(4029), + [anon_sym_0X] = ACTIONS(4029), + [anon_sym_0o] = ACTIONS(4029), + [anon_sym_0O] = ACTIONS(4029), + [anon_sym_0b] = ACTIONS(4029), + [anon_sym_0B] = ACTIONS(4029), + [aux_sym_integer_token4] = ACTIONS(4031), + [sym_float] = ACTIONS(4029), + [anon_sym_await] = ACTIONS(4031), + [anon_sym_api] = ACTIONS(4031), + [sym_true] = ACTIONS(4031), + [sym_false] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4031), + [anon_sym_include] = ACTIONS(4031), + [anon_sym_DEF] = ACTIONS(4031), + [anon_sym_IF] = ACTIONS(4031), + [anon_sym_cdef] = ACTIONS(4031), + [anon_sym_cpdef] = ACTIONS(4031), + [anon_sym_new] = ACTIONS(4031), + [anon_sym_ctypedef] = ACTIONS(4031), + [anon_sym_public] = ACTIONS(4031), + [anon_sym_packed] = ACTIONS(4031), + [anon_sym_inline] = ACTIONS(4031), + [anon_sym_readonly] = ACTIONS(4031), + [anon_sym_sizeof] = ACTIONS(4031), + [sym_string_start] = ACTIONS(4029), + }, + [2034] = { + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_cimport] = ACTIONS(3257), + [anon_sym_from] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_print] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_del] = ACTIONS(3257), + [anon_sym_raise] = ACTIONS(3257), + [anon_sym_pass] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_def] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3257), + [anon_sym_nonlocal] = ACTIONS(3257), + [anon_sym_exec] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [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(3257), + [anon_sym_AMP] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_lambda] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_None] = ACTIONS(3257), + [anon_sym_0x] = ACTIONS(3255), + [anon_sym_0X] = ACTIONS(3255), + [anon_sym_0o] = ACTIONS(3255), + [anon_sym_0O] = ACTIONS(3255), + [anon_sym_0b] = ACTIONS(3255), + [anon_sym_0B] = ACTIONS(3255), + [aux_sym_integer_token4] = ACTIONS(3257), + [sym_float] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_api] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3257), + [anon_sym_include] = ACTIONS(3257), + [anon_sym_DEF] = ACTIONS(3257), + [anon_sym_IF] = ACTIONS(3257), + [anon_sym_cdef] = ACTIONS(3257), + [anon_sym_cpdef] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_ctypedef] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_packed] = ACTIONS(3257), + [anon_sym_inline] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_sizeof] = ACTIONS(3257), + [sym_string_start] = ACTIONS(3255), + }, + [2035] = { + [ts_builtin_sym_end] = ACTIONS(4033), + [sym_identifier] = ACTIONS(4035), + [anon_sym_import] = ACTIONS(4035), + [anon_sym_cimport] = ACTIONS(4035), + [anon_sym_from] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4033), + [anon_sym_STAR] = ACTIONS(4033), + [anon_sym_print] = ACTIONS(4035), + [anon_sym_assert] = ACTIONS(4035), + [anon_sym_return] = ACTIONS(4035), + [anon_sym_del] = ACTIONS(4035), + [anon_sym_raise] = ACTIONS(4035), + [anon_sym_pass] = ACTIONS(4035), + [anon_sym_break] = ACTIONS(4035), + [anon_sym_continue] = ACTIONS(4035), + [anon_sym_if] = ACTIONS(4035), + [anon_sym_match] = ACTIONS(4035), + [anon_sym_async] = ACTIONS(4035), + [anon_sym_for] = ACTIONS(4035), + [anon_sym_while] = ACTIONS(4035), + [anon_sym_try] = ACTIONS(4035), + [anon_sym_with] = ACTIONS(4035), + [anon_sym_def] = ACTIONS(4035), + [anon_sym_global] = ACTIONS(4035), + [anon_sym_nonlocal] = ACTIONS(4035), + [anon_sym_exec] = ACTIONS(4035), + [anon_sym_type] = ACTIONS(4035), + [anon_sym_class] = ACTIONS(4035), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_AT] = ACTIONS(4033), + [anon_sym_DASH] = ACTIONS(4033), + [anon_sym_LBRACE] = ACTIONS(4033), + [anon_sym_PLUS] = ACTIONS(4033), + [anon_sym_not] = ACTIONS(4035), + [anon_sym_AMP] = ACTIONS(4033), + [anon_sym_TILDE] = ACTIONS(4033), + [anon_sym_LT] = ACTIONS(4033), + [anon_sym_lambda] = ACTIONS(4035), + [anon_sym_yield] = ACTIONS(4035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4033), + [anon_sym_None] = ACTIONS(4035), + [anon_sym_0x] = ACTIONS(4033), + [anon_sym_0X] = ACTIONS(4033), + [anon_sym_0o] = ACTIONS(4033), + [anon_sym_0O] = ACTIONS(4033), + [anon_sym_0b] = ACTIONS(4033), + [anon_sym_0B] = ACTIONS(4033), + [aux_sym_integer_token4] = ACTIONS(4035), + [sym_float] = ACTIONS(4033), + [anon_sym_await] = ACTIONS(4035), + [anon_sym_api] = ACTIONS(4035), + [sym_true] = ACTIONS(4035), + [sym_false] = ACTIONS(4035), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4035), + [anon_sym_include] = ACTIONS(4035), + [anon_sym_DEF] = ACTIONS(4035), + [anon_sym_IF] = ACTIONS(4035), + [anon_sym_cdef] = ACTIONS(4035), + [anon_sym_cpdef] = ACTIONS(4035), + [anon_sym_new] = ACTIONS(4035), + [anon_sym_ctypedef] = ACTIONS(4035), + [anon_sym_public] = ACTIONS(4035), + [anon_sym_packed] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym_readonly] = ACTIONS(4035), + [anon_sym_sizeof] = ACTIONS(4035), + [sym_string_start] = ACTIONS(4033), + }, + [2036] = { + [ts_builtin_sym_end] = ACTIONS(4037), + [sym_identifier] = ACTIONS(4039), + [anon_sym_import] = ACTIONS(4039), + [anon_sym_cimport] = ACTIONS(4039), + [anon_sym_from] = ACTIONS(4039), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_print] = ACTIONS(4039), + [anon_sym_assert] = ACTIONS(4039), + [anon_sym_return] = ACTIONS(4039), + [anon_sym_del] = ACTIONS(4039), + [anon_sym_raise] = ACTIONS(4039), + [anon_sym_pass] = ACTIONS(4039), + [anon_sym_break] = ACTIONS(4039), + [anon_sym_continue] = ACTIONS(4039), + [anon_sym_if] = ACTIONS(4039), + [anon_sym_match] = ACTIONS(4039), + [anon_sym_async] = ACTIONS(4039), + [anon_sym_for] = ACTIONS(4039), + [anon_sym_while] = ACTIONS(4039), + [anon_sym_try] = ACTIONS(4039), + [anon_sym_with] = ACTIONS(4039), + [anon_sym_def] = ACTIONS(4039), + [anon_sym_global] = ACTIONS(4039), + [anon_sym_nonlocal] = ACTIONS(4039), + [anon_sym_exec] = ACTIONS(4039), + [anon_sym_type] = ACTIONS(4039), + [anon_sym_class] = ACTIONS(4039), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4037), + [anon_sym_not] = ACTIONS(4039), + [anon_sym_AMP] = ACTIONS(4037), + [anon_sym_TILDE] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4037), + [anon_sym_lambda] = ACTIONS(4039), + [anon_sym_yield] = ACTIONS(4039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4037), + [anon_sym_None] = ACTIONS(4039), + [anon_sym_0x] = ACTIONS(4037), + [anon_sym_0X] = ACTIONS(4037), + [anon_sym_0o] = ACTIONS(4037), + [anon_sym_0O] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(4037), + [anon_sym_0B] = ACTIONS(4037), + [aux_sym_integer_token4] = ACTIONS(4039), + [sym_float] = ACTIONS(4037), + [anon_sym_await] = ACTIONS(4039), + [anon_sym_api] = ACTIONS(4039), + [sym_true] = ACTIONS(4039), + [sym_false] = ACTIONS(4039), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4039), + [anon_sym_include] = ACTIONS(4039), + [anon_sym_DEF] = ACTIONS(4039), + [anon_sym_IF] = ACTIONS(4039), + [anon_sym_cdef] = ACTIONS(4039), + [anon_sym_cpdef] = ACTIONS(4039), + [anon_sym_new] = ACTIONS(4039), + [anon_sym_ctypedef] = ACTIONS(4039), + [anon_sym_public] = ACTIONS(4039), + [anon_sym_packed] = ACTIONS(4039), + [anon_sym_inline] = ACTIONS(4039), + [anon_sym_readonly] = ACTIONS(4039), + [anon_sym_sizeof] = ACTIONS(4039), + [sym_string_start] = ACTIONS(4037), + }, + [2037] = { + [ts_builtin_sym_end] = ACTIONS(4041), + [sym_identifier] = ACTIONS(4043), + [anon_sym_import] = ACTIONS(4043), + [anon_sym_cimport] = ACTIONS(4043), + [anon_sym_from] = ACTIONS(4043), + [anon_sym_LPAREN] = ACTIONS(4041), + [anon_sym_STAR] = ACTIONS(4041), + [anon_sym_print] = ACTIONS(4043), + [anon_sym_assert] = ACTIONS(4043), + [anon_sym_return] = ACTIONS(4043), + [anon_sym_del] = ACTIONS(4043), + [anon_sym_raise] = ACTIONS(4043), + [anon_sym_pass] = ACTIONS(4043), + [anon_sym_break] = ACTIONS(4043), + [anon_sym_continue] = ACTIONS(4043), + [anon_sym_if] = ACTIONS(4043), + [anon_sym_match] = ACTIONS(4043), + [anon_sym_async] = ACTIONS(4043), + [anon_sym_for] = ACTIONS(4043), + [anon_sym_while] = ACTIONS(4043), + [anon_sym_try] = ACTIONS(4043), + [anon_sym_with] = ACTIONS(4043), + [anon_sym_def] = ACTIONS(4043), + [anon_sym_global] = ACTIONS(4043), + [anon_sym_nonlocal] = ACTIONS(4043), + [anon_sym_exec] = ACTIONS(4043), + [anon_sym_type] = ACTIONS(4043), + [anon_sym_class] = ACTIONS(4043), + [anon_sym_LBRACK] = ACTIONS(4041), + [anon_sym_AT] = ACTIONS(4041), + [anon_sym_DASH] = ACTIONS(4041), + [anon_sym_LBRACE] = ACTIONS(4041), + [anon_sym_PLUS] = ACTIONS(4041), + [anon_sym_not] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4041), + [anon_sym_TILDE] = ACTIONS(4041), + [anon_sym_LT] = ACTIONS(4041), + [anon_sym_lambda] = ACTIONS(4043), + [anon_sym_yield] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4041), + [anon_sym_None] = ACTIONS(4043), + [anon_sym_0x] = ACTIONS(4041), + [anon_sym_0X] = ACTIONS(4041), + [anon_sym_0o] = ACTIONS(4041), + [anon_sym_0O] = ACTIONS(4041), + [anon_sym_0b] = ACTIONS(4041), + [anon_sym_0B] = ACTIONS(4041), + [aux_sym_integer_token4] = ACTIONS(4043), + [sym_float] = ACTIONS(4041), + [anon_sym_await] = ACTIONS(4043), + [anon_sym_api] = ACTIONS(4043), + [sym_true] = ACTIONS(4043), + [sym_false] = ACTIONS(4043), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4043), + [anon_sym_include] = ACTIONS(4043), + [anon_sym_DEF] = ACTIONS(4043), + [anon_sym_IF] = ACTIONS(4043), + [anon_sym_cdef] = ACTIONS(4043), + [anon_sym_cpdef] = ACTIONS(4043), + [anon_sym_new] = ACTIONS(4043), + [anon_sym_ctypedef] = ACTIONS(4043), + [anon_sym_public] = ACTIONS(4043), + [anon_sym_packed] = ACTIONS(4043), + [anon_sym_inline] = ACTIONS(4043), + [anon_sym_readonly] = ACTIONS(4043), + [anon_sym_sizeof] = ACTIONS(4043), + [sym_string_start] = ACTIONS(4041), + }, + [2038] = { + [ts_builtin_sym_end] = ACTIONS(4045), + [sym_identifier] = ACTIONS(4047), + [anon_sym_import] = ACTIONS(4047), + [anon_sym_cimport] = ACTIONS(4047), + [anon_sym_from] = ACTIONS(4047), + [anon_sym_LPAREN] = ACTIONS(4045), + [anon_sym_STAR] = ACTIONS(4045), + [anon_sym_print] = ACTIONS(4047), + [anon_sym_assert] = ACTIONS(4047), + [anon_sym_return] = ACTIONS(4047), + [anon_sym_del] = ACTIONS(4047), + [anon_sym_raise] = ACTIONS(4047), + [anon_sym_pass] = ACTIONS(4047), + [anon_sym_break] = ACTIONS(4047), + [anon_sym_continue] = ACTIONS(4047), + [anon_sym_if] = ACTIONS(4047), + [anon_sym_match] = ACTIONS(4047), + [anon_sym_async] = ACTIONS(4047), + [anon_sym_for] = ACTIONS(4047), + [anon_sym_while] = ACTIONS(4047), + [anon_sym_try] = ACTIONS(4047), + [anon_sym_with] = ACTIONS(4047), + [anon_sym_def] = ACTIONS(4047), + [anon_sym_global] = ACTIONS(4047), + [anon_sym_nonlocal] = ACTIONS(4047), + [anon_sym_exec] = ACTIONS(4047), + [anon_sym_type] = ACTIONS(4047), + [anon_sym_class] = ACTIONS(4047), + [anon_sym_LBRACK] = ACTIONS(4045), + [anon_sym_AT] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4045), + [anon_sym_PLUS] = ACTIONS(4045), + [anon_sym_not] = ACTIONS(4047), + [anon_sym_AMP] = ACTIONS(4045), + [anon_sym_TILDE] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_lambda] = ACTIONS(4047), + [anon_sym_yield] = ACTIONS(4047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4045), + [anon_sym_None] = ACTIONS(4047), + [anon_sym_0x] = ACTIONS(4045), + [anon_sym_0X] = ACTIONS(4045), + [anon_sym_0o] = ACTIONS(4045), + [anon_sym_0O] = ACTIONS(4045), + [anon_sym_0b] = ACTIONS(4045), + [anon_sym_0B] = ACTIONS(4045), + [aux_sym_integer_token4] = ACTIONS(4047), + [sym_float] = ACTIONS(4045), + [anon_sym_await] = ACTIONS(4047), + [anon_sym_api] = ACTIONS(4047), + [sym_true] = ACTIONS(4047), + [sym_false] = ACTIONS(4047), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4047), + [anon_sym_include] = ACTIONS(4047), + [anon_sym_DEF] = ACTIONS(4047), + [anon_sym_IF] = ACTIONS(4047), + [anon_sym_cdef] = ACTIONS(4047), + [anon_sym_cpdef] = ACTIONS(4047), + [anon_sym_new] = ACTIONS(4047), + [anon_sym_ctypedef] = ACTIONS(4047), + [anon_sym_public] = ACTIONS(4047), + [anon_sym_packed] = ACTIONS(4047), + [anon_sym_inline] = ACTIONS(4047), + [anon_sym_readonly] = ACTIONS(4047), + [anon_sym_sizeof] = ACTIONS(4047), + [sym_string_start] = ACTIONS(4045), + }, + [2039] = { + [ts_builtin_sym_end] = ACTIONS(4049), + [sym_identifier] = ACTIONS(4051), + [anon_sym_import] = ACTIONS(4051), + [anon_sym_cimport] = ACTIONS(4051), + [anon_sym_from] = ACTIONS(4051), + [anon_sym_LPAREN] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4049), + [anon_sym_print] = ACTIONS(4051), + [anon_sym_assert] = ACTIONS(4051), + [anon_sym_return] = ACTIONS(4051), + [anon_sym_del] = ACTIONS(4051), + [anon_sym_raise] = ACTIONS(4051), + [anon_sym_pass] = ACTIONS(4051), + [anon_sym_break] = ACTIONS(4051), + [anon_sym_continue] = ACTIONS(4051), + [anon_sym_if] = ACTIONS(4051), + [anon_sym_match] = ACTIONS(4051), + [anon_sym_async] = ACTIONS(4051), + [anon_sym_for] = ACTIONS(4051), + [anon_sym_while] = ACTIONS(4051), + [anon_sym_try] = ACTIONS(4051), + [anon_sym_with] = ACTIONS(4051), + [anon_sym_def] = ACTIONS(4051), + [anon_sym_global] = ACTIONS(4051), + [anon_sym_nonlocal] = ACTIONS(4051), + [anon_sym_exec] = ACTIONS(4051), + [anon_sym_type] = ACTIONS(4051), + [anon_sym_class] = ACTIONS(4051), + [anon_sym_LBRACK] = ACTIONS(4049), + [anon_sym_AT] = ACTIONS(4049), + [anon_sym_DASH] = ACTIONS(4049), + [anon_sym_LBRACE] = ACTIONS(4049), + [anon_sym_PLUS] = ACTIONS(4049), + [anon_sym_not] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4049), + [anon_sym_TILDE] = ACTIONS(4049), + [anon_sym_LT] = ACTIONS(4049), + [anon_sym_lambda] = ACTIONS(4051), + [anon_sym_yield] = ACTIONS(4051), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4049), + [anon_sym_None] = ACTIONS(4051), + [anon_sym_0x] = ACTIONS(4049), + [anon_sym_0X] = ACTIONS(4049), + [anon_sym_0o] = ACTIONS(4049), + [anon_sym_0O] = ACTIONS(4049), + [anon_sym_0b] = ACTIONS(4049), + [anon_sym_0B] = ACTIONS(4049), + [aux_sym_integer_token4] = ACTIONS(4051), + [sym_float] = ACTIONS(4049), + [anon_sym_await] = ACTIONS(4051), + [anon_sym_api] = ACTIONS(4051), + [sym_true] = ACTIONS(4051), + [sym_false] = ACTIONS(4051), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4051), + [anon_sym_include] = ACTIONS(4051), + [anon_sym_DEF] = ACTIONS(4051), + [anon_sym_IF] = ACTIONS(4051), + [anon_sym_cdef] = ACTIONS(4051), + [anon_sym_cpdef] = ACTIONS(4051), + [anon_sym_new] = ACTIONS(4051), + [anon_sym_ctypedef] = ACTIONS(4051), + [anon_sym_public] = ACTIONS(4051), + [anon_sym_packed] = ACTIONS(4051), + [anon_sym_inline] = ACTIONS(4051), + [anon_sym_readonly] = ACTIONS(4051), + [anon_sym_sizeof] = ACTIONS(4051), + [sym_string_start] = ACTIONS(4049), + }, + [2040] = { + [ts_builtin_sym_end] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4055), + [anon_sym_import] = ACTIONS(4055), + [anon_sym_cimport] = ACTIONS(4055), + [anon_sym_from] = ACTIONS(4055), + [anon_sym_LPAREN] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(4053), + [anon_sym_print] = ACTIONS(4055), + [anon_sym_assert] = ACTIONS(4055), + [anon_sym_return] = ACTIONS(4055), + [anon_sym_del] = ACTIONS(4055), + [anon_sym_raise] = ACTIONS(4055), + [anon_sym_pass] = ACTIONS(4055), + [anon_sym_break] = ACTIONS(4055), + [anon_sym_continue] = ACTIONS(4055), + [anon_sym_if] = ACTIONS(4055), + [anon_sym_match] = ACTIONS(4055), + [anon_sym_async] = ACTIONS(4055), + [anon_sym_for] = ACTIONS(4055), + [anon_sym_while] = ACTIONS(4055), + [anon_sym_try] = ACTIONS(4055), + [anon_sym_with] = ACTIONS(4055), + [anon_sym_def] = ACTIONS(4055), + [anon_sym_global] = ACTIONS(4055), + [anon_sym_nonlocal] = ACTIONS(4055), + [anon_sym_exec] = ACTIONS(4055), + [anon_sym_type] = ACTIONS(4055), + [anon_sym_class] = ACTIONS(4055), + [anon_sym_LBRACK] = ACTIONS(4053), + [anon_sym_AT] = ACTIONS(4053), + [anon_sym_DASH] = ACTIONS(4053), + [anon_sym_LBRACE] = ACTIONS(4053), + [anon_sym_PLUS] = ACTIONS(4053), + [anon_sym_not] = ACTIONS(4055), + [anon_sym_AMP] = ACTIONS(4053), + [anon_sym_TILDE] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_lambda] = ACTIONS(4055), + [anon_sym_yield] = ACTIONS(4055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4053), + [anon_sym_None] = ACTIONS(4055), + [anon_sym_0x] = ACTIONS(4053), + [anon_sym_0X] = ACTIONS(4053), + [anon_sym_0o] = ACTIONS(4053), + [anon_sym_0O] = ACTIONS(4053), + [anon_sym_0b] = ACTIONS(4053), + [anon_sym_0B] = ACTIONS(4053), + [aux_sym_integer_token4] = ACTIONS(4055), + [sym_float] = ACTIONS(4053), + [anon_sym_await] = ACTIONS(4055), + [anon_sym_api] = ACTIONS(4055), + [sym_true] = ACTIONS(4055), + [sym_false] = ACTIONS(4055), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4055), + [anon_sym_include] = ACTIONS(4055), + [anon_sym_DEF] = ACTIONS(4055), + [anon_sym_IF] = ACTIONS(4055), + [anon_sym_cdef] = ACTIONS(4055), + [anon_sym_cpdef] = ACTIONS(4055), + [anon_sym_new] = ACTIONS(4055), + [anon_sym_ctypedef] = ACTIONS(4055), + [anon_sym_public] = ACTIONS(4055), + [anon_sym_packed] = ACTIONS(4055), + [anon_sym_inline] = ACTIONS(4055), + [anon_sym_readonly] = ACTIONS(4055), + [anon_sym_sizeof] = ACTIONS(4055), + [sym_string_start] = ACTIONS(4053), + }, + [2041] = { + [ts_builtin_sym_end] = ACTIONS(4057), + [sym_identifier] = ACTIONS(4059), + [anon_sym_import] = ACTIONS(4059), + [anon_sym_cimport] = ACTIONS(4059), + [anon_sym_from] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(4057), + [anon_sym_print] = ACTIONS(4059), + [anon_sym_assert] = ACTIONS(4059), + [anon_sym_return] = ACTIONS(4059), + [anon_sym_del] = ACTIONS(4059), + [anon_sym_raise] = ACTIONS(4059), + [anon_sym_pass] = ACTIONS(4059), + [anon_sym_break] = ACTIONS(4059), + [anon_sym_continue] = ACTIONS(4059), + [anon_sym_if] = ACTIONS(4059), + [anon_sym_match] = ACTIONS(4059), + [anon_sym_async] = ACTIONS(4059), + [anon_sym_for] = ACTIONS(4059), + [anon_sym_while] = ACTIONS(4059), + [anon_sym_try] = ACTIONS(4059), + [anon_sym_with] = ACTIONS(4059), + [anon_sym_def] = ACTIONS(4059), + [anon_sym_global] = ACTIONS(4059), + [anon_sym_nonlocal] = ACTIONS(4059), + [anon_sym_exec] = ACTIONS(4059), + [anon_sym_type] = ACTIONS(4059), + [anon_sym_class] = ACTIONS(4059), + [anon_sym_LBRACK] = ACTIONS(4057), + [anon_sym_AT] = ACTIONS(4057), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_LBRACE] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_not] = ACTIONS(4059), + [anon_sym_AMP] = ACTIONS(4057), + [anon_sym_TILDE] = ACTIONS(4057), + [anon_sym_LT] = ACTIONS(4057), + [anon_sym_lambda] = ACTIONS(4059), + [anon_sym_yield] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4057), + [anon_sym_None] = ACTIONS(4059), + [anon_sym_0x] = ACTIONS(4057), + [anon_sym_0X] = ACTIONS(4057), + [anon_sym_0o] = ACTIONS(4057), + [anon_sym_0O] = ACTIONS(4057), + [anon_sym_0b] = ACTIONS(4057), + [anon_sym_0B] = ACTIONS(4057), + [aux_sym_integer_token4] = ACTIONS(4059), + [sym_float] = ACTIONS(4057), + [anon_sym_await] = ACTIONS(4059), + [anon_sym_api] = ACTIONS(4059), + [sym_true] = ACTIONS(4059), + [sym_false] = ACTIONS(4059), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4059), + [anon_sym_include] = ACTIONS(4059), + [anon_sym_DEF] = ACTIONS(4059), + [anon_sym_IF] = ACTIONS(4059), + [anon_sym_cdef] = ACTIONS(4059), + [anon_sym_cpdef] = ACTIONS(4059), + [anon_sym_new] = ACTIONS(4059), + [anon_sym_ctypedef] = ACTIONS(4059), + [anon_sym_public] = ACTIONS(4059), + [anon_sym_packed] = ACTIONS(4059), + [anon_sym_inline] = ACTIONS(4059), + [anon_sym_readonly] = ACTIONS(4059), + [anon_sym_sizeof] = ACTIONS(4059), + [sym_string_start] = ACTIONS(4057), + }, + [2042] = { + [ts_builtin_sym_end] = ACTIONS(4061), + [sym_identifier] = ACTIONS(4063), + [anon_sym_import] = ACTIONS(4063), + [anon_sym_cimport] = ACTIONS(4063), + [anon_sym_from] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_STAR] = ACTIONS(4061), + [anon_sym_print] = ACTIONS(4063), + [anon_sym_assert] = ACTIONS(4063), + [anon_sym_return] = ACTIONS(4063), + [anon_sym_del] = ACTIONS(4063), + [anon_sym_raise] = ACTIONS(4063), + [anon_sym_pass] = ACTIONS(4063), + [anon_sym_break] = ACTIONS(4063), + [anon_sym_continue] = ACTIONS(4063), + [anon_sym_if] = ACTIONS(4063), + [anon_sym_match] = ACTIONS(4063), + [anon_sym_async] = ACTIONS(4063), + [anon_sym_for] = ACTIONS(4063), + [anon_sym_while] = ACTIONS(4063), + [anon_sym_try] = ACTIONS(4063), + [anon_sym_with] = ACTIONS(4063), + [anon_sym_def] = ACTIONS(4063), + [anon_sym_global] = ACTIONS(4063), + [anon_sym_nonlocal] = ACTIONS(4063), + [anon_sym_exec] = ACTIONS(4063), + [anon_sym_type] = ACTIONS(4063), + [anon_sym_class] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_AT] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4061), + [anon_sym_LBRACE] = ACTIONS(4061), + [anon_sym_PLUS] = ACTIONS(4061), + [anon_sym_not] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4061), + [anon_sym_TILDE] = ACTIONS(4061), + [anon_sym_LT] = ACTIONS(4061), + [anon_sym_lambda] = ACTIONS(4063), + [anon_sym_yield] = ACTIONS(4063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_None] = ACTIONS(4063), + [anon_sym_0x] = ACTIONS(4061), + [anon_sym_0X] = ACTIONS(4061), + [anon_sym_0o] = ACTIONS(4061), + [anon_sym_0O] = ACTIONS(4061), + [anon_sym_0b] = ACTIONS(4061), + [anon_sym_0B] = ACTIONS(4061), + [aux_sym_integer_token4] = ACTIONS(4063), + [sym_float] = ACTIONS(4061), + [anon_sym_await] = ACTIONS(4063), + [anon_sym_api] = ACTIONS(4063), + [sym_true] = ACTIONS(4063), + [sym_false] = ACTIONS(4063), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4063), + [anon_sym_include] = ACTIONS(4063), + [anon_sym_DEF] = ACTIONS(4063), + [anon_sym_IF] = ACTIONS(4063), + [anon_sym_cdef] = ACTIONS(4063), + [anon_sym_cpdef] = ACTIONS(4063), + [anon_sym_new] = ACTIONS(4063), + [anon_sym_ctypedef] = ACTIONS(4063), + [anon_sym_public] = ACTIONS(4063), + [anon_sym_packed] = ACTIONS(4063), + [anon_sym_inline] = ACTIONS(4063), + [anon_sym_readonly] = ACTIONS(4063), + [anon_sym_sizeof] = ACTIONS(4063), + [sym_string_start] = ACTIONS(4061), + }, + [2043] = { + [ts_builtin_sym_end] = ACTIONS(4065), + [sym_identifier] = ACTIONS(4067), + [anon_sym_import] = ACTIONS(4067), + [anon_sym_cimport] = ACTIONS(4067), + [anon_sym_from] = ACTIONS(4067), + [anon_sym_LPAREN] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(4065), + [anon_sym_print] = ACTIONS(4067), + [anon_sym_assert] = ACTIONS(4067), + [anon_sym_return] = ACTIONS(4067), + [anon_sym_del] = ACTIONS(4067), + [anon_sym_raise] = ACTIONS(4067), + [anon_sym_pass] = ACTIONS(4067), + [anon_sym_break] = ACTIONS(4067), + [anon_sym_continue] = ACTIONS(4067), + [anon_sym_if] = ACTIONS(4067), + [anon_sym_match] = ACTIONS(4067), + [anon_sym_async] = ACTIONS(4067), + [anon_sym_for] = ACTIONS(4067), + [anon_sym_while] = ACTIONS(4067), + [anon_sym_try] = ACTIONS(4067), + [anon_sym_with] = ACTIONS(4067), + [anon_sym_def] = ACTIONS(4067), + [anon_sym_global] = ACTIONS(4067), + [anon_sym_nonlocal] = ACTIONS(4067), + [anon_sym_exec] = ACTIONS(4067), + [anon_sym_type] = ACTIONS(4067), + [anon_sym_class] = ACTIONS(4067), + [anon_sym_LBRACK] = ACTIONS(4065), + [anon_sym_AT] = ACTIONS(4065), + [anon_sym_DASH] = ACTIONS(4065), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_PLUS] = ACTIONS(4065), + [anon_sym_not] = ACTIONS(4067), + [anon_sym_AMP] = ACTIONS(4065), + [anon_sym_TILDE] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4065), + [anon_sym_lambda] = ACTIONS(4067), + [anon_sym_yield] = ACTIONS(4067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4065), + [anon_sym_None] = ACTIONS(4067), + [anon_sym_0x] = ACTIONS(4065), + [anon_sym_0X] = ACTIONS(4065), + [anon_sym_0o] = ACTIONS(4065), + [anon_sym_0O] = ACTIONS(4065), + [anon_sym_0b] = ACTIONS(4065), + [anon_sym_0B] = ACTIONS(4065), + [aux_sym_integer_token4] = ACTIONS(4067), + [sym_float] = ACTIONS(4065), + [anon_sym_await] = ACTIONS(4067), + [anon_sym_api] = ACTIONS(4067), + [sym_true] = ACTIONS(4067), + [sym_false] = ACTIONS(4067), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4067), + [anon_sym_include] = ACTIONS(4067), + [anon_sym_DEF] = ACTIONS(4067), + [anon_sym_IF] = ACTIONS(4067), + [anon_sym_cdef] = ACTIONS(4067), + [anon_sym_cpdef] = ACTIONS(4067), + [anon_sym_new] = ACTIONS(4067), + [anon_sym_ctypedef] = ACTIONS(4067), + [anon_sym_public] = ACTIONS(4067), + [anon_sym_packed] = ACTIONS(4067), + [anon_sym_inline] = ACTIONS(4067), + [anon_sym_readonly] = ACTIONS(4067), + [anon_sym_sizeof] = ACTIONS(4067), + [sym_string_start] = ACTIONS(4065), + }, + [2044] = { + [ts_builtin_sym_end] = ACTIONS(4069), + [sym_identifier] = ACTIONS(4071), + [anon_sym_import] = ACTIONS(4071), + [anon_sym_cimport] = ACTIONS(4071), + [anon_sym_from] = ACTIONS(4071), + [anon_sym_LPAREN] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_print] = ACTIONS(4071), + [anon_sym_assert] = ACTIONS(4071), + [anon_sym_return] = ACTIONS(4071), + [anon_sym_del] = ACTIONS(4071), + [anon_sym_raise] = ACTIONS(4071), + [anon_sym_pass] = ACTIONS(4071), + [anon_sym_break] = ACTIONS(4071), + [anon_sym_continue] = ACTIONS(4071), + [anon_sym_if] = ACTIONS(4071), + [anon_sym_match] = ACTIONS(4071), + [anon_sym_async] = ACTIONS(4071), + [anon_sym_for] = ACTIONS(4071), + [anon_sym_while] = ACTIONS(4071), + [anon_sym_try] = ACTIONS(4071), + [anon_sym_with] = ACTIONS(4071), + [anon_sym_def] = ACTIONS(4071), + [anon_sym_global] = ACTIONS(4071), + [anon_sym_nonlocal] = ACTIONS(4071), + [anon_sym_exec] = ACTIONS(4071), + [anon_sym_type] = ACTIONS(4071), + [anon_sym_class] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4069), + [anon_sym_AT] = ACTIONS(4069), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_LBRACE] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_not] = ACTIONS(4071), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_TILDE] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4069), + [anon_sym_lambda] = ACTIONS(4071), + [anon_sym_yield] = ACTIONS(4071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4069), + [anon_sym_None] = ACTIONS(4071), + [anon_sym_0x] = ACTIONS(4069), + [anon_sym_0X] = ACTIONS(4069), + [anon_sym_0o] = ACTIONS(4069), + [anon_sym_0O] = ACTIONS(4069), + [anon_sym_0b] = ACTIONS(4069), + [anon_sym_0B] = ACTIONS(4069), + [aux_sym_integer_token4] = ACTIONS(4071), + [sym_float] = ACTIONS(4069), + [anon_sym_await] = ACTIONS(4071), + [anon_sym_api] = ACTIONS(4071), + [sym_true] = ACTIONS(4071), + [sym_false] = ACTIONS(4071), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4071), + [anon_sym_include] = ACTIONS(4071), + [anon_sym_DEF] = ACTIONS(4071), + [anon_sym_IF] = ACTIONS(4071), + [anon_sym_cdef] = ACTIONS(4071), + [anon_sym_cpdef] = ACTIONS(4071), + [anon_sym_new] = ACTIONS(4071), + [anon_sym_ctypedef] = ACTIONS(4071), + [anon_sym_public] = ACTIONS(4071), + [anon_sym_packed] = ACTIONS(4071), + [anon_sym_inline] = ACTIONS(4071), + [anon_sym_readonly] = ACTIONS(4071), + [anon_sym_sizeof] = ACTIONS(4071), + [sym_string_start] = ACTIONS(4069), + }, + [2045] = { + [ts_builtin_sym_end] = ACTIONS(4073), + [sym_identifier] = ACTIONS(4075), + [anon_sym_import] = ACTIONS(4075), + [anon_sym_cimport] = ACTIONS(4075), + [anon_sym_from] = ACTIONS(4075), + [anon_sym_LPAREN] = ACTIONS(4073), + [anon_sym_STAR] = ACTIONS(4073), + [anon_sym_print] = ACTIONS(4075), + [anon_sym_assert] = ACTIONS(4075), + [anon_sym_return] = ACTIONS(4075), + [anon_sym_del] = ACTIONS(4075), + [anon_sym_raise] = ACTIONS(4075), + [anon_sym_pass] = ACTIONS(4075), + [anon_sym_break] = ACTIONS(4075), + [anon_sym_continue] = ACTIONS(4075), + [anon_sym_if] = ACTIONS(4075), + [anon_sym_match] = ACTIONS(4075), + [anon_sym_async] = ACTIONS(4075), + [anon_sym_for] = ACTIONS(4075), + [anon_sym_while] = ACTIONS(4075), + [anon_sym_try] = ACTIONS(4075), + [anon_sym_with] = ACTIONS(4075), + [anon_sym_def] = ACTIONS(4075), + [anon_sym_global] = ACTIONS(4075), + [anon_sym_nonlocal] = ACTIONS(4075), + [anon_sym_exec] = ACTIONS(4075), + [anon_sym_type] = ACTIONS(4075), + [anon_sym_class] = ACTIONS(4075), + [anon_sym_LBRACK] = ACTIONS(4073), + [anon_sym_AT] = ACTIONS(4073), + [anon_sym_DASH] = ACTIONS(4073), + [anon_sym_LBRACE] = ACTIONS(4073), + [anon_sym_PLUS] = ACTIONS(4073), + [anon_sym_not] = ACTIONS(4075), + [anon_sym_AMP] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_LT] = ACTIONS(4073), + [anon_sym_lambda] = ACTIONS(4075), + [anon_sym_yield] = ACTIONS(4075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4073), + [anon_sym_None] = ACTIONS(4075), + [anon_sym_0x] = ACTIONS(4073), + [anon_sym_0X] = ACTIONS(4073), + [anon_sym_0o] = ACTIONS(4073), + [anon_sym_0O] = ACTIONS(4073), + [anon_sym_0b] = ACTIONS(4073), + [anon_sym_0B] = ACTIONS(4073), + [aux_sym_integer_token4] = ACTIONS(4075), + [sym_float] = ACTIONS(4073), + [anon_sym_await] = ACTIONS(4075), + [anon_sym_api] = ACTIONS(4075), + [sym_true] = ACTIONS(4075), + [sym_false] = ACTIONS(4075), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4075), + [anon_sym_include] = ACTIONS(4075), + [anon_sym_DEF] = ACTIONS(4075), + [anon_sym_IF] = ACTIONS(4075), + [anon_sym_cdef] = ACTIONS(4075), + [anon_sym_cpdef] = ACTIONS(4075), + [anon_sym_new] = ACTIONS(4075), + [anon_sym_ctypedef] = ACTIONS(4075), + [anon_sym_public] = ACTIONS(4075), + [anon_sym_packed] = ACTIONS(4075), + [anon_sym_inline] = ACTIONS(4075), + [anon_sym_readonly] = ACTIONS(4075), + [anon_sym_sizeof] = ACTIONS(4075), + [sym_string_start] = ACTIONS(4073), + }, + [2046] = { + [ts_builtin_sym_end] = ACTIONS(4077), + [sym_identifier] = ACTIONS(4079), + [anon_sym_import] = ACTIONS(4079), + [anon_sym_cimport] = ACTIONS(4079), + [anon_sym_from] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [anon_sym_print] = ACTIONS(4079), + [anon_sym_assert] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_del] = ACTIONS(4079), + [anon_sym_raise] = ACTIONS(4079), + [anon_sym_pass] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_match] = ACTIONS(4079), + [anon_sym_async] = ACTIONS(4079), + [anon_sym_for] = ACTIONS(4079), + [anon_sym_while] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_with] = ACTIONS(4079), + [anon_sym_def] = ACTIONS(4079), + [anon_sym_global] = ACTIONS(4079), + [anon_sym_nonlocal] = ACTIONS(4079), + [anon_sym_exec] = ACTIONS(4079), + [anon_sym_type] = ACTIONS(4079), + [anon_sym_class] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_LBRACE] = ACTIONS(4077), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_not] = ACTIONS(4079), + [anon_sym_AMP] = ACTIONS(4077), + [anon_sym_TILDE] = ACTIONS(4077), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_lambda] = ACTIONS(4079), + [anon_sym_yield] = ACTIONS(4079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4077), + [anon_sym_None] = ACTIONS(4079), + [anon_sym_0x] = ACTIONS(4077), + [anon_sym_0X] = ACTIONS(4077), + [anon_sym_0o] = ACTIONS(4077), + [anon_sym_0O] = ACTIONS(4077), + [anon_sym_0b] = ACTIONS(4077), + [anon_sym_0B] = ACTIONS(4077), + [aux_sym_integer_token4] = ACTIONS(4079), + [sym_float] = ACTIONS(4077), + [anon_sym_await] = ACTIONS(4079), + [anon_sym_api] = ACTIONS(4079), + [sym_true] = ACTIONS(4079), + [sym_false] = ACTIONS(4079), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4079), + [anon_sym_include] = ACTIONS(4079), + [anon_sym_DEF] = ACTIONS(4079), + [anon_sym_IF] = ACTIONS(4079), + [anon_sym_cdef] = ACTIONS(4079), + [anon_sym_cpdef] = ACTIONS(4079), + [anon_sym_new] = ACTIONS(4079), + [anon_sym_ctypedef] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_packed] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_readonly] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4079), + [sym_string_start] = ACTIONS(4077), + }, + [2047] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2048] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2049] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACK] = ACTIONS(1597), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2050] = { + [ts_builtin_sym_end] = ACTIONS(4081), + [sym_identifier] = ACTIONS(4083), + [anon_sym_import] = ACTIONS(4083), + [anon_sym_cimport] = ACTIONS(4083), + [anon_sym_from] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_STAR] = ACTIONS(4081), + [anon_sym_print] = ACTIONS(4083), + [anon_sym_assert] = ACTIONS(4083), + [anon_sym_return] = ACTIONS(4083), + [anon_sym_del] = ACTIONS(4083), + [anon_sym_raise] = ACTIONS(4083), + [anon_sym_pass] = ACTIONS(4083), + [anon_sym_break] = ACTIONS(4083), + [anon_sym_continue] = ACTIONS(4083), + [anon_sym_if] = ACTIONS(4083), + [anon_sym_match] = ACTIONS(4083), + [anon_sym_async] = ACTIONS(4083), + [anon_sym_for] = ACTIONS(4083), + [anon_sym_while] = ACTIONS(4083), + [anon_sym_try] = ACTIONS(4083), + [anon_sym_with] = ACTIONS(4083), + [anon_sym_def] = ACTIONS(4083), + [anon_sym_global] = ACTIONS(4083), + [anon_sym_nonlocal] = ACTIONS(4083), + [anon_sym_exec] = ACTIONS(4083), + [anon_sym_type] = ACTIONS(4083), + [anon_sym_class] = ACTIONS(4083), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_DASH] = ACTIONS(4081), + [anon_sym_LBRACE] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4081), + [anon_sym_not] = ACTIONS(4083), + [anon_sym_AMP] = ACTIONS(4081), + [anon_sym_TILDE] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4081), + [anon_sym_lambda] = ACTIONS(4083), + [anon_sym_yield] = ACTIONS(4083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4081), + [anon_sym_None] = ACTIONS(4083), + [anon_sym_0x] = ACTIONS(4081), + [anon_sym_0X] = ACTIONS(4081), + [anon_sym_0o] = ACTIONS(4081), + [anon_sym_0O] = ACTIONS(4081), + [anon_sym_0b] = ACTIONS(4081), + [anon_sym_0B] = ACTIONS(4081), + [aux_sym_integer_token4] = ACTIONS(4083), + [sym_float] = ACTIONS(4081), + [anon_sym_await] = ACTIONS(4083), + [anon_sym_api] = ACTIONS(4083), + [sym_true] = ACTIONS(4083), + [sym_false] = ACTIONS(4083), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4083), + [anon_sym_include] = ACTIONS(4083), + [anon_sym_DEF] = ACTIONS(4083), + [anon_sym_IF] = ACTIONS(4083), + [anon_sym_cdef] = ACTIONS(4083), + [anon_sym_cpdef] = ACTIONS(4083), + [anon_sym_new] = ACTIONS(4083), + [anon_sym_ctypedef] = ACTIONS(4083), + [anon_sym_public] = ACTIONS(4083), + [anon_sym_packed] = ACTIONS(4083), + [anon_sym_inline] = ACTIONS(4083), + [anon_sym_readonly] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4083), + [sym_string_start] = ACTIONS(4081), + }, + [2051] = { + [ts_builtin_sym_end] = ACTIONS(4085), + [sym_identifier] = ACTIONS(4087), + [anon_sym_import] = ACTIONS(4087), + [anon_sym_cimport] = ACTIONS(4087), + [anon_sym_from] = ACTIONS(4087), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(4085), + [anon_sym_print] = ACTIONS(4087), + [anon_sym_assert] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_del] = ACTIONS(4087), + [anon_sym_raise] = ACTIONS(4087), + [anon_sym_pass] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_match] = ACTIONS(4087), + [anon_sym_async] = ACTIONS(4087), + [anon_sym_for] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_with] = ACTIONS(4087), + [anon_sym_def] = ACTIONS(4087), + [anon_sym_global] = ACTIONS(4087), + [anon_sym_nonlocal] = ACTIONS(4087), + [anon_sym_exec] = ACTIONS(4087), + [anon_sym_type] = ACTIONS(4087), + [anon_sym_class] = ACTIONS(4087), + [anon_sym_LBRACK] = ACTIONS(4085), + [anon_sym_AT] = ACTIONS(4085), + [anon_sym_DASH] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_PLUS] = ACTIONS(4085), + [anon_sym_not] = ACTIONS(4087), + [anon_sym_AMP] = ACTIONS(4085), + [anon_sym_TILDE] = ACTIONS(4085), + [anon_sym_LT] = ACTIONS(4085), + [anon_sym_lambda] = ACTIONS(4087), + [anon_sym_yield] = ACTIONS(4087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), + [anon_sym_None] = ACTIONS(4087), + [anon_sym_0x] = ACTIONS(4085), + [anon_sym_0X] = ACTIONS(4085), + [anon_sym_0o] = ACTIONS(4085), + [anon_sym_0O] = ACTIONS(4085), + [anon_sym_0b] = ACTIONS(4085), + [anon_sym_0B] = ACTIONS(4085), + [aux_sym_integer_token4] = ACTIONS(4087), + [sym_float] = ACTIONS(4085), + [anon_sym_await] = ACTIONS(4087), + [anon_sym_api] = ACTIONS(4087), + [sym_true] = ACTIONS(4087), + [sym_false] = ACTIONS(4087), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4087), + [anon_sym_include] = ACTIONS(4087), + [anon_sym_DEF] = ACTIONS(4087), + [anon_sym_IF] = ACTIONS(4087), + [anon_sym_cdef] = ACTIONS(4087), + [anon_sym_cpdef] = ACTIONS(4087), + [anon_sym_new] = ACTIONS(4087), + [anon_sym_ctypedef] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_packed] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_readonly] = ACTIONS(4087), + [anon_sym_sizeof] = ACTIONS(4087), + [sym_string_start] = ACTIONS(4085), + }, + [2052] = { + [sym_identifier] = ACTIONS(4079), + [anon_sym_import] = ACTIONS(4079), + [anon_sym_cimport] = ACTIONS(4079), + [anon_sym_from] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [anon_sym_print] = ACTIONS(4079), + [anon_sym_assert] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_del] = ACTIONS(4079), + [anon_sym_raise] = ACTIONS(4079), + [anon_sym_pass] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_match] = ACTIONS(4079), + [anon_sym_async] = ACTIONS(4079), + [anon_sym_for] = ACTIONS(4079), + [anon_sym_while] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_with] = ACTIONS(4079), + [anon_sym_def] = ACTIONS(4079), + [anon_sym_global] = ACTIONS(4079), + [anon_sym_nonlocal] = ACTIONS(4079), + [anon_sym_exec] = ACTIONS(4079), + [anon_sym_type] = ACTIONS(4079), + [anon_sym_class] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_LBRACE] = ACTIONS(4077), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_not] = ACTIONS(4079), + [anon_sym_AMP] = ACTIONS(4077), + [anon_sym_TILDE] = ACTIONS(4077), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_lambda] = ACTIONS(4079), + [anon_sym_yield] = ACTIONS(4079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4077), + [anon_sym_None] = ACTIONS(4079), + [anon_sym_0x] = ACTIONS(4077), + [anon_sym_0X] = ACTIONS(4077), + [anon_sym_0o] = ACTIONS(4077), + [anon_sym_0O] = ACTIONS(4077), + [anon_sym_0b] = ACTIONS(4077), + [anon_sym_0B] = ACTIONS(4077), + [aux_sym_integer_token4] = ACTIONS(4079), + [sym_float] = ACTIONS(4077), + [anon_sym_await] = ACTIONS(4079), + [anon_sym_api] = ACTIONS(4079), + [sym_true] = ACTIONS(4079), + [sym_false] = ACTIONS(4079), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4079), + [anon_sym_include] = ACTIONS(4079), + [anon_sym_DEF] = ACTIONS(4079), + [anon_sym_IF] = ACTIONS(4079), + [anon_sym_cdef] = ACTIONS(4079), + [anon_sym_cpdef] = ACTIONS(4079), + [anon_sym_new] = ACTIONS(4079), + [anon_sym_ctypedef] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_packed] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_readonly] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4079), + [sym__dedent] = ACTIONS(4077), + [sym_string_start] = ACTIONS(4077), + }, + [2053] = { + [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_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_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), + [anon_sym_0x] = ACTIONS(2897), + [anon_sym_0X] = ACTIONS(2897), + [anon_sym_0o] = ACTIONS(2897), + [anon_sym_0O] = ACTIONS(2897), + [anon_sym_0b] = ACTIONS(2897), + [anon_sym_0B] = ACTIONS(2897), + [aux_sym_integer_token4] = 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), + }, + [2054] = { + [ts_builtin_sym_end] = ACTIONS(4089), + [sym_identifier] = ACTIONS(4091), + [anon_sym_import] = ACTIONS(4091), + [anon_sym_cimport] = ACTIONS(4091), + [anon_sym_from] = ACTIONS(4091), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_STAR] = ACTIONS(4089), + [anon_sym_print] = ACTIONS(4091), + [anon_sym_assert] = ACTIONS(4091), + [anon_sym_return] = ACTIONS(4091), + [anon_sym_del] = ACTIONS(4091), + [anon_sym_raise] = ACTIONS(4091), + [anon_sym_pass] = ACTIONS(4091), + [anon_sym_break] = ACTIONS(4091), + [anon_sym_continue] = ACTIONS(4091), + [anon_sym_if] = ACTIONS(4091), + [anon_sym_match] = ACTIONS(4091), + [anon_sym_async] = ACTIONS(4091), + [anon_sym_for] = ACTIONS(4091), + [anon_sym_while] = ACTIONS(4091), + [anon_sym_try] = ACTIONS(4091), + [anon_sym_with] = ACTIONS(4091), + [anon_sym_def] = ACTIONS(4091), + [anon_sym_global] = ACTIONS(4091), + [anon_sym_nonlocal] = ACTIONS(4091), + [anon_sym_exec] = ACTIONS(4091), + [anon_sym_type] = ACTIONS(4091), + [anon_sym_class] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_DASH] = ACTIONS(4089), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4089), + [anon_sym_not] = ACTIONS(4091), + [anon_sym_AMP] = ACTIONS(4089), + [anon_sym_TILDE] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4089), + [anon_sym_lambda] = ACTIONS(4091), + [anon_sym_yield] = ACTIONS(4091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4089), + [anon_sym_None] = ACTIONS(4091), + [anon_sym_0x] = ACTIONS(4089), + [anon_sym_0X] = ACTIONS(4089), + [anon_sym_0o] = ACTIONS(4089), + [anon_sym_0O] = ACTIONS(4089), + [anon_sym_0b] = ACTIONS(4089), + [anon_sym_0B] = ACTIONS(4089), + [aux_sym_integer_token4] = ACTIONS(4091), + [sym_float] = ACTIONS(4089), + [anon_sym_await] = ACTIONS(4091), + [anon_sym_api] = ACTIONS(4091), + [sym_true] = ACTIONS(4091), + [sym_false] = ACTIONS(4091), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4091), + [anon_sym_include] = ACTIONS(4091), + [anon_sym_DEF] = ACTIONS(4091), + [anon_sym_IF] = ACTIONS(4091), + [anon_sym_cdef] = ACTIONS(4091), + [anon_sym_cpdef] = ACTIONS(4091), + [anon_sym_new] = ACTIONS(4091), + [anon_sym_ctypedef] = ACTIONS(4091), + [anon_sym_public] = ACTIONS(4091), + [anon_sym_packed] = ACTIONS(4091), + [anon_sym_inline] = ACTIONS(4091), + [anon_sym_readonly] = ACTIONS(4091), + [anon_sym_sizeof] = ACTIONS(4091), + [sym_string_start] = ACTIONS(4089), + }, + [2055] = { + [ts_builtin_sym_end] = ACTIONS(4093), + [sym_identifier] = ACTIONS(4095), + [anon_sym_import] = ACTIONS(4095), + [anon_sym_cimport] = ACTIONS(4095), + [anon_sym_from] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [anon_sym_print] = ACTIONS(4095), + [anon_sym_assert] = ACTIONS(4095), + [anon_sym_return] = ACTIONS(4095), + [anon_sym_del] = ACTIONS(4095), + [anon_sym_raise] = ACTIONS(4095), + [anon_sym_pass] = ACTIONS(4095), + [anon_sym_break] = ACTIONS(4095), + [anon_sym_continue] = ACTIONS(4095), + [anon_sym_if] = ACTIONS(4095), + [anon_sym_match] = ACTIONS(4095), + [anon_sym_async] = ACTIONS(4095), + [anon_sym_for] = ACTIONS(4095), + [anon_sym_while] = ACTIONS(4095), + [anon_sym_try] = ACTIONS(4095), + [anon_sym_with] = ACTIONS(4095), + [anon_sym_def] = ACTIONS(4095), + [anon_sym_global] = ACTIONS(4095), + [anon_sym_nonlocal] = ACTIONS(4095), + [anon_sym_exec] = ACTIONS(4095), + [anon_sym_type] = ACTIONS(4095), + [anon_sym_class] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4093), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_not] = ACTIONS(4095), + [anon_sym_AMP] = ACTIONS(4093), + [anon_sym_TILDE] = ACTIONS(4093), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_lambda] = ACTIONS(4095), + [anon_sym_yield] = ACTIONS(4095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4093), + [anon_sym_None] = ACTIONS(4095), + [anon_sym_0x] = ACTIONS(4093), + [anon_sym_0X] = ACTIONS(4093), + [anon_sym_0o] = ACTIONS(4093), + [anon_sym_0O] = ACTIONS(4093), + [anon_sym_0b] = ACTIONS(4093), + [anon_sym_0B] = ACTIONS(4093), + [aux_sym_integer_token4] = ACTIONS(4095), + [sym_float] = ACTIONS(4093), + [anon_sym_await] = ACTIONS(4095), + [anon_sym_api] = ACTIONS(4095), + [sym_true] = ACTIONS(4095), + [sym_false] = ACTIONS(4095), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4095), + [anon_sym_include] = ACTIONS(4095), + [anon_sym_DEF] = ACTIONS(4095), + [anon_sym_IF] = ACTIONS(4095), + [anon_sym_cdef] = ACTIONS(4095), + [anon_sym_cpdef] = ACTIONS(4095), + [anon_sym_new] = ACTIONS(4095), + [anon_sym_ctypedef] = ACTIONS(4095), + [anon_sym_public] = ACTIONS(4095), + [anon_sym_packed] = ACTIONS(4095), + [anon_sym_inline] = ACTIONS(4095), + [anon_sym_readonly] = ACTIONS(4095), + [anon_sym_sizeof] = ACTIONS(4095), + [sym_string_start] = ACTIONS(4093), + }, + [2056] = { + [sym_identifier] = ACTIONS(4097), + [anon_sym_import] = ACTIONS(4097), + [anon_sym_cimport] = ACTIONS(4097), + [anon_sym_from] = ACTIONS(4097), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_print] = ACTIONS(4097), + [anon_sym_assert] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_del] = ACTIONS(4097), + [anon_sym_raise] = ACTIONS(4097), + [anon_sym_pass] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_match] = ACTIONS(4097), + [anon_sym_async] = ACTIONS(4097), + [anon_sym_for] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_with] = ACTIONS(4097), + [anon_sym_def] = ACTIONS(4097), + [anon_sym_global] = ACTIONS(4097), + [anon_sym_nonlocal] = ACTIONS(4097), + [anon_sym_exec] = ACTIONS(4097), + [anon_sym_type] = ACTIONS(4097), + [anon_sym_class] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_DASH] = ACTIONS(4099), + [anon_sym_LBRACE] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4099), + [anon_sym_not] = ACTIONS(4097), + [anon_sym_AMP] = ACTIONS(4099), + [anon_sym_TILDE] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4099), + [anon_sym_lambda] = ACTIONS(4097), + [anon_sym_yield] = ACTIONS(4097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4099), + [anon_sym_None] = ACTIONS(4097), + [anon_sym_0x] = ACTIONS(4099), + [anon_sym_0X] = ACTIONS(4099), + [anon_sym_0o] = ACTIONS(4099), + [anon_sym_0O] = ACTIONS(4099), + [anon_sym_0b] = ACTIONS(4099), + [anon_sym_0B] = ACTIONS(4099), + [aux_sym_integer_token4] = ACTIONS(4097), + [sym_float] = ACTIONS(4099), + [anon_sym_await] = ACTIONS(4097), + [anon_sym_api] = ACTIONS(4097), + [sym_true] = ACTIONS(4097), + [sym_false] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4097), + [anon_sym_include] = ACTIONS(4097), + [anon_sym_DEF] = ACTIONS(4097), + [anon_sym_IF] = ACTIONS(4097), + [anon_sym_cdef] = ACTIONS(4097), + [anon_sym_cpdef] = ACTIONS(4097), + [anon_sym_new] = ACTIONS(4097), + [anon_sym_ctypedef] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_packed] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_readonly] = ACTIONS(4097), + [anon_sym_sizeof] = ACTIONS(4097), + [sym__dedent] = ACTIONS(4099), + [sym_string_start] = ACTIONS(4099), + }, + [2057] = { + [ts_builtin_sym_end] = ACTIONS(4101), + [sym_identifier] = ACTIONS(4103), + [anon_sym_import] = ACTIONS(4103), + [anon_sym_cimport] = ACTIONS(4103), + [anon_sym_from] = ACTIONS(4103), + [anon_sym_LPAREN] = ACTIONS(4101), + [anon_sym_STAR] = ACTIONS(4101), + [anon_sym_print] = ACTIONS(4103), + [anon_sym_assert] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_del] = ACTIONS(4103), + [anon_sym_raise] = ACTIONS(4103), + [anon_sym_pass] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_match] = ACTIONS(4103), + [anon_sym_async] = ACTIONS(4103), + [anon_sym_for] = ACTIONS(4103), + [anon_sym_while] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_with] = ACTIONS(4103), + [anon_sym_def] = ACTIONS(4103), + [anon_sym_global] = ACTIONS(4103), + [anon_sym_nonlocal] = ACTIONS(4103), + [anon_sym_exec] = ACTIONS(4103), + [anon_sym_type] = ACTIONS(4103), + [anon_sym_class] = ACTIONS(4103), + [anon_sym_LBRACK] = ACTIONS(4101), + [anon_sym_AT] = ACTIONS(4101), + [anon_sym_DASH] = ACTIONS(4101), + [anon_sym_LBRACE] = ACTIONS(4101), + [anon_sym_PLUS] = ACTIONS(4101), + [anon_sym_not] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(4101), + [anon_sym_TILDE] = ACTIONS(4101), + [anon_sym_LT] = ACTIONS(4101), + [anon_sym_lambda] = ACTIONS(4103), + [anon_sym_yield] = ACTIONS(4103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4101), + [anon_sym_None] = ACTIONS(4103), + [anon_sym_0x] = ACTIONS(4101), + [anon_sym_0X] = ACTIONS(4101), + [anon_sym_0o] = ACTIONS(4101), + [anon_sym_0O] = ACTIONS(4101), + [anon_sym_0b] = ACTIONS(4101), + [anon_sym_0B] = ACTIONS(4101), + [aux_sym_integer_token4] = ACTIONS(4103), + [sym_float] = ACTIONS(4101), + [anon_sym_await] = ACTIONS(4103), + [anon_sym_api] = ACTIONS(4103), + [sym_true] = ACTIONS(4103), + [sym_false] = ACTIONS(4103), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4103), + [anon_sym_include] = ACTIONS(4103), + [anon_sym_DEF] = ACTIONS(4103), + [anon_sym_IF] = ACTIONS(4103), + [anon_sym_cdef] = ACTIONS(4103), + [anon_sym_cpdef] = ACTIONS(4103), + [anon_sym_new] = ACTIONS(4103), + [anon_sym_ctypedef] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_packed] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_readonly] = ACTIONS(4103), + [anon_sym_sizeof] = ACTIONS(4103), + [sym_string_start] = ACTIONS(4101), + }, + [2058] = { + [sym_identifier] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_cimport] = ACTIONS(3257), + [anon_sym_from] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_print] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_del] = ACTIONS(3257), + [anon_sym_raise] = ACTIONS(3257), + [anon_sym_pass] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_def] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3257), + [anon_sym_nonlocal] = ACTIONS(3257), + [anon_sym_exec] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [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(3257), + [anon_sym_AMP] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_lambda] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_None] = ACTIONS(3257), + [anon_sym_0x] = ACTIONS(3255), + [anon_sym_0X] = ACTIONS(3255), + [anon_sym_0o] = ACTIONS(3255), + [anon_sym_0O] = ACTIONS(3255), + [anon_sym_0b] = ACTIONS(3255), + [anon_sym_0B] = ACTIONS(3255), + [aux_sym_integer_token4] = ACTIONS(3257), + [sym_float] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_api] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3257), + [anon_sym_include] = ACTIONS(3257), + [anon_sym_DEF] = ACTIONS(3257), + [anon_sym_IF] = ACTIONS(3257), + [anon_sym_cdef] = ACTIONS(3257), + [anon_sym_cpdef] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_ctypedef] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_packed] = ACTIONS(3257), + [anon_sym_inline] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_sizeof] = ACTIONS(3257), + [sym__dedent] = ACTIONS(3255), + [sym_string_start] = ACTIONS(3255), + }, + [2059] = { + [sym_identifier] = ACTIONS(4105), + [anon_sym_import] = ACTIONS(4105), + [anon_sym_cimport] = ACTIONS(4105), + [anon_sym_from] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4107), + [anon_sym_STAR] = ACTIONS(4107), + [anon_sym_print] = ACTIONS(4105), + [anon_sym_assert] = ACTIONS(4105), + [anon_sym_return] = ACTIONS(4105), + [anon_sym_del] = ACTIONS(4105), + [anon_sym_raise] = ACTIONS(4105), + [anon_sym_pass] = ACTIONS(4105), + [anon_sym_break] = ACTIONS(4105), + [anon_sym_continue] = ACTIONS(4105), + [anon_sym_if] = ACTIONS(4105), + [anon_sym_match] = ACTIONS(4105), + [anon_sym_async] = ACTIONS(4105), + [anon_sym_for] = ACTIONS(4105), + [anon_sym_while] = ACTIONS(4105), + [anon_sym_try] = ACTIONS(4105), + [anon_sym_with] = ACTIONS(4105), + [anon_sym_def] = ACTIONS(4105), + [anon_sym_global] = ACTIONS(4105), + [anon_sym_nonlocal] = ACTIONS(4105), + [anon_sym_exec] = ACTIONS(4105), + [anon_sym_type] = ACTIONS(4105), + [anon_sym_class] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_AT] = ACTIONS(4107), + [anon_sym_DASH] = ACTIONS(4107), + [anon_sym_LBRACE] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4107), + [anon_sym_not] = ACTIONS(4105), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_TILDE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4107), + [anon_sym_lambda] = ACTIONS(4105), + [anon_sym_yield] = ACTIONS(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4107), + [anon_sym_None] = ACTIONS(4105), + [anon_sym_0x] = ACTIONS(4107), + [anon_sym_0X] = ACTIONS(4107), + [anon_sym_0o] = ACTIONS(4107), + [anon_sym_0O] = ACTIONS(4107), + [anon_sym_0b] = ACTIONS(4107), + [anon_sym_0B] = ACTIONS(4107), + [aux_sym_integer_token4] = ACTIONS(4105), + [sym_float] = ACTIONS(4107), + [anon_sym_await] = ACTIONS(4105), + [anon_sym_api] = ACTIONS(4105), + [sym_true] = ACTIONS(4105), + [sym_false] = ACTIONS(4105), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4105), + [anon_sym_include] = ACTIONS(4105), + [anon_sym_DEF] = ACTIONS(4105), + [anon_sym_IF] = ACTIONS(4105), + [anon_sym_cdef] = ACTIONS(4105), + [anon_sym_cpdef] = ACTIONS(4105), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_ctypedef] = ACTIONS(4105), + [anon_sym_public] = ACTIONS(4105), + [anon_sym_packed] = ACTIONS(4105), + [anon_sym_inline] = ACTIONS(4105), + [anon_sym_readonly] = ACTIONS(4105), + [anon_sym_sizeof] = ACTIONS(4105), + [sym__dedent] = ACTIONS(4107), + [sym_string_start] = ACTIONS(4107), + }, + [2060] = { + [sym_identifier] = ACTIONS(4109), + [anon_sym_import] = ACTIONS(4109), + [anon_sym_cimport] = ACTIONS(4109), + [anon_sym_from] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4111), + [anon_sym_print] = ACTIONS(4109), + [anon_sym_assert] = ACTIONS(4109), + [anon_sym_return] = ACTIONS(4109), + [anon_sym_del] = ACTIONS(4109), + [anon_sym_raise] = ACTIONS(4109), + [anon_sym_pass] = ACTIONS(4109), + [anon_sym_break] = ACTIONS(4109), + [anon_sym_continue] = ACTIONS(4109), + [anon_sym_if] = ACTIONS(4109), + [anon_sym_match] = ACTIONS(4109), + [anon_sym_async] = ACTIONS(4109), + [anon_sym_for] = ACTIONS(4109), + [anon_sym_while] = ACTIONS(4109), + [anon_sym_try] = ACTIONS(4109), + [anon_sym_with] = ACTIONS(4109), + [anon_sym_def] = ACTIONS(4109), + [anon_sym_global] = ACTIONS(4109), + [anon_sym_nonlocal] = ACTIONS(4109), + [anon_sym_exec] = ACTIONS(4109), + [anon_sym_type] = ACTIONS(4109), + [anon_sym_class] = ACTIONS(4109), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_AT] = ACTIONS(4111), + [anon_sym_DASH] = ACTIONS(4111), + [anon_sym_LBRACE] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_not] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4111), + [anon_sym_LT] = ACTIONS(4111), + [anon_sym_lambda] = ACTIONS(4109), + [anon_sym_yield] = ACTIONS(4109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4111), + [anon_sym_None] = ACTIONS(4109), + [anon_sym_0x] = ACTIONS(4111), + [anon_sym_0X] = ACTIONS(4111), + [anon_sym_0o] = ACTIONS(4111), + [anon_sym_0O] = ACTIONS(4111), + [anon_sym_0b] = ACTIONS(4111), + [anon_sym_0B] = ACTIONS(4111), + [aux_sym_integer_token4] = ACTIONS(4109), + [sym_float] = ACTIONS(4111), + [anon_sym_await] = ACTIONS(4109), + [anon_sym_api] = ACTIONS(4109), + [sym_true] = ACTIONS(4109), + [sym_false] = ACTIONS(4109), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4109), + [anon_sym_include] = ACTIONS(4109), + [anon_sym_DEF] = ACTIONS(4109), + [anon_sym_IF] = ACTIONS(4109), + [anon_sym_cdef] = ACTIONS(4109), + [anon_sym_cpdef] = ACTIONS(4109), + [anon_sym_new] = ACTIONS(4109), + [anon_sym_ctypedef] = ACTIONS(4109), + [anon_sym_public] = ACTIONS(4109), + [anon_sym_packed] = ACTIONS(4109), + [anon_sym_inline] = ACTIONS(4109), + [anon_sym_readonly] = ACTIONS(4109), + [anon_sym_sizeof] = ACTIONS(4109), + [sym__dedent] = ACTIONS(4111), + [sym_string_start] = ACTIONS(4111), + }, + [2061] = { + [sym_identifier] = ACTIONS(2279), + [anon_sym_import] = ACTIONS(2279), + [anon_sym_cimport] = ACTIONS(2279), + [anon_sym_from] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [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(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(2279), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_lambda] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_None] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2277), + [anon_sym_0X] = ACTIONS(2277), + [anon_sym_0o] = ACTIONS(2277), + [anon_sym_0O] = ACTIONS(2277), + [anon_sym_0b] = ACTIONS(2277), + [anon_sym_0B] = ACTIONS(2277), + [aux_sym_integer_token4] = ACTIONS(2279), + [sym_float] = ACTIONS(2277), + [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_new] = ACTIONS(2279), + [anon_sym_ctypedef] = 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(2277), + [sym_string_start] = ACTIONS(2277), + }, + [2062] = { + [ts_builtin_sym_end] = ACTIONS(4107), + [sym_identifier] = ACTIONS(4105), + [anon_sym_import] = ACTIONS(4105), + [anon_sym_cimport] = ACTIONS(4105), + [anon_sym_from] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4107), + [anon_sym_STAR] = ACTIONS(4107), + [anon_sym_print] = ACTIONS(4105), + [anon_sym_assert] = ACTIONS(4105), + [anon_sym_return] = ACTIONS(4105), + [anon_sym_del] = ACTIONS(4105), + [anon_sym_raise] = ACTIONS(4105), + [anon_sym_pass] = ACTIONS(4105), + [anon_sym_break] = ACTIONS(4105), + [anon_sym_continue] = ACTIONS(4105), + [anon_sym_if] = ACTIONS(4105), + [anon_sym_match] = ACTIONS(4105), + [anon_sym_async] = ACTIONS(4105), + [anon_sym_for] = ACTIONS(4105), + [anon_sym_while] = ACTIONS(4105), + [anon_sym_try] = ACTIONS(4105), + [anon_sym_with] = ACTIONS(4105), + [anon_sym_def] = ACTIONS(4105), + [anon_sym_global] = ACTIONS(4105), + [anon_sym_nonlocal] = ACTIONS(4105), + [anon_sym_exec] = ACTIONS(4105), + [anon_sym_type] = ACTIONS(4105), + [anon_sym_class] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_AT] = ACTIONS(4107), + [anon_sym_DASH] = ACTIONS(4107), + [anon_sym_LBRACE] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4107), + [anon_sym_not] = ACTIONS(4105), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_TILDE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4107), + [anon_sym_lambda] = ACTIONS(4105), + [anon_sym_yield] = ACTIONS(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4107), + [anon_sym_None] = ACTIONS(4105), + [anon_sym_0x] = ACTIONS(4107), + [anon_sym_0X] = ACTIONS(4107), + [anon_sym_0o] = ACTIONS(4107), + [anon_sym_0O] = ACTIONS(4107), + [anon_sym_0b] = ACTIONS(4107), + [anon_sym_0B] = ACTIONS(4107), + [aux_sym_integer_token4] = ACTIONS(4105), + [sym_float] = ACTIONS(4107), + [anon_sym_await] = ACTIONS(4105), + [anon_sym_api] = ACTIONS(4105), + [sym_true] = ACTIONS(4105), + [sym_false] = ACTIONS(4105), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4105), + [anon_sym_include] = ACTIONS(4105), + [anon_sym_DEF] = ACTIONS(4105), + [anon_sym_IF] = ACTIONS(4105), + [anon_sym_cdef] = ACTIONS(4105), + [anon_sym_cpdef] = ACTIONS(4105), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_ctypedef] = ACTIONS(4105), + [anon_sym_public] = ACTIONS(4105), + [anon_sym_packed] = ACTIONS(4105), + [anon_sym_inline] = ACTIONS(4105), + [anon_sym_readonly] = ACTIONS(4105), + [anon_sym_sizeof] = ACTIONS(4105), + [sym_string_start] = ACTIONS(4107), + }, + [2063] = { + [sym_identifier] = ACTIONS(4113), + [anon_sym_import] = ACTIONS(4113), + [anon_sym_cimport] = ACTIONS(4113), + [anon_sym_from] = ACTIONS(4113), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4115), + [anon_sym_print] = ACTIONS(4113), + [anon_sym_assert] = ACTIONS(4113), + [anon_sym_return] = ACTIONS(4113), + [anon_sym_del] = ACTIONS(4113), + [anon_sym_raise] = ACTIONS(4113), + [anon_sym_pass] = ACTIONS(4113), + [anon_sym_break] = ACTIONS(4113), + [anon_sym_continue] = ACTIONS(4113), + [anon_sym_if] = ACTIONS(4113), + [anon_sym_match] = ACTIONS(4113), + [anon_sym_async] = ACTIONS(4113), + [anon_sym_for] = ACTIONS(4113), + [anon_sym_while] = ACTIONS(4113), + [anon_sym_try] = ACTIONS(4113), + [anon_sym_with] = ACTIONS(4113), + [anon_sym_def] = ACTIONS(4113), + [anon_sym_global] = ACTIONS(4113), + [anon_sym_nonlocal] = ACTIONS(4113), + [anon_sym_exec] = ACTIONS(4113), + [anon_sym_type] = ACTIONS(4113), + [anon_sym_class] = ACTIONS(4113), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_DASH] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_not] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(4115), + [anon_sym_lambda] = ACTIONS(4113), + [anon_sym_yield] = ACTIONS(4113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4115), + [anon_sym_None] = ACTIONS(4113), + [anon_sym_0x] = ACTIONS(4115), + [anon_sym_0X] = ACTIONS(4115), + [anon_sym_0o] = ACTIONS(4115), + [anon_sym_0O] = ACTIONS(4115), + [anon_sym_0b] = ACTIONS(4115), + [anon_sym_0B] = ACTIONS(4115), + [aux_sym_integer_token4] = ACTIONS(4113), + [sym_float] = ACTIONS(4115), + [anon_sym_await] = ACTIONS(4113), + [anon_sym_api] = ACTIONS(4113), + [sym_true] = ACTIONS(4113), + [sym_false] = ACTIONS(4113), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4113), + [anon_sym_include] = ACTIONS(4113), + [anon_sym_DEF] = ACTIONS(4113), + [anon_sym_IF] = ACTIONS(4113), + [anon_sym_cdef] = ACTIONS(4113), + [anon_sym_cpdef] = ACTIONS(4113), + [anon_sym_new] = ACTIONS(4113), + [anon_sym_ctypedef] = ACTIONS(4113), + [anon_sym_public] = ACTIONS(4113), + [anon_sym_packed] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4113), + [anon_sym_readonly] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4113), + [sym__dedent] = ACTIONS(4115), + [sym_string_start] = ACTIONS(4115), + }, + [2064] = { + [ts_builtin_sym_end] = ACTIONS(4117), + [sym_identifier] = ACTIONS(4119), + [anon_sym_import] = ACTIONS(4119), + [anon_sym_cimport] = ACTIONS(4119), + [anon_sym_from] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_print] = ACTIONS(4119), + [anon_sym_assert] = ACTIONS(4119), + [anon_sym_return] = ACTIONS(4119), + [anon_sym_del] = ACTIONS(4119), + [anon_sym_raise] = ACTIONS(4119), + [anon_sym_pass] = ACTIONS(4119), + [anon_sym_break] = ACTIONS(4119), + [anon_sym_continue] = ACTIONS(4119), + [anon_sym_if] = ACTIONS(4119), + [anon_sym_match] = ACTIONS(4119), + [anon_sym_async] = ACTIONS(4119), + [anon_sym_for] = ACTIONS(4119), + [anon_sym_while] = ACTIONS(4119), + [anon_sym_try] = ACTIONS(4119), + [anon_sym_with] = ACTIONS(4119), + [anon_sym_def] = ACTIONS(4119), + [anon_sym_global] = ACTIONS(4119), + [anon_sym_nonlocal] = ACTIONS(4119), + [anon_sym_exec] = ACTIONS(4119), + [anon_sym_type] = ACTIONS(4119), + [anon_sym_class] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_PLUS] = ACTIONS(4117), + [anon_sym_not] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(4117), + [anon_sym_lambda] = ACTIONS(4119), + [anon_sym_yield] = ACTIONS(4119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4117), + [anon_sym_None] = ACTIONS(4119), + [anon_sym_0x] = ACTIONS(4117), + [anon_sym_0X] = ACTIONS(4117), + [anon_sym_0o] = ACTIONS(4117), + [anon_sym_0O] = ACTIONS(4117), + [anon_sym_0b] = ACTIONS(4117), + [anon_sym_0B] = ACTIONS(4117), + [aux_sym_integer_token4] = ACTIONS(4119), + [sym_float] = ACTIONS(4117), + [anon_sym_await] = ACTIONS(4119), + [anon_sym_api] = ACTIONS(4119), + [sym_true] = ACTIONS(4119), + [sym_false] = ACTIONS(4119), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4119), + [anon_sym_include] = ACTIONS(4119), + [anon_sym_DEF] = ACTIONS(4119), + [anon_sym_IF] = ACTIONS(4119), + [anon_sym_cdef] = ACTIONS(4119), + [anon_sym_cpdef] = ACTIONS(4119), + [anon_sym_new] = ACTIONS(4119), + [anon_sym_ctypedef] = ACTIONS(4119), + [anon_sym_public] = ACTIONS(4119), + [anon_sym_packed] = ACTIONS(4119), + [anon_sym_inline] = ACTIONS(4119), + [anon_sym_readonly] = ACTIONS(4119), + [anon_sym_sizeof] = ACTIONS(4119), + [sym_string_start] = ACTIONS(4117), + }, + [2065] = { + [ts_builtin_sym_end] = ACTIONS(4111), + [sym_identifier] = ACTIONS(4109), + [anon_sym_import] = ACTIONS(4109), + [anon_sym_cimport] = ACTIONS(4109), + [anon_sym_from] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4111), + [anon_sym_print] = ACTIONS(4109), + [anon_sym_assert] = ACTIONS(4109), + [anon_sym_return] = ACTIONS(4109), + [anon_sym_del] = ACTIONS(4109), + [anon_sym_raise] = ACTIONS(4109), + [anon_sym_pass] = ACTIONS(4109), + [anon_sym_break] = ACTIONS(4109), + [anon_sym_continue] = ACTIONS(4109), + [anon_sym_if] = ACTIONS(4109), + [anon_sym_match] = ACTIONS(4109), + [anon_sym_async] = ACTIONS(4109), + [anon_sym_for] = ACTIONS(4109), + [anon_sym_while] = ACTIONS(4109), + [anon_sym_try] = ACTIONS(4109), + [anon_sym_with] = ACTIONS(4109), + [anon_sym_def] = ACTIONS(4109), + [anon_sym_global] = ACTIONS(4109), + [anon_sym_nonlocal] = ACTIONS(4109), + [anon_sym_exec] = ACTIONS(4109), + [anon_sym_type] = ACTIONS(4109), + [anon_sym_class] = ACTIONS(4109), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_AT] = ACTIONS(4111), + [anon_sym_DASH] = ACTIONS(4111), + [anon_sym_LBRACE] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_not] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4111), + [anon_sym_LT] = ACTIONS(4111), + [anon_sym_lambda] = ACTIONS(4109), + [anon_sym_yield] = ACTIONS(4109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4111), + [anon_sym_None] = ACTIONS(4109), + [anon_sym_0x] = ACTIONS(4111), + [anon_sym_0X] = ACTIONS(4111), + [anon_sym_0o] = ACTIONS(4111), + [anon_sym_0O] = ACTIONS(4111), + [anon_sym_0b] = ACTIONS(4111), + [anon_sym_0B] = ACTIONS(4111), + [aux_sym_integer_token4] = ACTIONS(4109), + [sym_float] = ACTIONS(4111), + [anon_sym_await] = ACTIONS(4109), + [anon_sym_api] = ACTIONS(4109), + [sym_true] = ACTIONS(4109), + [sym_false] = ACTIONS(4109), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4109), + [anon_sym_include] = ACTIONS(4109), + [anon_sym_DEF] = ACTIONS(4109), + [anon_sym_IF] = ACTIONS(4109), + [anon_sym_cdef] = ACTIONS(4109), + [anon_sym_cpdef] = ACTIONS(4109), + [anon_sym_new] = ACTIONS(4109), + [anon_sym_ctypedef] = ACTIONS(4109), + [anon_sym_public] = ACTIONS(4109), + [anon_sym_packed] = ACTIONS(4109), + [anon_sym_inline] = ACTIONS(4109), + [anon_sym_readonly] = ACTIONS(4109), + [anon_sym_sizeof] = ACTIONS(4109), + [sym_string_start] = ACTIONS(4111), + }, + [2066] = { + [ts_builtin_sym_end] = ACTIONS(4121), + [sym_identifier] = ACTIONS(4123), + [anon_sym_import] = ACTIONS(4123), + [anon_sym_cimport] = ACTIONS(4123), + [anon_sym_from] = ACTIONS(4123), + [anon_sym_LPAREN] = ACTIONS(4121), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_print] = ACTIONS(4123), + [anon_sym_assert] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_del] = ACTIONS(4123), + [anon_sym_raise] = ACTIONS(4123), + [anon_sym_pass] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_match] = ACTIONS(4123), + [anon_sym_async] = ACTIONS(4123), + [anon_sym_for] = ACTIONS(4123), + [anon_sym_while] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_with] = ACTIONS(4123), + [anon_sym_def] = ACTIONS(4123), + [anon_sym_global] = ACTIONS(4123), + [anon_sym_nonlocal] = ACTIONS(4123), + [anon_sym_exec] = ACTIONS(4123), + [anon_sym_type] = ACTIONS(4123), + [anon_sym_class] = ACTIONS(4123), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_AT] = ACTIONS(4121), + [anon_sym_DASH] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4121), + [anon_sym_not] = ACTIONS(4123), + [anon_sym_AMP] = ACTIONS(4121), + [anon_sym_TILDE] = ACTIONS(4121), + [anon_sym_LT] = ACTIONS(4121), + [anon_sym_lambda] = ACTIONS(4123), + [anon_sym_yield] = ACTIONS(4123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), + [anon_sym_None] = ACTIONS(4123), + [anon_sym_0x] = ACTIONS(4121), + [anon_sym_0X] = ACTIONS(4121), + [anon_sym_0o] = ACTIONS(4121), + [anon_sym_0O] = ACTIONS(4121), + [anon_sym_0b] = ACTIONS(4121), + [anon_sym_0B] = ACTIONS(4121), + [aux_sym_integer_token4] = ACTIONS(4123), + [sym_float] = ACTIONS(4121), + [anon_sym_await] = ACTIONS(4123), + [anon_sym_api] = ACTIONS(4123), + [sym_true] = ACTIONS(4123), + [sym_false] = ACTIONS(4123), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4123), + [anon_sym_include] = ACTIONS(4123), + [anon_sym_DEF] = ACTIONS(4123), + [anon_sym_IF] = ACTIONS(4123), + [anon_sym_cdef] = ACTIONS(4123), + [anon_sym_cpdef] = ACTIONS(4123), + [anon_sym_new] = ACTIONS(4123), + [anon_sym_ctypedef] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_packed] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_readonly] = ACTIONS(4123), + [anon_sym_sizeof] = ACTIONS(4123), + [sym_string_start] = ACTIONS(4121), + }, + [2067] = { + [sym_identifier] = ACTIONS(4125), + [anon_sym_import] = ACTIONS(4125), + [anon_sym_cimport] = ACTIONS(4125), + [anon_sym_from] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [anon_sym_print] = ACTIONS(4125), + [anon_sym_assert] = ACTIONS(4125), + [anon_sym_return] = ACTIONS(4125), + [anon_sym_del] = ACTIONS(4125), + [anon_sym_raise] = ACTIONS(4125), + [anon_sym_pass] = ACTIONS(4125), + [anon_sym_break] = ACTIONS(4125), + [anon_sym_continue] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4125), + [anon_sym_async] = ACTIONS(4125), + [anon_sym_for] = ACTIONS(4125), + [anon_sym_while] = ACTIONS(4125), + [anon_sym_try] = ACTIONS(4125), + [anon_sym_with] = ACTIONS(4125), + [anon_sym_def] = ACTIONS(4125), + [anon_sym_global] = ACTIONS(4125), + [anon_sym_nonlocal] = ACTIONS(4125), + [anon_sym_exec] = ACTIONS(4125), + [anon_sym_type] = ACTIONS(4125), + [anon_sym_class] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_TILDE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_lambda] = ACTIONS(4125), + [anon_sym_yield] = ACTIONS(4125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4127), + [anon_sym_None] = ACTIONS(4125), + [anon_sym_0x] = ACTIONS(4127), + [anon_sym_0X] = ACTIONS(4127), + [anon_sym_0o] = ACTIONS(4127), + [anon_sym_0O] = ACTIONS(4127), + [anon_sym_0b] = ACTIONS(4127), + [anon_sym_0B] = ACTIONS(4127), + [aux_sym_integer_token4] = ACTIONS(4125), + [sym_float] = ACTIONS(4127), + [anon_sym_await] = ACTIONS(4125), + [anon_sym_api] = ACTIONS(4125), + [sym_true] = ACTIONS(4125), + [sym_false] = ACTIONS(4125), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4125), + [anon_sym_include] = ACTIONS(4125), + [anon_sym_DEF] = ACTIONS(4125), + [anon_sym_IF] = ACTIONS(4125), + [anon_sym_cdef] = ACTIONS(4125), + [anon_sym_cpdef] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(4125), + [anon_sym_ctypedef] = ACTIONS(4125), + [anon_sym_public] = ACTIONS(4125), + [anon_sym_packed] = ACTIONS(4125), + [anon_sym_inline] = ACTIONS(4125), + [anon_sym_readonly] = ACTIONS(4125), + [anon_sym_sizeof] = ACTIONS(4125), + [sym__dedent] = ACTIONS(4127), + [sym_string_start] = ACTIONS(4127), + }, + [2068] = { + [ts_builtin_sym_end] = ACTIONS(4129), + [sym_identifier] = ACTIONS(4131), + [anon_sym_import] = ACTIONS(4131), + [anon_sym_cimport] = ACTIONS(4131), + [anon_sym_from] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_print] = ACTIONS(4131), + [anon_sym_assert] = ACTIONS(4131), + [anon_sym_return] = ACTIONS(4131), + [anon_sym_del] = ACTIONS(4131), + [anon_sym_raise] = ACTIONS(4131), + [anon_sym_pass] = ACTIONS(4131), + [anon_sym_break] = ACTIONS(4131), + [anon_sym_continue] = ACTIONS(4131), + [anon_sym_if] = ACTIONS(4131), + [anon_sym_match] = ACTIONS(4131), + [anon_sym_async] = ACTIONS(4131), + [anon_sym_for] = ACTIONS(4131), + [anon_sym_while] = ACTIONS(4131), + [anon_sym_try] = ACTIONS(4131), + [anon_sym_with] = ACTIONS(4131), + [anon_sym_def] = ACTIONS(4131), + [anon_sym_global] = ACTIONS(4131), + [anon_sym_nonlocal] = ACTIONS(4131), + [anon_sym_exec] = ACTIONS(4131), + [anon_sym_type] = ACTIONS(4131), + [anon_sym_class] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_not] = ACTIONS(4131), + [anon_sym_AMP] = ACTIONS(4129), + [anon_sym_TILDE] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_lambda] = ACTIONS(4131), + [anon_sym_yield] = ACTIONS(4131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4129), + [anon_sym_None] = ACTIONS(4131), + [anon_sym_0x] = ACTIONS(4129), + [anon_sym_0X] = ACTIONS(4129), + [anon_sym_0o] = ACTIONS(4129), + [anon_sym_0O] = ACTIONS(4129), + [anon_sym_0b] = ACTIONS(4129), + [anon_sym_0B] = ACTIONS(4129), + [aux_sym_integer_token4] = ACTIONS(4131), + [sym_float] = ACTIONS(4129), + [anon_sym_await] = ACTIONS(4131), + [anon_sym_api] = ACTIONS(4131), + [sym_true] = ACTIONS(4131), + [sym_false] = ACTIONS(4131), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4131), + [anon_sym_include] = ACTIONS(4131), + [anon_sym_DEF] = ACTIONS(4131), + [anon_sym_IF] = ACTIONS(4131), + [anon_sym_cdef] = ACTIONS(4131), + [anon_sym_cpdef] = ACTIONS(4131), + [anon_sym_new] = ACTIONS(4131), + [anon_sym_ctypedef] = ACTIONS(4131), + [anon_sym_public] = ACTIONS(4131), + [anon_sym_packed] = ACTIONS(4131), + [anon_sym_inline] = ACTIONS(4131), + [anon_sym_readonly] = ACTIONS(4131), + [anon_sym_sizeof] = ACTIONS(4131), + [sym_string_start] = ACTIONS(4129), + }, + [2069] = { + [ts_builtin_sym_end] = ACTIONS(4133), + [sym_identifier] = ACTIONS(4135), + [anon_sym_import] = ACTIONS(4135), + [anon_sym_cimport] = ACTIONS(4135), + [anon_sym_from] = ACTIONS(4135), + [anon_sym_LPAREN] = ACTIONS(4133), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_print] = ACTIONS(4135), + [anon_sym_assert] = ACTIONS(4135), + [anon_sym_return] = ACTIONS(4135), + [anon_sym_del] = ACTIONS(4135), + [anon_sym_raise] = ACTIONS(4135), + [anon_sym_pass] = ACTIONS(4135), + [anon_sym_break] = ACTIONS(4135), + [anon_sym_continue] = ACTIONS(4135), + [anon_sym_if] = ACTIONS(4135), + [anon_sym_match] = ACTIONS(4135), + [anon_sym_async] = ACTIONS(4135), + [anon_sym_for] = ACTIONS(4135), + [anon_sym_while] = ACTIONS(4135), + [anon_sym_try] = ACTIONS(4135), + [anon_sym_with] = ACTIONS(4135), + [anon_sym_def] = ACTIONS(4135), + [anon_sym_global] = ACTIONS(4135), + [anon_sym_nonlocal] = ACTIONS(4135), + [anon_sym_exec] = ACTIONS(4135), + [anon_sym_type] = ACTIONS(4135), + [anon_sym_class] = ACTIONS(4135), + [anon_sym_LBRACK] = ACTIONS(4133), + [anon_sym_AT] = ACTIONS(4133), + [anon_sym_DASH] = ACTIONS(4133), + [anon_sym_LBRACE] = ACTIONS(4133), + [anon_sym_PLUS] = ACTIONS(4133), + [anon_sym_not] = ACTIONS(4135), + [anon_sym_AMP] = ACTIONS(4133), + [anon_sym_TILDE] = ACTIONS(4133), + [anon_sym_LT] = ACTIONS(4133), + [anon_sym_lambda] = ACTIONS(4135), + [anon_sym_yield] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4133), + [anon_sym_None] = ACTIONS(4135), + [anon_sym_0x] = ACTIONS(4133), + [anon_sym_0X] = ACTIONS(4133), + [anon_sym_0o] = ACTIONS(4133), + [anon_sym_0O] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(4133), + [anon_sym_0B] = ACTIONS(4133), + [aux_sym_integer_token4] = ACTIONS(4135), + [sym_float] = ACTIONS(4133), + [anon_sym_await] = ACTIONS(4135), + [anon_sym_api] = ACTIONS(4135), + [sym_true] = ACTIONS(4135), + [sym_false] = ACTIONS(4135), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4135), + [anon_sym_include] = ACTIONS(4135), + [anon_sym_DEF] = ACTIONS(4135), + [anon_sym_IF] = ACTIONS(4135), + [anon_sym_cdef] = ACTIONS(4135), + [anon_sym_cpdef] = ACTIONS(4135), + [anon_sym_new] = ACTIONS(4135), + [anon_sym_ctypedef] = ACTIONS(4135), + [anon_sym_public] = ACTIONS(4135), + [anon_sym_packed] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym_readonly] = ACTIONS(4135), + [anon_sym_sizeof] = ACTIONS(4135), + [sym_string_start] = ACTIONS(4133), + }, + [2070] = { + [sym_identifier] = ACTIONS(4137), + [anon_sym_import] = ACTIONS(4137), + [anon_sym_cimport] = ACTIONS(4137), + [anon_sym_from] = ACTIONS(4137), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_print] = ACTIONS(4137), + [anon_sym_assert] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_del] = ACTIONS(4137), + [anon_sym_raise] = ACTIONS(4137), + [anon_sym_pass] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_match] = ACTIONS(4137), + [anon_sym_async] = ACTIONS(4137), + [anon_sym_for] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_with] = ACTIONS(4137), + [anon_sym_def] = ACTIONS(4137), + [anon_sym_global] = ACTIONS(4137), + [anon_sym_nonlocal] = ACTIONS(4137), + [anon_sym_exec] = ACTIONS(4137), + [anon_sym_type] = ACTIONS(4137), + [anon_sym_class] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_not] = ACTIONS(4137), + [anon_sym_AMP] = ACTIONS(4139), + [anon_sym_TILDE] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_lambda] = ACTIONS(4137), + [anon_sym_yield] = ACTIONS(4137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), + [anon_sym_None] = ACTIONS(4137), + [anon_sym_0x] = ACTIONS(4139), + [anon_sym_0X] = ACTIONS(4139), + [anon_sym_0o] = ACTIONS(4139), + [anon_sym_0O] = ACTIONS(4139), + [anon_sym_0b] = ACTIONS(4139), + [anon_sym_0B] = ACTIONS(4139), + [aux_sym_integer_token4] = ACTIONS(4137), + [sym_float] = ACTIONS(4139), + [anon_sym_await] = ACTIONS(4137), + [anon_sym_api] = ACTIONS(4137), + [sym_true] = ACTIONS(4137), + [sym_false] = ACTIONS(4137), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4137), + [anon_sym_include] = ACTIONS(4137), + [anon_sym_DEF] = ACTIONS(4137), + [anon_sym_IF] = ACTIONS(4137), + [anon_sym_cdef] = ACTIONS(4137), + [anon_sym_cpdef] = ACTIONS(4137), + [anon_sym_new] = ACTIONS(4137), + [anon_sym_ctypedef] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_packed] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_readonly] = ACTIONS(4137), + [anon_sym_sizeof] = ACTIONS(4137), + [sym__dedent] = ACTIONS(4139), + [sym_string_start] = ACTIONS(4139), + }, + [2071] = { + [sym_identifier] = ACTIONS(4141), + [anon_sym_import] = ACTIONS(4141), + [anon_sym_cimport] = ACTIONS(4141), + [anon_sym_from] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(4143), + [anon_sym_print] = ACTIONS(4141), + [anon_sym_assert] = ACTIONS(4141), + [anon_sym_return] = ACTIONS(4141), + [anon_sym_del] = ACTIONS(4141), + [anon_sym_raise] = ACTIONS(4141), + [anon_sym_pass] = ACTIONS(4141), + [anon_sym_break] = ACTIONS(4141), + [anon_sym_continue] = ACTIONS(4141), + [anon_sym_if] = ACTIONS(4141), + [anon_sym_match] = ACTIONS(4141), + [anon_sym_async] = ACTIONS(4141), + [anon_sym_for] = ACTIONS(4141), + [anon_sym_while] = ACTIONS(4141), + [anon_sym_try] = ACTIONS(4141), + [anon_sym_with] = ACTIONS(4141), + [anon_sym_def] = ACTIONS(4141), + [anon_sym_global] = ACTIONS(4141), + [anon_sym_nonlocal] = ACTIONS(4141), + [anon_sym_exec] = ACTIONS(4141), + [anon_sym_type] = ACTIONS(4141), + [anon_sym_class] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4143), + [anon_sym_AT] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4143), + [anon_sym_PLUS] = ACTIONS(4143), + [anon_sym_not] = ACTIONS(4141), + [anon_sym_AMP] = ACTIONS(4143), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_LT] = ACTIONS(4143), + [anon_sym_lambda] = ACTIONS(4141), + [anon_sym_yield] = ACTIONS(4141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4143), + [anon_sym_None] = ACTIONS(4141), + [anon_sym_0x] = ACTIONS(4143), + [anon_sym_0X] = ACTIONS(4143), + [anon_sym_0o] = ACTIONS(4143), + [anon_sym_0O] = ACTIONS(4143), + [anon_sym_0b] = ACTIONS(4143), + [anon_sym_0B] = ACTIONS(4143), + [aux_sym_integer_token4] = ACTIONS(4141), + [sym_float] = ACTIONS(4143), + [anon_sym_await] = ACTIONS(4141), + [anon_sym_api] = ACTIONS(4141), + [sym_true] = ACTIONS(4141), + [sym_false] = ACTIONS(4141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4141), + [anon_sym_include] = ACTIONS(4141), + [anon_sym_DEF] = ACTIONS(4141), + [anon_sym_IF] = ACTIONS(4141), + [anon_sym_cdef] = ACTIONS(4141), + [anon_sym_cpdef] = ACTIONS(4141), + [anon_sym_new] = ACTIONS(4141), + [anon_sym_ctypedef] = ACTIONS(4141), + [anon_sym_public] = ACTIONS(4141), + [anon_sym_packed] = ACTIONS(4141), + [anon_sym_inline] = ACTIONS(4141), + [anon_sym_readonly] = ACTIONS(4141), + [anon_sym_sizeof] = ACTIONS(4141), + [sym__dedent] = ACTIONS(4143), + [sym_string_start] = ACTIONS(4143), + }, + [2072] = { + [sym_identifier] = ACTIONS(4145), + [anon_sym_import] = ACTIONS(4145), + [anon_sym_cimport] = ACTIONS(4145), + [anon_sym_from] = ACTIONS(4145), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_print] = ACTIONS(4145), + [anon_sym_assert] = ACTIONS(4145), + [anon_sym_return] = ACTIONS(4145), + [anon_sym_del] = ACTIONS(4145), + [anon_sym_raise] = ACTIONS(4145), + [anon_sym_pass] = ACTIONS(4145), + [anon_sym_break] = ACTIONS(4145), + [anon_sym_continue] = ACTIONS(4145), + [anon_sym_if] = ACTIONS(4145), + [anon_sym_match] = ACTIONS(4145), + [anon_sym_async] = ACTIONS(4145), + [anon_sym_for] = ACTIONS(4145), + [anon_sym_while] = ACTIONS(4145), + [anon_sym_try] = ACTIONS(4145), + [anon_sym_with] = ACTIONS(4145), + [anon_sym_def] = ACTIONS(4145), + [anon_sym_global] = ACTIONS(4145), + [anon_sym_nonlocal] = ACTIONS(4145), + [anon_sym_exec] = ACTIONS(4145), + [anon_sym_type] = ACTIONS(4145), + [anon_sym_class] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4147), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_not] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4147), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_lambda] = ACTIONS(4145), + [anon_sym_yield] = ACTIONS(4145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4147), + [anon_sym_None] = ACTIONS(4145), + [anon_sym_0x] = ACTIONS(4147), + [anon_sym_0X] = ACTIONS(4147), + [anon_sym_0o] = ACTIONS(4147), + [anon_sym_0O] = ACTIONS(4147), + [anon_sym_0b] = ACTIONS(4147), + [anon_sym_0B] = ACTIONS(4147), + [aux_sym_integer_token4] = ACTIONS(4145), + [sym_float] = ACTIONS(4147), + [anon_sym_await] = ACTIONS(4145), + [anon_sym_api] = ACTIONS(4145), + [sym_true] = ACTIONS(4145), + [sym_false] = ACTIONS(4145), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4145), + [anon_sym_include] = ACTIONS(4145), + [anon_sym_DEF] = ACTIONS(4145), + [anon_sym_IF] = ACTIONS(4145), + [anon_sym_cdef] = ACTIONS(4145), + [anon_sym_cpdef] = ACTIONS(4145), + [anon_sym_new] = ACTIONS(4145), + [anon_sym_ctypedef] = ACTIONS(4145), + [anon_sym_public] = ACTIONS(4145), + [anon_sym_packed] = ACTIONS(4145), + [anon_sym_inline] = ACTIONS(4145), + [anon_sym_readonly] = ACTIONS(4145), + [anon_sym_sizeof] = ACTIONS(4145), + [sym__dedent] = ACTIONS(4147), + [sym_string_start] = ACTIONS(4147), + }, + [2073] = { + [sym_identifier] = ACTIONS(4149), + [anon_sym_import] = ACTIONS(4149), + [anon_sym_cimport] = ACTIONS(4149), + [anon_sym_from] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_STAR] = ACTIONS(4151), + [anon_sym_print] = ACTIONS(4149), + [anon_sym_assert] = ACTIONS(4149), + [anon_sym_return] = ACTIONS(4149), + [anon_sym_del] = ACTIONS(4149), + [anon_sym_raise] = ACTIONS(4149), + [anon_sym_pass] = ACTIONS(4149), + [anon_sym_break] = ACTIONS(4149), + [anon_sym_continue] = ACTIONS(4149), + [anon_sym_if] = ACTIONS(4149), + [anon_sym_match] = ACTIONS(4149), + [anon_sym_async] = ACTIONS(4149), + [anon_sym_for] = ACTIONS(4149), + [anon_sym_while] = ACTIONS(4149), + [anon_sym_try] = ACTIONS(4149), + [anon_sym_with] = ACTIONS(4149), + [anon_sym_def] = ACTIONS(4149), + [anon_sym_global] = ACTIONS(4149), + [anon_sym_nonlocal] = ACTIONS(4149), + [anon_sym_exec] = ACTIONS(4149), + [anon_sym_type] = ACTIONS(4149), + [anon_sym_class] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4151), + [anon_sym_AT] = ACTIONS(4151), + [anon_sym_DASH] = ACTIONS(4151), + [anon_sym_LBRACE] = ACTIONS(4151), + [anon_sym_PLUS] = ACTIONS(4151), + [anon_sym_not] = ACTIONS(4149), + [anon_sym_AMP] = ACTIONS(4151), + [anon_sym_TILDE] = ACTIONS(4151), + [anon_sym_LT] = ACTIONS(4151), + [anon_sym_lambda] = ACTIONS(4149), + [anon_sym_yield] = ACTIONS(4149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4151), + [anon_sym_None] = ACTIONS(4149), + [anon_sym_0x] = ACTIONS(4151), + [anon_sym_0X] = ACTIONS(4151), + [anon_sym_0o] = ACTIONS(4151), + [anon_sym_0O] = ACTIONS(4151), + [anon_sym_0b] = ACTIONS(4151), + [anon_sym_0B] = ACTIONS(4151), + [aux_sym_integer_token4] = ACTIONS(4149), + [sym_float] = ACTIONS(4151), + [anon_sym_await] = ACTIONS(4149), + [anon_sym_api] = ACTIONS(4149), + [sym_true] = ACTIONS(4149), + [sym_false] = ACTIONS(4149), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4149), + [anon_sym_include] = ACTIONS(4149), + [anon_sym_DEF] = ACTIONS(4149), + [anon_sym_IF] = ACTIONS(4149), + [anon_sym_cdef] = ACTIONS(4149), + [anon_sym_cpdef] = ACTIONS(4149), + [anon_sym_new] = ACTIONS(4149), + [anon_sym_ctypedef] = ACTIONS(4149), + [anon_sym_public] = ACTIONS(4149), + [anon_sym_packed] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4149), + [anon_sym_readonly] = ACTIONS(4149), + [anon_sym_sizeof] = ACTIONS(4149), + [sym__dedent] = ACTIONS(4151), + [sym_string_start] = ACTIONS(4151), + }, + [2074] = { + [sym_identifier] = ACTIONS(4153), + [anon_sym_import] = ACTIONS(4153), + [anon_sym_cimport] = ACTIONS(4153), + [anon_sym_from] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_STAR] = ACTIONS(4155), + [anon_sym_print] = ACTIONS(4153), + [anon_sym_assert] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_del] = ACTIONS(4153), + [anon_sym_raise] = ACTIONS(4153), + [anon_sym_pass] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4153), + [anon_sym_for] = ACTIONS(4153), + [anon_sym_while] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_with] = ACTIONS(4153), + [anon_sym_def] = ACTIONS(4153), + [anon_sym_global] = ACTIONS(4153), + [anon_sym_nonlocal] = ACTIONS(4153), + [anon_sym_exec] = ACTIONS(4153), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_class] = ACTIONS(4153), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_DASH] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4155), + [anon_sym_not] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4155), + [anon_sym_TILDE] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4155), + [anon_sym_lambda] = ACTIONS(4153), + [anon_sym_yield] = ACTIONS(4153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4155), + [anon_sym_None] = ACTIONS(4153), + [anon_sym_0x] = ACTIONS(4155), + [anon_sym_0X] = ACTIONS(4155), + [anon_sym_0o] = ACTIONS(4155), + [anon_sym_0O] = ACTIONS(4155), + [anon_sym_0b] = ACTIONS(4155), + [anon_sym_0B] = ACTIONS(4155), + [aux_sym_integer_token4] = ACTIONS(4153), + [sym_float] = ACTIONS(4155), + [anon_sym_await] = ACTIONS(4153), + [anon_sym_api] = ACTIONS(4153), + [sym_true] = ACTIONS(4153), + [sym_false] = ACTIONS(4153), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4153), + [anon_sym_include] = ACTIONS(4153), + [anon_sym_DEF] = ACTIONS(4153), + [anon_sym_IF] = ACTIONS(4153), + [anon_sym_cdef] = ACTIONS(4153), + [anon_sym_cpdef] = ACTIONS(4153), + [anon_sym_new] = ACTIONS(4153), + [anon_sym_ctypedef] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_packed] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_readonly] = ACTIONS(4153), + [anon_sym_sizeof] = ACTIONS(4153), + [sym__dedent] = ACTIONS(4155), + [sym_string_start] = ACTIONS(4155), + }, + [2075] = { + [sym_identifier] = ACTIONS(4157), + [anon_sym_import] = ACTIONS(4157), + [anon_sym_cimport] = ACTIONS(4157), + [anon_sym_from] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_print] = ACTIONS(4157), + [anon_sym_assert] = ACTIONS(4157), + [anon_sym_return] = ACTIONS(4157), + [anon_sym_del] = ACTIONS(4157), + [anon_sym_raise] = ACTIONS(4157), + [anon_sym_pass] = ACTIONS(4157), + [anon_sym_break] = ACTIONS(4157), + [anon_sym_continue] = ACTIONS(4157), + [anon_sym_if] = ACTIONS(4157), + [anon_sym_match] = ACTIONS(4157), + [anon_sym_async] = ACTIONS(4157), + [anon_sym_for] = ACTIONS(4157), + [anon_sym_while] = ACTIONS(4157), + [anon_sym_try] = ACTIONS(4157), + [anon_sym_with] = ACTIONS(4157), + [anon_sym_def] = ACTIONS(4157), + [anon_sym_global] = ACTIONS(4157), + [anon_sym_nonlocal] = ACTIONS(4157), + [anon_sym_exec] = ACTIONS(4157), + [anon_sym_type] = ACTIONS(4157), + [anon_sym_class] = ACTIONS(4157), + [anon_sym_LBRACK] = ACTIONS(4159), + [anon_sym_AT] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4159), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_not] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4159), + [anon_sym_TILDE] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(4159), + [anon_sym_lambda] = ACTIONS(4157), + [anon_sym_yield] = ACTIONS(4157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4159), + [anon_sym_None] = ACTIONS(4157), + [anon_sym_0x] = ACTIONS(4159), + [anon_sym_0X] = ACTIONS(4159), + [anon_sym_0o] = ACTIONS(4159), + [anon_sym_0O] = ACTIONS(4159), + [anon_sym_0b] = ACTIONS(4159), + [anon_sym_0B] = ACTIONS(4159), + [aux_sym_integer_token4] = ACTIONS(4157), + [sym_float] = ACTIONS(4159), + [anon_sym_await] = ACTIONS(4157), + [anon_sym_api] = ACTIONS(4157), + [sym_true] = ACTIONS(4157), + [sym_false] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4157), + [anon_sym_include] = ACTIONS(4157), + [anon_sym_DEF] = ACTIONS(4157), + [anon_sym_IF] = ACTIONS(4157), + [anon_sym_cdef] = ACTIONS(4157), + [anon_sym_cpdef] = ACTIONS(4157), + [anon_sym_new] = ACTIONS(4157), + [anon_sym_ctypedef] = ACTIONS(4157), + [anon_sym_public] = ACTIONS(4157), + [anon_sym_packed] = ACTIONS(4157), + [anon_sym_inline] = ACTIONS(4157), + [anon_sym_readonly] = ACTIONS(4157), + [anon_sym_sizeof] = ACTIONS(4157), + [sym__dedent] = ACTIONS(4159), + [sym_string_start] = ACTIONS(4159), + }, + [2076] = { + [sym_identifier] = ACTIONS(4161), + [anon_sym_import] = ACTIONS(4161), + [anon_sym_cimport] = ACTIONS(4161), + [anon_sym_from] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4163), + [anon_sym_print] = ACTIONS(4161), + [anon_sym_assert] = ACTIONS(4161), + [anon_sym_return] = ACTIONS(4161), + [anon_sym_del] = ACTIONS(4161), + [anon_sym_raise] = ACTIONS(4161), + [anon_sym_pass] = ACTIONS(4161), + [anon_sym_break] = ACTIONS(4161), + [anon_sym_continue] = ACTIONS(4161), + [anon_sym_if] = ACTIONS(4161), + [anon_sym_match] = ACTIONS(4161), + [anon_sym_async] = ACTIONS(4161), + [anon_sym_for] = ACTIONS(4161), + [anon_sym_while] = ACTIONS(4161), + [anon_sym_try] = ACTIONS(4161), + [anon_sym_with] = ACTIONS(4161), + [anon_sym_def] = ACTIONS(4161), + [anon_sym_global] = ACTIONS(4161), + [anon_sym_nonlocal] = ACTIONS(4161), + [anon_sym_exec] = ACTIONS(4161), + [anon_sym_type] = ACTIONS(4161), + [anon_sym_class] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_AT] = ACTIONS(4163), + [anon_sym_DASH] = ACTIONS(4163), + [anon_sym_LBRACE] = ACTIONS(4163), + [anon_sym_PLUS] = ACTIONS(4163), + [anon_sym_not] = ACTIONS(4161), + [anon_sym_AMP] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4163), + [anon_sym_LT] = ACTIONS(4163), + [anon_sym_lambda] = ACTIONS(4161), + [anon_sym_yield] = ACTIONS(4161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4163), + [anon_sym_None] = ACTIONS(4161), + [anon_sym_0x] = ACTIONS(4163), + [anon_sym_0X] = ACTIONS(4163), + [anon_sym_0o] = ACTIONS(4163), + [anon_sym_0O] = ACTIONS(4163), + [anon_sym_0b] = ACTIONS(4163), + [anon_sym_0B] = ACTIONS(4163), + [aux_sym_integer_token4] = ACTIONS(4161), + [sym_float] = ACTIONS(4163), + [anon_sym_await] = ACTIONS(4161), + [anon_sym_api] = ACTIONS(4161), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4161), + [anon_sym_include] = ACTIONS(4161), + [anon_sym_DEF] = ACTIONS(4161), + [anon_sym_IF] = ACTIONS(4161), + [anon_sym_cdef] = ACTIONS(4161), + [anon_sym_cpdef] = ACTIONS(4161), + [anon_sym_new] = ACTIONS(4161), + [anon_sym_ctypedef] = ACTIONS(4161), + [anon_sym_public] = ACTIONS(4161), + [anon_sym_packed] = ACTIONS(4161), + [anon_sym_inline] = ACTIONS(4161), + [anon_sym_readonly] = ACTIONS(4161), + [anon_sym_sizeof] = ACTIONS(4161), + [sym__dedent] = ACTIONS(4163), + [sym_string_start] = ACTIONS(4163), + }, + [2077] = { + [sym_identifier] = ACTIONS(4165), + [anon_sym_import] = ACTIONS(4165), + [anon_sym_cimport] = ACTIONS(4165), + [anon_sym_from] = ACTIONS(4165), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_STAR] = ACTIONS(4167), + [anon_sym_print] = ACTIONS(4165), + [anon_sym_assert] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_del] = ACTIONS(4165), + [anon_sym_raise] = ACTIONS(4165), + [anon_sym_pass] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_match] = ACTIONS(4165), + [anon_sym_async] = ACTIONS(4165), + [anon_sym_for] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_with] = ACTIONS(4165), + [anon_sym_def] = ACTIONS(4165), + [anon_sym_global] = ACTIONS(4165), + [anon_sym_nonlocal] = ACTIONS(4165), + [anon_sym_exec] = ACTIONS(4165), + [anon_sym_type] = ACTIONS(4165), + [anon_sym_class] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_DASH] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4167), + [anon_sym_not] = ACTIONS(4165), + [anon_sym_AMP] = ACTIONS(4167), + [anon_sym_TILDE] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4167), + [anon_sym_lambda] = ACTIONS(4165), + [anon_sym_yield] = ACTIONS(4165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4167), + [anon_sym_None] = ACTIONS(4165), + [anon_sym_0x] = ACTIONS(4167), + [anon_sym_0X] = ACTIONS(4167), + [anon_sym_0o] = ACTIONS(4167), + [anon_sym_0O] = ACTIONS(4167), + [anon_sym_0b] = ACTIONS(4167), + [anon_sym_0B] = ACTIONS(4167), + [aux_sym_integer_token4] = ACTIONS(4165), + [sym_float] = ACTIONS(4167), + [anon_sym_await] = ACTIONS(4165), + [anon_sym_api] = ACTIONS(4165), + [sym_true] = ACTIONS(4165), + [sym_false] = ACTIONS(4165), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4165), + [anon_sym_include] = ACTIONS(4165), + [anon_sym_DEF] = ACTIONS(4165), + [anon_sym_IF] = ACTIONS(4165), + [anon_sym_cdef] = ACTIONS(4165), + [anon_sym_cpdef] = ACTIONS(4165), + [anon_sym_new] = ACTIONS(4165), + [anon_sym_ctypedef] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_packed] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_readonly] = ACTIONS(4165), + [anon_sym_sizeof] = ACTIONS(4165), + [sym__dedent] = ACTIONS(4167), + [sym_string_start] = ACTIONS(4167), + }, + [2078] = { + [sym_identifier] = ACTIONS(2877), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_cimport] = ACTIONS(2877), + [anon_sym_from] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2879), + [anon_sym_print] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_del] = ACTIONS(2877), + [anon_sym_raise] = ACTIONS(2877), + [anon_sym_pass] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_async] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2877), + [anon_sym_try] = ACTIONS(2877), + [anon_sym_with] = ACTIONS(2877), + [anon_sym_def] = ACTIONS(2877), + [anon_sym_global] = ACTIONS(2877), + [anon_sym_nonlocal] = ACTIONS(2877), + [anon_sym_exec] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_class] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_AT] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_TILDE] = ACTIONS(2879), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_lambda] = ACTIONS(2877), + [anon_sym_yield] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2879), + [anon_sym_None] = ACTIONS(2877), + [anon_sym_0x] = ACTIONS(2879), + [anon_sym_0X] = ACTIONS(2879), + [anon_sym_0o] = ACTIONS(2879), + [anon_sym_0O] = ACTIONS(2879), + [anon_sym_0b] = ACTIONS(2879), + [anon_sym_0B] = ACTIONS(2879), + [aux_sym_integer_token4] = ACTIONS(2877), + [sym_float] = ACTIONS(2879), + [anon_sym_await] = ACTIONS(2877), + [anon_sym_api] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2877), + [anon_sym_include] = ACTIONS(2877), + [anon_sym_DEF] = ACTIONS(2877), + [anon_sym_IF] = ACTIONS(2877), + [anon_sym_cdef] = ACTIONS(2877), + [anon_sym_cpdef] = ACTIONS(2877), + [anon_sym_new] = ACTIONS(2877), + [anon_sym_ctypedef] = ACTIONS(2877), + [anon_sym_public] = ACTIONS(2877), + [anon_sym_packed] = ACTIONS(2877), + [anon_sym_inline] = ACTIONS(2877), + [anon_sym_readonly] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2877), + [sym__dedent] = ACTIONS(2879), + [sym_string_start] = ACTIONS(2879), + }, + [2079] = { + [sym_identifier] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_cimport] = ACTIONS(2317), + [anon_sym_from] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [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(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(2317), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_lambda] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_None] = ACTIONS(2317), + [anon_sym_0x] = ACTIONS(2315), + [anon_sym_0X] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0O] = ACTIONS(2315), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0B] = ACTIONS(2315), + [aux_sym_integer_token4] = ACTIONS(2317), + [sym_float] = ACTIONS(2315), + [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_IF] = ACTIONS(2317), + [anon_sym_cdef] = ACTIONS(2317), + [anon_sym_cpdef] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_ctypedef] = 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(2315), + [sym_string_start] = ACTIONS(2315), + }, + [2080] = { + [sym_identifier] = ACTIONS(3971), + [anon_sym_import] = ACTIONS(3971), + [anon_sym_cimport] = ACTIONS(3971), + [anon_sym_from] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_STAR] = ACTIONS(3969), + [anon_sym_print] = ACTIONS(3971), + [anon_sym_assert] = ACTIONS(3971), + [anon_sym_return] = ACTIONS(3971), + [anon_sym_del] = ACTIONS(3971), + [anon_sym_raise] = ACTIONS(3971), + [anon_sym_pass] = ACTIONS(3971), + [anon_sym_break] = ACTIONS(3971), + [anon_sym_continue] = ACTIONS(3971), + [anon_sym_if] = ACTIONS(3971), + [anon_sym_match] = ACTIONS(3971), + [anon_sym_async] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3971), + [anon_sym_while] = ACTIONS(3971), + [anon_sym_try] = ACTIONS(3971), + [anon_sym_with] = ACTIONS(3971), + [anon_sym_def] = ACTIONS(3971), + [anon_sym_global] = ACTIONS(3971), + [anon_sym_nonlocal] = ACTIONS(3971), + [anon_sym_exec] = ACTIONS(3971), + [anon_sym_type] = ACTIONS(3971), + [anon_sym_class] = ACTIONS(3971), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_AT] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_not] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3969), + [anon_sym_LT] = ACTIONS(3969), + [anon_sym_lambda] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3969), + [anon_sym_None] = ACTIONS(3971), + [anon_sym_0x] = ACTIONS(3969), + [anon_sym_0X] = ACTIONS(3969), + [anon_sym_0o] = ACTIONS(3969), + [anon_sym_0O] = ACTIONS(3969), + [anon_sym_0b] = ACTIONS(3969), + [anon_sym_0B] = ACTIONS(3969), + [aux_sym_integer_token4] = ACTIONS(3971), + [sym_float] = ACTIONS(3969), + [anon_sym_await] = ACTIONS(3971), + [anon_sym_api] = ACTIONS(3971), + [sym_true] = ACTIONS(3971), + [sym_false] = ACTIONS(3971), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3971), + [anon_sym_include] = ACTIONS(3971), + [anon_sym_DEF] = ACTIONS(3971), + [anon_sym_IF] = ACTIONS(3971), + [anon_sym_cdef] = ACTIONS(3971), + [anon_sym_cpdef] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3971), + [anon_sym_ctypedef] = ACTIONS(3971), + [anon_sym_public] = ACTIONS(3971), + [anon_sym_packed] = ACTIONS(3971), + [anon_sym_inline] = ACTIONS(3971), + [anon_sym_readonly] = ACTIONS(3971), + [anon_sym_sizeof] = ACTIONS(3971), + [sym__dedent] = ACTIONS(3969), + [sym_string_start] = ACTIONS(3969), + }, + [2081] = { + [sym_identifier] = ACTIONS(4007), + [anon_sym_import] = ACTIONS(4007), + [anon_sym_cimport] = ACTIONS(4007), + [anon_sym_from] = ACTIONS(4007), + [anon_sym_LPAREN] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4005), + [anon_sym_print] = ACTIONS(4007), + [anon_sym_assert] = ACTIONS(4007), + [anon_sym_return] = ACTIONS(4007), + [anon_sym_del] = ACTIONS(4007), + [anon_sym_raise] = ACTIONS(4007), + [anon_sym_pass] = ACTIONS(4007), + [anon_sym_break] = ACTIONS(4007), + [anon_sym_continue] = ACTIONS(4007), + [anon_sym_if] = ACTIONS(4007), + [anon_sym_match] = ACTIONS(4007), + [anon_sym_async] = ACTIONS(4007), + [anon_sym_for] = ACTIONS(4007), + [anon_sym_while] = ACTIONS(4007), + [anon_sym_try] = ACTIONS(4007), + [anon_sym_with] = ACTIONS(4007), + [anon_sym_def] = ACTIONS(4007), + [anon_sym_global] = ACTIONS(4007), + [anon_sym_nonlocal] = ACTIONS(4007), + [anon_sym_exec] = ACTIONS(4007), + [anon_sym_type] = ACTIONS(4007), + [anon_sym_class] = ACTIONS(4007), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_AT] = ACTIONS(4005), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_not] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_TILDE] = ACTIONS(4005), + [anon_sym_LT] = ACTIONS(4005), + [anon_sym_lambda] = ACTIONS(4007), + [anon_sym_yield] = ACTIONS(4007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4005), + [anon_sym_None] = ACTIONS(4007), + [anon_sym_0x] = ACTIONS(4005), + [anon_sym_0X] = ACTIONS(4005), + [anon_sym_0o] = ACTIONS(4005), + [anon_sym_0O] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(4005), + [anon_sym_0B] = ACTIONS(4005), + [aux_sym_integer_token4] = ACTIONS(4007), + [sym_float] = ACTIONS(4005), + [anon_sym_await] = ACTIONS(4007), + [anon_sym_api] = ACTIONS(4007), + [sym_true] = ACTIONS(4007), + [sym_false] = ACTIONS(4007), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4007), + [anon_sym_include] = ACTIONS(4007), + [anon_sym_DEF] = ACTIONS(4007), + [anon_sym_IF] = ACTIONS(4007), + [anon_sym_cdef] = ACTIONS(4007), + [anon_sym_cpdef] = ACTIONS(4007), + [anon_sym_new] = ACTIONS(4007), + [anon_sym_ctypedef] = ACTIONS(4007), + [anon_sym_public] = ACTIONS(4007), + [anon_sym_packed] = ACTIONS(4007), + [anon_sym_inline] = ACTIONS(4007), + [anon_sym_readonly] = ACTIONS(4007), + [anon_sym_sizeof] = ACTIONS(4007), + [sym__dedent] = ACTIONS(4005), + [sym_string_start] = ACTIONS(4005), + }, + [2082] = { + [sym_identifier] = ACTIONS(3975), + [anon_sym_import] = ACTIONS(3975), + [anon_sym_cimport] = ACTIONS(3975), + [anon_sym_from] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3973), + [anon_sym_print] = ACTIONS(3975), + [anon_sym_assert] = ACTIONS(3975), + [anon_sym_return] = ACTIONS(3975), + [anon_sym_del] = ACTIONS(3975), + [anon_sym_raise] = ACTIONS(3975), + [anon_sym_pass] = ACTIONS(3975), + [anon_sym_break] = ACTIONS(3975), + [anon_sym_continue] = ACTIONS(3975), + [anon_sym_if] = ACTIONS(3975), + [anon_sym_match] = ACTIONS(3975), + [anon_sym_async] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3975), + [anon_sym_while] = ACTIONS(3975), + [anon_sym_try] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3975), + [anon_sym_def] = ACTIONS(3975), + [anon_sym_global] = ACTIONS(3975), + [anon_sym_nonlocal] = ACTIONS(3975), + [anon_sym_exec] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(3975), + [anon_sym_class] = ACTIONS(3975), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_AT] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_not] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3973), + [anon_sym_lambda] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3973), + [anon_sym_None] = ACTIONS(3975), + [anon_sym_0x] = ACTIONS(3973), + [anon_sym_0X] = ACTIONS(3973), + [anon_sym_0o] = ACTIONS(3973), + [anon_sym_0O] = ACTIONS(3973), + [anon_sym_0b] = ACTIONS(3973), + [anon_sym_0B] = ACTIONS(3973), + [aux_sym_integer_token4] = ACTIONS(3975), + [sym_float] = ACTIONS(3973), + [anon_sym_await] = ACTIONS(3975), + [anon_sym_api] = ACTIONS(3975), + [sym_true] = ACTIONS(3975), + [sym_false] = ACTIONS(3975), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3975), + [anon_sym_include] = ACTIONS(3975), + [anon_sym_DEF] = ACTIONS(3975), + [anon_sym_IF] = ACTIONS(3975), + [anon_sym_cdef] = ACTIONS(3975), + [anon_sym_cpdef] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3975), + [anon_sym_ctypedef] = ACTIONS(3975), + [anon_sym_public] = ACTIONS(3975), + [anon_sym_packed] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym_readonly] = ACTIONS(3975), + [anon_sym_sizeof] = ACTIONS(3975), + [sym__dedent] = ACTIONS(3973), + [sym_string_start] = ACTIONS(3973), + }, + [2083] = { + [sym_identifier] = ACTIONS(3979), + [anon_sym_import] = ACTIONS(3979), + [anon_sym_cimport] = ACTIONS(3979), + [anon_sym_from] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3977), + [anon_sym_print] = ACTIONS(3979), + [anon_sym_assert] = ACTIONS(3979), + [anon_sym_return] = ACTIONS(3979), + [anon_sym_del] = ACTIONS(3979), + [anon_sym_raise] = ACTIONS(3979), + [anon_sym_pass] = ACTIONS(3979), + [anon_sym_break] = ACTIONS(3979), + [anon_sym_continue] = ACTIONS(3979), + [anon_sym_if] = ACTIONS(3979), + [anon_sym_match] = ACTIONS(3979), + [anon_sym_async] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3979), + [anon_sym_while] = ACTIONS(3979), + [anon_sym_try] = ACTIONS(3979), + [anon_sym_with] = ACTIONS(3979), + [anon_sym_def] = ACTIONS(3979), + [anon_sym_global] = ACTIONS(3979), + [anon_sym_nonlocal] = ACTIONS(3979), + [anon_sym_exec] = ACTIONS(3979), + [anon_sym_type] = ACTIONS(3979), + [anon_sym_class] = ACTIONS(3979), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_AT] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_lambda] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3977), + [anon_sym_None] = ACTIONS(3979), + [anon_sym_0x] = ACTIONS(3977), + [anon_sym_0X] = ACTIONS(3977), + [anon_sym_0o] = ACTIONS(3977), + [anon_sym_0O] = ACTIONS(3977), + [anon_sym_0b] = ACTIONS(3977), + [anon_sym_0B] = ACTIONS(3977), + [aux_sym_integer_token4] = ACTIONS(3979), + [sym_float] = ACTIONS(3977), + [anon_sym_await] = ACTIONS(3979), + [anon_sym_api] = ACTIONS(3979), + [sym_true] = ACTIONS(3979), + [sym_false] = ACTIONS(3979), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3979), + [anon_sym_include] = ACTIONS(3979), + [anon_sym_DEF] = ACTIONS(3979), + [anon_sym_IF] = ACTIONS(3979), + [anon_sym_cdef] = ACTIONS(3979), + [anon_sym_cpdef] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3979), + [anon_sym_ctypedef] = ACTIONS(3979), + [anon_sym_public] = ACTIONS(3979), + [anon_sym_packed] = ACTIONS(3979), + [anon_sym_inline] = ACTIONS(3979), + [anon_sym_readonly] = ACTIONS(3979), + [anon_sym_sizeof] = ACTIONS(3979), + [sym__dedent] = ACTIONS(3977), + [sym_string_start] = ACTIONS(3977), + }, + [2084] = { + [sym_identifier] = ACTIONS(3983), + [anon_sym_import] = ACTIONS(3983), + [anon_sym_cimport] = ACTIONS(3983), + [anon_sym_from] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_print] = ACTIONS(3983), + [anon_sym_assert] = ACTIONS(3983), + [anon_sym_return] = ACTIONS(3983), + [anon_sym_del] = ACTIONS(3983), + [anon_sym_raise] = ACTIONS(3983), + [anon_sym_pass] = ACTIONS(3983), + [anon_sym_break] = ACTIONS(3983), + [anon_sym_continue] = ACTIONS(3983), + [anon_sym_if] = ACTIONS(3983), + [anon_sym_match] = ACTIONS(3983), + [anon_sym_async] = ACTIONS(3983), + [anon_sym_for] = ACTIONS(3983), + [anon_sym_while] = ACTIONS(3983), + [anon_sym_try] = ACTIONS(3983), + [anon_sym_with] = ACTIONS(3983), + [anon_sym_def] = ACTIONS(3983), + [anon_sym_global] = ACTIONS(3983), + [anon_sym_nonlocal] = ACTIONS(3983), + [anon_sym_exec] = ACTIONS(3983), + [anon_sym_type] = ACTIONS(3983), + [anon_sym_class] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_AT] = ACTIONS(3981), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_not] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_TILDE] = ACTIONS(3981), + [anon_sym_LT] = ACTIONS(3981), + [anon_sym_lambda] = ACTIONS(3983), + [anon_sym_yield] = ACTIONS(3983), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3981), + [anon_sym_None] = ACTIONS(3983), + [anon_sym_0x] = ACTIONS(3981), + [anon_sym_0X] = ACTIONS(3981), + [anon_sym_0o] = ACTIONS(3981), + [anon_sym_0O] = ACTIONS(3981), + [anon_sym_0b] = ACTIONS(3981), + [anon_sym_0B] = ACTIONS(3981), + [aux_sym_integer_token4] = ACTIONS(3983), + [sym_float] = ACTIONS(3981), + [anon_sym_await] = ACTIONS(3983), + [anon_sym_api] = ACTIONS(3983), + [sym_true] = ACTIONS(3983), + [sym_false] = ACTIONS(3983), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3983), + [anon_sym_include] = ACTIONS(3983), + [anon_sym_DEF] = ACTIONS(3983), + [anon_sym_IF] = ACTIONS(3983), + [anon_sym_cdef] = ACTIONS(3983), + [anon_sym_cpdef] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3983), + [anon_sym_ctypedef] = ACTIONS(3983), + [anon_sym_public] = ACTIONS(3983), + [anon_sym_packed] = ACTIONS(3983), + [anon_sym_inline] = ACTIONS(3983), + [anon_sym_readonly] = ACTIONS(3983), + [anon_sym_sizeof] = ACTIONS(3983), + [sym__dedent] = ACTIONS(3981), + [sym_string_start] = ACTIONS(3981), + }, + [2085] = { + [ts_builtin_sym_end] = ACTIONS(4169), + [sym_identifier] = ACTIONS(4171), + [anon_sym_import] = ACTIONS(4171), + [anon_sym_cimport] = ACTIONS(4171), + [anon_sym_from] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4169), + [anon_sym_STAR] = ACTIONS(4169), + [anon_sym_print] = ACTIONS(4171), + [anon_sym_assert] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_del] = ACTIONS(4171), + [anon_sym_raise] = ACTIONS(4171), + [anon_sym_pass] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4171), + [anon_sym_for] = ACTIONS(4171), + [anon_sym_while] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_with] = ACTIONS(4171), + [anon_sym_def] = ACTIONS(4171), + [anon_sym_global] = ACTIONS(4171), + [anon_sym_nonlocal] = ACTIONS(4171), + [anon_sym_exec] = ACTIONS(4171), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_class] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_AT] = ACTIONS(4169), + [anon_sym_DASH] = ACTIONS(4169), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4169), + [anon_sym_not] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4169), + [anon_sym_TILDE] = ACTIONS(4169), + [anon_sym_LT] = ACTIONS(4169), + [anon_sym_lambda] = ACTIONS(4171), + [anon_sym_yield] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4169), + [anon_sym_None] = ACTIONS(4171), + [anon_sym_0x] = ACTIONS(4169), + [anon_sym_0X] = ACTIONS(4169), + [anon_sym_0o] = ACTIONS(4169), + [anon_sym_0O] = ACTIONS(4169), + [anon_sym_0b] = ACTIONS(4169), + [anon_sym_0B] = ACTIONS(4169), + [aux_sym_integer_token4] = ACTIONS(4171), + [sym_float] = ACTIONS(4169), + [anon_sym_await] = ACTIONS(4171), + [anon_sym_api] = ACTIONS(4171), + [sym_true] = ACTIONS(4171), + [sym_false] = ACTIONS(4171), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4171), + [anon_sym_include] = ACTIONS(4171), + [anon_sym_DEF] = ACTIONS(4171), + [anon_sym_IF] = ACTIONS(4171), + [anon_sym_cdef] = ACTIONS(4171), + [anon_sym_cpdef] = ACTIONS(4171), + [anon_sym_new] = ACTIONS(4171), + [anon_sym_ctypedef] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_packed] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_readonly] = ACTIONS(4171), + [anon_sym_sizeof] = ACTIONS(4171), + [sym_string_start] = ACTIONS(4169), + }, + [2086] = { + [sym_identifier] = ACTIONS(4015), + [anon_sym_import] = ACTIONS(4015), + [anon_sym_cimport] = ACTIONS(4015), + [anon_sym_from] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_print] = ACTIONS(4015), + [anon_sym_assert] = ACTIONS(4015), + [anon_sym_return] = ACTIONS(4015), + [anon_sym_del] = ACTIONS(4015), + [anon_sym_raise] = ACTIONS(4015), + [anon_sym_pass] = ACTIONS(4015), + [anon_sym_break] = ACTIONS(4015), + [anon_sym_continue] = ACTIONS(4015), + [anon_sym_if] = ACTIONS(4015), + [anon_sym_match] = ACTIONS(4015), + [anon_sym_async] = ACTIONS(4015), + [anon_sym_for] = ACTIONS(4015), + [anon_sym_while] = ACTIONS(4015), + [anon_sym_try] = ACTIONS(4015), + [anon_sym_with] = ACTIONS(4015), + [anon_sym_def] = ACTIONS(4015), + [anon_sym_global] = ACTIONS(4015), + [anon_sym_nonlocal] = ACTIONS(4015), + [anon_sym_exec] = ACTIONS(4015), + [anon_sym_type] = ACTIONS(4015), + [anon_sym_class] = ACTIONS(4015), + [anon_sym_LBRACK] = ACTIONS(4013), + [anon_sym_AT] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_not] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_TILDE] = ACTIONS(4013), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_lambda] = ACTIONS(4015), + [anon_sym_yield] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4013), + [anon_sym_None] = ACTIONS(4015), + [anon_sym_0x] = ACTIONS(4013), + [anon_sym_0X] = ACTIONS(4013), + [anon_sym_0o] = ACTIONS(4013), + [anon_sym_0O] = ACTIONS(4013), + [anon_sym_0b] = ACTIONS(4013), + [anon_sym_0B] = ACTIONS(4013), + [aux_sym_integer_token4] = ACTIONS(4015), + [sym_float] = ACTIONS(4013), + [anon_sym_await] = ACTIONS(4015), + [anon_sym_api] = ACTIONS(4015), + [sym_true] = ACTIONS(4015), + [sym_false] = ACTIONS(4015), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4015), + [anon_sym_include] = ACTIONS(4015), + [anon_sym_DEF] = ACTIONS(4015), + [anon_sym_IF] = ACTIONS(4015), + [anon_sym_cdef] = ACTIONS(4015), + [anon_sym_cpdef] = ACTIONS(4015), + [anon_sym_new] = ACTIONS(4015), + [anon_sym_ctypedef] = ACTIONS(4015), + [anon_sym_public] = ACTIONS(4015), + [anon_sym_packed] = ACTIONS(4015), + [anon_sym_inline] = ACTIONS(4015), + [anon_sym_readonly] = ACTIONS(4015), + [anon_sym_sizeof] = ACTIONS(4015), + [sym__dedent] = ACTIONS(4013), + [sym_string_start] = ACTIONS(4013), + }, + [2087] = { + [ts_builtin_sym_end] = ACTIONS(4173), + [sym_identifier] = ACTIONS(4175), + [anon_sym_import] = ACTIONS(4175), + [anon_sym_cimport] = ACTIONS(4175), + [anon_sym_from] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [anon_sym_print] = ACTIONS(4175), + [anon_sym_assert] = ACTIONS(4175), + [anon_sym_return] = ACTIONS(4175), + [anon_sym_del] = ACTIONS(4175), + [anon_sym_raise] = ACTIONS(4175), + [anon_sym_pass] = ACTIONS(4175), + [anon_sym_break] = ACTIONS(4175), + [anon_sym_continue] = ACTIONS(4175), + [anon_sym_if] = ACTIONS(4175), + [anon_sym_match] = ACTIONS(4175), + [anon_sym_async] = ACTIONS(4175), + [anon_sym_for] = ACTIONS(4175), + [anon_sym_while] = ACTIONS(4175), + [anon_sym_try] = ACTIONS(4175), + [anon_sym_with] = ACTIONS(4175), + [anon_sym_def] = ACTIONS(4175), + [anon_sym_global] = ACTIONS(4175), + [anon_sym_nonlocal] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4175), + [anon_sym_type] = ACTIONS(4175), + [anon_sym_class] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_not] = ACTIONS(4175), + [anon_sym_AMP] = ACTIONS(4173), + [anon_sym_TILDE] = ACTIONS(4173), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_lambda] = ACTIONS(4175), + [anon_sym_yield] = ACTIONS(4175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_None] = ACTIONS(4175), + [anon_sym_0x] = ACTIONS(4173), + [anon_sym_0X] = ACTIONS(4173), + [anon_sym_0o] = ACTIONS(4173), + [anon_sym_0O] = ACTIONS(4173), + [anon_sym_0b] = ACTIONS(4173), + [anon_sym_0B] = ACTIONS(4173), + [aux_sym_integer_token4] = ACTIONS(4175), + [sym_float] = ACTIONS(4173), + [anon_sym_await] = ACTIONS(4175), + [anon_sym_api] = ACTIONS(4175), + [sym_true] = ACTIONS(4175), + [sym_false] = ACTIONS(4175), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4175), + [anon_sym_include] = ACTIONS(4175), + [anon_sym_DEF] = ACTIONS(4175), + [anon_sym_IF] = ACTIONS(4175), + [anon_sym_cdef] = ACTIONS(4175), + [anon_sym_cpdef] = ACTIONS(4175), + [anon_sym_new] = ACTIONS(4175), + [anon_sym_ctypedef] = ACTIONS(4175), + [anon_sym_public] = ACTIONS(4175), + [anon_sym_packed] = ACTIONS(4175), + [anon_sym_inline] = ACTIONS(4175), + [anon_sym_readonly] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(4175), + [sym_string_start] = ACTIONS(4173), + }, + [2088] = { + [sym_identifier] = ACTIONS(4035), + [anon_sym_import] = ACTIONS(4035), + [anon_sym_cimport] = ACTIONS(4035), + [anon_sym_from] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4033), + [anon_sym_STAR] = ACTIONS(4033), + [anon_sym_print] = ACTIONS(4035), + [anon_sym_assert] = ACTIONS(4035), + [anon_sym_return] = ACTIONS(4035), + [anon_sym_del] = ACTIONS(4035), + [anon_sym_raise] = ACTIONS(4035), + [anon_sym_pass] = ACTIONS(4035), + [anon_sym_break] = ACTIONS(4035), + [anon_sym_continue] = ACTIONS(4035), + [anon_sym_if] = ACTIONS(4035), + [anon_sym_match] = ACTIONS(4035), + [anon_sym_async] = ACTIONS(4035), + [anon_sym_for] = ACTIONS(4035), + [anon_sym_while] = ACTIONS(4035), + [anon_sym_try] = ACTIONS(4035), + [anon_sym_with] = ACTIONS(4035), + [anon_sym_def] = ACTIONS(4035), + [anon_sym_global] = ACTIONS(4035), + [anon_sym_nonlocal] = ACTIONS(4035), + [anon_sym_exec] = ACTIONS(4035), + [anon_sym_type] = ACTIONS(4035), + [anon_sym_class] = ACTIONS(4035), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_AT] = ACTIONS(4033), + [anon_sym_DASH] = ACTIONS(4033), + [anon_sym_LBRACE] = ACTIONS(4033), + [anon_sym_PLUS] = ACTIONS(4033), + [anon_sym_not] = ACTIONS(4035), + [anon_sym_AMP] = ACTIONS(4033), + [anon_sym_TILDE] = ACTIONS(4033), + [anon_sym_LT] = ACTIONS(4033), + [anon_sym_lambda] = ACTIONS(4035), + [anon_sym_yield] = ACTIONS(4035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4033), + [anon_sym_None] = ACTIONS(4035), + [anon_sym_0x] = ACTIONS(4033), + [anon_sym_0X] = ACTIONS(4033), + [anon_sym_0o] = ACTIONS(4033), + [anon_sym_0O] = ACTIONS(4033), + [anon_sym_0b] = ACTIONS(4033), + [anon_sym_0B] = ACTIONS(4033), + [aux_sym_integer_token4] = ACTIONS(4035), + [sym_float] = ACTIONS(4033), + [anon_sym_await] = ACTIONS(4035), + [anon_sym_api] = ACTIONS(4035), + [sym_true] = ACTIONS(4035), + [sym_false] = ACTIONS(4035), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4035), + [anon_sym_include] = ACTIONS(4035), + [anon_sym_DEF] = ACTIONS(4035), + [anon_sym_IF] = ACTIONS(4035), + [anon_sym_cdef] = ACTIONS(4035), + [anon_sym_cpdef] = ACTIONS(4035), + [anon_sym_new] = ACTIONS(4035), + [anon_sym_ctypedef] = ACTIONS(4035), + [anon_sym_public] = ACTIONS(4035), + [anon_sym_packed] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym_readonly] = ACTIONS(4035), + [anon_sym_sizeof] = ACTIONS(4035), + [sym__dedent] = ACTIONS(4033), + [sym_string_start] = ACTIONS(4033), + }, + [2089] = { + [sym_identifier] = ACTIONS(4039), + [anon_sym_import] = ACTIONS(4039), + [anon_sym_cimport] = ACTIONS(4039), + [anon_sym_from] = ACTIONS(4039), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_print] = ACTIONS(4039), + [anon_sym_assert] = ACTIONS(4039), + [anon_sym_return] = ACTIONS(4039), + [anon_sym_del] = ACTIONS(4039), + [anon_sym_raise] = ACTIONS(4039), + [anon_sym_pass] = ACTIONS(4039), + [anon_sym_break] = ACTIONS(4039), + [anon_sym_continue] = ACTIONS(4039), + [anon_sym_if] = ACTIONS(4039), + [anon_sym_match] = ACTIONS(4039), + [anon_sym_async] = ACTIONS(4039), + [anon_sym_for] = ACTIONS(4039), + [anon_sym_while] = ACTIONS(4039), + [anon_sym_try] = ACTIONS(4039), + [anon_sym_with] = ACTIONS(4039), + [anon_sym_def] = ACTIONS(4039), + [anon_sym_global] = ACTIONS(4039), + [anon_sym_nonlocal] = ACTIONS(4039), + [anon_sym_exec] = ACTIONS(4039), + [anon_sym_type] = ACTIONS(4039), + [anon_sym_class] = ACTIONS(4039), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4037), + [anon_sym_not] = ACTIONS(4039), + [anon_sym_AMP] = ACTIONS(4037), + [anon_sym_TILDE] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4037), + [anon_sym_lambda] = ACTIONS(4039), + [anon_sym_yield] = ACTIONS(4039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4037), + [anon_sym_None] = ACTIONS(4039), + [anon_sym_0x] = ACTIONS(4037), + [anon_sym_0X] = ACTIONS(4037), + [anon_sym_0o] = ACTIONS(4037), + [anon_sym_0O] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(4037), + [anon_sym_0B] = ACTIONS(4037), + [aux_sym_integer_token4] = ACTIONS(4039), + [sym_float] = ACTIONS(4037), + [anon_sym_await] = ACTIONS(4039), + [anon_sym_api] = ACTIONS(4039), + [sym_true] = ACTIONS(4039), + [sym_false] = ACTIONS(4039), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4039), + [anon_sym_include] = ACTIONS(4039), + [anon_sym_DEF] = ACTIONS(4039), + [anon_sym_IF] = ACTIONS(4039), + [anon_sym_cdef] = ACTIONS(4039), + [anon_sym_cpdef] = ACTIONS(4039), + [anon_sym_new] = ACTIONS(4039), + [anon_sym_ctypedef] = ACTIONS(4039), + [anon_sym_public] = ACTIONS(4039), + [anon_sym_packed] = ACTIONS(4039), + [anon_sym_inline] = ACTIONS(4039), + [anon_sym_readonly] = ACTIONS(4039), + [anon_sym_sizeof] = ACTIONS(4039), + [sym__dedent] = ACTIONS(4037), + [sym_string_start] = ACTIONS(4037), + }, + [2090] = { + [sym_identifier] = ACTIONS(4047), + [anon_sym_import] = ACTIONS(4047), + [anon_sym_cimport] = ACTIONS(4047), + [anon_sym_from] = ACTIONS(4047), + [anon_sym_LPAREN] = ACTIONS(4045), + [anon_sym_STAR] = ACTIONS(4045), + [anon_sym_print] = ACTIONS(4047), + [anon_sym_assert] = ACTIONS(4047), + [anon_sym_return] = ACTIONS(4047), + [anon_sym_del] = ACTIONS(4047), + [anon_sym_raise] = ACTIONS(4047), + [anon_sym_pass] = ACTIONS(4047), + [anon_sym_break] = ACTIONS(4047), + [anon_sym_continue] = ACTIONS(4047), + [anon_sym_if] = ACTIONS(4047), + [anon_sym_match] = ACTIONS(4047), + [anon_sym_async] = ACTIONS(4047), + [anon_sym_for] = ACTIONS(4047), + [anon_sym_while] = ACTIONS(4047), + [anon_sym_try] = ACTIONS(4047), + [anon_sym_with] = ACTIONS(4047), + [anon_sym_def] = ACTIONS(4047), + [anon_sym_global] = ACTIONS(4047), + [anon_sym_nonlocal] = ACTIONS(4047), + [anon_sym_exec] = ACTIONS(4047), + [anon_sym_type] = ACTIONS(4047), + [anon_sym_class] = ACTIONS(4047), + [anon_sym_LBRACK] = ACTIONS(4045), + [anon_sym_AT] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4045), + [anon_sym_PLUS] = ACTIONS(4045), + [anon_sym_not] = ACTIONS(4047), + [anon_sym_AMP] = ACTIONS(4045), + [anon_sym_TILDE] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_lambda] = ACTIONS(4047), + [anon_sym_yield] = ACTIONS(4047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4045), + [anon_sym_None] = ACTIONS(4047), + [anon_sym_0x] = ACTIONS(4045), + [anon_sym_0X] = ACTIONS(4045), + [anon_sym_0o] = ACTIONS(4045), + [anon_sym_0O] = ACTIONS(4045), + [anon_sym_0b] = ACTIONS(4045), + [anon_sym_0B] = ACTIONS(4045), + [aux_sym_integer_token4] = ACTIONS(4047), + [sym_float] = ACTIONS(4045), + [anon_sym_await] = ACTIONS(4047), + [anon_sym_api] = ACTIONS(4047), + [sym_true] = ACTIONS(4047), + [sym_false] = ACTIONS(4047), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4047), + [anon_sym_include] = ACTIONS(4047), + [anon_sym_DEF] = ACTIONS(4047), + [anon_sym_IF] = ACTIONS(4047), + [anon_sym_cdef] = ACTIONS(4047), + [anon_sym_cpdef] = ACTIONS(4047), + [anon_sym_new] = ACTIONS(4047), + [anon_sym_ctypedef] = ACTIONS(4047), + [anon_sym_public] = ACTIONS(4047), + [anon_sym_packed] = ACTIONS(4047), + [anon_sym_inline] = ACTIONS(4047), + [anon_sym_readonly] = ACTIONS(4047), + [anon_sym_sizeof] = ACTIONS(4047), + [sym__dedent] = ACTIONS(4045), + [sym_string_start] = ACTIONS(4045), + }, + [2091] = { + [sym_identifier] = ACTIONS(4051), + [anon_sym_import] = ACTIONS(4051), + [anon_sym_cimport] = ACTIONS(4051), + [anon_sym_from] = ACTIONS(4051), + [anon_sym_LPAREN] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4049), + [anon_sym_print] = ACTIONS(4051), + [anon_sym_assert] = ACTIONS(4051), + [anon_sym_return] = ACTIONS(4051), + [anon_sym_del] = ACTIONS(4051), + [anon_sym_raise] = ACTIONS(4051), + [anon_sym_pass] = ACTIONS(4051), + [anon_sym_break] = ACTIONS(4051), + [anon_sym_continue] = ACTIONS(4051), + [anon_sym_if] = ACTIONS(4051), + [anon_sym_match] = ACTIONS(4051), + [anon_sym_async] = ACTIONS(4051), + [anon_sym_for] = ACTIONS(4051), + [anon_sym_while] = ACTIONS(4051), + [anon_sym_try] = ACTIONS(4051), + [anon_sym_with] = ACTIONS(4051), + [anon_sym_def] = ACTIONS(4051), + [anon_sym_global] = ACTIONS(4051), + [anon_sym_nonlocal] = ACTIONS(4051), + [anon_sym_exec] = ACTIONS(4051), + [anon_sym_type] = ACTIONS(4051), + [anon_sym_class] = ACTIONS(4051), + [anon_sym_LBRACK] = ACTIONS(4049), + [anon_sym_AT] = ACTIONS(4049), + [anon_sym_DASH] = ACTIONS(4049), + [anon_sym_LBRACE] = ACTIONS(4049), + [anon_sym_PLUS] = ACTIONS(4049), + [anon_sym_not] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4049), + [anon_sym_TILDE] = ACTIONS(4049), + [anon_sym_LT] = ACTIONS(4049), + [anon_sym_lambda] = ACTIONS(4051), + [anon_sym_yield] = ACTIONS(4051), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4049), + [anon_sym_None] = ACTIONS(4051), + [anon_sym_0x] = ACTIONS(4049), + [anon_sym_0X] = ACTIONS(4049), + [anon_sym_0o] = ACTIONS(4049), + [anon_sym_0O] = ACTIONS(4049), + [anon_sym_0b] = ACTIONS(4049), + [anon_sym_0B] = ACTIONS(4049), + [aux_sym_integer_token4] = ACTIONS(4051), + [sym_float] = ACTIONS(4049), + [anon_sym_await] = ACTIONS(4051), + [anon_sym_api] = ACTIONS(4051), + [sym_true] = ACTIONS(4051), + [sym_false] = ACTIONS(4051), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4051), + [anon_sym_include] = ACTIONS(4051), + [anon_sym_DEF] = ACTIONS(4051), + [anon_sym_IF] = ACTIONS(4051), + [anon_sym_cdef] = ACTIONS(4051), + [anon_sym_cpdef] = ACTIONS(4051), + [anon_sym_new] = ACTIONS(4051), + [anon_sym_ctypedef] = ACTIONS(4051), + [anon_sym_public] = ACTIONS(4051), + [anon_sym_packed] = ACTIONS(4051), + [anon_sym_inline] = ACTIONS(4051), + [anon_sym_readonly] = ACTIONS(4051), + [anon_sym_sizeof] = ACTIONS(4051), + [sym__dedent] = ACTIONS(4049), + [sym_string_start] = ACTIONS(4049), + }, + [2092] = { + [sym_identifier] = ACTIONS(4055), + [anon_sym_import] = ACTIONS(4055), + [anon_sym_cimport] = ACTIONS(4055), + [anon_sym_from] = ACTIONS(4055), + [anon_sym_LPAREN] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(4053), + [anon_sym_print] = ACTIONS(4055), + [anon_sym_assert] = ACTIONS(4055), + [anon_sym_return] = ACTIONS(4055), + [anon_sym_del] = ACTIONS(4055), + [anon_sym_raise] = ACTIONS(4055), + [anon_sym_pass] = ACTIONS(4055), + [anon_sym_break] = ACTIONS(4055), + [anon_sym_continue] = ACTIONS(4055), + [anon_sym_if] = ACTIONS(4055), + [anon_sym_match] = ACTIONS(4055), + [anon_sym_async] = ACTIONS(4055), + [anon_sym_for] = ACTIONS(4055), + [anon_sym_while] = ACTIONS(4055), + [anon_sym_try] = ACTIONS(4055), + [anon_sym_with] = ACTIONS(4055), + [anon_sym_def] = ACTIONS(4055), + [anon_sym_global] = ACTIONS(4055), + [anon_sym_nonlocal] = ACTIONS(4055), + [anon_sym_exec] = ACTIONS(4055), + [anon_sym_type] = ACTIONS(4055), + [anon_sym_class] = ACTIONS(4055), + [anon_sym_LBRACK] = ACTIONS(4053), + [anon_sym_AT] = ACTIONS(4053), + [anon_sym_DASH] = ACTIONS(4053), + [anon_sym_LBRACE] = ACTIONS(4053), + [anon_sym_PLUS] = ACTIONS(4053), + [anon_sym_not] = ACTIONS(4055), + [anon_sym_AMP] = ACTIONS(4053), + [anon_sym_TILDE] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_lambda] = ACTIONS(4055), + [anon_sym_yield] = ACTIONS(4055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4053), + [anon_sym_None] = ACTIONS(4055), + [anon_sym_0x] = ACTIONS(4053), + [anon_sym_0X] = ACTIONS(4053), + [anon_sym_0o] = ACTIONS(4053), + [anon_sym_0O] = ACTIONS(4053), + [anon_sym_0b] = ACTIONS(4053), + [anon_sym_0B] = ACTIONS(4053), + [aux_sym_integer_token4] = ACTIONS(4055), + [sym_float] = ACTIONS(4053), + [anon_sym_await] = ACTIONS(4055), + [anon_sym_api] = ACTIONS(4055), + [sym_true] = ACTIONS(4055), + [sym_false] = ACTIONS(4055), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4055), + [anon_sym_include] = ACTIONS(4055), + [anon_sym_DEF] = ACTIONS(4055), + [anon_sym_IF] = ACTIONS(4055), + [anon_sym_cdef] = ACTIONS(4055), + [anon_sym_cpdef] = ACTIONS(4055), + [anon_sym_new] = ACTIONS(4055), + [anon_sym_ctypedef] = ACTIONS(4055), + [anon_sym_public] = ACTIONS(4055), + [anon_sym_packed] = ACTIONS(4055), + [anon_sym_inline] = ACTIONS(4055), + [anon_sym_readonly] = ACTIONS(4055), + [anon_sym_sizeof] = ACTIONS(4055), + [sym__dedent] = ACTIONS(4053), + [sym_string_start] = ACTIONS(4053), + }, + [2093] = { + [sym_identifier] = ACTIONS(4059), + [anon_sym_import] = ACTIONS(4059), + [anon_sym_cimport] = ACTIONS(4059), + [anon_sym_from] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(4057), + [anon_sym_print] = ACTIONS(4059), + [anon_sym_assert] = ACTIONS(4059), + [anon_sym_return] = ACTIONS(4059), + [anon_sym_del] = ACTIONS(4059), + [anon_sym_raise] = ACTIONS(4059), + [anon_sym_pass] = ACTIONS(4059), + [anon_sym_break] = ACTIONS(4059), + [anon_sym_continue] = ACTIONS(4059), + [anon_sym_if] = ACTIONS(4059), + [anon_sym_match] = ACTIONS(4059), + [anon_sym_async] = ACTIONS(4059), + [anon_sym_for] = ACTIONS(4059), + [anon_sym_while] = ACTIONS(4059), + [anon_sym_try] = ACTIONS(4059), + [anon_sym_with] = ACTIONS(4059), + [anon_sym_def] = ACTIONS(4059), + [anon_sym_global] = ACTIONS(4059), + [anon_sym_nonlocal] = ACTIONS(4059), + [anon_sym_exec] = ACTIONS(4059), + [anon_sym_type] = ACTIONS(4059), + [anon_sym_class] = ACTIONS(4059), + [anon_sym_LBRACK] = ACTIONS(4057), + [anon_sym_AT] = ACTIONS(4057), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_LBRACE] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_not] = ACTIONS(4059), + [anon_sym_AMP] = ACTIONS(4057), + [anon_sym_TILDE] = ACTIONS(4057), + [anon_sym_LT] = ACTIONS(4057), + [anon_sym_lambda] = ACTIONS(4059), + [anon_sym_yield] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4057), + [anon_sym_None] = ACTIONS(4059), + [anon_sym_0x] = ACTIONS(4057), + [anon_sym_0X] = ACTIONS(4057), + [anon_sym_0o] = ACTIONS(4057), + [anon_sym_0O] = ACTIONS(4057), + [anon_sym_0b] = ACTIONS(4057), + [anon_sym_0B] = ACTIONS(4057), + [aux_sym_integer_token4] = ACTIONS(4059), + [sym_float] = ACTIONS(4057), + [anon_sym_await] = ACTIONS(4059), + [anon_sym_api] = ACTIONS(4059), + [sym_true] = ACTIONS(4059), + [sym_false] = ACTIONS(4059), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4059), + [anon_sym_include] = ACTIONS(4059), + [anon_sym_DEF] = ACTIONS(4059), + [anon_sym_IF] = ACTIONS(4059), + [anon_sym_cdef] = ACTIONS(4059), + [anon_sym_cpdef] = ACTIONS(4059), + [anon_sym_new] = ACTIONS(4059), + [anon_sym_ctypedef] = ACTIONS(4059), + [anon_sym_public] = ACTIONS(4059), + [anon_sym_packed] = ACTIONS(4059), + [anon_sym_inline] = ACTIONS(4059), + [anon_sym_readonly] = ACTIONS(4059), + [anon_sym_sizeof] = ACTIONS(4059), + [sym__dedent] = ACTIONS(4057), + [sym_string_start] = ACTIONS(4057), + }, + [2094] = { + [sym_identifier] = ACTIONS(4063), + [anon_sym_import] = ACTIONS(4063), + [anon_sym_cimport] = ACTIONS(4063), + [anon_sym_from] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_STAR] = ACTIONS(4061), + [anon_sym_print] = ACTIONS(4063), + [anon_sym_assert] = ACTIONS(4063), + [anon_sym_return] = ACTIONS(4063), + [anon_sym_del] = ACTIONS(4063), + [anon_sym_raise] = ACTIONS(4063), + [anon_sym_pass] = ACTIONS(4063), + [anon_sym_break] = ACTIONS(4063), + [anon_sym_continue] = ACTIONS(4063), + [anon_sym_if] = ACTIONS(4063), + [anon_sym_match] = ACTIONS(4063), + [anon_sym_async] = ACTIONS(4063), + [anon_sym_for] = ACTIONS(4063), + [anon_sym_while] = ACTIONS(4063), + [anon_sym_try] = ACTIONS(4063), + [anon_sym_with] = ACTIONS(4063), + [anon_sym_def] = ACTIONS(4063), + [anon_sym_global] = ACTIONS(4063), + [anon_sym_nonlocal] = ACTIONS(4063), + [anon_sym_exec] = ACTIONS(4063), + [anon_sym_type] = ACTIONS(4063), + [anon_sym_class] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_AT] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4061), + [anon_sym_LBRACE] = ACTIONS(4061), + [anon_sym_PLUS] = ACTIONS(4061), + [anon_sym_not] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4061), + [anon_sym_TILDE] = ACTIONS(4061), + [anon_sym_LT] = ACTIONS(4061), + [anon_sym_lambda] = ACTIONS(4063), + [anon_sym_yield] = ACTIONS(4063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_None] = ACTIONS(4063), + [anon_sym_0x] = ACTIONS(4061), + [anon_sym_0X] = ACTIONS(4061), + [anon_sym_0o] = ACTIONS(4061), + [anon_sym_0O] = ACTIONS(4061), + [anon_sym_0b] = ACTIONS(4061), + [anon_sym_0B] = ACTIONS(4061), + [aux_sym_integer_token4] = ACTIONS(4063), + [sym_float] = ACTIONS(4061), + [anon_sym_await] = ACTIONS(4063), + [anon_sym_api] = ACTIONS(4063), + [sym_true] = ACTIONS(4063), + [sym_false] = ACTIONS(4063), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4063), + [anon_sym_include] = ACTIONS(4063), + [anon_sym_DEF] = ACTIONS(4063), + [anon_sym_IF] = ACTIONS(4063), + [anon_sym_cdef] = ACTIONS(4063), + [anon_sym_cpdef] = ACTIONS(4063), + [anon_sym_new] = ACTIONS(4063), + [anon_sym_ctypedef] = ACTIONS(4063), + [anon_sym_public] = ACTIONS(4063), + [anon_sym_packed] = ACTIONS(4063), + [anon_sym_inline] = ACTIONS(4063), + [anon_sym_readonly] = ACTIONS(4063), + [anon_sym_sizeof] = ACTIONS(4063), + [sym__dedent] = ACTIONS(4061), + [sym_string_start] = ACTIONS(4061), + }, + [2095] = { + [sym_identifier] = ACTIONS(4067), + [anon_sym_import] = ACTIONS(4067), + [anon_sym_cimport] = ACTIONS(4067), + [anon_sym_from] = ACTIONS(4067), + [anon_sym_LPAREN] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(4065), + [anon_sym_print] = ACTIONS(4067), + [anon_sym_assert] = ACTIONS(4067), + [anon_sym_return] = ACTIONS(4067), + [anon_sym_del] = ACTIONS(4067), + [anon_sym_raise] = ACTIONS(4067), + [anon_sym_pass] = ACTIONS(4067), + [anon_sym_break] = ACTIONS(4067), + [anon_sym_continue] = ACTIONS(4067), + [anon_sym_if] = ACTIONS(4067), + [anon_sym_match] = ACTIONS(4067), + [anon_sym_async] = ACTIONS(4067), + [anon_sym_for] = ACTIONS(4067), + [anon_sym_while] = ACTIONS(4067), + [anon_sym_try] = ACTIONS(4067), + [anon_sym_with] = ACTIONS(4067), + [anon_sym_def] = ACTIONS(4067), + [anon_sym_global] = ACTIONS(4067), + [anon_sym_nonlocal] = ACTIONS(4067), + [anon_sym_exec] = ACTIONS(4067), + [anon_sym_type] = ACTIONS(4067), + [anon_sym_class] = ACTIONS(4067), + [anon_sym_LBRACK] = ACTIONS(4065), + [anon_sym_AT] = ACTIONS(4065), + [anon_sym_DASH] = ACTIONS(4065), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_PLUS] = ACTIONS(4065), + [anon_sym_not] = ACTIONS(4067), + [anon_sym_AMP] = ACTIONS(4065), + [anon_sym_TILDE] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4065), + [anon_sym_lambda] = ACTIONS(4067), + [anon_sym_yield] = ACTIONS(4067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4065), + [anon_sym_None] = ACTIONS(4067), + [anon_sym_0x] = ACTIONS(4065), + [anon_sym_0X] = ACTIONS(4065), + [anon_sym_0o] = ACTIONS(4065), + [anon_sym_0O] = ACTIONS(4065), + [anon_sym_0b] = ACTIONS(4065), + [anon_sym_0B] = ACTIONS(4065), + [aux_sym_integer_token4] = ACTIONS(4067), + [sym_float] = ACTIONS(4065), + [anon_sym_await] = ACTIONS(4067), + [anon_sym_api] = ACTIONS(4067), + [sym_true] = ACTIONS(4067), + [sym_false] = ACTIONS(4067), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4067), + [anon_sym_include] = ACTIONS(4067), + [anon_sym_DEF] = ACTIONS(4067), + [anon_sym_IF] = ACTIONS(4067), + [anon_sym_cdef] = ACTIONS(4067), + [anon_sym_cpdef] = ACTIONS(4067), + [anon_sym_new] = ACTIONS(4067), + [anon_sym_ctypedef] = ACTIONS(4067), + [anon_sym_public] = ACTIONS(4067), + [anon_sym_packed] = ACTIONS(4067), + [anon_sym_inline] = ACTIONS(4067), + [anon_sym_readonly] = ACTIONS(4067), + [anon_sym_sizeof] = ACTIONS(4067), + [sym__dedent] = ACTIONS(4065), + [sym_string_start] = ACTIONS(4065), + }, + [2096] = { + [sym_identifier] = ACTIONS(4075), + [anon_sym_import] = ACTIONS(4075), + [anon_sym_cimport] = ACTIONS(4075), + [anon_sym_from] = ACTIONS(4075), + [anon_sym_LPAREN] = ACTIONS(4073), + [anon_sym_STAR] = ACTIONS(4073), + [anon_sym_print] = ACTIONS(4075), + [anon_sym_assert] = ACTIONS(4075), + [anon_sym_return] = ACTIONS(4075), + [anon_sym_del] = ACTIONS(4075), + [anon_sym_raise] = ACTIONS(4075), + [anon_sym_pass] = ACTIONS(4075), + [anon_sym_break] = ACTIONS(4075), + [anon_sym_continue] = ACTIONS(4075), + [anon_sym_if] = ACTIONS(4075), + [anon_sym_match] = ACTIONS(4075), + [anon_sym_async] = ACTIONS(4075), + [anon_sym_for] = ACTIONS(4075), + [anon_sym_while] = ACTIONS(4075), + [anon_sym_try] = ACTIONS(4075), + [anon_sym_with] = ACTIONS(4075), + [anon_sym_def] = ACTIONS(4075), + [anon_sym_global] = ACTIONS(4075), + [anon_sym_nonlocal] = ACTIONS(4075), + [anon_sym_exec] = ACTIONS(4075), + [anon_sym_type] = ACTIONS(4075), + [anon_sym_class] = ACTIONS(4075), + [anon_sym_LBRACK] = ACTIONS(4073), + [anon_sym_AT] = ACTIONS(4073), + [anon_sym_DASH] = ACTIONS(4073), + [anon_sym_LBRACE] = ACTIONS(4073), + [anon_sym_PLUS] = ACTIONS(4073), + [anon_sym_not] = ACTIONS(4075), + [anon_sym_AMP] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_LT] = ACTIONS(4073), + [anon_sym_lambda] = ACTIONS(4075), + [anon_sym_yield] = ACTIONS(4075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4073), + [anon_sym_None] = ACTIONS(4075), + [anon_sym_0x] = ACTIONS(4073), + [anon_sym_0X] = ACTIONS(4073), + [anon_sym_0o] = ACTIONS(4073), + [anon_sym_0O] = ACTIONS(4073), + [anon_sym_0b] = ACTIONS(4073), + [anon_sym_0B] = ACTIONS(4073), + [aux_sym_integer_token4] = ACTIONS(4075), + [sym_float] = ACTIONS(4073), + [anon_sym_await] = ACTIONS(4075), + [anon_sym_api] = ACTIONS(4075), + [sym_true] = ACTIONS(4075), + [sym_false] = ACTIONS(4075), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4075), + [anon_sym_include] = ACTIONS(4075), + [anon_sym_DEF] = ACTIONS(4075), + [anon_sym_IF] = ACTIONS(4075), + [anon_sym_cdef] = ACTIONS(4075), + [anon_sym_cpdef] = ACTIONS(4075), + [anon_sym_new] = ACTIONS(4075), + [anon_sym_ctypedef] = ACTIONS(4075), + [anon_sym_public] = ACTIONS(4075), + [anon_sym_packed] = ACTIONS(4075), + [anon_sym_inline] = ACTIONS(4075), + [anon_sym_readonly] = ACTIONS(4075), + [anon_sym_sizeof] = ACTIONS(4075), + [sym__dedent] = ACTIONS(4073), + [sym_string_start] = ACTIONS(4073), + }, + [2097] = { + [sym_identifier] = ACTIONS(4083), + [anon_sym_import] = ACTIONS(4083), + [anon_sym_cimport] = ACTIONS(4083), + [anon_sym_from] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_STAR] = ACTIONS(4081), + [anon_sym_print] = ACTIONS(4083), + [anon_sym_assert] = ACTIONS(4083), + [anon_sym_return] = ACTIONS(4083), + [anon_sym_del] = ACTIONS(4083), + [anon_sym_raise] = ACTIONS(4083), + [anon_sym_pass] = ACTIONS(4083), + [anon_sym_break] = ACTIONS(4083), + [anon_sym_continue] = ACTIONS(4083), + [anon_sym_if] = ACTIONS(4083), + [anon_sym_match] = ACTIONS(4083), + [anon_sym_async] = ACTIONS(4083), + [anon_sym_for] = ACTIONS(4083), + [anon_sym_while] = ACTIONS(4083), + [anon_sym_try] = ACTIONS(4083), + [anon_sym_with] = ACTIONS(4083), + [anon_sym_def] = ACTIONS(4083), + [anon_sym_global] = ACTIONS(4083), + [anon_sym_nonlocal] = ACTIONS(4083), + [anon_sym_exec] = ACTIONS(4083), + [anon_sym_type] = ACTIONS(4083), + [anon_sym_class] = ACTIONS(4083), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_DASH] = ACTIONS(4081), + [anon_sym_LBRACE] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4081), + [anon_sym_not] = ACTIONS(4083), + [anon_sym_AMP] = ACTIONS(4081), + [anon_sym_TILDE] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4081), + [anon_sym_lambda] = ACTIONS(4083), + [anon_sym_yield] = ACTIONS(4083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4081), + [anon_sym_None] = ACTIONS(4083), + [anon_sym_0x] = ACTIONS(4081), + [anon_sym_0X] = ACTIONS(4081), + [anon_sym_0o] = ACTIONS(4081), + [anon_sym_0O] = ACTIONS(4081), + [anon_sym_0b] = ACTIONS(4081), + [anon_sym_0B] = ACTIONS(4081), + [aux_sym_integer_token4] = ACTIONS(4083), + [sym_float] = ACTIONS(4081), + [anon_sym_await] = ACTIONS(4083), + [anon_sym_api] = ACTIONS(4083), + [sym_true] = ACTIONS(4083), + [sym_false] = ACTIONS(4083), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4083), + [anon_sym_include] = ACTIONS(4083), + [anon_sym_DEF] = ACTIONS(4083), + [anon_sym_IF] = ACTIONS(4083), + [anon_sym_cdef] = ACTIONS(4083), + [anon_sym_cpdef] = ACTIONS(4083), + [anon_sym_new] = ACTIONS(4083), + [anon_sym_ctypedef] = ACTIONS(4083), + [anon_sym_public] = ACTIONS(4083), + [anon_sym_packed] = ACTIONS(4083), + [anon_sym_inline] = ACTIONS(4083), + [anon_sym_readonly] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4083), + [sym__dedent] = ACTIONS(4081), + [sym_string_start] = ACTIONS(4081), + }, + [2098] = { + [sym_identifier] = ACTIONS(4087), + [anon_sym_import] = ACTIONS(4087), + [anon_sym_cimport] = ACTIONS(4087), + [anon_sym_from] = ACTIONS(4087), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(4085), + [anon_sym_print] = ACTIONS(4087), + [anon_sym_assert] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_del] = ACTIONS(4087), + [anon_sym_raise] = ACTIONS(4087), + [anon_sym_pass] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_match] = ACTIONS(4087), + [anon_sym_async] = ACTIONS(4087), + [anon_sym_for] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_with] = ACTIONS(4087), + [anon_sym_def] = ACTIONS(4087), + [anon_sym_global] = ACTIONS(4087), + [anon_sym_nonlocal] = ACTIONS(4087), + [anon_sym_exec] = ACTIONS(4087), + [anon_sym_type] = ACTIONS(4087), + [anon_sym_class] = ACTIONS(4087), + [anon_sym_LBRACK] = ACTIONS(4085), + [anon_sym_AT] = ACTIONS(4085), + [anon_sym_DASH] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_PLUS] = ACTIONS(4085), + [anon_sym_not] = ACTIONS(4087), + [anon_sym_AMP] = ACTIONS(4085), + [anon_sym_TILDE] = ACTIONS(4085), + [anon_sym_LT] = ACTIONS(4085), + [anon_sym_lambda] = ACTIONS(4087), + [anon_sym_yield] = ACTIONS(4087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), + [anon_sym_None] = ACTIONS(4087), + [anon_sym_0x] = ACTIONS(4085), + [anon_sym_0X] = ACTIONS(4085), + [anon_sym_0o] = ACTIONS(4085), + [anon_sym_0O] = ACTIONS(4085), + [anon_sym_0b] = ACTIONS(4085), + [anon_sym_0B] = ACTIONS(4085), + [aux_sym_integer_token4] = ACTIONS(4087), + [sym_float] = ACTIONS(4085), + [anon_sym_await] = ACTIONS(4087), + [anon_sym_api] = ACTIONS(4087), + [sym_true] = ACTIONS(4087), + [sym_false] = ACTIONS(4087), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4087), + [anon_sym_include] = ACTIONS(4087), + [anon_sym_DEF] = ACTIONS(4087), + [anon_sym_IF] = ACTIONS(4087), + [anon_sym_cdef] = ACTIONS(4087), + [anon_sym_cpdef] = ACTIONS(4087), + [anon_sym_new] = ACTIONS(4087), + [anon_sym_ctypedef] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_packed] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_readonly] = ACTIONS(4087), + [anon_sym_sizeof] = ACTIONS(4087), + [sym__dedent] = ACTIONS(4085), + [sym_string_start] = ACTIONS(4085), + }, + [2099] = { + [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_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_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), + [anon_sym_0x] = ACTIONS(2897), + [anon_sym_0X] = ACTIONS(2897), + [anon_sym_0o] = ACTIONS(2897), + [anon_sym_0O] = ACTIONS(2897), + [anon_sym_0b] = ACTIONS(2897), + [anon_sym_0B] = ACTIONS(2897), + [aux_sym_integer_token4] = 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), + }, + [2100] = { + [sym_identifier] = ACTIONS(4091), + [anon_sym_import] = ACTIONS(4091), + [anon_sym_cimport] = ACTIONS(4091), + [anon_sym_from] = ACTIONS(4091), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_STAR] = ACTIONS(4089), + [anon_sym_print] = ACTIONS(4091), + [anon_sym_assert] = ACTIONS(4091), + [anon_sym_return] = ACTIONS(4091), + [anon_sym_del] = ACTIONS(4091), + [anon_sym_raise] = ACTIONS(4091), + [anon_sym_pass] = ACTIONS(4091), + [anon_sym_break] = ACTIONS(4091), + [anon_sym_continue] = ACTIONS(4091), + [anon_sym_if] = ACTIONS(4091), + [anon_sym_match] = ACTIONS(4091), + [anon_sym_async] = ACTIONS(4091), + [anon_sym_for] = ACTIONS(4091), + [anon_sym_while] = ACTIONS(4091), + [anon_sym_try] = ACTIONS(4091), + [anon_sym_with] = ACTIONS(4091), + [anon_sym_def] = ACTIONS(4091), + [anon_sym_global] = ACTIONS(4091), + [anon_sym_nonlocal] = ACTIONS(4091), + [anon_sym_exec] = ACTIONS(4091), + [anon_sym_type] = ACTIONS(4091), + [anon_sym_class] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_DASH] = ACTIONS(4089), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4089), + [anon_sym_not] = ACTIONS(4091), + [anon_sym_AMP] = ACTIONS(4089), + [anon_sym_TILDE] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4089), + [anon_sym_lambda] = ACTIONS(4091), + [anon_sym_yield] = ACTIONS(4091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4089), + [anon_sym_None] = ACTIONS(4091), + [anon_sym_0x] = ACTIONS(4089), + [anon_sym_0X] = ACTIONS(4089), + [anon_sym_0o] = ACTIONS(4089), + [anon_sym_0O] = ACTIONS(4089), + [anon_sym_0b] = ACTIONS(4089), + [anon_sym_0B] = ACTIONS(4089), + [aux_sym_integer_token4] = ACTIONS(4091), + [sym_float] = ACTIONS(4089), + [anon_sym_await] = ACTIONS(4091), + [anon_sym_api] = ACTIONS(4091), + [sym_true] = ACTIONS(4091), + [sym_false] = ACTIONS(4091), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4091), + [anon_sym_include] = ACTIONS(4091), + [anon_sym_DEF] = ACTIONS(4091), + [anon_sym_IF] = ACTIONS(4091), + [anon_sym_cdef] = ACTIONS(4091), + [anon_sym_cpdef] = ACTIONS(4091), + [anon_sym_new] = ACTIONS(4091), + [anon_sym_ctypedef] = ACTIONS(4091), + [anon_sym_public] = ACTIONS(4091), + [anon_sym_packed] = ACTIONS(4091), + [anon_sym_inline] = ACTIONS(4091), + [anon_sym_readonly] = ACTIONS(4091), + [anon_sym_sizeof] = ACTIONS(4091), + [sym__dedent] = ACTIONS(4089), + [sym_string_start] = ACTIONS(4089), + }, + [2101] = { + [sym_identifier] = ACTIONS(4095), + [anon_sym_import] = ACTIONS(4095), + [anon_sym_cimport] = ACTIONS(4095), + [anon_sym_from] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [anon_sym_print] = ACTIONS(4095), + [anon_sym_assert] = ACTIONS(4095), + [anon_sym_return] = ACTIONS(4095), + [anon_sym_del] = ACTIONS(4095), + [anon_sym_raise] = ACTIONS(4095), + [anon_sym_pass] = ACTIONS(4095), + [anon_sym_break] = ACTIONS(4095), + [anon_sym_continue] = ACTIONS(4095), + [anon_sym_if] = ACTIONS(4095), + [anon_sym_match] = ACTIONS(4095), + [anon_sym_async] = ACTIONS(4095), + [anon_sym_for] = ACTIONS(4095), + [anon_sym_while] = ACTIONS(4095), + [anon_sym_try] = ACTIONS(4095), + [anon_sym_with] = ACTIONS(4095), + [anon_sym_def] = ACTIONS(4095), + [anon_sym_global] = ACTIONS(4095), + [anon_sym_nonlocal] = ACTIONS(4095), + [anon_sym_exec] = ACTIONS(4095), + [anon_sym_type] = ACTIONS(4095), + [anon_sym_class] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4093), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_not] = ACTIONS(4095), + [anon_sym_AMP] = ACTIONS(4093), + [anon_sym_TILDE] = ACTIONS(4093), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_lambda] = ACTIONS(4095), + [anon_sym_yield] = ACTIONS(4095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4093), + [anon_sym_None] = ACTIONS(4095), + [anon_sym_0x] = ACTIONS(4093), + [anon_sym_0X] = ACTIONS(4093), + [anon_sym_0o] = ACTIONS(4093), + [anon_sym_0O] = ACTIONS(4093), + [anon_sym_0b] = ACTIONS(4093), + [anon_sym_0B] = ACTIONS(4093), + [aux_sym_integer_token4] = ACTIONS(4095), + [sym_float] = ACTIONS(4093), + [anon_sym_await] = ACTIONS(4095), + [anon_sym_api] = ACTIONS(4095), + [sym_true] = ACTIONS(4095), + [sym_false] = ACTIONS(4095), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4095), + [anon_sym_include] = ACTIONS(4095), + [anon_sym_DEF] = ACTIONS(4095), + [anon_sym_IF] = ACTIONS(4095), + [anon_sym_cdef] = ACTIONS(4095), + [anon_sym_cpdef] = ACTIONS(4095), + [anon_sym_new] = ACTIONS(4095), + [anon_sym_ctypedef] = ACTIONS(4095), + [anon_sym_public] = ACTIONS(4095), + [anon_sym_packed] = ACTIONS(4095), + [anon_sym_inline] = ACTIONS(4095), + [anon_sym_readonly] = ACTIONS(4095), + [anon_sym_sizeof] = ACTIONS(4095), + [sym__dedent] = ACTIONS(4093), + [sym_string_start] = ACTIONS(4093), + }, + [2102] = { + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2279), + [anon_sym_import] = ACTIONS(2279), + [anon_sym_cimport] = ACTIONS(2279), + [anon_sym_from] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [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(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(2279), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_lambda] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_None] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2277), + [anon_sym_0X] = ACTIONS(2277), + [anon_sym_0o] = ACTIONS(2277), + [anon_sym_0O] = ACTIONS(2277), + [anon_sym_0b] = ACTIONS(2277), + [anon_sym_0B] = ACTIONS(2277), + [aux_sym_integer_token4] = ACTIONS(2279), + [sym_float] = ACTIONS(2277), + [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_new] = ACTIONS(2279), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2277), + }, + [2103] = { + [sym_identifier] = ACTIONS(4119), + [anon_sym_import] = ACTIONS(4119), + [anon_sym_cimport] = ACTIONS(4119), + [anon_sym_from] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_print] = ACTIONS(4119), + [anon_sym_assert] = ACTIONS(4119), + [anon_sym_return] = ACTIONS(4119), + [anon_sym_del] = ACTIONS(4119), + [anon_sym_raise] = ACTIONS(4119), + [anon_sym_pass] = ACTIONS(4119), + [anon_sym_break] = ACTIONS(4119), + [anon_sym_continue] = ACTIONS(4119), + [anon_sym_if] = ACTIONS(4119), + [anon_sym_match] = ACTIONS(4119), + [anon_sym_async] = ACTIONS(4119), + [anon_sym_for] = ACTIONS(4119), + [anon_sym_while] = ACTIONS(4119), + [anon_sym_try] = ACTIONS(4119), + [anon_sym_with] = ACTIONS(4119), + [anon_sym_def] = ACTIONS(4119), + [anon_sym_global] = ACTIONS(4119), + [anon_sym_nonlocal] = ACTIONS(4119), + [anon_sym_exec] = ACTIONS(4119), + [anon_sym_type] = ACTIONS(4119), + [anon_sym_class] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_PLUS] = ACTIONS(4117), + [anon_sym_not] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(4117), + [anon_sym_lambda] = ACTIONS(4119), + [anon_sym_yield] = ACTIONS(4119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4117), + [anon_sym_None] = ACTIONS(4119), + [anon_sym_0x] = ACTIONS(4117), + [anon_sym_0X] = ACTIONS(4117), + [anon_sym_0o] = ACTIONS(4117), + [anon_sym_0O] = ACTIONS(4117), + [anon_sym_0b] = ACTIONS(4117), + [anon_sym_0B] = ACTIONS(4117), + [aux_sym_integer_token4] = ACTIONS(4119), + [sym_float] = ACTIONS(4117), + [anon_sym_await] = ACTIONS(4119), + [anon_sym_api] = ACTIONS(4119), + [sym_true] = ACTIONS(4119), + [sym_false] = ACTIONS(4119), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4119), + [anon_sym_include] = ACTIONS(4119), + [anon_sym_DEF] = ACTIONS(4119), + [anon_sym_IF] = ACTIONS(4119), + [anon_sym_cdef] = ACTIONS(4119), + [anon_sym_cpdef] = ACTIONS(4119), + [anon_sym_new] = ACTIONS(4119), + [anon_sym_ctypedef] = ACTIONS(4119), + [anon_sym_public] = ACTIONS(4119), + [anon_sym_packed] = ACTIONS(4119), + [anon_sym_inline] = ACTIONS(4119), + [anon_sym_readonly] = ACTIONS(4119), + [anon_sym_sizeof] = ACTIONS(4119), + [sym__dedent] = ACTIONS(4117), + [sym_string_start] = ACTIONS(4117), + }, + [2104] = { + [sym_identifier] = ACTIONS(4123), + [anon_sym_import] = ACTIONS(4123), + [anon_sym_cimport] = ACTIONS(4123), + [anon_sym_from] = ACTIONS(4123), + [anon_sym_LPAREN] = ACTIONS(4121), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_print] = ACTIONS(4123), + [anon_sym_assert] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_del] = ACTIONS(4123), + [anon_sym_raise] = ACTIONS(4123), + [anon_sym_pass] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_match] = ACTIONS(4123), + [anon_sym_async] = ACTIONS(4123), + [anon_sym_for] = ACTIONS(4123), + [anon_sym_while] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_with] = ACTIONS(4123), + [anon_sym_def] = ACTIONS(4123), + [anon_sym_global] = ACTIONS(4123), + [anon_sym_nonlocal] = ACTIONS(4123), + [anon_sym_exec] = ACTIONS(4123), + [anon_sym_type] = ACTIONS(4123), + [anon_sym_class] = ACTIONS(4123), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_AT] = ACTIONS(4121), + [anon_sym_DASH] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4121), + [anon_sym_not] = ACTIONS(4123), + [anon_sym_AMP] = ACTIONS(4121), + [anon_sym_TILDE] = ACTIONS(4121), + [anon_sym_LT] = ACTIONS(4121), + [anon_sym_lambda] = ACTIONS(4123), + [anon_sym_yield] = ACTIONS(4123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), + [anon_sym_None] = ACTIONS(4123), + [anon_sym_0x] = ACTIONS(4121), + [anon_sym_0X] = ACTIONS(4121), + [anon_sym_0o] = ACTIONS(4121), + [anon_sym_0O] = ACTIONS(4121), + [anon_sym_0b] = ACTIONS(4121), + [anon_sym_0B] = ACTIONS(4121), + [aux_sym_integer_token4] = ACTIONS(4123), + [sym_float] = ACTIONS(4121), + [anon_sym_await] = ACTIONS(4123), + [anon_sym_api] = ACTIONS(4123), + [sym_true] = ACTIONS(4123), + [sym_false] = ACTIONS(4123), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4123), + [anon_sym_include] = ACTIONS(4123), + [anon_sym_DEF] = ACTIONS(4123), + [anon_sym_IF] = ACTIONS(4123), + [anon_sym_cdef] = ACTIONS(4123), + [anon_sym_cpdef] = ACTIONS(4123), + [anon_sym_new] = ACTIONS(4123), + [anon_sym_ctypedef] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_packed] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_readonly] = ACTIONS(4123), + [anon_sym_sizeof] = ACTIONS(4123), + [sym__dedent] = ACTIONS(4121), + [sym_string_start] = ACTIONS(4121), + }, + [2105] = { + [sym_identifier] = ACTIONS(4131), + [anon_sym_import] = ACTIONS(4131), + [anon_sym_cimport] = ACTIONS(4131), + [anon_sym_from] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_print] = ACTIONS(4131), + [anon_sym_assert] = ACTIONS(4131), + [anon_sym_return] = ACTIONS(4131), + [anon_sym_del] = ACTIONS(4131), + [anon_sym_raise] = ACTIONS(4131), + [anon_sym_pass] = ACTIONS(4131), + [anon_sym_break] = ACTIONS(4131), + [anon_sym_continue] = ACTIONS(4131), + [anon_sym_if] = ACTIONS(4131), + [anon_sym_match] = ACTIONS(4131), + [anon_sym_async] = ACTIONS(4131), + [anon_sym_for] = ACTIONS(4131), + [anon_sym_while] = ACTIONS(4131), + [anon_sym_try] = ACTIONS(4131), + [anon_sym_with] = ACTIONS(4131), + [anon_sym_def] = ACTIONS(4131), + [anon_sym_global] = ACTIONS(4131), + [anon_sym_nonlocal] = ACTIONS(4131), + [anon_sym_exec] = ACTIONS(4131), + [anon_sym_type] = ACTIONS(4131), + [anon_sym_class] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_not] = ACTIONS(4131), + [anon_sym_AMP] = ACTIONS(4129), + [anon_sym_TILDE] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_lambda] = ACTIONS(4131), + [anon_sym_yield] = ACTIONS(4131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4129), + [anon_sym_None] = ACTIONS(4131), + [anon_sym_0x] = ACTIONS(4129), + [anon_sym_0X] = ACTIONS(4129), + [anon_sym_0o] = ACTIONS(4129), + [anon_sym_0O] = ACTIONS(4129), + [anon_sym_0b] = ACTIONS(4129), + [anon_sym_0B] = ACTIONS(4129), + [aux_sym_integer_token4] = ACTIONS(4131), + [sym_float] = ACTIONS(4129), + [anon_sym_await] = ACTIONS(4131), + [anon_sym_api] = ACTIONS(4131), + [sym_true] = ACTIONS(4131), + [sym_false] = ACTIONS(4131), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4131), + [anon_sym_include] = ACTIONS(4131), + [anon_sym_DEF] = ACTIONS(4131), + [anon_sym_IF] = ACTIONS(4131), + [anon_sym_cdef] = ACTIONS(4131), + [anon_sym_cpdef] = ACTIONS(4131), + [anon_sym_new] = ACTIONS(4131), + [anon_sym_ctypedef] = ACTIONS(4131), + [anon_sym_public] = ACTIONS(4131), + [anon_sym_packed] = ACTIONS(4131), + [anon_sym_inline] = ACTIONS(4131), + [anon_sym_readonly] = ACTIONS(4131), + [anon_sym_sizeof] = ACTIONS(4131), + [sym__dedent] = ACTIONS(4129), + [sym_string_start] = ACTIONS(4129), + }, + [2106] = { + [sym_identifier] = ACTIONS(4135), + [anon_sym_import] = ACTIONS(4135), + [anon_sym_cimport] = ACTIONS(4135), + [anon_sym_from] = ACTIONS(4135), + [anon_sym_LPAREN] = ACTIONS(4133), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_print] = ACTIONS(4135), + [anon_sym_assert] = ACTIONS(4135), + [anon_sym_return] = ACTIONS(4135), + [anon_sym_del] = ACTIONS(4135), + [anon_sym_raise] = ACTIONS(4135), + [anon_sym_pass] = ACTIONS(4135), + [anon_sym_break] = ACTIONS(4135), + [anon_sym_continue] = ACTIONS(4135), + [anon_sym_if] = ACTIONS(4135), + [anon_sym_match] = ACTIONS(4135), + [anon_sym_async] = ACTIONS(4135), + [anon_sym_for] = ACTIONS(4135), + [anon_sym_while] = ACTIONS(4135), + [anon_sym_try] = ACTIONS(4135), + [anon_sym_with] = ACTIONS(4135), + [anon_sym_def] = ACTIONS(4135), + [anon_sym_global] = ACTIONS(4135), + [anon_sym_nonlocal] = ACTIONS(4135), + [anon_sym_exec] = ACTIONS(4135), + [anon_sym_type] = ACTIONS(4135), + [anon_sym_class] = ACTIONS(4135), + [anon_sym_LBRACK] = ACTIONS(4133), + [anon_sym_AT] = ACTIONS(4133), + [anon_sym_DASH] = ACTIONS(4133), + [anon_sym_LBRACE] = ACTIONS(4133), + [anon_sym_PLUS] = ACTIONS(4133), + [anon_sym_not] = ACTIONS(4135), + [anon_sym_AMP] = ACTIONS(4133), + [anon_sym_TILDE] = ACTIONS(4133), + [anon_sym_LT] = ACTIONS(4133), + [anon_sym_lambda] = ACTIONS(4135), + [anon_sym_yield] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4133), + [anon_sym_None] = ACTIONS(4135), + [anon_sym_0x] = ACTIONS(4133), + [anon_sym_0X] = ACTIONS(4133), + [anon_sym_0o] = ACTIONS(4133), + [anon_sym_0O] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(4133), + [anon_sym_0B] = ACTIONS(4133), + [aux_sym_integer_token4] = ACTIONS(4135), + [sym_float] = ACTIONS(4133), + [anon_sym_await] = ACTIONS(4135), + [anon_sym_api] = ACTIONS(4135), + [sym_true] = ACTIONS(4135), + [sym_false] = ACTIONS(4135), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4135), + [anon_sym_include] = ACTIONS(4135), + [anon_sym_DEF] = ACTIONS(4135), + [anon_sym_IF] = ACTIONS(4135), + [anon_sym_cdef] = ACTIONS(4135), + [anon_sym_cpdef] = ACTIONS(4135), + [anon_sym_new] = ACTIONS(4135), + [anon_sym_ctypedef] = ACTIONS(4135), + [anon_sym_public] = ACTIONS(4135), + [anon_sym_packed] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym_readonly] = ACTIONS(4135), + [anon_sym_sizeof] = ACTIONS(4135), + [sym__dedent] = ACTIONS(4133), + [sym_string_start] = ACTIONS(4133), + }, + [2107] = { + [ts_builtin_sym_end] = ACTIONS(4115), + [sym_identifier] = ACTIONS(4113), + [anon_sym_import] = ACTIONS(4113), + [anon_sym_cimport] = ACTIONS(4113), + [anon_sym_from] = ACTIONS(4113), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4115), + [anon_sym_print] = ACTIONS(4113), + [anon_sym_assert] = ACTIONS(4113), + [anon_sym_return] = ACTIONS(4113), + [anon_sym_del] = ACTIONS(4113), + [anon_sym_raise] = ACTIONS(4113), + [anon_sym_pass] = ACTIONS(4113), + [anon_sym_break] = ACTIONS(4113), + [anon_sym_continue] = ACTIONS(4113), + [anon_sym_if] = ACTIONS(4113), + [anon_sym_match] = ACTIONS(4113), + [anon_sym_async] = ACTIONS(4113), + [anon_sym_for] = ACTIONS(4113), + [anon_sym_while] = ACTIONS(4113), + [anon_sym_try] = ACTIONS(4113), + [anon_sym_with] = ACTIONS(4113), + [anon_sym_def] = ACTIONS(4113), + [anon_sym_global] = ACTIONS(4113), + [anon_sym_nonlocal] = ACTIONS(4113), + [anon_sym_exec] = ACTIONS(4113), + [anon_sym_type] = ACTIONS(4113), + [anon_sym_class] = ACTIONS(4113), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_DASH] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_not] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(4115), + [anon_sym_lambda] = ACTIONS(4113), + [anon_sym_yield] = ACTIONS(4113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4115), + [anon_sym_None] = ACTIONS(4113), + [anon_sym_0x] = ACTIONS(4115), + [anon_sym_0X] = ACTIONS(4115), + [anon_sym_0o] = ACTIONS(4115), + [anon_sym_0O] = ACTIONS(4115), + [anon_sym_0b] = ACTIONS(4115), + [anon_sym_0B] = ACTIONS(4115), + [aux_sym_integer_token4] = ACTIONS(4113), + [sym_float] = ACTIONS(4115), + [anon_sym_await] = ACTIONS(4113), + [anon_sym_api] = ACTIONS(4113), + [sym_true] = ACTIONS(4113), + [sym_false] = ACTIONS(4113), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4113), + [anon_sym_include] = ACTIONS(4113), + [anon_sym_DEF] = ACTIONS(4113), + [anon_sym_IF] = ACTIONS(4113), + [anon_sym_cdef] = ACTIONS(4113), + [anon_sym_cpdef] = ACTIONS(4113), + [anon_sym_new] = ACTIONS(4113), + [anon_sym_ctypedef] = ACTIONS(4113), + [anon_sym_public] = ACTIONS(4113), + [anon_sym_packed] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4113), + [anon_sym_readonly] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4113), + [sym_string_start] = ACTIONS(4115), + }, + [2108] = { + [sym_identifier] = ACTIONS(4177), + [anon_sym_import] = ACTIONS(4177), + [anon_sym_cimport] = ACTIONS(4177), + [anon_sym_from] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_print] = ACTIONS(4177), + [anon_sym_assert] = ACTIONS(4177), + [anon_sym_return] = ACTIONS(4177), + [anon_sym_del] = ACTIONS(4177), + [anon_sym_raise] = ACTIONS(4177), + [anon_sym_pass] = ACTIONS(4177), + [anon_sym_break] = ACTIONS(4177), + [anon_sym_continue] = ACTIONS(4177), + [anon_sym_if] = ACTIONS(4177), + [anon_sym_match] = ACTIONS(4177), + [anon_sym_async] = ACTIONS(4177), + [anon_sym_for] = ACTIONS(4177), + [anon_sym_while] = ACTIONS(4177), + [anon_sym_try] = ACTIONS(4177), + [anon_sym_with] = ACTIONS(4177), + [anon_sym_def] = ACTIONS(4177), + [anon_sym_global] = ACTIONS(4177), + [anon_sym_nonlocal] = ACTIONS(4177), + [anon_sym_exec] = ACTIONS(4177), + [anon_sym_type] = ACTIONS(4177), + [anon_sym_class] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4177), + [anon_sym_yield] = ACTIONS(4177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4179), + [anon_sym_None] = ACTIONS(4177), + [anon_sym_0x] = ACTIONS(4179), + [anon_sym_0X] = ACTIONS(4179), + [anon_sym_0o] = ACTIONS(4179), + [anon_sym_0O] = ACTIONS(4179), + [anon_sym_0b] = ACTIONS(4179), + [anon_sym_0B] = ACTIONS(4179), + [aux_sym_integer_token4] = ACTIONS(4177), + [sym_float] = ACTIONS(4179), + [anon_sym_await] = ACTIONS(4177), + [anon_sym_api] = ACTIONS(4177), + [sym_true] = ACTIONS(4177), + [sym_false] = ACTIONS(4177), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4177), + [anon_sym_include] = ACTIONS(4177), + [anon_sym_DEF] = ACTIONS(4177), + [anon_sym_IF] = ACTIONS(4177), + [anon_sym_cdef] = ACTIONS(4177), + [anon_sym_cpdef] = ACTIONS(4177), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_ctypedef] = ACTIONS(4177), + [anon_sym_public] = ACTIONS(4177), + [anon_sym_packed] = ACTIONS(4177), + [anon_sym_inline] = ACTIONS(4177), + [anon_sym_readonly] = ACTIONS(4177), + [anon_sym_sizeof] = ACTIONS(4177), + [sym__dedent] = ACTIONS(4179), + [sym_string_start] = ACTIONS(4179), + }, + [2109] = { + [sym_identifier] = ACTIONS(4181), + [anon_sym_import] = ACTIONS(4181), + [anon_sym_cimport] = ACTIONS(4181), + [anon_sym_from] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_print] = ACTIONS(4181), + [anon_sym_assert] = ACTIONS(4181), + [anon_sym_return] = ACTIONS(4181), + [anon_sym_del] = ACTIONS(4181), + [anon_sym_raise] = ACTIONS(4181), + [anon_sym_pass] = ACTIONS(4181), + [anon_sym_break] = ACTIONS(4181), + [anon_sym_continue] = ACTIONS(4181), + [anon_sym_if] = ACTIONS(4181), + [anon_sym_match] = ACTIONS(4181), + [anon_sym_async] = ACTIONS(4181), + [anon_sym_for] = ACTIONS(4181), + [anon_sym_while] = ACTIONS(4181), + [anon_sym_try] = ACTIONS(4181), + [anon_sym_with] = ACTIONS(4181), + [anon_sym_def] = ACTIONS(4181), + [anon_sym_global] = ACTIONS(4181), + [anon_sym_nonlocal] = ACTIONS(4181), + [anon_sym_exec] = ACTIONS(4181), + [anon_sym_type] = ACTIONS(4181), + [anon_sym_class] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_not] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_TILDE] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_lambda] = ACTIONS(4181), + [anon_sym_yield] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4183), + [anon_sym_None] = ACTIONS(4181), + [anon_sym_0x] = ACTIONS(4183), + [anon_sym_0X] = ACTIONS(4183), + [anon_sym_0o] = ACTIONS(4183), + [anon_sym_0O] = ACTIONS(4183), + [anon_sym_0b] = ACTIONS(4183), + [anon_sym_0B] = ACTIONS(4183), + [aux_sym_integer_token4] = ACTIONS(4181), + [sym_float] = ACTIONS(4183), + [anon_sym_await] = ACTIONS(4181), + [anon_sym_api] = ACTIONS(4181), + [sym_true] = ACTIONS(4181), + [sym_false] = ACTIONS(4181), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4181), + [anon_sym_include] = ACTIONS(4181), + [anon_sym_DEF] = ACTIONS(4181), + [anon_sym_IF] = ACTIONS(4181), + [anon_sym_cdef] = ACTIONS(4181), + [anon_sym_cpdef] = ACTIONS(4181), + [anon_sym_new] = ACTIONS(4181), + [anon_sym_ctypedef] = ACTIONS(4181), + [anon_sym_public] = ACTIONS(4181), + [anon_sym_packed] = ACTIONS(4181), + [anon_sym_inline] = ACTIONS(4181), + [anon_sym_readonly] = ACTIONS(4181), + [anon_sym_sizeof] = ACTIONS(4181), + [sym__dedent] = ACTIONS(4183), + [sym_string_start] = ACTIONS(4183), + }, + [2110] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2111] = { + [sym_identifier] = ACTIONS(4185), + [anon_sym_import] = ACTIONS(4185), + [anon_sym_cimport] = ACTIONS(4185), + [anon_sym_from] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(4187), + [anon_sym_print] = ACTIONS(4185), + [anon_sym_assert] = ACTIONS(4185), + [anon_sym_return] = ACTIONS(4185), + [anon_sym_del] = ACTIONS(4185), + [anon_sym_raise] = ACTIONS(4185), + [anon_sym_pass] = ACTIONS(4185), + [anon_sym_break] = ACTIONS(4185), + [anon_sym_continue] = ACTIONS(4185), + [anon_sym_if] = ACTIONS(4185), + [anon_sym_match] = ACTIONS(4185), + [anon_sym_async] = ACTIONS(4185), + [anon_sym_for] = ACTIONS(4185), + [anon_sym_while] = ACTIONS(4185), + [anon_sym_try] = ACTIONS(4185), + [anon_sym_with] = ACTIONS(4185), + [anon_sym_def] = ACTIONS(4185), + [anon_sym_global] = ACTIONS(4185), + [anon_sym_nonlocal] = ACTIONS(4185), + [anon_sym_exec] = ACTIONS(4185), + [anon_sym_type] = ACTIONS(4185), + [anon_sym_class] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4187), + [anon_sym_AT] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_not] = ACTIONS(4185), + [anon_sym_AMP] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4187), + [anon_sym_lambda] = ACTIONS(4185), + [anon_sym_yield] = ACTIONS(4185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [anon_sym_None] = ACTIONS(4185), + [anon_sym_0x] = ACTIONS(4187), + [anon_sym_0X] = ACTIONS(4187), + [anon_sym_0o] = ACTIONS(4187), + [anon_sym_0O] = ACTIONS(4187), + [anon_sym_0b] = ACTIONS(4187), + [anon_sym_0B] = ACTIONS(4187), + [aux_sym_integer_token4] = ACTIONS(4185), + [sym_float] = ACTIONS(4187), + [anon_sym_await] = ACTIONS(4185), + [anon_sym_api] = ACTIONS(4185), + [sym_true] = ACTIONS(4185), + [sym_false] = ACTIONS(4185), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4185), + [anon_sym_include] = ACTIONS(4185), + [anon_sym_DEF] = ACTIONS(4185), + [anon_sym_IF] = ACTIONS(4185), + [anon_sym_cdef] = ACTIONS(4185), + [anon_sym_cpdef] = ACTIONS(4185), + [anon_sym_new] = ACTIONS(4185), + [anon_sym_ctypedef] = ACTIONS(4185), + [anon_sym_public] = ACTIONS(4185), + [anon_sym_packed] = ACTIONS(4185), + [anon_sym_inline] = ACTIONS(4185), + [anon_sym_readonly] = ACTIONS(4185), + [anon_sym_sizeof] = ACTIONS(4185), + [sym__dedent] = ACTIONS(4187), + [sym_string_start] = ACTIONS(4187), + }, + [2112] = { + [sym_identifier] = ACTIONS(4189), + [anon_sym_import] = ACTIONS(4189), + [anon_sym_cimport] = ACTIONS(4189), + [anon_sym_from] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4191), + [anon_sym_STAR] = ACTIONS(4191), + [anon_sym_print] = ACTIONS(4189), + [anon_sym_assert] = ACTIONS(4189), + [anon_sym_return] = ACTIONS(4189), + [anon_sym_del] = ACTIONS(4189), + [anon_sym_raise] = ACTIONS(4189), + [anon_sym_pass] = ACTIONS(4189), + [anon_sym_break] = ACTIONS(4189), + [anon_sym_continue] = ACTIONS(4189), + [anon_sym_if] = ACTIONS(4189), + [anon_sym_match] = ACTIONS(4189), + [anon_sym_async] = ACTIONS(4189), + [anon_sym_for] = ACTIONS(4189), + [anon_sym_while] = ACTIONS(4189), + [anon_sym_try] = ACTIONS(4189), + [anon_sym_with] = ACTIONS(4189), + [anon_sym_def] = ACTIONS(4189), + [anon_sym_global] = ACTIONS(4189), + [anon_sym_nonlocal] = ACTIONS(4189), + [anon_sym_exec] = ACTIONS(4189), + [anon_sym_type] = ACTIONS(4189), + [anon_sym_class] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym_AT] = ACTIONS(4191), + [anon_sym_DASH] = ACTIONS(4191), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PLUS] = ACTIONS(4191), + [anon_sym_not] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(4191), + [anon_sym_TILDE] = ACTIONS(4191), + [anon_sym_LT] = ACTIONS(4191), + [anon_sym_lambda] = ACTIONS(4189), + [anon_sym_yield] = ACTIONS(4189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4191), + [anon_sym_None] = ACTIONS(4189), + [anon_sym_0x] = ACTIONS(4191), + [anon_sym_0X] = ACTIONS(4191), + [anon_sym_0o] = ACTIONS(4191), + [anon_sym_0O] = ACTIONS(4191), + [anon_sym_0b] = ACTIONS(4191), + [anon_sym_0B] = ACTIONS(4191), + [aux_sym_integer_token4] = ACTIONS(4189), + [sym_float] = ACTIONS(4191), + [anon_sym_await] = ACTIONS(4189), + [anon_sym_api] = ACTIONS(4189), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4189), + [anon_sym_include] = ACTIONS(4189), + [anon_sym_DEF] = ACTIONS(4189), + [anon_sym_IF] = ACTIONS(4189), + [anon_sym_cdef] = ACTIONS(4189), + [anon_sym_cpdef] = ACTIONS(4189), + [anon_sym_new] = ACTIONS(4189), + [anon_sym_ctypedef] = ACTIONS(4189), + [anon_sym_public] = ACTIONS(4189), + [anon_sym_packed] = ACTIONS(4189), + [anon_sym_inline] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4189), + [anon_sym_sizeof] = ACTIONS(4189), + [sym__dedent] = ACTIONS(4191), + [sym_string_start] = ACTIONS(4191), + }, + [2113] = { + [sym_identifier] = ACTIONS(4193), + [anon_sym_import] = ACTIONS(4193), + [anon_sym_cimport] = ACTIONS(4193), + [anon_sym_from] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_STAR] = ACTIONS(4195), + [anon_sym_print] = ACTIONS(4193), + [anon_sym_assert] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_del] = ACTIONS(4193), + [anon_sym_raise] = ACTIONS(4193), + [anon_sym_pass] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(4193), + [anon_sym_async] = ACTIONS(4193), + [anon_sym_for] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_with] = ACTIONS(4193), + [anon_sym_def] = ACTIONS(4193), + [anon_sym_global] = ACTIONS(4193), + [anon_sym_nonlocal] = ACTIONS(4193), + [anon_sym_exec] = ACTIONS(4193), + [anon_sym_type] = ACTIONS(4193), + [anon_sym_class] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4195), + [anon_sym_not] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_TILDE] = ACTIONS(4195), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_lambda] = ACTIONS(4193), + [anon_sym_yield] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4195), + [anon_sym_None] = ACTIONS(4193), + [anon_sym_0x] = ACTIONS(4195), + [anon_sym_0X] = ACTIONS(4195), + [anon_sym_0o] = ACTIONS(4195), + [anon_sym_0O] = ACTIONS(4195), + [anon_sym_0b] = ACTIONS(4195), + [anon_sym_0B] = ACTIONS(4195), + [aux_sym_integer_token4] = ACTIONS(4193), + [sym_float] = ACTIONS(4195), + [anon_sym_await] = ACTIONS(4193), + [anon_sym_api] = ACTIONS(4193), + [sym_true] = ACTIONS(4193), + [sym_false] = ACTIONS(4193), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4193), + [anon_sym_include] = ACTIONS(4193), + [anon_sym_DEF] = ACTIONS(4193), + [anon_sym_IF] = ACTIONS(4193), + [anon_sym_cdef] = ACTIONS(4193), + [anon_sym_cpdef] = ACTIONS(4193), + [anon_sym_new] = ACTIONS(4193), + [anon_sym_ctypedef] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_packed] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_sizeof] = ACTIONS(4193), + [sym__dedent] = ACTIONS(4195), + [sym_string_start] = ACTIONS(4195), + }, + [2114] = { + [sym_identifier] = ACTIONS(4197), + [anon_sym_import] = ACTIONS(4197), + [anon_sym_cimport] = ACTIONS(4197), + [anon_sym_from] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_STAR] = ACTIONS(4199), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_assert] = ACTIONS(4197), + [anon_sym_return] = ACTIONS(4197), + [anon_sym_del] = ACTIONS(4197), + [anon_sym_raise] = ACTIONS(4197), + [anon_sym_pass] = ACTIONS(4197), + [anon_sym_break] = ACTIONS(4197), + [anon_sym_continue] = ACTIONS(4197), + [anon_sym_if] = ACTIONS(4197), + [anon_sym_match] = ACTIONS(4197), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_for] = ACTIONS(4197), + [anon_sym_while] = ACTIONS(4197), + [anon_sym_try] = ACTIONS(4197), + [anon_sym_with] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4197), + [anon_sym_global] = ACTIONS(4197), + [anon_sym_nonlocal] = ACTIONS(4197), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4197), + [anon_sym_class] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4199), + [anon_sym_not] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_TILDE] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4197), + [anon_sym_yield] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4199), + [anon_sym_None] = ACTIONS(4197), + [anon_sym_0x] = ACTIONS(4199), + [anon_sym_0X] = ACTIONS(4199), + [anon_sym_0o] = ACTIONS(4199), + [anon_sym_0O] = ACTIONS(4199), + [anon_sym_0b] = ACTIONS(4199), + [anon_sym_0B] = ACTIONS(4199), + [aux_sym_integer_token4] = ACTIONS(4197), + [sym_float] = ACTIONS(4199), + [anon_sym_await] = ACTIONS(4197), + [anon_sym_api] = ACTIONS(4197), + [sym_true] = ACTIONS(4197), + [sym_false] = ACTIONS(4197), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4197), + [anon_sym_include] = ACTIONS(4197), + [anon_sym_DEF] = ACTIONS(4197), + [anon_sym_IF] = ACTIONS(4197), + [anon_sym_cdef] = ACTIONS(4197), + [anon_sym_cpdef] = ACTIONS(4197), + [anon_sym_new] = ACTIONS(4197), + [anon_sym_ctypedef] = ACTIONS(4197), + [anon_sym_public] = ACTIONS(4197), + [anon_sym_packed] = ACTIONS(4197), + [anon_sym_inline] = ACTIONS(4197), + [anon_sym_readonly] = ACTIONS(4197), + [anon_sym_sizeof] = ACTIONS(4197), + [sym__dedent] = ACTIONS(4199), + [sym_string_start] = ACTIONS(4199), + }, + [2115] = { + [sym_identifier] = ACTIONS(4201), + [anon_sym_import] = ACTIONS(4201), + [anon_sym_cimport] = ACTIONS(4201), + [anon_sym_from] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4203), + [anon_sym_STAR] = ACTIONS(4203), + [anon_sym_print] = ACTIONS(4201), + [anon_sym_assert] = ACTIONS(4201), + [anon_sym_return] = ACTIONS(4201), + [anon_sym_del] = ACTIONS(4201), + [anon_sym_raise] = ACTIONS(4201), + [anon_sym_pass] = ACTIONS(4201), + [anon_sym_break] = ACTIONS(4201), + [anon_sym_continue] = ACTIONS(4201), + [anon_sym_if] = ACTIONS(4201), + [anon_sym_match] = ACTIONS(4201), + [anon_sym_async] = ACTIONS(4201), + [anon_sym_for] = ACTIONS(4201), + [anon_sym_while] = ACTIONS(4201), + [anon_sym_try] = ACTIONS(4201), + [anon_sym_with] = ACTIONS(4201), + [anon_sym_def] = ACTIONS(4201), + [anon_sym_global] = ACTIONS(4201), + [anon_sym_nonlocal] = ACTIONS(4201), + [anon_sym_exec] = ACTIONS(4201), + [anon_sym_type] = ACTIONS(4201), + [anon_sym_class] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_AT] = ACTIONS(4203), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_LBRACE] = ACTIONS(4203), + [anon_sym_PLUS] = ACTIONS(4203), + [anon_sym_not] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_TILDE] = ACTIONS(4203), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_lambda] = ACTIONS(4201), + [anon_sym_yield] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4203), + [anon_sym_None] = ACTIONS(4201), + [anon_sym_0x] = ACTIONS(4203), + [anon_sym_0X] = ACTIONS(4203), + [anon_sym_0o] = ACTIONS(4203), + [anon_sym_0O] = ACTIONS(4203), + [anon_sym_0b] = ACTIONS(4203), + [anon_sym_0B] = ACTIONS(4203), + [aux_sym_integer_token4] = ACTIONS(4201), + [sym_float] = ACTIONS(4203), + [anon_sym_await] = ACTIONS(4201), + [anon_sym_api] = ACTIONS(4201), + [sym_true] = ACTIONS(4201), + [sym_false] = ACTIONS(4201), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4201), + [anon_sym_include] = ACTIONS(4201), + [anon_sym_DEF] = ACTIONS(4201), + [anon_sym_IF] = ACTIONS(4201), + [anon_sym_cdef] = ACTIONS(4201), + [anon_sym_cpdef] = ACTIONS(4201), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_ctypedef] = ACTIONS(4201), + [anon_sym_public] = ACTIONS(4201), + [anon_sym_packed] = ACTIONS(4201), + [anon_sym_inline] = ACTIONS(4201), + [anon_sym_readonly] = ACTIONS(4201), + [anon_sym_sizeof] = ACTIONS(4201), + [sym__dedent] = ACTIONS(4203), + [sym_string_start] = ACTIONS(4203), + }, + [2116] = { + [sym_identifier] = ACTIONS(4205), + [anon_sym_import] = ACTIONS(4205), + [anon_sym_cimport] = ACTIONS(4205), + [anon_sym_from] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_STAR] = ACTIONS(4207), + [anon_sym_print] = ACTIONS(4205), + [anon_sym_assert] = ACTIONS(4205), + [anon_sym_return] = ACTIONS(4205), + [anon_sym_del] = ACTIONS(4205), + [anon_sym_raise] = ACTIONS(4205), + [anon_sym_pass] = ACTIONS(4205), + [anon_sym_break] = ACTIONS(4205), + [anon_sym_continue] = ACTIONS(4205), + [anon_sym_if] = ACTIONS(4205), + [anon_sym_match] = ACTIONS(4205), + [anon_sym_async] = ACTIONS(4205), + [anon_sym_for] = ACTIONS(4205), + [anon_sym_while] = ACTIONS(4205), + [anon_sym_try] = ACTIONS(4205), + [anon_sym_with] = ACTIONS(4205), + [anon_sym_def] = ACTIONS(4205), + [anon_sym_global] = ACTIONS(4205), + [anon_sym_nonlocal] = ACTIONS(4205), + [anon_sym_exec] = ACTIONS(4205), + [anon_sym_type] = ACTIONS(4205), + [anon_sym_class] = ACTIONS(4205), + [anon_sym_LBRACK] = ACTIONS(4207), + [anon_sym_AT] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LBRACE] = ACTIONS(4207), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_not] = ACTIONS(4205), + [anon_sym_AMP] = ACTIONS(4207), + [anon_sym_TILDE] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(4207), + [anon_sym_lambda] = ACTIONS(4205), + [anon_sym_yield] = ACTIONS(4205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4207), + [anon_sym_None] = ACTIONS(4205), + [anon_sym_0x] = ACTIONS(4207), + [anon_sym_0X] = ACTIONS(4207), + [anon_sym_0o] = ACTIONS(4207), + [anon_sym_0O] = ACTIONS(4207), + [anon_sym_0b] = ACTIONS(4207), + [anon_sym_0B] = ACTIONS(4207), + [aux_sym_integer_token4] = ACTIONS(4205), + [sym_float] = ACTIONS(4207), + [anon_sym_await] = ACTIONS(4205), + [anon_sym_api] = ACTIONS(4205), + [sym_true] = ACTIONS(4205), + [sym_false] = ACTIONS(4205), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4205), + [anon_sym_include] = ACTIONS(4205), + [anon_sym_DEF] = ACTIONS(4205), + [anon_sym_IF] = ACTIONS(4205), + [anon_sym_cdef] = ACTIONS(4205), + [anon_sym_cpdef] = ACTIONS(4205), + [anon_sym_new] = ACTIONS(4205), + [anon_sym_ctypedef] = ACTIONS(4205), + [anon_sym_public] = ACTIONS(4205), + [anon_sym_packed] = ACTIONS(4205), + [anon_sym_inline] = ACTIONS(4205), + [anon_sym_readonly] = ACTIONS(4205), + [anon_sym_sizeof] = ACTIONS(4205), + [sym__dedent] = ACTIONS(4207), + [sym_string_start] = ACTIONS(4207), + }, + [2117] = { + [sym_identifier] = ACTIONS(4209), + [anon_sym_import] = ACTIONS(4209), + [anon_sym_cimport] = ACTIONS(4209), + [anon_sym_from] = ACTIONS(4209), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_STAR] = ACTIONS(4211), + [anon_sym_print] = ACTIONS(4209), + [anon_sym_assert] = ACTIONS(4209), + [anon_sym_return] = ACTIONS(4209), + [anon_sym_del] = ACTIONS(4209), + [anon_sym_raise] = ACTIONS(4209), + [anon_sym_pass] = ACTIONS(4209), + [anon_sym_break] = ACTIONS(4209), + [anon_sym_continue] = ACTIONS(4209), + [anon_sym_if] = ACTIONS(4209), + [anon_sym_match] = ACTIONS(4209), + [anon_sym_async] = ACTIONS(4209), + [anon_sym_for] = ACTIONS(4209), + [anon_sym_while] = ACTIONS(4209), + [anon_sym_try] = ACTIONS(4209), + [anon_sym_with] = ACTIONS(4209), + [anon_sym_def] = ACTIONS(4209), + [anon_sym_global] = ACTIONS(4209), + [anon_sym_nonlocal] = ACTIONS(4209), + [anon_sym_exec] = ACTIONS(4209), + [anon_sym_type] = ACTIONS(4209), + [anon_sym_class] = ACTIONS(4209), + [anon_sym_LBRACK] = ACTIONS(4211), + [anon_sym_AT] = ACTIONS(4211), + [anon_sym_DASH] = ACTIONS(4211), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_PLUS] = ACTIONS(4211), + [anon_sym_not] = ACTIONS(4209), + [anon_sym_AMP] = ACTIONS(4211), + [anon_sym_TILDE] = ACTIONS(4211), + [anon_sym_LT] = ACTIONS(4211), + [anon_sym_lambda] = ACTIONS(4209), + [anon_sym_yield] = ACTIONS(4209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4211), + [anon_sym_None] = ACTIONS(4209), + [anon_sym_0x] = ACTIONS(4211), + [anon_sym_0X] = ACTIONS(4211), + [anon_sym_0o] = ACTIONS(4211), + [anon_sym_0O] = ACTIONS(4211), + [anon_sym_0b] = ACTIONS(4211), + [anon_sym_0B] = ACTIONS(4211), + [aux_sym_integer_token4] = ACTIONS(4209), + [sym_float] = ACTIONS(4211), + [anon_sym_await] = ACTIONS(4209), + [anon_sym_api] = ACTIONS(4209), + [sym_true] = ACTIONS(4209), + [sym_false] = ACTIONS(4209), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4209), + [anon_sym_include] = ACTIONS(4209), + [anon_sym_DEF] = ACTIONS(4209), + [anon_sym_IF] = ACTIONS(4209), + [anon_sym_cdef] = ACTIONS(4209), + [anon_sym_cpdef] = ACTIONS(4209), + [anon_sym_new] = ACTIONS(4209), + [anon_sym_ctypedef] = ACTIONS(4209), + [anon_sym_public] = ACTIONS(4209), + [anon_sym_packed] = ACTIONS(4209), + [anon_sym_inline] = ACTIONS(4209), + [anon_sym_readonly] = ACTIONS(4209), + [anon_sym_sizeof] = ACTIONS(4209), + [sym__dedent] = ACTIONS(4211), + [sym_string_start] = ACTIONS(4211), + }, + [2118] = { + [sym_identifier] = ACTIONS(4213), + [anon_sym_import] = ACTIONS(4213), + [anon_sym_cimport] = ACTIONS(4213), + [anon_sym_from] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_print] = ACTIONS(4213), + [anon_sym_assert] = ACTIONS(4213), + [anon_sym_return] = ACTIONS(4213), + [anon_sym_del] = ACTIONS(4213), + [anon_sym_raise] = ACTIONS(4213), + [anon_sym_pass] = ACTIONS(4213), + [anon_sym_break] = ACTIONS(4213), + [anon_sym_continue] = ACTIONS(4213), + [anon_sym_if] = ACTIONS(4213), + [anon_sym_match] = ACTIONS(4213), + [anon_sym_async] = ACTIONS(4213), + [anon_sym_for] = ACTIONS(4213), + [anon_sym_while] = ACTIONS(4213), + [anon_sym_try] = ACTIONS(4213), + [anon_sym_with] = ACTIONS(4213), + [anon_sym_def] = ACTIONS(4213), + [anon_sym_global] = ACTIONS(4213), + [anon_sym_nonlocal] = ACTIONS(4213), + [anon_sym_exec] = ACTIONS(4213), + [anon_sym_type] = ACTIONS(4213), + [anon_sym_class] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4215), + [anon_sym_AT] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_LBRACE] = ACTIONS(4215), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_not] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_TILDE] = ACTIONS(4215), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_lambda] = ACTIONS(4213), + [anon_sym_yield] = ACTIONS(4213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4215), + [anon_sym_None] = ACTIONS(4213), + [anon_sym_0x] = ACTIONS(4215), + [anon_sym_0X] = ACTIONS(4215), + [anon_sym_0o] = ACTIONS(4215), + [anon_sym_0O] = ACTIONS(4215), + [anon_sym_0b] = ACTIONS(4215), + [anon_sym_0B] = ACTIONS(4215), + [aux_sym_integer_token4] = ACTIONS(4213), + [sym_float] = ACTIONS(4215), + [anon_sym_await] = ACTIONS(4213), + [anon_sym_api] = ACTIONS(4213), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4213), + [anon_sym_include] = ACTIONS(4213), + [anon_sym_DEF] = ACTIONS(4213), + [anon_sym_IF] = ACTIONS(4213), + [anon_sym_cdef] = ACTIONS(4213), + [anon_sym_cpdef] = ACTIONS(4213), + [anon_sym_new] = ACTIONS(4213), + [anon_sym_ctypedef] = ACTIONS(4213), + [anon_sym_public] = ACTIONS(4213), + [anon_sym_packed] = ACTIONS(4213), + [anon_sym_inline] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4213), + [anon_sym_sizeof] = ACTIONS(4213), + [sym__dedent] = ACTIONS(4215), + [sym_string_start] = ACTIONS(4215), + }, + [2119] = { + [sym_identifier] = ACTIONS(4217), + [anon_sym_import] = ACTIONS(4217), + [anon_sym_cimport] = ACTIONS(4217), + [anon_sym_from] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4219), + [anon_sym_print] = ACTIONS(4217), + [anon_sym_assert] = ACTIONS(4217), + [anon_sym_return] = ACTIONS(4217), + [anon_sym_del] = ACTIONS(4217), + [anon_sym_raise] = ACTIONS(4217), + [anon_sym_pass] = ACTIONS(4217), + [anon_sym_break] = ACTIONS(4217), + [anon_sym_continue] = ACTIONS(4217), + [anon_sym_if] = ACTIONS(4217), + [anon_sym_match] = ACTIONS(4217), + [anon_sym_async] = ACTIONS(4217), + [anon_sym_for] = ACTIONS(4217), + [anon_sym_while] = ACTIONS(4217), + [anon_sym_try] = ACTIONS(4217), + [anon_sym_with] = ACTIONS(4217), + [anon_sym_def] = ACTIONS(4217), + [anon_sym_global] = ACTIONS(4217), + [anon_sym_nonlocal] = ACTIONS(4217), + [anon_sym_exec] = ACTIONS(4217), + [anon_sym_type] = ACTIONS(4217), + [anon_sym_class] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_AT] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4217), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_lambda] = ACTIONS(4217), + [anon_sym_yield] = ACTIONS(4217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [anon_sym_None] = ACTIONS(4217), + [anon_sym_0x] = ACTIONS(4219), + [anon_sym_0X] = ACTIONS(4219), + [anon_sym_0o] = ACTIONS(4219), + [anon_sym_0O] = ACTIONS(4219), + [anon_sym_0b] = ACTIONS(4219), + [anon_sym_0B] = ACTIONS(4219), + [aux_sym_integer_token4] = ACTIONS(4217), + [sym_float] = ACTIONS(4219), + [anon_sym_await] = ACTIONS(4217), + [anon_sym_api] = ACTIONS(4217), + [sym_true] = ACTIONS(4217), + [sym_false] = ACTIONS(4217), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4217), + [anon_sym_include] = ACTIONS(4217), + [anon_sym_DEF] = ACTIONS(4217), + [anon_sym_IF] = ACTIONS(4217), + [anon_sym_cdef] = ACTIONS(4217), + [anon_sym_cpdef] = ACTIONS(4217), + [anon_sym_new] = ACTIONS(4217), + [anon_sym_ctypedef] = ACTIONS(4217), + [anon_sym_public] = ACTIONS(4217), + [anon_sym_packed] = ACTIONS(4217), + [anon_sym_inline] = ACTIONS(4217), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_sizeof] = ACTIONS(4217), + [sym__dedent] = ACTIONS(4219), + [sym_string_start] = ACTIONS(4219), + }, + [2120] = { + [sym_identifier] = ACTIONS(4221), + [anon_sym_import] = ACTIONS(4221), + [anon_sym_cimport] = ACTIONS(4221), + [anon_sym_from] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [anon_sym_print] = ACTIONS(4221), + [anon_sym_assert] = ACTIONS(4221), + [anon_sym_return] = ACTIONS(4221), + [anon_sym_del] = ACTIONS(4221), + [anon_sym_raise] = ACTIONS(4221), + [anon_sym_pass] = ACTIONS(4221), + [anon_sym_break] = ACTIONS(4221), + [anon_sym_continue] = ACTIONS(4221), + [anon_sym_if] = ACTIONS(4221), + [anon_sym_match] = ACTIONS(4221), + [anon_sym_async] = ACTIONS(4221), + [anon_sym_for] = ACTIONS(4221), + [anon_sym_while] = ACTIONS(4221), + [anon_sym_try] = ACTIONS(4221), + [anon_sym_with] = ACTIONS(4221), + [anon_sym_def] = ACTIONS(4221), + [anon_sym_global] = ACTIONS(4221), + [anon_sym_nonlocal] = ACTIONS(4221), + [anon_sym_exec] = ACTIONS(4221), + [anon_sym_type] = ACTIONS(4221), + [anon_sym_class] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_not] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_lambda] = ACTIONS(4221), + [anon_sym_yield] = ACTIONS(4221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [anon_sym_None] = ACTIONS(4221), + [anon_sym_0x] = ACTIONS(4223), + [anon_sym_0X] = ACTIONS(4223), + [anon_sym_0o] = ACTIONS(4223), + [anon_sym_0O] = ACTIONS(4223), + [anon_sym_0b] = ACTIONS(4223), + [anon_sym_0B] = ACTIONS(4223), + [aux_sym_integer_token4] = ACTIONS(4221), + [sym_float] = ACTIONS(4223), + [anon_sym_await] = ACTIONS(4221), + [anon_sym_api] = ACTIONS(4221), + [sym_true] = ACTIONS(4221), + [sym_false] = ACTIONS(4221), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4221), + [anon_sym_include] = ACTIONS(4221), + [anon_sym_DEF] = ACTIONS(4221), + [anon_sym_IF] = ACTIONS(4221), + [anon_sym_cdef] = ACTIONS(4221), + [anon_sym_cpdef] = ACTIONS(4221), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_ctypedef] = ACTIONS(4221), + [anon_sym_public] = ACTIONS(4221), + [anon_sym_packed] = ACTIONS(4221), + [anon_sym_inline] = ACTIONS(4221), + [anon_sym_readonly] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4221), + [sym__dedent] = ACTIONS(4223), + [sym_string_start] = ACTIONS(4223), + }, + [2121] = { + [sym_identifier] = ACTIONS(4225), + [anon_sym_import] = ACTIONS(4225), + [anon_sym_cimport] = ACTIONS(4225), + [anon_sym_from] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_print] = ACTIONS(4225), + [anon_sym_assert] = ACTIONS(4225), + [anon_sym_return] = ACTIONS(4225), + [anon_sym_del] = ACTIONS(4225), + [anon_sym_raise] = ACTIONS(4225), + [anon_sym_pass] = ACTIONS(4225), + [anon_sym_break] = ACTIONS(4225), + [anon_sym_continue] = ACTIONS(4225), + [anon_sym_if] = ACTIONS(4225), + [anon_sym_match] = ACTIONS(4225), + [anon_sym_async] = ACTIONS(4225), + [anon_sym_for] = ACTIONS(4225), + [anon_sym_while] = ACTIONS(4225), + [anon_sym_try] = ACTIONS(4225), + [anon_sym_with] = ACTIONS(4225), + [anon_sym_def] = ACTIONS(4225), + [anon_sym_global] = ACTIONS(4225), + [anon_sym_nonlocal] = ACTIONS(4225), + [anon_sym_exec] = ACTIONS(4225), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_class] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_AT] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_not] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_lambda] = ACTIONS(4225), + [anon_sym_yield] = ACTIONS(4225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [anon_sym_None] = ACTIONS(4225), + [anon_sym_0x] = ACTIONS(4227), + [anon_sym_0X] = ACTIONS(4227), + [anon_sym_0o] = ACTIONS(4227), + [anon_sym_0O] = ACTIONS(4227), + [anon_sym_0b] = ACTIONS(4227), + [anon_sym_0B] = ACTIONS(4227), + [aux_sym_integer_token4] = ACTIONS(4225), + [sym_float] = ACTIONS(4227), + [anon_sym_await] = ACTIONS(4225), + [anon_sym_api] = ACTIONS(4225), + [sym_true] = ACTIONS(4225), + [sym_false] = ACTIONS(4225), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4225), + [anon_sym_include] = ACTIONS(4225), + [anon_sym_DEF] = ACTIONS(4225), + [anon_sym_IF] = ACTIONS(4225), + [anon_sym_cdef] = ACTIONS(4225), + [anon_sym_cpdef] = ACTIONS(4225), + [anon_sym_new] = ACTIONS(4225), + [anon_sym_ctypedef] = ACTIONS(4225), + [anon_sym_public] = ACTIONS(4225), + [anon_sym_packed] = ACTIONS(4225), + [anon_sym_inline] = ACTIONS(4225), + [anon_sym_readonly] = ACTIONS(4225), + [anon_sym_sizeof] = ACTIONS(4225), + [sym__dedent] = ACTIONS(4227), + [sym_string_start] = ACTIONS(4227), + }, + [2122] = { + [ts_builtin_sym_end] = ACTIONS(4179), + [sym_identifier] = ACTIONS(4177), + [anon_sym_import] = ACTIONS(4177), + [anon_sym_cimport] = ACTIONS(4177), + [anon_sym_from] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_print] = ACTIONS(4177), + [anon_sym_assert] = ACTIONS(4177), + [anon_sym_return] = ACTIONS(4177), + [anon_sym_del] = ACTIONS(4177), + [anon_sym_raise] = ACTIONS(4177), + [anon_sym_pass] = ACTIONS(4177), + [anon_sym_break] = ACTIONS(4177), + [anon_sym_continue] = ACTIONS(4177), + [anon_sym_if] = ACTIONS(4177), + [anon_sym_match] = ACTIONS(4177), + [anon_sym_async] = ACTIONS(4177), + [anon_sym_for] = ACTIONS(4177), + [anon_sym_while] = ACTIONS(4177), + [anon_sym_try] = ACTIONS(4177), + [anon_sym_with] = ACTIONS(4177), + [anon_sym_def] = ACTIONS(4177), + [anon_sym_global] = ACTIONS(4177), + [anon_sym_nonlocal] = ACTIONS(4177), + [anon_sym_exec] = ACTIONS(4177), + [anon_sym_type] = ACTIONS(4177), + [anon_sym_class] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_not] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_lambda] = ACTIONS(4177), + [anon_sym_yield] = ACTIONS(4177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4179), + [anon_sym_None] = ACTIONS(4177), + [anon_sym_0x] = ACTIONS(4179), + [anon_sym_0X] = ACTIONS(4179), + [anon_sym_0o] = ACTIONS(4179), + [anon_sym_0O] = ACTIONS(4179), + [anon_sym_0b] = ACTIONS(4179), + [anon_sym_0B] = ACTIONS(4179), + [aux_sym_integer_token4] = ACTIONS(4177), + [sym_float] = ACTIONS(4179), + [anon_sym_await] = ACTIONS(4177), + [anon_sym_api] = ACTIONS(4177), + [sym_true] = ACTIONS(4177), + [sym_false] = ACTIONS(4177), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4177), + [anon_sym_include] = ACTIONS(4177), + [anon_sym_DEF] = ACTIONS(4177), + [anon_sym_IF] = ACTIONS(4177), + [anon_sym_cdef] = ACTIONS(4177), + [anon_sym_cpdef] = ACTIONS(4177), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_ctypedef] = ACTIONS(4177), + [anon_sym_public] = ACTIONS(4177), + [anon_sym_packed] = ACTIONS(4177), + [anon_sym_inline] = ACTIONS(4177), + [anon_sym_readonly] = ACTIONS(4177), + [anon_sym_sizeof] = ACTIONS(4177), + [sym_string_start] = ACTIONS(4179), + }, + [2123] = { + [ts_builtin_sym_end] = ACTIONS(4183), + [sym_identifier] = ACTIONS(4181), + [anon_sym_import] = ACTIONS(4181), + [anon_sym_cimport] = ACTIONS(4181), + [anon_sym_from] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_print] = ACTIONS(4181), + [anon_sym_assert] = ACTIONS(4181), + [anon_sym_return] = ACTIONS(4181), + [anon_sym_del] = ACTIONS(4181), + [anon_sym_raise] = ACTIONS(4181), + [anon_sym_pass] = ACTIONS(4181), + [anon_sym_break] = ACTIONS(4181), + [anon_sym_continue] = ACTIONS(4181), + [anon_sym_if] = ACTIONS(4181), + [anon_sym_match] = ACTIONS(4181), + [anon_sym_async] = ACTIONS(4181), + [anon_sym_for] = ACTIONS(4181), + [anon_sym_while] = ACTIONS(4181), + [anon_sym_try] = ACTIONS(4181), + [anon_sym_with] = ACTIONS(4181), + [anon_sym_def] = ACTIONS(4181), + [anon_sym_global] = ACTIONS(4181), + [anon_sym_nonlocal] = ACTIONS(4181), + [anon_sym_exec] = ACTIONS(4181), + [anon_sym_type] = ACTIONS(4181), + [anon_sym_class] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_not] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_TILDE] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_lambda] = ACTIONS(4181), + [anon_sym_yield] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4183), + [anon_sym_None] = ACTIONS(4181), + [anon_sym_0x] = ACTIONS(4183), + [anon_sym_0X] = ACTIONS(4183), + [anon_sym_0o] = ACTIONS(4183), + [anon_sym_0O] = ACTIONS(4183), + [anon_sym_0b] = ACTIONS(4183), + [anon_sym_0B] = ACTIONS(4183), + [aux_sym_integer_token4] = ACTIONS(4181), + [sym_float] = ACTIONS(4183), + [anon_sym_await] = ACTIONS(4181), + [anon_sym_api] = ACTIONS(4181), + [sym_true] = ACTIONS(4181), + [sym_false] = ACTIONS(4181), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4181), + [anon_sym_include] = ACTIONS(4181), + [anon_sym_DEF] = ACTIONS(4181), + [anon_sym_IF] = ACTIONS(4181), + [anon_sym_cdef] = ACTIONS(4181), + [anon_sym_cpdef] = ACTIONS(4181), + [anon_sym_new] = ACTIONS(4181), + [anon_sym_ctypedef] = ACTIONS(4181), + [anon_sym_public] = ACTIONS(4181), + [anon_sym_packed] = ACTIONS(4181), + [anon_sym_inline] = ACTIONS(4181), + [anon_sym_readonly] = ACTIONS(4181), + [anon_sym_sizeof] = ACTIONS(4181), + [sym_string_start] = ACTIONS(4183), + }, + [2124] = { + [ts_builtin_sym_end] = ACTIONS(4229), + [sym_identifier] = ACTIONS(4231), + [anon_sym_import] = ACTIONS(4231), + [anon_sym_cimport] = ACTIONS(4231), + [anon_sym_from] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_print] = ACTIONS(4231), + [anon_sym_assert] = ACTIONS(4231), + [anon_sym_return] = ACTIONS(4231), + [anon_sym_del] = ACTIONS(4231), + [anon_sym_raise] = ACTIONS(4231), + [anon_sym_pass] = ACTIONS(4231), + [anon_sym_break] = ACTIONS(4231), + [anon_sym_continue] = ACTIONS(4231), + [anon_sym_if] = ACTIONS(4231), + [anon_sym_match] = ACTIONS(4231), + [anon_sym_async] = ACTIONS(4231), + [anon_sym_for] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(4231), + [anon_sym_try] = ACTIONS(4231), + [anon_sym_with] = ACTIONS(4231), + [anon_sym_def] = ACTIONS(4231), + [anon_sym_global] = ACTIONS(4231), + [anon_sym_nonlocal] = ACTIONS(4231), + [anon_sym_exec] = ACTIONS(4231), + [anon_sym_type] = ACTIONS(4231), + [anon_sym_class] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4231), + [anon_sym_yield] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4229), + [anon_sym_None] = ACTIONS(4231), + [anon_sym_0x] = ACTIONS(4229), + [anon_sym_0X] = ACTIONS(4229), + [anon_sym_0o] = ACTIONS(4229), + [anon_sym_0O] = ACTIONS(4229), + [anon_sym_0b] = ACTIONS(4229), + [anon_sym_0B] = ACTIONS(4229), + [aux_sym_integer_token4] = ACTIONS(4231), + [sym_float] = ACTIONS(4229), + [anon_sym_await] = ACTIONS(4231), + [anon_sym_api] = ACTIONS(4231), + [sym_true] = ACTIONS(4231), + [sym_false] = ACTIONS(4231), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4231), + [anon_sym_include] = ACTIONS(4231), + [anon_sym_DEF] = ACTIONS(4231), + [anon_sym_IF] = ACTIONS(4231), + [anon_sym_cdef] = ACTIONS(4231), + [anon_sym_cpdef] = ACTIONS(4231), + [anon_sym_new] = ACTIONS(4231), + [anon_sym_ctypedef] = ACTIONS(4231), + [anon_sym_public] = ACTIONS(4231), + [anon_sym_packed] = ACTIONS(4231), + [anon_sym_inline] = ACTIONS(4231), + [anon_sym_readonly] = ACTIONS(4231), + [anon_sym_sizeof] = ACTIONS(4231), + [sym_string_start] = ACTIONS(4229), + }, + [2125] = { + [sym_identifier] = ACTIONS(4233), + [anon_sym_import] = ACTIONS(4233), + [anon_sym_cimport] = ACTIONS(4233), + [anon_sym_from] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_print] = ACTIONS(4233), + [anon_sym_assert] = ACTIONS(4233), + [anon_sym_return] = ACTIONS(4233), + [anon_sym_del] = ACTIONS(4233), + [anon_sym_raise] = ACTIONS(4233), + [anon_sym_pass] = ACTIONS(4233), + [anon_sym_break] = ACTIONS(4233), + [anon_sym_continue] = ACTIONS(4233), + [anon_sym_if] = ACTIONS(4233), + [anon_sym_match] = ACTIONS(4233), + [anon_sym_async] = ACTIONS(4233), + [anon_sym_for] = ACTIONS(4233), + [anon_sym_while] = ACTIONS(4233), + [anon_sym_try] = ACTIONS(4233), + [anon_sym_with] = ACTIONS(4233), + [anon_sym_def] = ACTIONS(4233), + [anon_sym_global] = ACTIONS(4233), + [anon_sym_nonlocal] = ACTIONS(4233), + [anon_sym_exec] = ACTIONS(4233), + [anon_sym_type] = ACTIONS(4233), + [anon_sym_class] = ACTIONS(4233), + [anon_sym_LBRACK] = ACTIONS(4235), + [anon_sym_AT] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_not] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_lambda] = ACTIONS(4233), + [anon_sym_yield] = ACTIONS(4233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [anon_sym_None] = ACTIONS(4233), + [anon_sym_0x] = ACTIONS(4235), + [anon_sym_0X] = ACTIONS(4235), + [anon_sym_0o] = ACTIONS(4235), + [anon_sym_0O] = ACTIONS(4235), + [anon_sym_0b] = ACTIONS(4235), + [anon_sym_0B] = ACTIONS(4235), + [aux_sym_integer_token4] = ACTIONS(4233), + [sym_float] = ACTIONS(4235), + [anon_sym_await] = ACTIONS(4233), + [anon_sym_api] = ACTIONS(4233), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4233), + [anon_sym_include] = ACTIONS(4233), + [anon_sym_DEF] = ACTIONS(4233), + [anon_sym_IF] = ACTIONS(4233), + [anon_sym_cdef] = ACTIONS(4233), + [anon_sym_cpdef] = ACTIONS(4233), + [anon_sym_new] = ACTIONS(4233), + [anon_sym_ctypedef] = ACTIONS(4233), + [anon_sym_public] = ACTIONS(4233), + [anon_sym_packed] = ACTIONS(4233), + [anon_sym_inline] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4233), + [anon_sym_sizeof] = ACTIONS(4233), + [sym__dedent] = ACTIONS(4235), + [sym_string_start] = ACTIONS(4235), + }, + [2126] = { + [sym_identifier] = ACTIONS(4237), + [anon_sym_import] = ACTIONS(4237), + [anon_sym_cimport] = ACTIONS(4237), + [anon_sym_from] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4239), + [anon_sym_print] = ACTIONS(4237), + [anon_sym_assert] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_del] = ACTIONS(4237), + [anon_sym_raise] = ACTIONS(4237), + [anon_sym_pass] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_match] = ACTIONS(4237), + [anon_sym_async] = ACTIONS(4237), + [anon_sym_for] = ACTIONS(4237), + [anon_sym_while] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_with] = ACTIONS(4237), + [anon_sym_def] = ACTIONS(4237), + [anon_sym_global] = ACTIONS(4237), + [anon_sym_nonlocal] = ACTIONS(4237), + [anon_sym_exec] = ACTIONS(4237), + [anon_sym_type] = ACTIONS(4237), + [anon_sym_class] = ACTIONS(4237), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_not] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4239), + [anon_sym_lambda] = ACTIONS(4237), + [anon_sym_yield] = ACTIONS(4237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [anon_sym_None] = ACTIONS(4237), + [anon_sym_0x] = ACTIONS(4239), + [anon_sym_0X] = ACTIONS(4239), + [anon_sym_0o] = ACTIONS(4239), + [anon_sym_0O] = ACTIONS(4239), + [anon_sym_0b] = ACTIONS(4239), + [anon_sym_0B] = ACTIONS(4239), + [aux_sym_integer_token4] = ACTIONS(4237), + [sym_float] = ACTIONS(4239), + [anon_sym_await] = ACTIONS(4237), + [anon_sym_api] = ACTIONS(4237), + [sym_true] = ACTIONS(4237), + [sym_false] = ACTIONS(4237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4237), + [anon_sym_include] = ACTIONS(4237), + [anon_sym_DEF] = ACTIONS(4237), + [anon_sym_IF] = ACTIONS(4237), + [anon_sym_cdef] = ACTIONS(4237), + [anon_sym_cpdef] = ACTIONS(4237), + [anon_sym_new] = ACTIONS(4237), + [anon_sym_ctypedef] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_packed] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_sizeof] = ACTIONS(4237), + [sym__dedent] = ACTIONS(4239), + [sym_string_start] = ACTIONS(4239), + }, + [2127] = { + [ts_builtin_sym_end] = ACTIONS(4187), + [sym_identifier] = ACTIONS(4185), + [anon_sym_import] = ACTIONS(4185), + [anon_sym_cimport] = ACTIONS(4185), + [anon_sym_from] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(4187), + [anon_sym_print] = ACTIONS(4185), + [anon_sym_assert] = ACTIONS(4185), + [anon_sym_return] = ACTIONS(4185), + [anon_sym_del] = ACTIONS(4185), + [anon_sym_raise] = ACTIONS(4185), + [anon_sym_pass] = ACTIONS(4185), + [anon_sym_break] = ACTIONS(4185), + [anon_sym_continue] = ACTIONS(4185), + [anon_sym_if] = ACTIONS(4185), + [anon_sym_match] = ACTIONS(4185), + [anon_sym_async] = ACTIONS(4185), + [anon_sym_for] = ACTIONS(4185), + [anon_sym_while] = ACTIONS(4185), + [anon_sym_try] = ACTIONS(4185), + [anon_sym_with] = ACTIONS(4185), + [anon_sym_def] = ACTIONS(4185), + [anon_sym_global] = ACTIONS(4185), + [anon_sym_nonlocal] = ACTIONS(4185), + [anon_sym_exec] = ACTIONS(4185), + [anon_sym_type] = ACTIONS(4185), + [anon_sym_class] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4187), + [anon_sym_AT] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_not] = ACTIONS(4185), + [anon_sym_AMP] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4187), + [anon_sym_lambda] = ACTIONS(4185), + [anon_sym_yield] = ACTIONS(4185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [anon_sym_None] = ACTIONS(4185), + [anon_sym_0x] = ACTIONS(4187), + [anon_sym_0X] = ACTIONS(4187), + [anon_sym_0o] = ACTIONS(4187), + [anon_sym_0O] = ACTIONS(4187), + [anon_sym_0b] = ACTIONS(4187), + [anon_sym_0B] = ACTIONS(4187), + [aux_sym_integer_token4] = ACTIONS(4185), + [sym_float] = ACTIONS(4187), + [anon_sym_await] = ACTIONS(4185), + [anon_sym_api] = ACTIONS(4185), + [sym_true] = ACTIONS(4185), + [sym_false] = ACTIONS(4185), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4185), + [anon_sym_include] = ACTIONS(4185), + [anon_sym_DEF] = ACTIONS(4185), + [anon_sym_IF] = ACTIONS(4185), + [anon_sym_cdef] = ACTIONS(4185), + [anon_sym_cpdef] = ACTIONS(4185), + [anon_sym_new] = ACTIONS(4185), + [anon_sym_ctypedef] = ACTIONS(4185), + [anon_sym_public] = ACTIONS(4185), + [anon_sym_packed] = ACTIONS(4185), + [anon_sym_inline] = ACTIONS(4185), + [anon_sym_readonly] = ACTIONS(4185), + [anon_sym_sizeof] = ACTIONS(4185), + [sym_string_start] = ACTIONS(4187), + }, + [2128] = { + [sym_identifier] = ACTIONS(4241), + [anon_sym_import] = ACTIONS(4241), + [anon_sym_cimport] = ACTIONS(4241), + [anon_sym_from] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_STAR] = ACTIONS(4243), + [anon_sym_print] = ACTIONS(4241), + [anon_sym_assert] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_del] = ACTIONS(4241), + [anon_sym_raise] = ACTIONS(4241), + [anon_sym_pass] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_match] = ACTIONS(4241), + [anon_sym_async] = ACTIONS(4241), + [anon_sym_for] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_with] = ACTIONS(4241), + [anon_sym_def] = ACTIONS(4241), + [anon_sym_global] = ACTIONS(4241), + [anon_sym_nonlocal] = ACTIONS(4241), + [anon_sym_exec] = ACTIONS(4241), + [anon_sym_type] = ACTIONS(4241), + [anon_sym_class] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_not] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4243), + [anon_sym_lambda] = ACTIONS(4241), + [anon_sym_yield] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [anon_sym_None] = ACTIONS(4241), + [anon_sym_0x] = ACTIONS(4243), + [anon_sym_0X] = ACTIONS(4243), + [anon_sym_0o] = ACTIONS(4243), + [anon_sym_0O] = ACTIONS(4243), + [anon_sym_0b] = ACTIONS(4243), + [anon_sym_0B] = ACTIONS(4243), + [aux_sym_integer_token4] = ACTIONS(4241), + [sym_float] = ACTIONS(4243), + [anon_sym_await] = ACTIONS(4241), + [anon_sym_api] = ACTIONS(4241), + [sym_true] = ACTIONS(4241), + [sym_false] = ACTIONS(4241), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4241), + [anon_sym_include] = ACTIONS(4241), + [anon_sym_DEF] = ACTIONS(4241), + [anon_sym_IF] = ACTIONS(4241), + [anon_sym_cdef] = ACTIONS(4241), + [anon_sym_cpdef] = ACTIONS(4241), + [anon_sym_new] = ACTIONS(4241), + [anon_sym_ctypedef] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_packed] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_readonly] = ACTIONS(4241), + [anon_sym_sizeof] = ACTIONS(4241), + [sym__dedent] = ACTIONS(4243), + [sym_string_start] = ACTIONS(4243), + }, + [2129] = { + [sym_identifier] = ACTIONS(4245), + [anon_sym_import] = ACTIONS(4245), + [anon_sym_cimport] = ACTIONS(4245), + [anon_sym_from] = ACTIONS(4245), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_print] = ACTIONS(4245), + [anon_sym_assert] = ACTIONS(4245), + [anon_sym_return] = ACTIONS(4245), + [anon_sym_del] = ACTIONS(4245), + [anon_sym_raise] = ACTIONS(4245), + [anon_sym_pass] = ACTIONS(4245), + [anon_sym_break] = ACTIONS(4245), + [anon_sym_continue] = ACTIONS(4245), + [anon_sym_if] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4245), + [anon_sym_async] = ACTIONS(4245), + [anon_sym_for] = ACTIONS(4245), + [anon_sym_while] = ACTIONS(4245), + [anon_sym_try] = ACTIONS(4245), + [anon_sym_with] = ACTIONS(4245), + [anon_sym_def] = ACTIONS(4245), + [anon_sym_global] = ACTIONS(4245), + [anon_sym_nonlocal] = ACTIONS(4245), + [anon_sym_exec] = ACTIONS(4245), + [anon_sym_type] = ACTIONS(4245), + [anon_sym_class] = ACTIONS(4245), + [anon_sym_LBRACK] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_not] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_lambda] = ACTIONS(4245), + [anon_sym_yield] = ACTIONS(4245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [anon_sym_None] = ACTIONS(4245), + [anon_sym_0x] = ACTIONS(4247), + [anon_sym_0X] = ACTIONS(4247), + [anon_sym_0o] = ACTIONS(4247), + [anon_sym_0O] = ACTIONS(4247), + [anon_sym_0b] = ACTIONS(4247), + [anon_sym_0B] = ACTIONS(4247), + [aux_sym_integer_token4] = ACTIONS(4245), + [sym_float] = ACTIONS(4247), + [anon_sym_await] = ACTIONS(4245), + [anon_sym_api] = ACTIONS(4245), + [sym_true] = ACTIONS(4245), + [sym_false] = ACTIONS(4245), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4245), + [anon_sym_include] = ACTIONS(4245), + [anon_sym_DEF] = ACTIONS(4245), + [anon_sym_IF] = ACTIONS(4245), + [anon_sym_cdef] = ACTIONS(4245), + [anon_sym_cpdef] = ACTIONS(4245), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_ctypedef] = ACTIONS(4245), + [anon_sym_public] = ACTIONS(4245), + [anon_sym_packed] = ACTIONS(4245), + [anon_sym_inline] = ACTIONS(4245), + [anon_sym_readonly] = ACTIONS(4245), + [anon_sym_sizeof] = ACTIONS(4245), + [sym__dedent] = ACTIONS(4247), + [sym_string_start] = ACTIONS(4247), + }, + [2130] = { + [sym_identifier] = ACTIONS(4249), + [anon_sym_import] = ACTIONS(4249), + [anon_sym_cimport] = ACTIONS(4249), + [anon_sym_from] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_print] = ACTIONS(4249), + [anon_sym_assert] = ACTIONS(4249), + [anon_sym_return] = ACTIONS(4249), + [anon_sym_del] = ACTIONS(4249), + [anon_sym_raise] = ACTIONS(4249), + [anon_sym_pass] = ACTIONS(4249), + [anon_sym_break] = ACTIONS(4249), + [anon_sym_continue] = ACTIONS(4249), + [anon_sym_if] = ACTIONS(4249), + [anon_sym_match] = ACTIONS(4249), + [anon_sym_async] = ACTIONS(4249), + [anon_sym_for] = ACTIONS(4249), + [anon_sym_while] = ACTIONS(4249), + [anon_sym_try] = ACTIONS(4249), + [anon_sym_with] = ACTIONS(4249), + [anon_sym_def] = ACTIONS(4249), + [anon_sym_global] = ACTIONS(4249), + [anon_sym_nonlocal] = ACTIONS(4249), + [anon_sym_exec] = ACTIONS(4249), + [anon_sym_type] = ACTIONS(4249), + [anon_sym_class] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_not] = ACTIONS(4249), + [anon_sym_AMP] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_lambda] = ACTIONS(4249), + [anon_sym_yield] = ACTIONS(4249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [anon_sym_None] = ACTIONS(4249), + [anon_sym_0x] = ACTIONS(4251), + [anon_sym_0X] = ACTIONS(4251), + [anon_sym_0o] = ACTIONS(4251), + [anon_sym_0O] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(4251), + [anon_sym_0B] = ACTIONS(4251), + [aux_sym_integer_token4] = ACTIONS(4249), + [sym_float] = ACTIONS(4251), + [anon_sym_await] = ACTIONS(4249), + [anon_sym_api] = ACTIONS(4249), + [sym_true] = ACTIONS(4249), + [sym_false] = ACTIONS(4249), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4249), + [anon_sym_include] = ACTIONS(4249), + [anon_sym_DEF] = ACTIONS(4249), + [anon_sym_IF] = ACTIONS(4249), + [anon_sym_cdef] = ACTIONS(4249), + [anon_sym_cpdef] = ACTIONS(4249), + [anon_sym_new] = ACTIONS(4249), + [anon_sym_ctypedef] = ACTIONS(4249), + [anon_sym_public] = ACTIONS(4249), + [anon_sym_packed] = ACTIONS(4249), + [anon_sym_inline] = ACTIONS(4249), + [anon_sym_readonly] = ACTIONS(4249), + [anon_sym_sizeof] = ACTIONS(4249), + [sym__dedent] = ACTIONS(4251), + [sym_string_start] = ACTIONS(4251), + }, + [2131] = { + [sym_identifier] = ACTIONS(4253), + [anon_sym_import] = ACTIONS(4253), + [anon_sym_cimport] = ACTIONS(4253), + [anon_sym_from] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_print] = ACTIONS(4253), + [anon_sym_assert] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_del] = ACTIONS(4253), + [anon_sym_raise] = ACTIONS(4253), + [anon_sym_pass] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_match] = ACTIONS(4253), + [anon_sym_async] = ACTIONS(4253), + [anon_sym_for] = ACTIONS(4253), + [anon_sym_while] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_with] = ACTIONS(4253), + [anon_sym_def] = ACTIONS(4253), + [anon_sym_global] = ACTIONS(4253), + [anon_sym_nonlocal] = ACTIONS(4253), + [anon_sym_exec] = ACTIONS(4253), + [anon_sym_type] = ACTIONS(4253), + [anon_sym_class] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_not] = ACTIONS(4253), + [anon_sym_AMP] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_lambda] = ACTIONS(4253), + [anon_sym_yield] = ACTIONS(4253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [anon_sym_None] = ACTIONS(4253), + [anon_sym_0x] = ACTIONS(4255), + [anon_sym_0X] = ACTIONS(4255), + [anon_sym_0o] = ACTIONS(4255), + [anon_sym_0O] = ACTIONS(4255), + [anon_sym_0b] = ACTIONS(4255), + [anon_sym_0B] = ACTIONS(4255), + [aux_sym_integer_token4] = ACTIONS(4253), + [sym_float] = ACTIONS(4255), + [anon_sym_await] = ACTIONS(4253), + [anon_sym_api] = ACTIONS(4253), + [sym_true] = ACTIONS(4253), + [sym_false] = ACTIONS(4253), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4253), + [anon_sym_include] = ACTIONS(4253), + [anon_sym_DEF] = ACTIONS(4253), + [anon_sym_IF] = ACTIONS(4253), + [anon_sym_cdef] = ACTIONS(4253), + [anon_sym_cpdef] = ACTIONS(4253), + [anon_sym_new] = ACTIONS(4253), + [anon_sym_ctypedef] = ACTIONS(4253), + [anon_sym_public] = ACTIONS(4253), + [anon_sym_packed] = ACTIONS(4253), + [anon_sym_inline] = ACTIONS(4253), + [anon_sym_readonly] = ACTIONS(4253), + [anon_sym_sizeof] = ACTIONS(4253), + [sym__dedent] = ACTIONS(4255), + [sym_string_start] = ACTIONS(4255), + }, + [2132] = { + [ts_builtin_sym_end] = ACTIONS(4191), + [sym_identifier] = ACTIONS(4189), + [anon_sym_import] = ACTIONS(4189), + [anon_sym_cimport] = ACTIONS(4189), + [anon_sym_from] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4191), + [anon_sym_STAR] = ACTIONS(4191), + [anon_sym_print] = ACTIONS(4189), + [anon_sym_assert] = ACTIONS(4189), + [anon_sym_return] = ACTIONS(4189), + [anon_sym_del] = ACTIONS(4189), + [anon_sym_raise] = ACTIONS(4189), + [anon_sym_pass] = ACTIONS(4189), + [anon_sym_break] = ACTIONS(4189), + [anon_sym_continue] = ACTIONS(4189), + [anon_sym_if] = ACTIONS(4189), + [anon_sym_match] = ACTIONS(4189), + [anon_sym_async] = ACTIONS(4189), + [anon_sym_for] = ACTIONS(4189), + [anon_sym_while] = ACTIONS(4189), + [anon_sym_try] = ACTIONS(4189), + [anon_sym_with] = ACTIONS(4189), + [anon_sym_def] = ACTIONS(4189), + [anon_sym_global] = ACTIONS(4189), + [anon_sym_nonlocal] = ACTIONS(4189), + [anon_sym_exec] = ACTIONS(4189), + [anon_sym_type] = ACTIONS(4189), + [anon_sym_class] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym_AT] = ACTIONS(4191), + [anon_sym_DASH] = ACTIONS(4191), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PLUS] = ACTIONS(4191), + [anon_sym_not] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(4191), + [anon_sym_TILDE] = ACTIONS(4191), + [anon_sym_LT] = ACTIONS(4191), + [anon_sym_lambda] = ACTIONS(4189), + [anon_sym_yield] = ACTIONS(4189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4191), + [anon_sym_None] = ACTIONS(4189), + [anon_sym_0x] = ACTIONS(4191), + [anon_sym_0X] = ACTIONS(4191), + [anon_sym_0o] = ACTIONS(4191), + [anon_sym_0O] = ACTIONS(4191), + [anon_sym_0b] = ACTIONS(4191), + [anon_sym_0B] = ACTIONS(4191), + [aux_sym_integer_token4] = ACTIONS(4189), + [sym_float] = ACTIONS(4191), + [anon_sym_await] = ACTIONS(4189), + [anon_sym_api] = ACTIONS(4189), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4189), + [anon_sym_include] = ACTIONS(4189), + [anon_sym_DEF] = ACTIONS(4189), + [anon_sym_IF] = ACTIONS(4189), + [anon_sym_cdef] = ACTIONS(4189), + [anon_sym_cpdef] = ACTIONS(4189), + [anon_sym_new] = ACTIONS(4189), + [anon_sym_ctypedef] = ACTIONS(4189), + [anon_sym_public] = ACTIONS(4189), + [anon_sym_packed] = ACTIONS(4189), + [anon_sym_inline] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4189), + [anon_sym_sizeof] = ACTIONS(4189), + [sym_string_start] = ACTIONS(4191), + }, + [2133] = { + [ts_builtin_sym_end] = ACTIONS(4099), + [sym_identifier] = ACTIONS(4097), + [anon_sym_import] = ACTIONS(4097), + [anon_sym_cimport] = ACTIONS(4097), + [anon_sym_from] = ACTIONS(4097), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_print] = ACTIONS(4097), + [anon_sym_assert] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_del] = ACTIONS(4097), + [anon_sym_raise] = ACTIONS(4097), + [anon_sym_pass] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_match] = ACTIONS(4097), + [anon_sym_async] = ACTIONS(4097), + [anon_sym_for] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_with] = ACTIONS(4097), + [anon_sym_def] = ACTIONS(4097), + [anon_sym_global] = ACTIONS(4097), + [anon_sym_nonlocal] = ACTIONS(4097), + [anon_sym_exec] = ACTIONS(4097), + [anon_sym_type] = ACTIONS(4097), + [anon_sym_class] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_DASH] = ACTIONS(4099), + [anon_sym_LBRACE] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4099), + [anon_sym_not] = ACTIONS(4097), + [anon_sym_AMP] = ACTIONS(4099), + [anon_sym_TILDE] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4099), + [anon_sym_lambda] = ACTIONS(4097), + [anon_sym_yield] = ACTIONS(4097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4099), + [anon_sym_None] = ACTIONS(4097), + [anon_sym_0x] = ACTIONS(4099), + [anon_sym_0X] = ACTIONS(4099), + [anon_sym_0o] = ACTIONS(4099), + [anon_sym_0O] = ACTIONS(4099), + [anon_sym_0b] = ACTIONS(4099), + [anon_sym_0B] = ACTIONS(4099), + [aux_sym_integer_token4] = ACTIONS(4097), + [sym_float] = ACTIONS(4099), + [anon_sym_await] = ACTIONS(4097), + [anon_sym_api] = ACTIONS(4097), + [sym_true] = ACTIONS(4097), + [sym_false] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4097), + [anon_sym_include] = ACTIONS(4097), + [anon_sym_DEF] = ACTIONS(4097), + [anon_sym_IF] = ACTIONS(4097), + [anon_sym_cdef] = ACTIONS(4097), + [anon_sym_cpdef] = ACTIONS(4097), + [anon_sym_new] = ACTIONS(4097), + [anon_sym_ctypedef] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_packed] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_readonly] = ACTIONS(4097), + [anon_sym_sizeof] = ACTIONS(4097), + [sym_string_start] = ACTIONS(4099), + }, + [2134] = { + [sym_identifier] = ACTIONS(4257), + [anon_sym_import] = ACTIONS(4257), + [anon_sym_cimport] = ACTIONS(4257), + [anon_sym_from] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_print] = ACTIONS(4257), + [anon_sym_assert] = ACTIONS(4257), + [anon_sym_return] = ACTIONS(4257), + [anon_sym_del] = ACTIONS(4257), + [anon_sym_raise] = ACTIONS(4257), + [anon_sym_pass] = ACTIONS(4257), + [anon_sym_break] = ACTIONS(4257), + [anon_sym_continue] = ACTIONS(4257), + [anon_sym_if] = ACTIONS(4257), + [anon_sym_match] = ACTIONS(4257), + [anon_sym_async] = ACTIONS(4257), + [anon_sym_for] = ACTIONS(4257), + [anon_sym_while] = ACTIONS(4257), + [anon_sym_try] = ACTIONS(4257), + [anon_sym_with] = ACTIONS(4257), + [anon_sym_def] = ACTIONS(4257), + [anon_sym_global] = ACTIONS(4257), + [anon_sym_nonlocal] = ACTIONS(4257), + [anon_sym_exec] = ACTIONS(4257), + [anon_sym_type] = ACTIONS(4257), + [anon_sym_class] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_not] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_lambda] = ACTIONS(4257), + [anon_sym_yield] = ACTIONS(4257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [anon_sym_None] = ACTIONS(4257), + [anon_sym_0x] = ACTIONS(4259), + [anon_sym_0X] = ACTIONS(4259), + [anon_sym_0o] = ACTIONS(4259), + [anon_sym_0O] = ACTIONS(4259), + [anon_sym_0b] = ACTIONS(4259), + [anon_sym_0B] = ACTIONS(4259), + [aux_sym_integer_token4] = ACTIONS(4257), + [sym_float] = ACTIONS(4259), + [anon_sym_await] = ACTIONS(4257), + [anon_sym_api] = ACTIONS(4257), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4257), + [anon_sym_include] = ACTIONS(4257), + [anon_sym_DEF] = ACTIONS(4257), + [anon_sym_IF] = ACTIONS(4257), + [anon_sym_cdef] = ACTIONS(4257), + [anon_sym_cpdef] = ACTIONS(4257), + [anon_sym_new] = ACTIONS(4257), + [anon_sym_ctypedef] = ACTIONS(4257), + [anon_sym_public] = ACTIONS(4257), + [anon_sym_packed] = ACTIONS(4257), + [anon_sym_inline] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4257), + [anon_sym_sizeof] = ACTIONS(4257), + [sym__dedent] = ACTIONS(4259), + [sym_string_start] = ACTIONS(4259), + }, + [2135] = { + [sym_identifier] = ACTIONS(4261), + [anon_sym_import] = ACTIONS(4261), + [anon_sym_cimport] = ACTIONS(4261), + [anon_sym_from] = ACTIONS(4261), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4263), + [anon_sym_print] = ACTIONS(4261), + [anon_sym_assert] = ACTIONS(4261), + [anon_sym_return] = ACTIONS(4261), + [anon_sym_del] = ACTIONS(4261), + [anon_sym_raise] = ACTIONS(4261), + [anon_sym_pass] = ACTIONS(4261), + [anon_sym_break] = ACTIONS(4261), + [anon_sym_continue] = ACTIONS(4261), + [anon_sym_if] = ACTIONS(4261), + [anon_sym_match] = ACTIONS(4261), + [anon_sym_async] = ACTIONS(4261), + [anon_sym_for] = ACTIONS(4261), + [anon_sym_while] = ACTIONS(4261), + [anon_sym_try] = ACTIONS(4261), + [anon_sym_with] = ACTIONS(4261), + [anon_sym_def] = ACTIONS(4261), + [anon_sym_global] = ACTIONS(4261), + [anon_sym_nonlocal] = ACTIONS(4261), + [anon_sym_exec] = ACTIONS(4261), + [anon_sym_type] = ACTIONS(4261), + [anon_sym_class] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_not] = ACTIONS(4261), + [anon_sym_AMP] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4263), + [anon_sym_lambda] = ACTIONS(4261), + [anon_sym_yield] = ACTIONS(4261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [anon_sym_None] = ACTIONS(4261), + [anon_sym_0x] = ACTIONS(4263), + [anon_sym_0X] = ACTIONS(4263), + [anon_sym_0o] = ACTIONS(4263), + [anon_sym_0O] = ACTIONS(4263), + [anon_sym_0b] = ACTIONS(4263), + [anon_sym_0B] = ACTIONS(4263), + [aux_sym_integer_token4] = ACTIONS(4261), + [sym_float] = ACTIONS(4263), + [anon_sym_await] = ACTIONS(4261), + [anon_sym_api] = ACTIONS(4261), + [sym_true] = ACTIONS(4261), + [sym_false] = ACTIONS(4261), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4261), + [anon_sym_include] = ACTIONS(4261), + [anon_sym_DEF] = ACTIONS(4261), + [anon_sym_IF] = ACTIONS(4261), + [anon_sym_cdef] = ACTIONS(4261), + [anon_sym_cpdef] = ACTIONS(4261), + [anon_sym_new] = ACTIONS(4261), + [anon_sym_ctypedef] = ACTIONS(4261), + [anon_sym_public] = ACTIONS(4261), + [anon_sym_packed] = ACTIONS(4261), + [anon_sym_inline] = ACTIONS(4261), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_sizeof] = ACTIONS(4261), + [sym__dedent] = ACTIONS(4263), + [sym_string_start] = ACTIONS(4263), + }, + [2136] = { + [ts_builtin_sym_end] = ACTIONS(4195), + [sym_identifier] = ACTIONS(4193), + [anon_sym_import] = ACTIONS(4193), + [anon_sym_cimport] = ACTIONS(4193), + [anon_sym_from] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_STAR] = ACTIONS(4195), + [anon_sym_print] = ACTIONS(4193), + [anon_sym_assert] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_del] = ACTIONS(4193), + [anon_sym_raise] = ACTIONS(4193), + [anon_sym_pass] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(4193), + [anon_sym_async] = ACTIONS(4193), + [anon_sym_for] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_with] = ACTIONS(4193), + [anon_sym_def] = ACTIONS(4193), + [anon_sym_global] = ACTIONS(4193), + [anon_sym_nonlocal] = ACTIONS(4193), + [anon_sym_exec] = ACTIONS(4193), + [anon_sym_type] = ACTIONS(4193), + [anon_sym_class] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4195), + [anon_sym_not] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_TILDE] = ACTIONS(4195), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_lambda] = ACTIONS(4193), + [anon_sym_yield] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4195), + [anon_sym_None] = ACTIONS(4193), + [anon_sym_0x] = ACTIONS(4195), + [anon_sym_0X] = ACTIONS(4195), + [anon_sym_0o] = ACTIONS(4195), + [anon_sym_0O] = ACTIONS(4195), + [anon_sym_0b] = ACTIONS(4195), + [anon_sym_0B] = ACTIONS(4195), + [aux_sym_integer_token4] = ACTIONS(4193), + [sym_float] = ACTIONS(4195), + [anon_sym_await] = ACTIONS(4193), + [anon_sym_api] = ACTIONS(4193), + [sym_true] = ACTIONS(4193), + [sym_false] = ACTIONS(4193), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4193), + [anon_sym_include] = ACTIONS(4193), + [anon_sym_DEF] = ACTIONS(4193), + [anon_sym_IF] = ACTIONS(4193), + [anon_sym_cdef] = ACTIONS(4193), + [anon_sym_cpdef] = ACTIONS(4193), + [anon_sym_new] = ACTIONS(4193), + [anon_sym_ctypedef] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_packed] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_sizeof] = ACTIONS(4193), + [sym_string_start] = ACTIONS(4195), + }, + [2137] = { + [ts_builtin_sym_end] = ACTIONS(4127), + [sym_identifier] = ACTIONS(4125), + [anon_sym_import] = ACTIONS(4125), + [anon_sym_cimport] = ACTIONS(4125), + [anon_sym_from] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [anon_sym_print] = ACTIONS(4125), + [anon_sym_assert] = ACTIONS(4125), + [anon_sym_return] = ACTIONS(4125), + [anon_sym_del] = ACTIONS(4125), + [anon_sym_raise] = ACTIONS(4125), + [anon_sym_pass] = ACTIONS(4125), + [anon_sym_break] = ACTIONS(4125), + [anon_sym_continue] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4125), + [anon_sym_async] = ACTIONS(4125), + [anon_sym_for] = ACTIONS(4125), + [anon_sym_while] = ACTIONS(4125), + [anon_sym_try] = ACTIONS(4125), + [anon_sym_with] = ACTIONS(4125), + [anon_sym_def] = ACTIONS(4125), + [anon_sym_global] = ACTIONS(4125), + [anon_sym_nonlocal] = ACTIONS(4125), + [anon_sym_exec] = ACTIONS(4125), + [anon_sym_type] = ACTIONS(4125), + [anon_sym_class] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_not] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_TILDE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_lambda] = ACTIONS(4125), + [anon_sym_yield] = ACTIONS(4125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4127), + [anon_sym_None] = ACTIONS(4125), + [anon_sym_0x] = ACTIONS(4127), + [anon_sym_0X] = ACTIONS(4127), + [anon_sym_0o] = ACTIONS(4127), + [anon_sym_0O] = ACTIONS(4127), + [anon_sym_0b] = ACTIONS(4127), + [anon_sym_0B] = ACTIONS(4127), + [aux_sym_integer_token4] = ACTIONS(4125), + [sym_float] = ACTIONS(4127), + [anon_sym_await] = ACTIONS(4125), + [anon_sym_api] = ACTIONS(4125), + [sym_true] = ACTIONS(4125), + [sym_false] = ACTIONS(4125), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4125), + [anon_sym_include] = ACTIONS(4125), + [anon_sym_DEF] = ACTIONS(4125), + [anon_sym_IF] = ACTIONS(4125), + [anon_sym_cdef] = ACTIONS(4125), + [anon_sym_cpdef] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(4125), + [anon_sym_ctypedef] = ACTIONS(4125), + [anon_sym_public] = ACTIONS(4125), + [anon_sym_packed] = ACTIONS(4125), + [anon_sym_inline] = ACTIONS(4125), + [anon_sym_readonly] = ACTIONS(4125), + [anon_sym_sizeof] = ACTIONS(4125), + [sym_string_start] = ACTIONS(4127), + }, + [2138] = { + [sym_identifier] = ACTIONS(4265), + [anon_sym_import] = ACTIONS(4265), + [anon_sym_cimport] = ACTIONS(4265), + [anon_sym_from] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_print] = ACTIONS(4265), + [anon_sym_assert] = ACTIONS(4265), + [anon_sym_return] = ACTIONS(4265), + [anon_sym_del] = ACTIONS(4265), + [anon_sym_raise] = ACTIONS(4265), + [anon_sym_pass] = ACTIONS(4265), + [anon_sym_break] = ACTIONS(4265), + [anon_sym_continue] = ACTIONS(4265), + [anon_sym_if] = ACTIONS(4265), + [anon_sym_match] = ACTIONS(4265), + [anon_sym_async] = ACTIONS(4265), + [anon_sym_for] = ACTIONS(4265), + [anon_sym_while] = ACTIONS(4265), + [anon_sym_try] = ACTIONS(4265), + [anon_sym_with] = ACTIONS(4265), + [anon_sym_def] = ACTIONS(4265), + [anon_sym_global] = ACTIONS(4265), + [anon_sym_nonlocal] = ACTIONS(4265), + [anon_sym_exec] = ACTIONS(4265), + [anon_sym_type] = ACTIONS(4265), + [anon_sym_class] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_not] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_lambda] = ACTIONS(4265), + [anon_sym_yield] = ACTIONS(4265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [anon_sym_None] = ACTIONS(4265), + [anon_sym_0x] = ACTIONS(4267), + [anon_sym_0X] = ACTIONS(4267), + [anon_sym_0o] = ACTIONS(4267), + [anon_sym_0O] = ACTIONS(4267), + [anon_sym_0b] = ACTIONS(4267), + [anon_sym_0B] = ACTIONS(4267), + [aux_sym_integer_token4] = ACTIONS(4265), + [sym_float] = ACTIONS(4267), + [anon_sym_await] = ACTIONS(4265), + [anon_sym_api] = ACTIONS(4265), + [sym_true] = ACTIONS(4265), + [sym_false] = ACTIONS(4265), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4265), + [anon_sym_include] = ACTIONS(4265), + [anon_sym_DEF] = ACTIONS(4265), + [anon_sym_IF] = ACTIONS(4265), + [anon_sym_cdef] = ACTIONS(4265), + [anon_sym_cpdef] = ACTIONS(4265), + [anon_sym_new] = ACTIONS(4265), + [anon_sym_ctypedef] = ACTIONS(4265), + [anon_sym_public] = ACTIONS(4265), + [anon_sym_packed] = ACTIONS(4265), + [anon_sym_inline] = ACTIONS(4265), + [anon_sym_readonly] = ACTIONS(4265), + [anon_sym_sizeof] = ACTIONS(4265), + [sym__dedent] = ACTIONS(4267), + [sym_string_start] = ACTIONS(4267), + }, + [2139] = { + [ts_builtin_sym_end] = ACTIONS(4199), + [sym_identifier] = ACTIONS(4197), + [anon_sym_import] = ACTIONS(4197), + [anon_sym_cimport] = ACTIONS(4197), + [anon_sym_from] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_STAR] = ACTIONS(4199), + [anon_sym_print] = ACTIONS(4197), + [anon_sym_assert] = ACTIONS(4197), + [anon_sym_return] = ACTIONS(4197), + [anon_sym_del] = ACTIONS(4197), + [anon_sym_raise] = ACTIONS(4197), + [anon_sym_pass] = ACTIONS(4197), + [anon_sym_break] = ACTIONS(4197), + [anon_sym_continue] = ACTIONS(4197), + [anon_sym_if] = ACTIONS(4197), + [anon_sym_match] = ACTIONS(4197), + [anon_sym_async] = ACTIONS(4197), + [anon_sym_for] = ACTIONS(4197), + [anon_sym_while] = ACTIONS(4197), + [anon_sym_try] = ACTIONS(4197), + [anon_sym_with] = ACTIONS(4197), + [anon_sym_def] = ACTIONS(4197), + [anon_sym_global] = ACTIONS(4197), + [anon_sym_nonlocal] = ACTIONS(4197), + [anon_sym_exec] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4197), + [anon_sym_class] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4199), + [anon_sym_not] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_TILDE] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4197), + [anon_sym_yield] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4199), + [anon_sym_None] = ACTIONS(4197), + [anon_sym_0x] = ACTIONS(4199), + [anon_sym_0X] = ACTIONS(4199), + [anon_sym_0o] = ACTIONS(4199), + [anon_sym_0O] = ACTIONS(4199), + [anon_sym_0b] = ACTIONS(4199), + [anon_sym_0B] = ACTIONS(4199), + [aux_sym_integer_token4] = ACTIONS(4197), + [sym_float] = ACTIONS(4199), + [anon_sym_await] = ACTIONS(4197), + [anon_sym_api] = ACTIONS(4197), + [sym_true] = ACTIONS(4197), + [sym_false] = ACTIONS(4197), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4197), + [anon_sym_include] = ACTIONS(4197), + [anon_sym_DEF] = ACTIONS(4197), + [anon_sym_IF] = ACTIONS(4197), + [anon_sym_cdef] = ACTIONS(4197), + [anon_sym_cpdef] = ACTIONS(4197), + [anon_sym_new] = ACTIONS(4197), + [anon_sym_ctypedef] = ACTIONS(4197), + [anon_sym_public] = ACTIONS(4197), + [anon_sym_packed] = ACTIONS(4197), + [anon_sym_inline] = ACTIONS(4197), + [anon_sym_readonly] = ACTIONS(4197), + [anon_sym_sizeof] = ACTIONS(4197), + [sym_string_start] = ACTIONS(4199), + }, + [2140] = { + [ts_builtin_sym_end] = ACTIONS(4203), + [sym_identifier] = ACTIONS(4201), + [anon_sym_import] = ACTIONS(4201), + [anon_sym_cimport] = ACTIONS(4201), + [anon_sym_from] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4203), + [anon_sym_STAR] = ACTIONS(4203), + [anon_sym_print] = ACTIONS(4201), + [anon_sym_assert] = ACTIONS(4201), + [anon_sym_return] = ACTIONS(4201), + [anon_sym_del] = ACTIONS(4201), + [anon_sym_raise] = ACTIONS(4201), + [anon_sym_pass] = ACTIONS(4201), + [anon_sym_break] = ACTIONS(4201), + [anon_sym_continue] = ACTIONS(4201), + [anon_sym_if] = ACTIONS(4201), + [anon_sym_match] = ACTIONS(4201), + [anon_sym_async] = ACTIONS(4201), + [anon_sym_for] = ACTIONS(4201), + [anon_sym_while] = ACTIONS(4201), + [anon_sym_try] = ACTIONS(4201), + [anon_sym_with] = ACTIONS(4201), + [anon_sym_def] = ACTIONS(4201), + [anon_sym_global] = ACTIONS(4201), + [anon_sym_nonlocal] = ACTIONS(4201), + [anon_sym_exec] = ACTIONS(4201), + [anon_sym_type] = ACTIONS(4201), + [anon_sym_class] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_AT] = ACTIONS(4203), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_LBRACE] = ACTIONS(4203), + [anon_sym_PLUS] = ACTIONS(4203), + [anon_sym_not] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_TILDE] = ACTIONS(4203), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_lambda] = ACTIONS(4201), + [anon_sym_yield] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4203), + [anon_sym_None] = ACTIONS(4201), + [anon_sym_0x] = ACTIONS(4203), + [anon_sym_0X] = ACTIONS(4203), + [anon_sym_0o] = ACTIONS(4203), + [anon_sym_0O] = ACTIONS(4203), + [anon_sym_0b] = ACTIONS(4203), + [anon_sym_0B] = ACTIONS(4203), + [aux_sym_integer_token4] = ACTIONS(4201), + [sym_float] = ACTIONS(4203), + [anon_sym_await] = ACTIONS(4201), + [anon_sym_api] = ACTIONS(4201), + [sym_true] = ACTIONS(4201), + [sym_false] = ACTIONS(4201), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4201), + [anon_sym_include] = ACTIONS(4201), + [anon_sym_DEF] = ACTIONS(4201), + [anon_sym_IF] = ACTIONS(4201), + [anon_sym_cdef] = ACTIONS(4201), + [anon_sym_cpdef] = ACTIONS(4201), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_ctypedef] = ACTIONS(4201), + [anon_sym_public] = ACTIONS(4201), + [anon_sym_packed] = ACTIONS(4201), + [anon_sym_inline] = ACTIONS(4201), + [anon_sym_readonly] = ACTIONS(4201), + [anon_sym_sizeof] = ACTIONS(4201), + [sym_string_start] = ACTIONS(4203), + }, + [2141] = { + [ts_builtin_sym_end] = ACTIONS(4207), + [sym_identifier] = ACTIONS(4205), + [anon_sym_import] = ACTIONS(4205), + [anon_sym_cimport] = ACTIONS(4205), + [anon_sym_from] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_STAR] = ACTIONS(4207), + [anon_sym_print] = ACTIONS(4205), + [anon_sym_assert] = ACTIONS(4205), + [anon_sym_return] = ACTIONS(4205), + [anon_sym_del] = ACTIONS(4205), + [anon_sym_raise] = ACTIONS(4205), + [anon_sym_pass] = ACTIONS(4205), + [anon_sym_break] = ACTIONS(4205), + [anon_sym_continue] = ACTIONS(4205), + [anon_sym_if] = ACTIONS(4205), + [anon_sym_match] = ACTIONS(4205), + [anon_sym_async] = ACTIONS(4205), + [anon_sym_for] = ACTIONS(4205), + [anon_sym_while] = ACTIONS(4205), + [anon_sym_try] = ACTIONS(4205), + [anon_sym_with] = ACTIONS(4205), + [anon_sym_def] = ACTIONS(4205), + [anon_sym_global] = ACTIONS(4205), + [anon_sym_nonlocal] = ACTIONS(4205), + [anon_sym_exec] = ACTIONS(4205), + [anon_sym_type] = ACTIONS(4205), + [anon_sym_class] = ACTIONS(4205), + [anon_sym_LBRACK] = ACTIONS(4207), + [anon_sym_AT] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LBRACE] = ACTIONS(4207), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_not] = ACTIONS(4205), + [anon_sym_AMP] = ACTIONS(4207), + [anon_sym_TILDE] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(4207), + [anon_sym_lambda] = ACTIONS(4205), + [anon_sym_yield] = ACTIONS(4205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4207), + [anon_sym_None] = ACTIONS(4205), + [anon_sym_0x] = ACTIONS(4207), + [anon_sym_0X] = ACTIONS(4207), + [anon_sym_0o] = ACTIONS(4207), + [anon_sym_0O] = ACTIONS(4207), + [anon_sym_0b] = ACTIONS(4207), + [anon_sym_0B] = ACTIONS(4207), + [aux_sym_integer_token4] = ACTIONS(4205), + [sym_float] = ACTIONS(4207), + [anon_sym_await] = ACTIONS(4205), + [anon_sym_api] = ACTIONS(4205), + [sym_true] = ACTIONS(4205), + [sym_false] = ACTIONS(4205), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4205), + [anon_sym_include] = ACTIONS(4205), + [anon_sym_DEF] = ACTIONS(4205), + [anon_sym_IF] = ACTIONS(4205), + [anon_sym_cdef] = ACTIONS(4205), + [anon_sym_cpdef] = ACTIONS(4205), + [anon_sym_new] = ACTIONS(4205), + [anon_sym_ctypedef] = ACTIONS(4205), + [anon_sym_public] = ACTIONS(4205), + [anon_sym_packed] = ACTIONS(4205), + [anon_sym_inline] = ACTIONS(4205), + [anon_sym_readonly] = ACTIONS(4205), + [anon_sym_sizeof] = ACTIONS(4205), + [sym_string_start] = ACTIONS(4207), + }, + [2142] = { + [ts_builtin_sym_end] = ACTIONS(4211), + [sym_identifier] = ACTIONS(4209), + [anon_sym_import] = ACTIONS(4209), + [anon_sym_cimport] = ACTIONS(4209), + [anon_sym_from] = ACTIONS(4209), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_STAR] = ACTIONS(4211), + [anon_sym_print] = ACTIONS(4209), + [anon_sym_assert] = ACTIONS(4209), + [anon_sym_return] = ACTIONS(4209), + [anon_sym_del] = ACTIONS(4209), + [anon_sym_raise] = ACTIONS(4209), + [anon_sym_pass] = ACTIONS(4209), + [anon_sym_break] = ACTIONS(4209), + [anon_sym_continue] = ACTIONS(4209), + [anon_sym_if] = ACTIONS(4209), + [anon_sym_match] = ACTIONS(4209), + [anon_sym_async] = ACTIONS(4209), + [anon_sym_for] = ACTIONS(4209), + [anon_sym_while] = ACTIONS(4209), + [anon_sym_try] = ACTIONS(4209), + [anon_sym_with] = ACTIONS(4209), + [anon_sym_def] = ACTIONS(4209), + [anon_sym_global] = ACTIONS(4209), + [anon_sym_nonlocal] = ACTIONS(4209), + [anon_sym_exec] = ACTIONS(4209), + [anon_sym_type] = ACTIONS(4209), + [anon_sym_class] = ACTIONS(4209), + [anon_sym_LBRACK] = ACTIONS(4211), + [anon_sym_AT] = ACTIONS(4211), + [anon_sym_DASH] = ACTIONS(4211), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_PLUS] = ACTIONS(4211), + [anon_sym_not] = ACTIONS(4209), + [anon_sym_AMP] = ACTIONS(4211), + [anon_sym_TILDE] = ACTIONS(4211), + [anon_sym_LT] = ACTIONS(4211), + [anon_sym_lambda] = ACTIONS(4209), + [anon_sym_yield] = ACTIONS(4209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4211), + [anon_sym_None] = ACTIONS(4209), + [anon_sym_0x] = ACTIONS(4211), + [anon_sym_0X] = ACTIONS(4211), + [anon_sym_0o] = ACTIONS(4211), + [anon_sym_0O] = ACTIONS(4211), + [anon_sym_0b] = ACTIONS(4211), + [anon_sym_0B] = ACTIONS(4211), + [aux_sym_integer_token4] = ACTIONS(4209), + [sym_float] = ACTIONS(4211), + [anon_sym_await] = ACTIONS(4209), + [anon_sym_api] = ACTIONS(4209), + [sym_true] = ACTIONS(4209), + [sym_false] = ACTIONS(4209), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4209), + [anon_sym_include] = ACTIONS(4209), + [anon_sym_DEF] = ACTIONS(4209), + [anon_sym_IF] = ACTIONS(4209), + [anon_sym_cdef] = ACTIONS(4209), + [anon_sym_cpdef] = ACTIONS(4209), + [anon_sym_new] = ACTIONS(4209), + [anon_sym_ctypedef] = ACTIONS(4209), + [anon_sym_public] = ACTIONS(4209), + [anon_sym_packed] = ACTIONS(4209), + [anon_sym_inline] = ACTIONS(4209), + [anon_sym_readonly] = ACTIONS(4209), + [anon_sym_sizeof] = ACTIONS(4209), + [sym_string_start] = ACTIONS(4211), + }, + [2143] = { + [sym_identifier] = ACTIONS(3987), + [anon_sym_import] = ACTIONS(3987), + [anon_sym_cimport] = ACTIONS(3987), + [anon_sym_from] = ACTIONS(3987), + [anon_sym_LPAREN] = ACTIONS(3985), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_print] = ACTIONS(3987), + [anon_sym_assert] = ACTIONS(3987), + [anon_sym_return] = ACTIONS(3987), + [anon_sym_del] = ACTIONS(3987), + [anon_sym_raise] = ACTIONS(3987), + [anon_sym_pass] = ACTIONS(3987), + [anon_sym_break] = ACTIONS(3987), + [anon_sym_continue] = ACTIONS(3987), + [anon_sym_if] = ACTIONS(3987), + [anon_sym_match] = ACTIONS(3987), + [anon_sym_async] = ACTIONS(3987), + [anon_sym_for] = ACTIONS(3987), + [anon_sym_while] = ACTIONS(3987), + [anon_sym_try] = ACTIONS(3987), + [anon_sym_with] = ACTIONS(3987), + [anon_sym_def] = ACTIONS(3987), + [anon_sym_global] = ACTIONS(3987), + [anon_sym_nonlocal] = ACTIONS(3987), + [anon_sym_exec] = ACTIONS(3987), + [anon_sym_type] = ACTIONS(3987), + [anon_sym_class] = ACTIONS(3987), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_AT] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3985), + [anon_sym_not] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_TILDE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3985), + [anon_sym_lambda] = ACTIONS(3987), + [anon_sym_yield] = ACTIONS(3987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3985), + [anon_sym_None] = ACTIONS(3987), + [anon_sym_0x] = ACTIONS(3985), + [anon_sym_0X] = ACTIONS(3985), + [anon_sym_0o] = ACTIONS(3985), + [anon_sym_0O] = ACTIONS(3985), + [anon_sym_0b] = ACTIONS(3985), + [anon_sym_0B] = ACTIONS(3985), + [aux_sym_integer_token4] = ACTIONS(3987), + [sym_float] = ACTIONS(3985), + [anon_sym_await] = ACTIONS(3987), + [anon_sym_api] = ACTIONS(3987), + [sym_true] = ACTIONS(3987), + [sym_false] = ACTIONS(3987), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3987), + [anon_sym_include] = ACTIONS(3987), + [anon_sym_DEF] = ACTIONS(3987), + [anon_sym_IF] = ACTIONS(3987), + [anon_sym_cdef] = ACTIONS(3987), + [anon_sym_cpdef] = ACTIONS(3987), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_ctypedef] = ACTIONS(3987), + [anon_sym_public] = ACTIONS(3987), + [anon_sym_packed] = ACTIONS(3987), + [anon_sym_inline] = ACTIONS(3987), + [anon_sym_readonly] = ACTIONS(3987), + [anon_sym_sizeof] = ACTIONS(3987), + [sym__dedent] = ACTIONS(3985), + [sym_string_start] = ACTIONS(3985), + }, + [2144] = { + [sym_identifier] = ACTIONS(3991), + [anon_sym_import] = ACTIONS(3991), + [anon_sym_cimport] = ACTIONS(3991), + [anon_sym_from] = ACTIONS(3991), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_print] = ACTIONS(3991), + [anon_sym_assert] = ACTIONS(3991), + [anon_sym_return] = ACTIONS(3991), + [anon_sym_del] = ACTIONS(3991), + [anon_sym_raise] = ACTIONS(3991), + [anon_sym_pass] = ACTIONS(3991), + [anon_sym_break] = ACTIONS(3991), + [anon_sym_continue] = ACTIONS(3991), + [anon_sym_if] = ACTIONS(3991), + [anon_sym_match] = ACTIONS(3991), + [anon_sym_async] = ACTIONS(3991), + [anon_sym_for] = ACTIONS(3991), + [anon_sym_while] = ACTIONS(3991), + [anon_sym_try] = ACTIONS(3991), + [anon_sym_with] = ACTIONS(3991), + [anon_sym_def] = ACTIONS(3991), + [anon_sym_global] = ACTIONS(3991), + [anon_sym_nonlocal] = ACTIONS(3991), + [anon_sym_exec] = ACTIONS(3991), + [anon_sym_type] = ACTIONS(3991), + [anon_sym_class] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_AT] = ACTIONS(3989), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3989), + [anon_sym_not] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_TILDE] = ACTIONS(3989), + [anon_sym_LT] = ACTIONS(3989), + [anon_sym_lambda] = ACTIONS(3991), + [anon_sym_yield] = ACTIONS(3991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3989), + [anon_sym_None] = ACTIONS(3991), + [anon_sym_0x] = ACTIONS(3989), + [anon_sym_0X] = ACTIONS(3989), + [anon_sym_0o] = ACTIONS(3989), + [anon_sym_0O] = ACTIONS(3989), + [anon_sym_0b] = ACTIONS(3989), + [anon_sym_0B] = ACTIONS(3989), + [aux_sym_integer_token4] = ACTIONS(3991), + [sym_float] = ACTIONS(3989), + [anon_sym_await] = ACTIONS(3991), + [anon_sym_api] = ACTIONS(3991), + [sym_true] = ACTIONS(3991), + [sym_false] = ACTIONS(3991), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3991), + [anon_sym_include] = ACTIONS(3991), + [anon_sym_DEF] = ACTIONS(3991), + [anon_sym_IF] = ACTIONS(3991), + [anon_sym_cdef] = ACTIONS(3991), + [anon_sym_cpdef] = ACTIONS(3991), + [anon_sym_new] = ACTIONS(3991), + [anon_sym_ctypedef] = ACTIONS(3991), + [anon_sym_public] = ACTIONS(3991), + [anon_sym_packed] = ACTIONS(3991), + [anon_sym_inline] = ACTIONS(3991), + [anon_sym_readonly] = ACTIONS(3991), + [anon_sym_sizeof] = ACTIONS(3991), + [sym__dedent] = ACTIONS(3989), + [sym_string_start] = ACTIONS(3989), + }, + [2145] = { + [sym_identifier] = ACTIONS(3999), + [anon_sym_import] = ACTIONS(3999), + [anon_sym_cimport] = ACTIONS(3999), + [anon_sym_from] = ACTIONS(3999), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_print] = ACTIONS(3999), + [anon_sym_assert] = ACTIONS(3999), + [anon_sym_return] = ACTIONS(3999), + [anon_sym_del] = ACTIONS(3999), + [anon_sym_raise] = ACTIONS(3999), + [anon_sym_pass] = ACTIONS(3999), + [anon_sym_break] = ACTIONS(3999), + [anon_sym_continue] = ACTIONS(3999), + [anon_sym_if] = ACTIONS(3999), + [anon_sym_match] = ACTIONS(3999), + [anon_sym_async] = ACTIONS(3999), + [anon_sym_for] = ACTIONS(3999), + [anon_sym_while] = ACTIONS(3999), + [anon_sym_try] = ACTIONS(3999), + [anon_sym_with] = ACTIONS(3999), + [anon_sym_def] = ACTIONS(3999), + [anon_sym_global] = ACTIONS(3999), + [anon_sym_nonlocal] = ACTIONS(3999), + [anon_sym_exec] = ACTIONS(3999), + [anon_sym_type] = ACTIONS(3999), + [anon_sym_class] = ACTIONS(3999), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3997), + [anon_sym_not] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_TILDE] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3997), + [anon_sym_lambda] = ACTIONS(3999), + [anon_sym_yield] = ACTIONS(3999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + [anon_sym_None] = ACTIONS(3999), + [anon_sym_0x] = ACTIONS(3997), + [anon_sym_0X] = ACTIONS(3997), + [anon_sym_0o] = ACTIONS(3997), + [anon_sym_0O] = ACTIONS(3997), + [anon_sym_0b] = ACTIONS(3997), + [anon_sym_0B] = ACTIONS(3997), + [aux_sym_integer_token4] = ACTIONS(3999), + [sym_float] = ACTIONS(3997), + [anon_sym_await] = ACTIONS(3999), + [anon_sym_api] = ACTIONS(3999), + [sym_true] = ACTIONS(3999), + [sym_false] = ACTIONS(3999), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3999), + [anon_sym_include] = ACTIONS(3999), + [anon_sym_DEF] = ACTIONS(3999), + [anon_sym_IF] = ACTIONS(3999), + [anon_sym_cdef] = ACTIONS(3999), + [anon_sym_cpdef] = ACTIONS(3999), + [anon_sym_new] = ACTIONS(3999), + [anon_sym_ctypedef] = ACTIONS(3999), + [anon_sym_public] = ACTIONS(3999), + [anon_sym_packed] = ACTIONS(3999), + [anon_sym_inline] = ACTIONS(3999), + [anon_sym_readonly] = ACTIONS(3999), + [anon_sym_sizeof] = ACTIONS(3999), + [sym__dedent] = ACTIONS(3997), + [sym_string_start] = ACTIONS(3997), + }, + [2146] = { + [sym_identifier] = ACTIONS(4003), + [anon_sym_import] = ACTIONS(4003), + [anon_sym_cimport] = ACTIONS(4003), + [anon_sym_from] = ACTIONS(4003), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_print] = ACTIONS(4003), + [anon_sym_assert] = ACTIONS(4003), + [anon_sym_return] = ACTIONS(4003), + [anon_sym_del] = ACTIONS(4003), + [anon_sym_raise] = ACTIONS(4003), + [anon_sym_pass] = ACTIONS(4003), + [anon_sym_break] = ACTIONS(4003), + [anon_sym_continue] = ACTIONS(4003), + [anon_sym_if] = ACTIONS(4003), + [anon_sym_match] = ACTIONS(4003), + [anon_sym_async] = ACTIONS(4003), + [anon_sym_for] = ACTIONS(4003), + [anon_sym_while] = ACTIONS(4003), + [anon_sym_try] = ACTIONS(4003), + [anon_sym_with] = ACTIONS(4003), + [anon_sym_def] = ACTIONS(4003), + [anon_sym_global] = ACTIONS(4003), + [anon_sym_nonlocal] = ACTIONS(4003), + [anon_sym_exec] = ACTIONS(4003), + [anon_sym_type] = ACTIONS(4003), + [anon_sym_class] = ACTIONS(4003), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_AT] = ACTIONS(4001), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4001), + [anon_sym_not] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_TILDE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4001), + [anon_sym_lambda] = ACTIONS(4003), + [anon_sym_yield] = ACTIONS(4003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4001), + [anon_sym_None] = ACTIONS(4003), + [anon_sym_0x] = ACTIONS(4001), + [anon_sym_0X] = ACTIONS(4001), + [anon_sym_0o] = ACTIONS(4001), + [anon_sym_0O] = ACTIONS(4001), + [anon_sym_0b] = ACTIONS(4001), + [anon_sym_0B] = ACTIONS(4001), + [aux_sym_integer_token4] = ACTIONS(4003), + [sym_float] = ACTIONS(4001), + [anon_sym_await] = ACTIONS(4003), + [anon_sym_api] = ACTIONS(4003), + [sym_true] = ACTIONS(4003), + [sym_false] = ACTIONS(4003), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4003), + [anon_sym_include] = ACTIONS(4003), + [anon_sym_DEF] = ACTIONS(4003), + [anon_sym_IF] = ACTIONS(4003), + [anon_sym_cdef] = ACTIONS(4003), + [anon_sym_cpdef] = ACTIONS(4003), + [anon_sym_new] = ACTIONS(4003), + [anon_sym_ctypedef] = ACTIONS(4003), + [anon_sym_public] = ACTIONS(4003), + [anon_sym_packed] = ACTIONS(4003), + [anon_sym_inline] = ACTIONS(4003), + [anon_sym_readonly] = ACTIONS(4003), + [anon_sym_sizeof] = ACTIONS(4003), + [sym__dedent] = ACTIONS(4001), + [sym_string_start] = ACTIONS(4001), + }, + [2147] = { + [sym_identifier] = ACTIONS(4011), + [anon_sym_import] = ACTIONS(4011), + [anon_sym_cimport] = ACTIONS(4011), + [anon_sym_from] = ACTIONS(4011), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4009), + [anon_sym_print] = ACTIONS(4011), + [anon_sym_assert] = ACTIONS(4011), + [anon_sym_return] = ACTIONS(4011), + [anon_sym_del] = ACTIONS(4011), + [anon_sym_raise] = ACTIONS(4011), + [anon_sym_pass] = ACTIONS(4011), + [anon_sym_break] = ACTIONS(4011), + [anon_sym_continue] = ACTIONS(4011), + [anon_sym_if] = ACTIONS(4011), + [anon_sym_match] = ACTIONS(4011), + [anon_sym_async] = ACTIONS(4011), + [anon_sym_for] = ACTIONS(4011), + [anon_sym_while] = ACTIONS(4011), + [anon_sym_try] = ACTIONS(4011), + [anon_sym_with] = ACTIONS(4011), + [anon_sym_def] = ACTIONS(4011), + [anon_sym_global] = ACTIONS(4011), + [anon_sym_nonlocal] = ACTIONS(4011), + [anon_sym_exec] = ACTIONS(4011), + [anon_sym_type] = ACTIONS(4011), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_not] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_TILDE] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_lambda] = ACTIONS(4011), + [anon_sym_yield] = ACTIONS(4011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4009), + [anon_sym_None] = ACTIONS(4011), + [anon_sym_0x] = ACTIONS(4009), + [anon_sym_0X] = ACTIONS(4009), + [anon_sym_0o] = ACTIONS(4009), + [anon_sym_0O] = ACTIONS(4009), + [anon_sym_0b] = ACTIONS(4009), + [anon_sym_0B] = ACTIONS(4009), + [aux_sym_integer_token4] = ACTIONS(4011), + [sym_float] = ACTIONS(4009), + [anon_sym_await] = ACTIONS(4011), + [anon_sym_api] = ACTIONS(4011), + [sym_true] = ACTIONS(4011), + [sym_false] = ACTIONS(4011), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4011), + [anon_sym_include] = ACTIONS(4011), + [anon_sym_DEF] = ACTIONS(4011), + [anon_sym_IF] = ACTIONS(4011), + [anon_sym_cdef] = ACTIONS(4011), + [anon_sym_cpdef] = ACTIONS(4011), + [anon_sym_new] = ACTIONS(4011), + [anon_sym_ctypedef] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_packed] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_readonly] = ACTIONS(4011), + [anon_sym_sizeof] = ACTIONS(4011), + [sym__dedent] = ACTIONS(4009), + [sym_string_start] = ACTIONS(4009), + }, + [2148] = { + [sym_identifier] = ACTIONS(4019), + [anon_sym_import] = ACTIONS(4019), + [anon_sym_cimport] = ACTIONS(4019), + [anon_sym_from] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_print] = ACTIONS(4019), + [anon_sym_assert] = ACTIONS(4019), + [anon_sym_return] = ACTIONS(4019), + [anon_sym_del] = ACTIONS(4019), + [anon_sym_raise] = ACTIONS(4019), + [anon_sym_pass] = ACTIONS(4019), + [anon_sym_break] = ACTIONS(4019), + [anon_sym_continue] = ACTIONS(4019), + [anon_sym_if] = ACTIONS(4019), + [anon_sym_match] = ACTIONS(4019), + [anon_sym_async] = ACTIONS(4019), + [anon_sym_for] = ACTIONS(4019), + [anon_sym_while] = ACTIONS(4019), + [anon_sym_try] = ACTIONS(4019), + [anon_sym_with] = ACTIONS(4019), + [anon_sym_def] = ACTIONS(4019), + [anon_sym_global] = ACTIONS(4019), + [anon_sym_nonlocal] = ACTIONS(4019), + [anon_sym_exec] = ACTIONS(4019), + [anon_sym_type] = ACTIONS(4019), + [anon_sym_class] = ACTIONS(4019), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_AT] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_not] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_TILDE] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_lambda] = ACTIONS(4019), + [anon_sym_yield] = ACTIONS(4019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4017), + [anon_sym_None] = ACTIONS(4019), + [anon_sym_0x] = ACTIONS(4017), + [anon_sym_0X] = ACTIONS(4017), + [anon_sym_0o] = ACTIONS(4017), + [anon_sym_0O] = ACTIONS(4017), + [anon_sym_0b] = ACTIONS(4017), + [anon_sym_0B] = ACTIONS(4017), + [aux_sym_integer_token4] = ACTIONS(4019), + [sym_float] = ACTIONS(4017), + [anon_sym_await] = ACTIONS(4019), + [anon_sym_api] = ACTIONS(4019), + [sym_true] = ACTIONS(4019), + [sym_false] = ACTIONS(4019), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4019), + [anon_sym_include] = ACTIONS(4019), + [anon_sym_DEF] = ACTIONS(4019), + [anon_sym_IF] = ACTIONS(4019), + [anon_sym_cdef] = ACTIONS(4019), + [anon_sym_cpdef] = ACTIONS(4019), + [anon_sym_new] = ACTIONS(4019), + [anon_sym_ctypedef] = ACTIONS(4019), + [anon_sym_public] = ACTIONS(4019), + [anon_sym_packed] = ACTIONS(4019), + [anon_sym_inline] = ACTIONS(4019), + [anon_sym_readonly] = ACTIONS(4019), + [anon_sym_sizeof] = ACTIONS(4019), + [sym__dedent] = ACTIONS(4017), + [sym_string_start] = ACTIONS(4017), + }, + [2149] = { + [ts_builtin_sym_end] = ACTIONS(4215), + [sym_identifier] = ACTIONS(4213), + [anon_sym_import] = ACTIONS(4213), + [anon_sym_cimport] = ACTIONS(4213), + [anon_sym_from] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_print] = ACTIONS(4213), + [anon_sym_assert] = ACTIONS(4213), + [anon_sym_return] = ACTIONS(4213), + [anon_sym_del] = ACTIONS(4213), + [anon_sym_raise] = ACTIONS(4213), + [anon_sym_pass] = ACTIONS(4213), + [anon_sym_break] = ACTIONS(4213), + [anon_sym_continue] = ACTIONS(4213), + [anon_sym_if] = ACTIONS(4213), + [anon_sym_match] = ACTIONS(4213), + [anon_sym_async] = ACTIONS(4213), + [anon_sym_for] = ACTIONS(4213), + [anon_sym_while] = ACTIONS(4213), + [anon_sym_try] = ACTIONS(4213), + [anon_sym_with] = ACTIONS(4213), + [anon_sym_def] = ACTIONS(4213), + [anon_sym_global] = ACTIONS(4213), + [anon_sym_nonlocal] = ACTIONS(4213), + [anon_sym_exec] = ACTIONS(4213), + [anon_sym_type] = ACTIONS(4213), + [anon_sym_class] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4215), + [anon_sym_AT] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_LBRACE] = ACTIONS(4215), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_not] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_TILDE] = ACTIONS(4215), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_lambda] = ACTIONS(4213), + [anon_sym_yield] = ACTIONS(4213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4215), + [anon_sym_None] = ACTIONS(4213), + [anon_sym_0x] = ACTIONS(4215), + [anon_sym_0X] = ACTIONS(4215), + [anon_sym_0o] = ACTIONS(4215), + [anon_sym_0O] = ACTIONS(4215), + [anon_sym_0b] = ACTIONS(4215), + [anon_sym_0B] = ACTIONS(4215), + [aux_sym_integer_token4] = ACTIONS(4213), + [sym_float] = ACTIONS(4215), + [anon_sym_await] = ACTIONS(4213), + [anon_sym_api] = ACTIONS(4213), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4213), + [anon_sym_include] = ACTIONS(4213), + [anon_sym_DEF] = ACTIONS(4213), + [anon_sym_IF] = ACTIONS(4213), + [anon_sym_cdef] = ACTIONS(4213), + [anon_sym_cpdef] = ACTIONS(4213), + [anon_sym_new] = ACTIONS(4213), + [anon_sym_ctypedef] = ACTIONS(4213), + [anon_sym_public] = ACTIONS(4213), + [anon_sym_packed] = ACTIONS(4213), + [anon_sym_inline] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4213), + [anon_sym_sizeof] = ACTIONS(4213), + [sym_string_start] = ACTIONS(4215), + }, + [2150] = { + [ts_builtin_sym_end] = ACTIONS(4219), + [sym_identifier] = ACTIONS(4217), + [anon_sym_import] = ACTIONS(4217), + [anon_sym_cimport] = ACTIONS(4217), + [anon_sym_from] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4219), + [anon_sym_print] = ACTIONS(4217), + [anon_sym_assert] = ACTIONS(4217), + [anon_sym_return] = ACTIONS(4217), + [anon_sym_del] = ACTIONS(4217), + [anon_sym_raise] = ACTIONS(4217), + [anon_sym_pass] = ACTIONS(4217), + [anon_sym_break] = ACTIONS(4217), + [anon_sym_continue] = ACTIONS(4217), + [anon_sym_if] = ACTIONS(4217), + [anon_sym_match] = ACTIONS(4217), + [anon_sym_async] = ACTIONS(4217), + [anon_sym_for] = ACTIONS(4217), + [anon_sym_while] = ACTIONS(4217), + [anon_sym_try] = ACTIONS(4217), + [anon_sym_with] = ACTIONS(4217), + [anon_sym_def] = ACTIONS(4217), + [anon_sym_global] = ACTIONS(4217), + [anon_sym_nonlocal] = ACTIONS(4217), + [anon_sym_exec] = ACTIONS(4217), + [anon_sym_type] = ACTIONS(4217), + [anon_sym_class] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_AT] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4217), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_lambda] = ACTIONS(4217), + [anon_sym_yield] = ACTIONS(4217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [anon_sym_None] = ACTIONS(4217), + [anon_sym_0x] = ACTIONS(4219), + [anon_sym_0X] = ACTIONS(4219), + [anon_sym_0o] = ACTIONS(4219), + [anon_sym_0O] = ACTIONS(4219), + [anon_sym_0b] = ACTIONS(4219), + [anon_sym_0B] = ACTIONS(4219), + [aux_sym_integer_token4] = ACTIONS(4217), + [sym_float] = ACTIONS(4219), + [anon_sym_await] = ACTIONS(4217), + [anon_sym_api] = ACTIONS(4217), + [sym_true] = ACTIONS(4217), + [sym_false] = ACTIONS(4217), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4217), + [anon_sym_include] = ACTIONS(4217), + [anon_sym_DEF] = ACTIONS(4217), + [anon_sym_IF] = ACTIONS(4217), + [anon_sym_cdef] = ACTIONS(4217), + [anon_sym_cpdef] = ACTIONS(4217), + [anon_sym_new] = ACTIONS(4217), + [anon_sym_ctypedef] = ACTIONS(4217), + [anon_sym_public] = ACTIONS(4217), + [anon_sym_packed] = ACTIONS(4217), + [anon_sym_inline] = ACTIONS(4217), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_sizeof] = ACTIONS(4217), + [sym_string_start] = ACTIONS(4219), + }, + [2151] = { + [ts_builtin_sym_end] = ACTIONS(4269), + [sym_identifier] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_cimport] = ACTIONS(4271), + [anon_sym_from] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_print] = ACTIONS(4271), + [anon_sym_assert] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_del] = ACTIONS(4271), + [anon_sym_raise] = ACTIONS(4271), + [anon_sym_pass] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_match] = ACTIONS(4271), + [anon_sym_async] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_with] = ACTIONS(4271), + [anon_sym_def] = ACTIONS(4271), + [anon_sym_global] = ACTIONS(4271), + [anon_sym_nonlocal] = ACTIONS(4271), + [anon_sym_exec] = ACTIONS(4271), + [anon_sym_type] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_TILDE] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_lambda] = ACTIONS(4271), + [anon_sym_yield] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4269), + [anon_sym_None] = ACTIONS(4271), + [anon_sym_0x] = ACTIONS(4269), + [anon_sym_0X] = ACTIONS(4269), + [anon_sym_0o] = ACTIONS(4269), + [anon_sym_0O] = ACTIONS(4269), + [anon_sym_0b] = ACTIONS(4269), + [anon_sym_0B] = ACTIONS(4269), + [aux_sym_integer_token4] = ACTIONS(4271), + [sym_float] = ACTIONS(4269), + [anon_sym_await] = ACTIONS(4271), + [anon_sym_api] = ACTIONS(4271), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4271), + [anon_sym_include] = ACTIONS(4271), + [anon_sym_DEF] = ACTIONS(4271), + [anon_sym_IF] = ACTIONS(4271), + [anon_sym_cdef] = ACTIONS(4271), + [anon_sym_cpdef] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_ctypedef] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_packed] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym_readonly] = ACTIONS(4271), + [anon_sym_sizeof] = ACTIONS(4271), + [sym_string_start] = ACTIONS(4269), + }, + [2152] = { + [ts_builtin_sym_end] = ACTIONS(4273), + [sym_identifier] = ACTIONS(4275), + [anon_sym_import] = ACTIONS(4275), + [anon_sym_cimport] = ACTIONS(4275), + [anon_sym_from] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_print] = ACTIONS(4275), + [anon_sym_assert] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_del] = ACTIONS(4275), + [anon_sym_raise] = ACTIONS(4275), + [anon_sym_pass] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_match] = ACTIONS(4275), + [anon_sym_async] = ACTIONS(4275), + [anon_sym_for] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_with] = ACTIONS(4275), + [anon_sym_def] = ACTIONS(4275), + [anon_sym_global] = ACTIONS(4275), + [anon_sym_nonlocal] = ACTIONS(4275), + [anon_sym_exec] = ACTIONS(4275), + [anon_sym_type] = ACTIONS(4275), + [anon_sym_class] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_AT] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4273), + [anon_sym_not] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_lambda] = ACTIONS(4275), + [anon_sym_yield] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4273), + [anon_sym_None] = ACTIONS(4275), + [anon_sym_0x] = ACTIONS(4273), + [anon_sym_0X] = ACTIONS(4273), + [anon_sym_0o] = ACTIONS(4273), + [anon_sym_0O] = ACTIONS(4273), + [anon_sym_0b] = ACTIONS(4273), + [anon_sym_0B] = ACTIONS(4273), + [aux_sym_integer_token4] = ACTIONS(4275), + [sym_float] = ACTIONS(4273), + [anon_sym_await] = ACTIONS(4275), + [anon_sym_api] = ACTIONS(4275), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4275), + [anon_sym_include] = ACTIONS(4275), + [anon_sym_DEF] = ACTIONS(4275), + [anon_sym_IF] = ACTIONS(4275), + [anon_sym_cdef] = ACTIONS(4275), + [anon_sym_cpdef] = ACTIONS(4275), + [anon_sym_new] = ACTIONS(4275), + [anon_sym_ctypedef] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_packed] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_readonly] = ACTIONS(4275), + [anon_sym_sizeof] = ACTIONS(4275), + [sym_string_start] = ACTIONS(4273), + }, + [2153] = { + [sym_identifier] = ACTIONS(4023), + [anon_sym_import] = ACTIONS(4023), + [anon_sym_cimport] = ACTIONS(4023), + [anon_sym_from] = ACTIONS(4023), + [anon_sym_LPAREN] = ACTIONS(4021), + [anon_sym_STAR] = ACTIONS(4021), + [anon_sym_print] = ACTIONS(4023), + [anon_sym_assert] = ACTIONS(4023), + [anon_sym_return] = ACTIONS(4023), + [anon_sym_del] = ACTIONS(4023), + [anon_sym_raise] = ACTIONS(4023), + [anon_sym_pass] = ACTIONS(4023), + [anon_sym_break] = ACTIONS(4023), + [anon_sym_continue] = ACTIONS(4023), + [anon_sym_if] = ACTIONS(4023), + [anon_sym_match] = ACTIONS(4023), + [anon_sym_async] = ACTIONS(4023), + [anon_sym_for] = ACTIONS(4023), + [anon_sym_while] = ACTIONS(4023), + [anon_sym_try] = ACTIONS(4023), + [anon_sym_with] = ACTIONS(4023), + [anon_sym_def] = ACTIONS(4023), + [anon_sym_global] = ACTIONS(4023), + [anon_sym_nonlocal] = ACTIONS(4023), + [anon_sym_exec] = ACTIONS(4023), + [anon_sym_type] = ACTIONS(4023), + [anon_sym_class] = ACTIONS(4023), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_AT] = ACTIONS(4021), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4021), + [anon_sym_PLUS] = ACTIONS(4021), + [anon_sym_not] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_TILDE] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4021), + [anon_sym_lambda] = ACTIONS(4023), + [anon_sym_yield] = ACTIONS(4023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4021), + [anon_sym_None] = ACTIONS(4023), + [anon_sym_0x] = ACTIONS(4021), + [anon_sym_0X] = ACTIONS(4021), + [anon_sym_0o] = ACTIONS(4021), + [anon_sym_0O] = ACTIONS(4021), + [anon_sym_0b] = ACTIONS(4021), + [anon_sym_0B] = ACTIONS(4021), + [aux_sym_integer_token4] = ACTIONS(4023), + [sym_float] = ACTIONS(4021), + [anon_sym_await] = ACTIONS(4023), + [anon_sym_api] = ACTIONS(4023), + [sym_true] = ACTIONS(4023), + [sym_false] = ACTIONS(4023), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4023), + [anon_sym_include] = ACTIONS(4023), + [anon_sym_DEF] = ACTIONS(4023), + [anon_sym_IF] = ACTIONS(4023), + [anon_sym_cdef] = ACTIONS(4023), + [anon_sym_cpdef] = ACTIONS(4023), + [anon_sym_new] = ACTIONS(4023), + [anon_sym_ctypedef] = ACTIONS(4023), + [anon_sym_public] = ACTIONS(4023), + [anon_sym_packed] = ACTIONS(4023), + [anon_sym_inline] = ACTIONS(4023), + [anon_sym_readonly] = ACTIONS(4023), + [anon_sym_sizeof] = ACTIONS(4023), + [sym__dedent] = ACTIONS(4021), + [sym_string_start] = ACTIONS(4021), + }, + [2154] = { + [sym_identifier] = ACTIONS(4027), + [anon_sym_import] = ACTIONS(4027), + [anon_sym_cimport] = ACTIONS(4027), + [anon_sym_from] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4025), + [anon_sym_print] = ACTIONS(4027), + [anon_sym_assert] = ACTIONS(4027), + [anon_sym_return] = ACTIONS(4027), + [anon_sym_del] = ACTIONS(4027), + [anon_sym_raise] = ACTIONS(4027), + [anon_sym_pass] = ACTIONS(4027), + [anon_sym_break] = ACTIONS(4027), + [anon_sym_continue] = ACTIONS(4027), + [anon_sym_if] = ACTIONS(4027), + [anon_sym_match] = ACTIONS(4027), + [anon_sym_async] = ACTIONS(4027), + [anon_sym_for] = ACTIONS(4027), + [anon_sym_while] = ACTIONS(4027), + [anon_sym_try] = ACTIONS(4027), + [anon_sym_with] = ACTIONS(4027), + [anon_sym_def] = ACTIONS(4027), + [anon_sym_global] = ACTIONS(4027), + [anon_sym_nonlocal] = ACTIONS(4027), + [anon_sym_exec] = ACTIONS(4027), + [anon_sym_type] = ACTIONS(4027), + [anon_sym_class] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_AT] = ACTIONS(4025), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_not] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_TILDE] = ACTIONS(4025), + [anon_sym_LT] = ACTIONS(4025), + [anon_sym_lambda] = ACTIONS(4027), + [anon_sym_yield] = ACTIONS(4027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4025), + [anon_sym_None] = ACTIONS(4027), + [anon_sym_0x] = ACTIONS(4025), + [anon_sym_0X] = ACTIONS(4025), + [anon_sym_0o] = ACTIONS(4025), + [anon_sym_0O] = ACTIONS(4025), + [anon_sym_0b] = ACTIONS(4025), + [anon_sym_0B] = ACTIONS(4025), + [aux_sym_integer_token4] = ACTIONS(4027), + [sym_float] = ACTIONS(4025), + [anon_sym_await] = ACTIONS(4027), + [anon_sym_api] = ACTIONS(4027), + [sym_true] = ACTIONS(4027), + [sym_false] = ACTIONS(4027), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4027), + [anon_sym_include] = ACTIONS(4027), + [anon_sym_DEF] = ACTIONS(4027), + [anon_sym_IF] = ACTIONS(4027), + [anon_sym_cdef] = ACTIONS(4027), + [anon_sym_cpdef] = ACTIONS(4027), + [anon_sym_new] = ACTIONS(4027), + [anon_sym_ctypedef] = ACTIONS(4027), + [anon_sym_public] = ACTIONS(4027), + [anon_sym_packed] = ACTIONS(4027), + [anon_sym_inline] = ACTIONS(4027), + [anon_sym_readonly] = ACTIONS(4027), + [anon_sym_sizeof] = ACTIONS(4027), + [sym__dedent] = ACTIONS(4025), + [sym_string_start] = ACTIONS(4025), + }, + [2155] = { + [sym_identifier] = ACTIONS(4031), + [anon_sym_import] = ACTIONS(4031), + [anon_sym_cimport] = ACTIONS(4031), + [anon_sym_from] = ACTIONS(4031), + [anon_sym_LPAREN] = ACTIONS(4029), + [anon_sym_STAR] = ACTIONS(4029), + [anon_sym_print] = ACTIONS(4031), + [anon_sym_assert] = ACTIONS(4031), + [anon_sym_return] = ACTIONS(4031), + [anon_sym_del] = ACTIONS(4031), + [anon_sym_raise] = ACTIONS(4031), + [anon_sym_pass] = ACTIONS(4031), + [anon_sym_break] = ACTIONS(4031), + [anon_sym_continue] = ACTIONS(4031), + [anon_sym_if] = ACTIONS(4031), + [anon_sym_match] = ACTIONS(4031), + [anon_sym_async] = ACTIONS(4031), + [anon_sym_for] = ACTIONS(4031), + [anon_sym_while] = ACTIONS(4031), + [anon_sym_try] = ACTIONS(4031), + [anon_sym_with] = ACTIONS(4031), + [anon_sym_def] = ACTIONS(4031), + [anon_sym_global] = ACTIONS(4031), + [anon_sym_nonlocal] = ACTIONS(4031), + [anon_sym_exec] = ACTIONS(4031), + [anon_sym_type] = ACTIONS(4031), + [anon_sym_class] = ACTIONS(4031), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_AT] = ACTIONS(4029), + [anon_sym_DASH] = ACTIONS(4029), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_PLUS] = ACTIONS(4029), + [anon_sym_not] = ACTIONS(4031), + [anon_sym_AMP] = ACTIONS(4029), + [anon_sym_TILDE] = ACTIONS(4029), + [anon_sym_LT] = ACTIONS(4029), + [anon_sym_lambda] = ACTIONS(4031), + [anon_sym_yield] = ACTIONS(4031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4029), + [anon_sym_None] = ACTIONS(4031), + [anon_sym_0x] = ACTIONS(4029), + [anon_sym_0X] = ACTIONS(4029), + [anon_sym_0o] = ACTIONS(4029), + [anon_sym_0O] = ACTIONS(4029), + [anon_sym_0b] = ACTIONS(4029), + [anon_sym_0B] = ACTIONS(4029), + [aux_sym_integer_token4] = ACTIONS(4031), + [sym_float] = ACTIONS(4029), + [anon_sym_await] = ACTIONS(4031), + [anon_sym_api] = ACTIONS(4031), + [sym_true] = ACTIONS(4031), + [sym_false] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4031), + [anon_sym_include] = ACTIONS(4031), + [anon_sym_DEF] = ACTIONS(4031), + [anon_sym_IF] = ACTIONS(4031), + [anon_sym_cdef] = ACTIONS(4031), + [anon_sym_cpdef] = ACTIONS(4031), + [anon_sym_new] = ACTIONS(4031), + [anon_sym_ctypedef] = ACTIONS(4031), + [anon_sym_public] = ACTIONS(4031), + [anon_sym_packed] = ACTIONS(4031), + [anon_sym_inline] = ACTIONS(4031), + [anon_sym_readonly] = ACTIONS(4031), + [anon_sym_sizeof] = ACTIONS(4031), + [sym__dedent] = ACTIONS(4029), + [sym_string_start] = ACTIONS(4029), + }, + [2156] = { + [ts_builtin_sym_end] = ACTIONS(4277), + [sym_identifier] = ACTIONS(4279), + [anon_sym_import] = ACTIONS(4279), + [anon_sym_cimport] = ACTIONS(4279), + [anon_sym_from] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_STAR] = ACTIONS(4277), + [anon_sym_print] = ACTIONS(4279), + [anon_sym_assert] = ACTIONS(4279), + [anon_sym_return] = ACTIONS(4279), + [anon_sym_del] = ACTIONS(4279), + [anon_sym_raise] = ACTIONS(4279), + [anon_sym_pass] = ACTIONS(4279), + [anon_sym_break] = ACTIONS(4279), + [anon_sym_continue] = ACTIONS(4279), + [anon_sym_if] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(4279), + [anon_sym_async] = ACTIONS(4279), + [anon_sym_for] = ACTIONS(4279), + [anon_sym_while] = ACTIONS(4279), + [anon_sym_try] = ACTIONS(4279), + [anon_sym_with] = ACTIONS(4279), + [anon_sym_def] = ACTIONS(4279), + [anon_sym_global] = ACTIONS(4279), + [anon_sym_nonlocal] = ACTIONS(4279), + [anon_sym_exec] = ACTIONS(4279), + [anon_sym_type] = ACTIONS(4279), + [anon_sym_class] = ACTIONS(4279), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_not] = ACTIONS(4279), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_TILDE] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_lambda] = ACTIONS(4279), + [anon_sym_yield] = ACTIONS(4279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4277), + [anon_sym_None] = ACTIONS(4279), + [anon_sym_0x] = ACTIONS(4277), + [anon_sym_0X] = ACTIONS(4277), + [anon_sym_0o] = ACTIONS(4277), + [anon_sym_0O] = ACTIONS(4277), + [anon_sym_0b] = ACTIONS(4277), + [anon_sym_0B] = ACTIONS(4277), + [aux_sym_integer_token4] = ACTIONS(4279), + [sym_float] = ACTIONS(4277), + [anon_sym_await] = ACTIONS(4279), + [anon_sym_api] = ACTIONS(4279), + [sym_true] = ACTIONS(4279), + [sym_false] = ACTIONS(4279), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4279), + [anon_sym_include] = ACTIONS(4279), + [anon_sym_DEF] = ACTIONS(4279), + [anon_sym_IF] = ACTIONS(4279), + [anon_sym_cdef] = ACTIONS(4279), + [anon_sym_cpdef] = ACTIONS(4279), + [anon_sym_new] = ACTIONS(4279), + [anon_sym_ctypedef] = ACTIONS(4279), + [anon_sym_public] = ACTIONS(4279), + [anon_sym_packed] = ACTIONS(4279), + [anon_sym_inline] = ACTIONS(4279), + [anon_sym_readonly] = ACTIONS(4279), + [anon_sym_sizeof] = ACTIONS(4279), + [sym_string_start] = ACTIONS(4277), + }, + [2157] = { + [ts_builtin_sym_end] = ACTIONS(4223), + [sym_identifier] = ACTIONS(4221), + [anon_sym_import] = ACTIONS(4221), + [anon_sym_cimport] = ACTIONS(4221), + [anon_sym_from] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [anon_sym_print] = ACTIONS(4221), + [anon_sym_assert] = ACTIONS(4221), + [anon_sym_return] = ACTIONS(4221), + [anon_sym_del] = ACTIONS(4221), + [anon_sym_raise] = ACTIONS(4221), + [anon_sym_pass] = ACTIONS(4221), + [anon_sym_break] = ACTIONS(4221), + [anon_sym_continue] = ACTIONS(4221), + [anon_sym_if] = ACTIONS(4221), + [anon_sym_match] = ACTIONS(4221), + [anon_sym_async] = ACTIONS(4221), + [anon_sym_for] = ACTIONS(4221), + [anon_sym_while] = ACTIONS(4221), + [anon_sym_try] = ACTIONS(4221), + [anon_sym_with] = ACTIONS(4221), + [anon_sym_def] = ACTIONS(4221), + [anon_sym_global] = ACTIONS(4221), + [anon_sym_nonlocal] = ACTIONS(4221), + [anon_sym_exec] = ACTIONS(4221), + [anon_sym_type] = ACTIONS(4221), + [anon_sym_class] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_not] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_lambda] = ACTIONS(4221), + [anon_sym_yield] = ACTIONS(4221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [anon_sym_None] = ACTIONS(4221), + [anon_sym_0x] = ACTIONS(4223), + [anon_sym_0X] = ACTIONS(4223), + [anon_sym_0o] = ACTIONS(4223), + [anon_sym_0O] = ACTIONS(4223), + [anon_sym_0b] = ACTIONS(4223), + [anon_sym_0B] = ACTIONS(4223), + [aux_sym_integer_token4] = ACTIONS(4221), + [sym_float] = ACTIONS(4223), + [anon_sym_await] = ACTIONS(4221), + [anon_sym_api] = ACTIONS(4221), + [sym_true] = ACTIONS(4221), + [sym_false] = ACTIONS(4221), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4221), + [anon_sym_include] = ACTIONS(4221), + [anon_sym_DEF] = ACTIONS(4221), + [anon_sym_IF] = ACTIONS(4221), + [anon_sym_cdef] = ACTIONS(4221), + [anon_sym_cpdef] = ACTIONS(4221), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_ctypedef] = ACTIONS(4221), + [anon_sym_public] = ACTIONS(4221), + [anon_sym_packed] = ACTIONS(4221), + [anon_sym_inline] = ACTIONS(4221), + [anon_sym_readonly] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4221), + [sym_string_start] = ACTIONS(4223), + }, + [2158] = { + [ts_builtin_sym_end] = ACTIONS(4227), + [sym_identifier] = ACTIONS(4225), + [anon_sym_import] = ACTIONS(4225), + [anon_sym_cimport] = ACTIONS(4225), + [anon_sym_from] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_print] = ACTIONS(4225), + [anon_sym_assert] = ACTIONS(4225), + [anon_sym_return] = ACTIONS(4225), + [anon_sym_del] = ACTIONS(4225), + [anon_sym_raise] = ACTIONS(4225), + [anon_sym_pass] = ACTIONS(4225), + [anon_sym_break] = ACTIONS(4225), + [anon_sym_continue] = ACTIONS(4225), + [anon_sym_if] = ACTIONS(4225), + [anon_sym_match] = ACTIONS(4225), + [anon_sym_async] = ACTIONS(4225), + [anon_sym_for] = ACTIONS(4225), + [anon_sym_while] = ACTIONS(4225), + [anon_sym_try] = ACTIONS(4225), + [anon_sym_with] = ACTIONS(4225), + [anon_sym_def] = ACTIONS(4225), + [anon_sym_global] = ACTIONS(4225), + [anon_sym_nonlocal] = ACTIONS(4225), + [anon_sym_exec] = ACTIONS(4225), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_class] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_AT] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_not] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_lambda] = ACTIONS(4225), + [anon_sym_yield] = ACTIONS(4225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [anon_sym_None] = ACTIONS(4225), + [anon_sym_0x] = ACTIONS(4227), + [anon_sym_0X] = ACTIONS(4227), + [anon_sym_0o] = ACTIONS(4227), + [anon_sym_0O] = ACTIONS(4227), + [anon_sym_0b] = ACTIONS(4227), + [anon_sym_0B] = ACTIONS(4227), + [aux_sym_integer_token4] = ACTIONS(4225), + [sym_float] = ACTIONS(4227), + [anon_sym_await] = ACTIONS(4225), + [anon_sym_api] = ACTIONS(4225), + [sym_true] = ACTIONS(4225), + [sym_false] = ACTIONS(4225), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4225), + [anon_sym_include] = ACTIONS(4225), + [anon_sym_DEF] = ACTIONS(4225), + [anon_sym_IF] = ACTIONS(4225), + [anon_sym_cdef] = ACTIONS(4225), + [anon_sym_cpdef] = ACTIONS(4225), + [anon_sym_new] = ACTIONS(4225), + [anon_sym_ctypedef] = ACTIONS(4225), + [anon_sym_public] = ACTIONS(4225), + [anon_sym_packed] = ACTIONS(4225), + [anon_sym_inline] = ACTIONS(4225), + [anon_sym_readonly] = ACTIONS(4225), + [anon_sym_sizeof] = ACTIONS(4225), + [sym_string_start] = ACTIONS(4227), + }, + [2159] = { + [sym_identifier] = ACTIONS(4043), + [anon_sym_import] = ACTIONS(4043), + [anon_sym_cimport] = ACTIONS(4043), + [anon_sym_from] = ACTIONS(4043), + [anon_sym_LPAREN] = ACTIONS(4041), + [anon_sym_STAR] = ACTIONS(4041), + [anon_sym_print] = ACTIONS(4043), + [anon_sym_assert] = ACTIONS(4043), + [anon_sym_return] = ACTIONS(4043), + [anon_sym_del] = ACTIONS(4043), + [anon_sym_raise] = ACTIONS(4043), + [anon_sym_pass] = ACTIONS(4043), + [anon_sym_break] = ACTIONS(4043), + [anon_sym_continue] = ACTIONS(4043), + [anon_sym_if] = ACTIONS(4043), + [anon_sym_match] = ACTIONS(4043), + [anon_sym_async] = ACTIONS(4043), + [anon_sym_for] = ACTIONS(4043), + [anon_sym_while] = ACTIONS(4043), + [anon_sym_try] = ACTIONS(4043), + [anon_sym_with] = ACTIONS(4043), + [anon_sym_def] = ACTIONS(4043), + [anon_sym_global] = ACTIONS(4043), + [anon_sym_nonlocal] = ACTIONS(4043), + [anon_sym_exec] = ACTIONS(4043), + [anon_sym_type] = ACTIONS(4043), + [anon_sym_class] = ACTIONS(4043), + [anon_sym_LBRACK] = ACTIONS(4041), + [anon_sym_AT] = ACTIONS(4041), + [anon_sym_DASH] = ACTIONS(4041), + [anon_sym_LBRACE] = ACTIONS(4041), + [anon_sym_PLUS] = ACTIONS(4041), + [anon_sym_not] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4041), + [anon_sym_TILDE] = ACTIONS(4041), + [anon_sym_LT] = ACTIONS(4041), + [anon_sym_lambda] = ACTIONS(4043), + [anon_sym_yield] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4041), + [anon_sym_None] = ACTIONS(4043), + [anon_sym_0x] = ACTIONS(4041), + [anon_sym_0X] = ACTIONS(4041), + [anon_sym_0o] = ACTIONS(4041), + [anon_sym_0O] = ACTIONS(4041), + [anon_sym_0b] = ACTIONS(4041), + [anon_sym_0B] = ACTIONS(4041), + [aux_sym_integer_token4] = ACTIONS(4043), + [sym_float] = ACTIONS(4041), + [anon_sym_await] = ACTIONS(4043), + [anon_sym_api] = ACTIONS(4043), + [sym_true] = ACTIONS(4043), + [sym_false] = ACTIONS(4043), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4043), + [anon_sym_include] = ACTIONS(4043), + [anon_sym_DEF] = ACTIONS(4043), + [anon_sym_IF] = ACTIONS(4043), + [anon_sym_cdef] = ACTIONS(4043), + [anon_sym_cpdef] = ACTIONS(4043), + [anon_sym_new] = ACTIONS(4043), + [anon_sym_ctypedef] = ACTIONS(4043), + [anon_sym_public] = ACTIONS(4043), + [anon_sym_packed] = ACTIONS(4043), + [anon_sym_inline] = ACTIONS(4043), + [anon_sym_readonly] = ACTIONS(4043), + [anon_sym_sizeof] = ACTIONS(4043), + [sym__dedent] = ACTIONS(4041), + [sym_string_start] = ACTIONS(4041), + }, + [2160] = { + [sym_identifier] = ACTIONS(4071), + [anon_sym_import] = ACTIONS(4071), + [anon_sym_cimport] = ACTIONS(4071), + [anon_sym_from] = ACTIONS(4071), + [anon_sym_LPAREN] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_print] = ACTIONS(4071), + [anon_sym_assert] = ACTIONS(4071), + [anon_sym_return] = ACTIONS(4071), + [anon_sym_del] = ACTIONS(4071), + [anon_sym_raise] = ACTIONS(4071), + [anon_sym_pass] = ACTIONS(4071), + [anon_sym_break] = ACTIONS(4071), + [anon_sym_continue] = ACTIONS(4071), + [anon_sym_if] = ACTIONS(4071), + [anon_sym_match] = ACTIONS(4071), + [anon_sym_async] = ACTIONS(4071), + [anon_sym_for] = ACTIONS(4071), + [anon_sym_while] = ACTIONS(4071), + [anon_sym_try] = ACTIONS(4071), + [anon_sym_with] = ACTIONS(4071), + [anon_sym_def] = ACTIONS(4071), + [anon_sym_global] = ACTIONS(4071), + [anon_sym_nonlocal] = ACTIONS(4071), + [anon_sym_exec] = ACTIONS(4071), + [anon_sym_type] = ACTIONS(4071), + [anon_sym_class] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4069), + [anon_sym_AT] = ACTIONS(4069), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_LBRACE] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_not] = ACTIONS(4071), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_TILDE] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4069), + [anon_sym_lambda] = ACTIONS(4071), + [anon_sym_yield] = ACTIONS(4071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4069), + [anon_sym_None] = ACTIONS(4071), + [anon_sym_0x] = ACTIONS(4069), + [anon_sym_0X] = ACTIONS(4069), + [anon_sym_0o] = ACTIONS(4069), + [anon_sym_0O] = ACTIONS(4069), + [anon_sym_0b] = ACTIONS(4069), + [anon_sym_0B] = ACTIONS(4069), + [aux_sym_integer_token4] = ACTIONS(4071), + [sym_float] = ACTIONS(4069), + [anon_sym_await] = ACTIONS(4071), + [anon_sym_api] = ACTIONS(4071), + [sym_true] = ACTIONS(4071), + [sym_false] = ACTIONS(4071), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4071), + [anon_sym_include] = ACTIONS(4071), + [anon_sym_DEF] = ACTIONS(4071), + [anon_sym_IF] = ACTIONS(4071), + [anon_sym_cdef] = ACTIONS(4071), + [anon_sym_cpdef] = ACTIONS(4071), + [anon_sym_new] = ACTIONS(4071), + [anon_sym_ctypedef] = ACTIONS(4071), + [anon_sym_public] = ACTIONS(4071), + [anon_sym_packed] = ACTIONS(4071), + [anon_sym_inline] = ACTIONS(4071), + [anon_sym_readonly] = ACTIONS(4071), + [anon_sym_sizeof] = ACTIONS(4071), + [sym__dedent] = ACTIONS(4069), + [sym_string_start] = ACTIONS(4069), + }, + [2161] = { + [sym_identifier] = ACTIONS(4103), + [anon_sym_import] = ACTIONS(4103), + [anon_sym_cimport] = ACTIONS(4103), + [anon_sym_from] = ACTIONS(4103), + [anon_sym_LPAREN] = ACTIONS(4101), + [anon_sym_STAR] = ACTIONS(4101), + [anon_sym_print] = ACTIONS(4103), + [anon_sym_assert] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_del] = ACTIONS(4103), + [anon_sym_raise] = ACTIONS(4103), + [anon_sym_pass] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_match] = ACTIONS(4103), + [anon_sym_async] = ACTIONS(4103), + [anon_sym_for] = ACTIONS(4103), + [anon_sym_while] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_with] = ACTIONS(4103), + [anon_sym_def] = ACTIONS(4103), + [anon_sym_global] = ACTIONS(4103), + [anon_sym_nonlocal] = ACTIONS(4103), + [anon_sym_exec] = ACTIONS(4103), + [anon_sym_type] = ACTIONS(4103), + [anon_sym_class] = ACTIONS(4103), + [anon_sym_LBRACK] = ACTIONS(4101), + [anon_sym_AT] = ACTIONS(4101), + [anon_sym_DASH] = ACTIONS(4101), + [anon_sym_LBRACE] = ACTIONS(4101), + [anon_sym_PLUS] = ACTIONS(4101), + [anon_sym_not] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(4101), + [anon_sym_TILDE] = ACTIONS(4101), + [anon_sym_LT] = ACTIONS(4101), + [anon_sym_lambda] = ACTIONS(4103), + [anon_sym_yield] = ACTIONS(4103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4101), + [anon_sym_None] = ACTIONS(4103), + [anon_sym_0x] = ACTIONS(4101), + [anon_sym_0X] = ACTIONS(4101), + [anon_sym_0o] = ACTIONS(4101), + [anon_sym_0O] = ACTIONS(4101), + [anon_sym_0b] = ACTIONS(4101), + [anon_sym_0B] = ACTIONS(4101), + [aux_sym_integer_token4] = ACTIONS(4103), + [sym_float] = ACTIONS(4101), + [anon_sym_await] = ACTIONS(4103), + [anon_sym_api] = ACTIONS(4103), + [sym_true] = ACTIONS(4103), + [sym_false] = ACTIONS(4103), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4103), + [anon_sym_include] = ACTIONS(4103), + [anon_sym_DEF] = ACTIONS(4103), + [anon_sym_IF] = ACTIONS(4103), + [anon_sym_cdef] = ACTIONS(4103), + [anon_sym_cpdef] = ACTIONS(4103), + [anon_sym_new] = ACTIONS(4103), + [anon_sym_ctypedef] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_packed] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_readonly] = ACTIONS(4103), + [anon_sym_sizeof] = ACTIONS(4103), + [sym__dedent] = ACTIONS(4101), + [sym_string_start] = ACTIONS(4101), + }, + [2162] = { + [ts_builtin_sym_end] = ACTIONS(4139), + [sym_identifier] = ACTIONS(4137), + [anon_sym_import] = ACTIONS(4137), + [anon_sym_cimport] = ACTIONS(4137), + [anon_sym_from] = ACTIONS(4137), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_print] = ACTIONS(4137), + [anon_sym_assert] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_del] = ACTIONS(4137), + [anon_sym_raise] = ACTIONS(4137), + [anon_sym_pass] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_match] = ACTIONS(4137), + [anon_sym_async] = ACTIONS(4137), + [anon_sym_for] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_with] = ACTIONS(4137), + [anon_sym_def] = ACTIONS(4137), + [anon_sym_global] = ACTIONS(4137), + [anon_sym_nonlocal] = ACTIONS(4137), + [anon_sym_exec] = ACTIONS(4137), + [anon_sym_type] = ACTIONS(4137), + [anon_sym_class] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_not] = ACTIONS(4137), + [anon_sym_AMP] = ACTIONS(4139), + [anon_sym_TILDE] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_lambda] = ACTIONS(4137), + [anon_sym_yield] = ACTIONS(4137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), + [anon_sym_None] = ACTIONS(4137), + [anon_sym_0x] = ACTIONS(4139), + [anon_sym_0X] = ACTIONS(4139), + [anon_sym_0o] = ACTIONS(4139), + [anon_sym_0O] = ACTIONS(4139), + [anon_sym_0b] = ACTIONS(4139), + [anon_sym_0B] = ACTIONS(4139), + [aux_sym_integer_token4] = ACTIONS(4137), + [sym_float] = ACTIONS(4139), + [anon_sym_await] = ACTIONS(4137), + [anon_sym_api] = ACTIONS(4137), + [sym_true] = ACTIONS(4137), + [sym_false] = ACTIONS(4137), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4137), + [anon_sym_include] = ACTIONS(4137), + [anon_sym_DEF] = ACTIONS(4137), + [anon_sym_IF] = ACTIONS(4137), + [anon_sym_cdef] = ACTIONS(4137), + [anon_sym_cpdef] = ACTIONS(4137), + [anon_sym_new] = ACTIONS(4137), + [anon_sym_ctypedef] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_packed] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_readonly] = ACTIONS(4137), + [anon_sym_sizeof] = ACTIONS(4137), + [sym_string_start] = ACTIONS(4139), + }, + [2163] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2164] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_in] = ACTIONS(1000), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2165] = { + [ts_builtin_sym_end] = ACTIONS(4143), + [sym_identifier] = ACTIONS(4141), + [anon_sym_import] = ACTIONS(4141), + [anon_sym_cimport] = ACTIONS(4141), + [anon_sym_from] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(4143), + [anon_sym_print] = ACTIONS(4141), + [anon_sym_assert] = ACTIONS(4141), + [anon_sym_return] = ACTIONS(4141), + [anon_sym_del] = ACTIONS(4141), + [anon_sym_raise] = ACTIONS(4141), + [anon_sym_pass] = ACTIONS(4141), + [anon_sym_break] = ACTIONS(4141), + [anon_sym_continue] = ACTIONS(4141), + [anon_sym_if] = ACTIONS(4141), + [anon_sym_match] = ACTIONS(4141), + [anon_sym_async] = ACTIONS(4141), + [anon_sym_for] = ACTIONS(4141), + [anon_sym_while] = ACTIONS(4141), + [anon_sym_try] = ACTIONS(4141), + [anon_sym_with] = ACTIONS(4141), + [anon_sym_def] = ACTIONS(4141), + [anon_sym_global] = ACTIONS(4141), + [anon_sym_nonlocal] = ACTIONS(4141), + [anon_sym_exec] = ACTIONS(4141), + [anon_sym_type] = ACTIONS(4141), + [anon_sym_class] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4143), + [anon_sym_AT] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4143), + [anon_sym_PLUS] = ACTIONS(4143), + [anon_sym_not] = ACTIONS(4141), + [anon_sym_AMP] = ACTIONS(4143), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_LT] = ACTIONS(4143), + [anon_sym_lambda] = ACTIONS(4141), + [anon_sym_yield] = ACTIONS(4141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4143), + [anon_sym_None] = ACTIONS(4141), + [anon_sym_0x] = ACTIONS(4143), + [anon_sym_0X] = ACTIONS(4143), + [anon_sym_0o] = ACTIONS(4143), + [anon_sym_0O] = ACTIONS(4143), + [anon_sym_0b] = ACTIONS(4143), + [anon_sym_0B] = ACTIONS(4143), + [aux_sym_integer_token4] = ACTIONS(4141), + [sym_float] = ACTIONS(4143), + [anon_sym_await] = ACTIONS(4141), + [anon_sym_api] = ACTIONS(4141), + [sym_true] = ACTIONS(4141), + [sym_false] = ACTIONS(4141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4141), + [anon_sym_include] = ACTIONS(4141), + [anon_sym_DEF] = ACTIONS(4141), + [anon_sym_IF] = ACTIONS(4141), + [anon_sym_cdef] = ACTIONS(4141), + [anon_sym_cpdef] = ACTIONS(4141), + [anon_sym_new] = ACTIONS(4141), + [anon_sym_ctypedef] = ACTIONS(4141), + [anon_sym_public] = ACTIONS(4141), + [anon_sym_packed] = ACTIONS(4141), + [anon_sym_inline] = ACTIONS(4141), + [anon_sym_readonly] = ACTIONS(4141), + [anon_sym_sizeof] = ACTIONS(4141), + [sym_string_start] = ACTIONS(4143), + }, + [2166] = { + [ts_builtin_sym_end] = ACTIONS(4235), + [sym_identifier] = ACTIONS(4233), + [anon_sym_import] = ACTIONS(4233), + [anon_sym_cimport] = ACTIONS(4233), + [anon_sym_from] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_print] = ACTIONS(4233), + [anon_sym_assert] = ACTIONS(4233), + [anon_sym_return] = ACTIONS(4233), + [anon_sym_del] = ACTIONS(4233), + [anon_sym_raise] = ACTIONS(4233), + [anon_sym_pass] = ACTIONS(4233), + [anon_sym_break] = ACTIONS(4233), + [anon_sym_continue] = ACTIONS(4233), + [anon_sym_if] = ACTIONS(4233), + [anon_sym_match] = ACTIONS(4233), + [anon_sym_async] = ACTIONS(4233), + [anon_sym_for] = ACTIONS(4233), + [anon_sym_while] = ACTIONS(4233), + [anon_sym_try] = ACTIONS(4233), + [anon_sym_with] = ACTIONS(4233), + [anon_sym_def] = ACTIONS(4233), + [anon_sym_global] = ACTIONS(4233), + [anon_sym_nonlocal] = ACTIONS(4233), + [anon_sym_exec] = ACTIONS(4233), + [anon_sym_type] = ACTIONS(4233), + [anon_sym_class] = ACTIONS(4233), + [anon_sym_LBRACK] = ACTIONS(4235), + [anon_sym_AT] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_not] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_lambda] = ACTIONS(4233), + [anon_sym_yield] = ACTIONS(4233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [anon_sym_None] = ACTIONS(4233), + [anon_sym_0x] = ACTIONS(4235), + [anon_sym_0X] = ACTIONS(4235), + [anon_sym_0o] = ACTIONS(4235), + [anon_sym_0O] = ACTIONS(4235), + [anon_sym_0b] = ACTIONS(4235), + [anon_sym_0B] = ACTIONS(4235), + [aux_sym_integer_token4] = ACTIONS(4233), + [sym_float] = ACTIONS(4235), + [anon_sym_await] = ACTIONS(4233), + [anon_sym_api] = ACTIONS(4233), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4233), + [anon_sym_include] = ACTIONS(4233), + [anon_sym_DEF] = ACTIONS(4233), + [anon_sym_IF] = ACTIONS(4233), + [anon_sym_cdef] = ACTIONS(4233), + [anon_sym_cpdef] = ACTIONS(4233), + [anon_sym_new] = ACTIONS(4233), + [anon_sym_ctypedef] = ACTIONS(4233), + [anon_sym_public] = ACTIONS(4233), + [anon_sym_packed] = ACTIONS(4233), + [anon_sym_inline] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4233), + [anon_sym_sizeof] = ACTIONS(4233), + [sym_string_start] = ACTIONS(4235), + }, + [2167] = { + [ts_builtin_sym_end] = ACTIONS(4239), + [sym_identifier] = ACTIONS(4237), + [anon_sym_import] = ACTIONS(4237), + [anon_sym_cimport] = ACTIONS(4237), + [anon_sym_from] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4239), + [anon_sym_print] = ACTIONS(4237), + [anon_sym_assert] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_del] = ACTIONS(4237), + [anon_sym_raise] = ACTIONS(4237), + [anon_sym_pass] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_match] = ACTIONS(4237), + [anon_sym_async] = ACTIONS(4237), + [anon_sym_for] = ACTIONS(4237), + [anon_sym_while] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_with] = ACTIONS(4237), + [anon_sym_def] = ACTIONS(4237), + [anon_sym_global] = ACTIONS(4237), + [anon_sym_nonlocal] = ACTIONS(4237), + [anon_sym_exec] = ACTIONS(4237), + [anon_sym_type] = ACTIONS(4237), + [anon_sym_class] = ACTIONS(4237), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_not] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4239), + [anon_sym_lambda] = ACTIONS(4237), + [anon_sym_yield] = ACTIONS(4237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [anon_sym_None] = ACTIONS(4237), + [anon_sym_0x] = ACTIONS(4239), + [anon_sym_0X] = ACTIONS(4239), + [anon_sym_0o] = ACTIONS(4239), + [anon_sym_0O] = ACTIONS(4239), + [anon_sym_0b] = ACTIONS(4239), + [anon_sym_0B] = ACTIONS(4239), + [aux_sym_integer_token4] = ACTIONS(4237), + [sym_float] = ACTIONS(4239), + [anon_sym_await] = ACTIONS(4237), + [anon_sym_api] = ACTIONS(4237), + [sym_true] = ACTIONS(4237), + [sym_false] = ACTIONS(4237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4237), + [anon_sym_include] = ACTIONS(4237), + [anon_sym_DEF] = ACTIONS(4237), + [anon_sym_IF] = ACTIONS(4237), + [anon_sym_cdef] = ACTIONS(4237), + [anon_sym_cpdef] = ACTIONS(4237), + [anon_sym_new] = ACTIONS(4237), + [anon_sym_ctypedef] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_packed] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_sizeof] = ACTIONS(4237), + [sym_string_start] = ACTIONS(4239), + }, + [2168] = { + [ts_builtin_sym_end] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4145), + [anon_sym_import] = ACTIONS(4145), + [anon_sym_cimport] = ACTIONS(4145), + [anon_sym_from] = ACTIONS(4145), + [anon_sym_LPAREN] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_print] = ACTIONS(4145), + [anon_sym_assert] = ACTIONS(4145), + [anon_sym_return] = ACTIONS(4145), + [anon_sym_del] = ACTIONS(4145), + [anon_sym_raise] = ACTIONS(4145), + [anon_sym_pass] = ACTIONS(4145), + [anon_sym_break] = ACTIONS(4145), + [anon_sym_continue] = ACTIONS(4145), + [anon_sym_if] = ACTIONS(4145), + [anon_sym_match] = ACTIONS(4145), + [anon_sym_async] = ACTIONS(4145), + [anon_sym_for] = ACTIONS(4145), + [anon_sym_while] = ACTIONS(4145), + [anon_sym_try] = ACTIONS(4145), + [anon_sym_with] = ACTIONS(4145), + [anon_sym_def] = ACTIONS(4145), + [anon_sym_global] = ACTIONS(4145), + [anon_sym_nonlocal] = ACTIONS(4145), + [anon_sym_exec] = ACTIONS(4145), + [anon_sym_type] = ACTIONS(4145), + [anon_sym_class] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4147), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_not] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4147), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_lambda] = ACTIONS(4145), + [anon_sym_yield] = ACTIONS(4145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4147), + [anon_sym_None] = ACTIONS(4145), + [anon_sym_0x] = ACTIONS(4147), + [anon_sym_0X] = ACTIONS(4147), + [anon_sym_0o] = ACTIONS(4147), + [anon_sym_0O] = ACTIONS(4147), + [anon_sym_0b] = ACTIONS(4147), + [anon_sym_0B] = ACTIONS(4147), + [aux_sym_integer_token4] = ACTIONS(4145), + [sym_float] = ACTIONS(4147), + [anon_sym_await] = ACTIONS(4145), + [anon_sym_api] = ACTIONS(4145), + [sym_true] = ACTIONS(4145), + [sym_false] = ACTIONS(4145), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4145), + [anon_sym_include] = ACTIONS(4145), + [anon_sym_DEF] = ACTIONS(4145), + [anon_sym_IF] = ACTIONS(4145), + [anon_sym_cdef] = ACTIONS(4145), + [anon_sym_cpdef] = ACTIONS(4145), + [anon_sym_new] = ACTIONS(4145), + [anon_sym_ctypedef] = ACTIONS(4145), + [anon_sym_public] = ACTIONS(4145), + [anon_sym_packed] = ACTIONS(4145), + [anon_sym_inline] = ACTIONS(4145), + [anon_sym_readonly] = ACTIONS(4145), + [anon_sym_sizeof] = ACTIONS(4145), + [sym_string_start] = ACTIONS(4147), + }, + [2169] = { + [ts_builtin_sym_end] = ACTIONS(4243), + [sym_identifier] = ACTIONS(4241), + [anon_sym_import] = ACTIONS(4241), + [anon_sym_cimport] = ACTIONS(4241), + [anon_sym_from] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_STAR] = ACTIONS(4243), + [anon_sym_print] = ACTIONS(4241), + [anon_sym_assert] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_del] = ACTIONS(4241), + [anon_sym_raise] = ACTIONS(4241), + [anon_sym_pass] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_match] = ACTIONS(4241), + [anon_sym_async] = ACTIONS(4241), + [anon_sym_for] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_with] = ACTIONS(4241), + [anon_sym_def] = ACTIONS(4241), + [anon_sym_global] = ACTIONS(4241), + [anon_sym_nonlocal] = ACTIONS(4241), + [anon_sym_exec] = ACTIONS(4241), + [anon_sym_type] = ACTIONS(4241), + [anon_sym_class] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_not] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4243), + [anon_sym_lambda] = ACTIONS(4241), + [anon_sym_yield] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [anon_sym_None] = ACTIONS(4241), + [anon_sym_0x] = ACTIONS(4243), + [anon_sym_0X] = ACTIONS(4243), + [anon_sym_0o] = ACTIONS(4243), + [anon_sym_0O] = ACTIONS(4243), + [anon_sym_0b] = ACTIONS(4243), + [anon_sym_0B] = ACTIONS(4243), + [aux_sym_integer_token4] = ACTIONS(4241), + [sym_float] = ACTIONS(4243), + [anon_sym_await] = ACTIONS(4241), + [anon_sym_api] = ACTIONS(4241), + [sym_true] = ACTIONS(4241), + [sym_false] = ACTIONS(4241), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4241), + [anon_sym_include] = ACTIONS(4241), + [anon_sym_DEF] = ACTIONS(4241), + [anon_sym_IF] = ACTIONS(4241), + [anon_sym_cdef] = ACTIONS(4241), + [anon_sym_cpdef] = ACTIONS(4241), + [anon_sym_new] = ACTIONS(4241), + [anon_sym_ctypedef] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_packed] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_readonly] = ACTIONS(4241), + [anon_sym_sizeof] = ACTIONS(4241), + [sym_string_start] = ACTIONS(4243), + }, + [2170] = { + [ts_builtin_sym_end] = ACTIONS(4151), + [sym_identifier] = ACTIONS(4149), + [anon_sym_import] = ACTIONS(4149), + [anon_sym_cimport] = ACTIONS(4149), + [anon_sym_from] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_STAR] = ACTIONS(4151), + [anon_sym_print] = ACTIONS(4149), + [anon_sym_assert] = ACTIONS(4149), + [anon_sym_return] = ACTIONS(4149), + [anon_sym_del] = ACTIONS(4149), + [anon_sym_raise] = ACTIONS(4149), + [anon_sym_pass] = ACTIONS(4149), + [anon_sym_break] = ACTIONS(4149), + [anon_sym_continue] = ACTIONS(4149), + [anon_sym_if] = ACTIONS(4149), + [anon_sym_match] = ACTIONS(4149), + [anon_sym_async] = ACTIONS(4149), + [anon_sym_for] = ACTIONS(4149), + [anon_sym_while] = ACTIONS(4149), + [anon_sym_try] = ACTIONS(4149), + [anon_sym_with] = ACTIONS(4149), + [anon_sym_def] = ACTIONS(4149), + [anon_sym_global] = ACTIONS(4149), + [anon_sym_nonlocal] = ACTIONS(4149), + [anon_sym_exec] = ACTIONS(4149), + [anon_sym_type] = ACTIONS(4149), + [anon_sym_class] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4151), + [anon_sym_AT] = ACTIONS(4151), + [anon_sym_DASH] = ACTIONS(4151), + [anon_sym_LBRACE] = ACTIONS(4151), + [anon_sym_PLUS] = ACTIONS(4151), + [anon_sym_not] = ACTIONS(4149), + [anon_sym_AMP] = ACTIONS(4151), + [anon_sym_TILDE] = ACTIONS(4151), + [anon_sym_LT] = ACTIONS(4151), + [anon_sym_lambda] = ACTIONS(4149), + [anon_sym_yield] = ACTIONS(4149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4151), + [anon_sym_None] = ACTIONS(4149), + [anon_sym_0x] = ACTIONS(4151), + [anon_sym_0X] = ACTIONS(4151), + [anon_sym_0o] = ACTIONS(4151), + [anon_sym_0O] = ACTIONS(4151), + [anon_sym_0b] = ACTIONS(4151), + [anon_sym_0B] = ACTIONS(4151), + [aux_sym_integer_token4] = ACTIONS(4149), + [sym_float] = ACTIONS(4151), + [anon_sym_await] = ACTIONS(4149), + [anon_sym_api] = ACTIONS(4149), + [sym_true] = ACTIONS(4149), + [sym_false] = ACTIONS(4149), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4149), + [anon_sym_include] = ACTIONS(4149), + [anon_sym_DEF] = ACTIONS(4149), + [anon_sym_IF] = ACTIONS(4149), + [anon_sym_cdef] = ACTIONS(4149), + [anon_sym_cpdef] = ACTIONS(4149), + [anon_sym_new] = ACTIONS(4149), + [anon_sym_ctypedef] = ACTIONS(4149), + [anon_sym_public] = ACTIONS(4149), + [anon_sym_packed] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4149), + [anon_sym_readonly] = ACTIONS(4149), + [anon_sym_sizeof] = ACTIONS(4149), + [sym_string_start] = ACTIONS(4151), + }, + [2171] = { + [ts_builtin_sym_end] = ACTIONS(4247), + [sym_identifier] = ACTIONS(4245), + [anon_sym_import] = ACTIONS(4245), + [anon_sym_cimport] = ACTIONS(4245), + [anon_sym_from] = ACTIONS(4245), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_print] = ACTIONS(4245), + [anon_sym_assert] = ACTIONS(4245), + [anon_sym_return] = ACTIONS(4245), + [anon_sym_del] = ACTIONS(4245), + [anon_sym_raise] = ACTIONS(4245), + [anon_sym_pass] = ACTIONS(4245), + [anon_sym_break] = ACTIONS(4245), + [anon_sym_continue] = ACTIONS(4245), + [anon_sym_if] = ACTIONS(4245), + [anon_sym_match] = ACTIONS(4245), + [anon_sym_async] = ACTIONS(4245), + [anon_sym_for] = ACTIONS(4245), + [anon_sym_while] = ACTIONS(4245), + [anon_sym_try] = ACTIONS(4245), + [anon_sym_with] = ACTIONS(4245), + [anon_sym_def] = ACTIONS(4245), + [anon_sym_global] = ACTIONS(4245), + [anon_sym_nonlocal] = ACTIONS(4245), + [anon_sym_exec] = ACTIONS(4245), + [anon_sym_type] = ACTIONS(4245), + [anon_sym_class] = ACTIONS(4245), + [anon_sym_LBRACK] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_not] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_lambda] = ACTIONS(4245), + [anon_sym_yield] = ACTIONS(4245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [anon_sym_None] = ACTIONS(4245), + [anon_sym_0x] = ACTIONS(4247), + [anon_sym_0X] = ACTIONS(4247), + [anon_sym_0o] = ACTIONS(4247), + [anon_sym_0O] = ACTIONS(4247), + [anon_sym_0b] = ACTIONS(4247), + [anon_sym_0B] = ACTIONS(4247), + [aux_sym_integer_token4] = ACTIONS(4245), + [sym_float] = ACTIONS(4247), + [anon_sym_await] = ACTIONS(4245), + [anon_sym_api] = ACTIONS(4245), + [sym_true] = ACTIONS(4245), + [sym_false] = ACTIONS(4245), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4245), + [anon_sym_include] = ACTIONS(4245), + [anon_sym_DEF] = ACTIONS(4245), + [anon_sym_IF] = ACTIONS(4245), + [anon_sym_cdef] = ACTIONS(4245), + [anon_sym_cpdef] = ACTIONS(4245), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_ctypedef] = ACTIONS(4245), + [anon_sym_public] = ACTIONS(4245), + [anon_sym_packed] = ACTIONS(4245), + [anon_sym_inline] = ACTIONS(4245), + [anon_sym_readonly] = ACTIONS(4245), + [anon_sym_sizeof] = ACTIONS(4245), + [sym_string_start] = ACTIONS(4247), + }, + [2172] = { + [sym_identifier] = ACTIONS(4279), + [anon_sym_import] = ACTIONS(4279), + [anon_sym_cimport] = ACTIONS(4279), + [anon_sym_from] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_STAR] = ACTIONS(4277), + [anon_sym_print] = ACTIONS(4279), + [anon_sym_assert] = ACTIONS(4279), + [anon_sym_return] = ACTIONS(4279), + [anon_sym_del] = ACTIONS(4279), + [anon_sym_raise] = ACTIONS(4279), + [anon_sym_pass] = ACTIONS(4279), + [anon_sym_break] = ACTIONS(4279), + [anon_sym_continue] = ACTIONS(4279), + [anon_sym_if] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(4279), + [anon_sym_async] = ACTIONS(4279), + [anon_sym_for] = ACTIONS(4279), + [anon_sym_while] = ACTIONS(4279), + [anon_sym_try] = ACTIONS(4279), + [anon_sym_with] = ACTIONS(4279), + [anon_sym_def] = ACTIONS(4279), + [anon_sym_global] = ACTIONS(4279), + [anon_sym_nonlocal] = ACTIONS(4279), + [anon_sym_exec] = ACTIONS(4279), + [anon_sym_type] = ACTIONS(4279), + [anon_sym_class] = ACTIONS(4279), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_not] = ACTIONS(4279), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_TILDE] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_lambda] = ACTIONS(4279), + [anon_sym_yield] = ACTIONS(4279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4277), + [anon_sym_None] = ACTIONS(4279), + [anon_sym_0x] = ACTIONS(4277), + [anon_sym_0X] = ACTIONS(4277), + [anon_sym_0o] = ACTIONS(4277), + [anon_sym_0O] = ACTIONS(4277), + [anon_sym_0b] = ACTIONS(4277), + [anon_sym_0B] = ACTIONS(4277), + [aux_sym_integer_token4] = ACTIONS(4279), + [sym_float] = ACTIONS(4277), + [anon_sym_await] = ACTIONS(4279), + [anon_sym_api] = ACTIONS(4279), + [sym_true] = ACTIONS(4279), + [sym_false] = ACTIONS(4279), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4279), + [anon_sym_include] = ACTIONS(4279), + [anon_sym_DEF] = ACTIONS(4279), + [anon_sym_IF] = ACTIONS(4279), + [anon_sym_cdef] = ACTIONS(4279), + [anon_sym_cpdef] = ACTIONS(4279), + [anon_sym_new] = ACTIONS(4279), + [anon_sym_ctypedef] = ACTIONS(4279), + [anon_sym_public] = ACTIONS(4279), + [anon_sym_packed] = ACTIONS(4279), + [anon_sym_inline] = ACTIONS(4279), + [anon_sym_readonly] = ACTIONS(4279), + [anon_sym_sizeof] = ACTIONS(4279), + [sym__dedent] = ACTIONS(4277), + [sym_string_start] = ACTIONS(4277), + }, + [2173] = { + [ts_builtin_sym_end] = ACTIONS(4251), + [sym_identifier] = ACTIONS(4249), + [anon_sym_import] = ACTIONS(4249), + [anon_sym_cimport] = ACTIONS(4249), + [anon_sym_from] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_print] = ACTIONS(4249), + [anon_sym_assert] = ACTIONS(4249), + [anon_sym_return] = ACTIONS(4249), + [anon_sym_del] = ACTIONS(4249), + [anon_sym_raise] = ACTIONS(4249), + [anon_sym_pass] = ACTIONS(4249), + [anon_sym_break] = ACTIONS(4249), + [anon_sym_continue] = ACTIONS(4249), + [anon_sym_if] = ACTIONS(4249), + [anon_sym_match] = ACTIONS(4249), + [anon_sym_async] = ACTIONS(4249), + [anon_sym_for] = ACTIONS(4249), + [anon_sym_while] = ACTIONS(4249), + [anon_sym_try] = ACTIONS(4249), + [anon_sym_with] = ACTIONS(4249), + [anon_sym_def] = ACTIONS(4249), + [anon_sym_global] = ACTIONS(4249), + [anon_sym_nonlocal] = ACTIONS(4249), + [anon_sym_exec] = ACTIONS(4249), + [anon_sym_type] = ACTIONS(4249), + [anon_sym_class] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_not] = ACTIONS(4249), + [anon_sym_AMP] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_lambda] = ACTIONS(4249), + [anon_sym_yield] = ACTIONS(4249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [anon_sym_None] = ACTIONS(4249), + [anon_sym_0x] = ACTIONS(4251), + [anon_sym_0X] = ACTIONS(4251), + [anon_sym_0o] = ACTIONS(4251), + [anon_sym_0O] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(4251), + [anon_sym_0B] = ACTIONS(4251), + [aux_sym_integer_token4] = ACTIONS(4249), + [sym_float] = ACTIONS(4251), + [anon_sym_await] = ACTIONS(4249), + [anon_sym_api] = ACTIONS(4249), + [sym_true] = ACTIONS(4249), + [sym_false] = ACTIONS(4249), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4249), + [anon_sym_include] = ACTIONS(4249), + [anon_sym_DEF] = ACTIONS(4249), + [anon_sym_IF] = ACTIONS(4249), + [anon_sym_cdef] = ACTIONS(4249), + [anon_sym_cpdef] = ACTIONS(4249), + [anon_sym_new] = ACTIONS(4249), + [anon_sym_ctypedef] = ACTIONS(4249), + [anon_sym_public] = ACTIONS(4249), + [anon_sym_packed] = ACTIONS(4249), + [anon_sym_inline] = ACTIONS(4249), + [anon_sym_readonly] = ACTIONS(4249), + [anon_sym_sizeof] = ACTIONS(4249), + [sym_string_start] = ACTIONS(4251), + }, + [2174] = { + [ts_builtin_sym_end] = ACTIONS(4255), + [sym_identifier] = ACTIONS(4253), + [anon_sym_import] = ACTIONS(4253), + [anon_sym_cimport] = ACTIONS(4253), + [anon_sym_from] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_print] = ACTIONS(4253), + [anon_sym_assert] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_del] = ACTIONS(4253), + [anon_sym_raise] = ACTIONS(4253), + [anon_sym_pass] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_match] = ACTIONS(4253), + [anon_sym_async] = ACTIONS(4253), + [anon_sym_for] = ACTIONS(4253), + [anon_sym_while] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_with] = ACTIONS(4253), + [anon_sym_def] = ACTIONS(4253), + [anon_sym_global] = ACTIONS(4253), + [anon_sym_nonlocal] = ACTIONS(4253), + [anon_sym_exec] = ACTIONS(4253), + [anon_sym_type] = ACTIONS(4253), + [anon_sym_class] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_not] = ACTIONS(4253), + [anon_sym_AMP] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_lambda] = ACTIONS(4253), + [anon_sym_yield] = ACTIONS(4253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [anon_sym_None] = ACTIONS(4253), + [anon_sym_0x] = ACTIONS(4255), + [anon_sym_0X] = ACTIONS(4255), + [anon_sym_0o] = ACTIONS(4255), + [anon_sym_0O] = ACTIONS(4255), + [anon_sym_0b] = ACTIONS(4255), + [anon_sym_0B] = ACTIONS(4255), + [aux_sym_integer_token4] = ACTIONS(4253), + [sym_float] = ACTIONS(4255), + [anon_sym_await] = ACTIONS(4253), + [anon_sym_api] = ACTIONS(4253), + [sym_true] = ACTIONS(4253), + [sym_false] = ACTIONS(4253), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4253), + [anon_sym_include] = ACTIONS(4253), + [anon_sym_DEF] = ACTIONS(4253), + [anon_sym_IF] = ACTIONS(4253), + [anon_sym_cdef] = ACTIONS(4253), + [anon_sym_cpdef] = ACTIONS(4253), + [anon_sym_new] = ACTIONS(4253), + [anon_sym_ctypedef] = ACTIONS(4253), + [anon_sym_public] = ACTIONS(4253), + [anon_sym_packed] = ACTIONS(4253), + [anon_sym_inline] = ACTIONS(4253), + [anon_sym_readonly] = ACTIONS(4253), + [anon_sym_sizeof] = ACTIONS(4253), + [sym_string_start] = ACTIONS(4255), + }, + [2175] = { + [ts_builtin_sym_end] = ACTIONS(4155), + [sym_identifier] = ACTIONS(4153), + [anon_sym_import] = ACTIONS(4153), + [anon_sym_cimport] = ACTIONS(4153), + [anon_sym_from] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_STAR] = ACTIONS(4155), + [anon_sym_print] = ACTIONS(4153), + [anon_sym_assert] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_del] = ACTIONS(4153), + [anon_sym_raise] = ACTIONS(4153), + [anon_sym_pass] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_async] = ACTIONS(4153), + [anon_sym_for] = ACTIONS(4153), + [anon_sym_while] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_with] = ACTIONS(4153), + [anon_sym_def] = ACTIONS(4153), + [anon_sym_global] = ACTIONS(4153), + [anon_sym_nonlocal] = ACTIONS(4153), + [anon_sym_exec] = ACTIONS(4153), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_class] = ACTIONS(4153), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_DASH] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4155), + [anon_sym_not] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4155), + [anon_sym_TILDE] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4155), + [anon_sym_lambda] = ACTIONS(4153), + [anon_sym_yield] = ACTIONS(4153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4155), + [anon_sym_None] = ACTIONS(4153), + [anon_sym_0x] = ACTIONS(4155), + [anon_sym_0X] = ACTIONS(4155), + [anon_sym_0o] = ACTIONS(4155), + [anon_sym_0O] = ACTIONS(4155), + [anon_sym_0b] = ACTIONS(4155), + [anon_sym_0B] = ACTIONS(4155), + [aux_sym_integer_token4] = ACTIONS(4153), + [sym_float] = ACTIONS(4155), + [anon_sym_await] = ACTIONS(4153), + [anon_sym_api] = ACTIONS(4153), + [sym_true] = ACTIONS(4153), + [sym_false] = ACTIONS(4153), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4153), + [anon_sym_include] = ACTIONS(4153), + [anon_sym_DEF] = ACTIONS(4153), + [anon_sym_IF] = ACTIONS(4153), + [anon_sym_cdef] = ACTIONS(4153), + [anon_sym_cpdef] = ACTIONS(4153), + [anon_sym_new] = ACTIONS(4153), + [anon_sym_ctypedef] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_packed] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_readonly] = ACTIONS(4153), + [anon_sym_sizeof] = ACTIONS(4153), + [sym_string_start] = ACTIONS(4155), + }, + [2176] = { + [ts_builtin_sym_end] = ACTIONS(4159), + [sym_identifier] = ACTIONS(4157), + [anon_sym_import] = ACTIONS(4157), + [anon_sym_cimport] = ACTIONS(4157), + [anon_sym_from] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_print] = ACTIONS(4157), + [anon_sym_assert] = ACTIONS(4157), + [anon_sym_return] = ACTIONS(4157), + [anon_sym_del] = ACTIONS(4157), + [anon_sym_raise] = ACTIONS(4157), + [anon_sym_pass] = ACTIONS(4157), + [anon_sym_break] = ACTIONS(4157), + [anon_sym_continue] = ACTIONS(4157), + [anon_sym_if] = ACTIONS(4157), + [anon_sym_match] = ACTIONS(4157), + [anon_sym_async] = ACTIONS(4157), + [anon_sym_for] = ACTIONS(4157), + [anon_sym_while] = ACTIONS(4157), + [anon_sym_try] = ACTIONS(4157), + [anon_sym_with] = ACTIONS(4157), + [anon_sym_def] = ACTIONS(4157), + [anon_sym_global] = ACTIONS(4157), + [anon_sym_nonlocal] = ACTIONS(4157), + [anon_sym_exec] = ACTIONS(4157), + [anon_sym_type] = ACTIONS(4157), + [anon_sym_class] = ACTIONS(4157), + [anon_sym_LBRACK] = ACTIONS(4159), + [anon_sym_AT] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4159), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_not] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4159), + [anon_sym_TILDE] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(4159), + [anon_sym_lambda] = ACTIONS(4157), + [anon_sym_yield] = ACTIONS(4157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4159), + [anon_sym_None] = ACTIONS(4157), + [anon_sym_0x] = ACTIONS(4159), + [anon_sym_0X] = ACTIONS(4159), + [anon_sym_0o] = ACTIONS(4159), + [anon_sym_0O] = ACTIONS(4159), + [anon_sym_0b] = ACTIONS(4159), + [anon_sym_0B] = ACTIONS(4159), + [aux_sym_integer_token4] = ACTIONS(4157), + [sym_float] = ACTIONS(4159), + [anon_sym_await] = ACTIONS(4157), + [anon_sym_api] = ACTIONS(4157), + [sym_true] = ACTIONS(4157), + [sym_false] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4157), + [anon_sym_include] = ACTIONS(4157), + [anon_sym_DEF] = ACTIONS(4157), + [anon_sym_IF] = ACTIONS(4157), + [anon_sym_cdef] = ACTIONS(4157), + [anon_sym_cpdef] = ACTIONS(4157), + [anon_sym_new] = ACTIONS(4157), + [anon_sym_ctypedef] = ACTIONS(4157), + [anon_sym_public] = ACTIONS(4157), + [anon_sym_packed] = ACTIONS(4157), + [anon_sym_inline] = ACTIONS(4157), + [anon_sym_readonly] = ACTIONS(4157), + [anon_sym_sizeof] = ACTIONS(4157), + [sym_string_start] = ACTIONS(4159), + }, + [2177] = { + [ts_builtin_sym_end] = ACTIONS(4259), + [sym_identifier] = ACTIONS(4257), + [anon_sym_import] = ACTIONS(4257), + [anon_sym_cimport] = ACTIONS(4257), + [anon_sym_from] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_print] = ACTIONS(4257), + [anon_sym_assert] = ACTIONS(4257), + [anon_sym_return] = ACTIONS(4257), + [anon_sym_del] = ACTIONS(4257), + [anon_sym_raise] = ACTIONS(4257), + [anon_sym_pass] = ACTIONS(4257), + [anon_sym_break] = ACTIONS(4257), + [anon_sym_continue] = ACTIONS(4257), + [anon_sym_if] = ACTIONS(4257), + [anon_sym_match] = ACTIONS(4257), + [anon_sym_async] = ACTIONS(4257), + [anon_sym_for] = ACTIONS(4257), + [anon_sym_while] = ACTIONS(4257), + [anon_sym_try] = ACTIONS(4257), + [anon_sym_with] = ACTIONS(4257), + [anon_sym_def] = ACTIONS(4257), + [anon_sym_global] = ACTIONS(4257), + [anon_sym_nonlocal] = ACTIONS(4257), + [anon_sym_exec] = ACTIONS(4257), + [anon_sym_type] = ACTIONS(4257), + [anon_sym_class] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_not] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_lambda] = ACTIONS(4257), + [anon_sym_yield] = ACTIONS(4257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [anon_sym_None] = ACTIONS(4257), + [anon_sym_0x] = ACTIONS(4259), + [anon_sym_0X] = ACTIONS(4259), + [anon_sym_0o] = ACTIONS(4259), + [anon_sym_0O] = ACTIONS(4259), + [anon_sym_0b] = ACTIONS(4259), + [anon_sym_0B] = ACTIONS(4259), + [aux_sym_integer_token4] = ACTIONS(4257), + [sym_float] = ACTIONS(4259), + [anon_sym_await] = ACTIONS(4257), + [anon_sym_api] = ACTIONS(4257), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4257), + [anon_sym_include] = ACTIONS(4257), + [anon_sym_DEF] = ACTIONS(4257), + [anon_sym_IF] = ACTIONS(4257), + [anon_sym_cdef] = ACTIONS(4257), + [anon_sym_cpdef] = ACTIONS(4257), + [anon_sym_new] = ACTIONS(4257), + [anon_sym_ctypedef] = ACTIONS(4257), + [anon_sym_public] = ACTIONS(4257), + [anon_sym_packed] = ACTIONS(4257), + [anon_sym_inline] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4257), + [anon_sym_sizeof] = ACTIONS(4257), + [sym_string_start] = ACTIONS(4259), + }, + [2178] = { + [ts_builtin_sym_end] = ACTIONS(4263), + [sym_identifier] = ACTIONS(4261), + [anon_sym_import] = ACTIONS(4261), + [anon_sym_cimport] = ACTIONS(4261), + [anon_sym_from] = ACTIONS(4261), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4263), + [anon_sym_print] = ACTIONS(4261), + [anon_sym_assert] = ACTIONS(4261), + [anon_sym_return] = ACTIONS(4261), + [anon_sym_del] = ACTIONS(4261), + [anon_sym_raise] = ACTIONS(4261), + [anon_sym_pass] = ACTIONS(4261), + [anon_sym_break] = ACTIONS(4261), + [anon_sym_continue] = ACTIONS(4261), + [anon_sym_if] = ACTIONS(4261), + [anon_sym_match] = ACTIONS(4261), + [anon_sym_async] = ACTIONS(4261), + [anon_sym_for] = ACTIONS(4261), + [anon_sym_while] = ACTIONS(4261), + [anon_sym_try] = ACTIONS(4261), + [anon_sym_with] = ACTIONS(4261), + [anon_sym_def] = ACTIONS(4261), + [anon_sym_global] = ACTIONS(4261), + [anon_sym_nonlocal] = ACTIONS(4261), + [anon_sym_exec] = ACTIONS(4261), + [anon_sym_type] = ACTIONS(4261), + [anon_sym_class] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_not] = ACTIONS(4261), + [anon_sym_AMP] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4263), + [anon_sym_lambda] = ACTIONS(4261), + [anon_sym_yield] = ACTIONS(4261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [anon_sym_None] = ACTIONS(4261), + [anon_sym_0x] = ACTIONS(4263), + [anon_sym_0X] = ACTIONS(4263), + [anon_sym_0o] = ACTIONS(4263), + [anon_sym_0O] = ACTIONS(4263), + [anon_sym_0b] = ACTIONS(4263), + [anon_sym_0B] = ACTIONS(4263), + [aux_sym_integer_token4] = ACTIONS(4261), + [sym_float] = ACTIONS(4263), + [anon_sym_await] = ACTIONS(4261), + [anon_sym_api] = ACTIONS(4261), + [sym_true] = ACTIONS(4261), + [sym_false] = ACTIONS(4261), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4261), + [anon_sym_include] = ACTIONS(4261), + [anon_sym_DEF] = ACTIONS(4261), + [anon_sym_IF] = ACTIONS(4261), + [anon_sym_cdef] = ACTIONS(4261), + [anon_sym_cpdef] = ACTIONS(4261), + [anon_sym_new] = ACTIONS(4261), + [anon_sym_ctypedef] = ACTIONS(4261), + [anon_sym_public] = ACTIONS(4261), + [anon_sym_packed] = ACTIONS(4261), + [anon_sym_inline] = ACTIONS(4261), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_sizeof] = ACTIONS(4261), + [sym_string_start] = ACTIONS(4263), + }, + [2179] = { + [sym_identifier] = ACTIONS(3967), + [anon_sym_import] = ACTIONS(3967), + [anon_sym_cimport] = ACTIONS(3967), + [anon_sym_from] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_STAR] = ACTIONS(3965), + [anon_sym_print] = ACTIONS(3967), + [anon_sym_assert] = ACTIONS(3967), + [anon_sym_return] = ACTIONS(3967), + [anon_sym_del] = ACTIONS(3967), + [anon_sym_raise] = ACTIONS(3967), + [anon_sym_pass] = ACTIONS(3967), + [anon_sym_break] = ACTIONS(3967), + [anon_sym_continue] = ACTIONS(3967), + [anon_sym_if] = ACTIONS(3967), + [anon_sym_match] = ACTIONS(3967), + [anon_sym_async] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3967), + [anon_sym_while] = ACTIONS(3967), + [anon_sym_try] = ACTIONS(3967), + [anon_sym_with] = ACTIONS(3967), + [anon_sym_def] = ACTIONS(3967), + [anon_sym_global] = ACTIONS(3967), + [anon_sym_nonlocal] = ACTIONS(3967), + [anon_sym_exec] = ACTIONS(3967), + [anon_sym_type] = ACTIONS(3967), + [anon_sym_class] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_AT] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_not] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3965), + [anon_sym_LT] = ACTIONS(3965), + [anon_sym_lambda] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3965), + [anon_sym_None] = ACTIONS(3967), + [anon_sym_0x] = ACTIONS(3965), + [anon_sym_0X] = ACTIONS(3965), + [anon_sym_0o] = ACTIONS(3965), + [anon_sym_0O] = ACTIONS(3965), + [anon_sym_0b] = ACTIONS(3965), + [anon_sym_0B] = ACTIONS(3965), + [aux_sym_integer_token4] = ACTIONS(3967), + [sym_float] = ACTIONS(3965), + [anon_sym_await] = ACTIONS(3967), + [anon_sym_api] = ACTIONS(3967), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3967), + [anon_sym_include] = ACTIONS(3967), + [anon_sym_DEF] = ACTIONS(3967), + [anon_sym_IF] = ACTIONS(3967), + [anon_sym_cdef] = ACTIONS(3967), + [anon_sym_cpdef] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3967), + [anon_sym_ctypedef] = ACTIONS(3967), + [anon_sym_public] = ACTIONS(3967), + [anon_sym_packed] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym_readonly] = ACTIONS(3967), + [anon_sym_sizeof] = ACTIONS(3967), + [sym__dedent] = ACTIONS(3965), + [sym_string_start] = ACTIONS(3965), + }, + [2180] = { + [ts_builtin_sym_end] = ACTIONS(4163), + [sym_identifier] = ACTIONS(4161), + [anon_sym_import] = ACTIONS(4161), + [anon_sym_cimport] = ACTIONS(4161), + [anon_sym_from] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4163), + [anon_sym_print] = ACTIONS(4161), + [anon_sym_assert] = ACTIONS(4161), + [anon_sym_return] = ACTIONS(4161), + [anon_sym_del] = ACTIONS(4161), + [anon_sym_raise] = ACTIONS(4161), + [anon_sym_pass] = ACTIONS(4161), + [anon_sym_break] = ACTIONS(4161), + [anon_sym_continue] = ACTIONS(4161), + [anon_sym_if] = ACTIONS(4161), + [anon_sym_match] = ACTIONS(4161), + [anon_sym_async] = ACTIONS(4161), + [anon_sym_for] = ACTIONS(4161), + [anon_sym_while] = ACTIONS(4161), + [anon_sym_try] = ACTIONS(4161), + [anon_sym_with] = ACTIONS(4161), + [anon_sym_def] = ACTIONS(4161), + [anon_sym_global] = ACTIONS(4161), + [anon_sym_nonlocal] = ACTIONS(4161), + [anon_sym_exec] = ACTIONS(4161), + [anon_sym_type] = ACTIONS(4161), + [anon_sym_class] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_AT] = ACTIONS(4163), + [anon_sym_DASH] = ACTIONS(4163), + [anon_sym_LBRACE] = ACTIONS(4163), + [anon_sym_PLUS] = ACTIONS(4163), + [anon_sym_not] = ACTIONS(4161), + [anon_sym_AMP] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4163), + [anon_sym_LT] = ACTIONS(4163), + [anon_sym_lambda] = ACTIONS(4161), + [anon_sym_yield] = ACTIONS(4161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4163), + [anon_sym_None] = ACTIONS(4161), + [anon_sym_0x] = ACTIONS(4163), + [anon_sym_0X] = ACTIONS(4163), + [anon_sym_0o] = ACTIONS(4163), + [anon_sym_0O] = ACTIONS(4163), + [anon_sym_0b] = ACTIONS(4163), + [anon_sym_0B] = ACTIONS(4163), + [aux_sym_integer_token4] = ACTIONS(4161), + [sym_float] = ACTIONS(4163), + [anon_sym_await] = ACTIONS(4161), + [anon_sym_api] = ACTIONS(4161), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4161), + [anon_sym_include] = ACTIONS(4161), + [anon_sym_DEF] = ACTIONS(4161), + [anon_sym_IF] = ACTIONS(4161), + [anon_sym_cdef] = ACTIONS(4161), + [anon_sym_cpdef] = ACTIONS(4161), + [anon_sym_new] = ACTIONS(4161), + [anon_sym_ctypedef] = ACTIONS(4161), + [anon_sym_public] = ACTIONS(4161), + [anon_sym_packed] = ACTIONS(4161), + [anon_sym_inline] = ACTIONS(4161), + [anon_sym_readonly] = ACTIONS(4161), + [anon_sym_sizeof] = ACTIONS(4161), + [sym_string_start] = ACTIONS(4163), + }, + [2181] = { + [ts_builtin_sym_end] = ACTIONS(4167), + [sym_identifier] = ACTIONS(4165), + [anon_sym_import] = ACTIONS(4165), + [anon_sym_cimport] = ACTIONS(4165), + [anon_sym_from] = ACTIONS(4165), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_STAR] = ACTIONS(4167), + [anon_sym_print] = ACTIONS(4165), + [anon_sym_assert] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_del] = ACTIONS(4165), + [anon_sym_raise] = ACTIONS(4165), + [anon_sym_pass] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_match] = ACTIONS(4165), + [anon_sym_async] = ACTIONS(4165), + [anon_sym_for] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_with] = ACTIONS(4165), + [anon_sym_def] = ACTIONS(4165), + [anon_sym_global] = ACTIONS(4165), + [anon_sym_nonlocal] = ACTIONS(4165), + [anon_sym_exec] = ACTIONS(4165), + [anon_sym_type] = ACTIONS(4165), + [anon_sym_class] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_DASH] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4167), + [anon_sym_not] = ACTIONS(4165), + [anon_sym_AMP] = ACTIONS(4167), + [anon_sym_TILDE] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4167), + [anon_sym_lambda] = ACTIONS(4165), + [anon_sym_yield] = ACTIONS(4165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4167), + [anon_sym_None] = ACTIONS(4165), + [anon_sym_0x] = ACTIONS(4167), + [anon_sym_0X] = ACTIONS(4167), + [anon_sym_0o] = ACTIONS(4167), + [anon_sym_0O] = ACTIONS(4167), + [anon_sym_0b] = ACTIONS(4167), + [anon_sym_0B] = ACTIONS(4167), + [aux_sym_integer_token4] = ACTIONS(4165), + [sym_float] = ACTIONS(4167), + [anon_sym_await] = ACTIONS(4165), + [anon_sym_api] = ACTIONS(4165), + [sym_true] = ACTIONS(4165), + [sym_false] = ACTIONS(4165), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4165), + [anon_sym_include] = ACTIONS(4165), + [anon_sym_DEF] = ACTIONS(4165), + [anon_sym_IF] = ACTIONS(4165), + [anon_sym_cdef] = ACTIONS(4165), + [anon_sym_cpdef] = ACTIONS(4165), + [anon_sym_new] = ACTIONS(4165), + [anon_sym_ctypedef] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_packed] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_readonly] = ACTIONS(4165), + [anon_sym_sizeof] = ACTIONS(4165), + [sym_string_start] = ACTIONS(4167), + }, + [2182] = { + [sym_identifier] = ACTIONS(4171), + [anon_sym_import] = ACTIONS(4171), + [anon_sym_cimport] = ACTIONS(4171), + [anon_sym_from] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4169), + [anon_sym_STAR] = ACTIONS(4169), + [anon_sym_print] = ACTIONS(4171), + [anon_sym_assert] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_del] = ACTIONS(4171), + [anon_sym_raise] = ACTIONS(4171), + [anon_sym_pass] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_match] = ACTIONS(4171), + [anon_sym_async] = ACTIONS(4171), + [anon_sym_for] = ACTIONS(4171), + [anon_sym_while] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_with] = ACTIONS(4171), + [anon_sym_def] = ACTIONS(4171), + [anon_sym_global] = ACTIONS(4171), + [anon_sym_nonlocal] = ACTIONS(4171), + [anon_sym_exec] = ACTIONS(4171), + [anon_sym_type] = ACTIONS(4171), + [anon_sym_class] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_AT] = ACTIONS(4169), + [anon_sym_DASH] = ACTIONS(4169), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4169), + [anon_sym_not] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4169), + [anon_sym_TILDE] = ACTIONS(4169), + [anon_sym_LT] = ACTIONS(4169), + [anon_sym_lambda] = ACTIONS(4171), + [anon_sym_yield] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4169), + [anon_sym_None] = ACTIONS(4171), + [anon_sym_0x] = ACTIONS(4169), + [anon_sym_0X] = ACTIONS(4169), + [anon_sym_0o] = ACTIONS(4169), + [anon_sym_0O] = ACTIONS(4169), + [anon_sym_0b] = ACTIONS(4169), + [anon_sym_0B] = ACTIONS(4169), + [aux_sym_integer_token4] = ACTIONS(4171), + [sym_float] = ACTIONS(4169), + [anon_sym_await] = ACTIONS(4171), + [anon_sym_api] = ACTIONS(4171), + [sym_true] = ACTIONS(4171), + [sym_false] = ACTIONS(4171), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4171), + [anon_sym_include] = ACTIONS(4171), + [anon_sym_DEF] = ACTIONS(4171), + [anon_sym_IF] = ACTIONS(4171), + [anon_sym_cdef] = ACTIONS(4171), + [anon_sym_cpdef] = ACTIONS(4171), + [anon_sym_new] = ACTIONS(4171), + [anon_sym_ctypedef] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_packed] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_readonly] = ACTIONS(4171), + [anon_sym_sizeof] = ACTIONS(4171), + [sym__dedent] = ACTIONS(4169), + [sym_string_start] = ACTIONS(4169), + }, + [2183] = { + [sym_identifier] = ACTIONS(4175), + [anon_sym_import] = ACTIONS(4175), + [anon_sym_cimport] = ACTIONS(4175), + [anon_sym_from] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [anon_sym_print] = ACTIONS(4175), + [anon_sym_assert] = ACTIONS(4175), + [anon_sym_return] = ACTIONS(4175), + [anon_sym_del] = ACTIONS(4175), + [anon_sym_raise] = ACTIONS(4175), + [anon_sym_pass] = ACTIONS(4175), + [anon_sym_break] = ACTIONS(4175), + [anon_sym_continue] = ACTIONS(4175), + [anon_sym_if] = ACTIONS(4175), + [anon_sym_match] = ACTIONS(4175), + [anon_sym_async] = ACTIONS(4175), + [anon_sym_for] = ACTIONS(4175), + [anon_sym_while] = ACTIONS(4175), + [anon_sym_try] = ACTIONS(4175), + [anon_sym_with] = ACTIONS(4175), + [anon_sym_def] = ACTIONS(4175), + [anon_sym_global] = ACTIONS(4175), + [anon_sym_nonlocal] = ACTIONS(4175), + [anon_sym_exec] = ACTIONS(4175), + [anon_sym_type] = ACTIONS(4175), + [anon_sym_class] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_not] = ACTIONS(4175), + [anon_sym_AMP] = ACTIONS(4173), + [anon_sym_TILDE] = ACTIONS(4173), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_lambda] = ACTIONS(4175), + [anon_sym_yield] = ACTIONS(4175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_None] = ACTIONS(4175), + [anon_sym_0x] = ACTIONS(4173), + [anon_sym_0X] = ACTIONS(4173), + [anon_sym_0o] = ACTIONS(4173), + [anon_sym_0O] = ACTIONS(4173), + [anon_sym_0b] = ACTIONS(4173), + [anon_sym_0B] = ACTIONS(4173), + [aux_sym_integer_token4] = ACTIONS(4175), + [sym_float] = ACTIONS(4173), + [anon_sym_await] = ACTIONS(4175), + [anon_sym_api] = ACTIONS(4175), + [sym_true] = ACTIONS(4175), + [sym_false] = ACTIONS(4175), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4175), + [anon_sym_include] = ACTIONS(4175), + [anon_sym_DEF] = ACTIONS(4175), + [anon_sym_IF] = ACTIONS(4175), + [anon_sym_cdef] = ACTIONS(4175), + [anon_sym_cpdef] = ACTIONS(4175), + [anon_sym_new] = ACTIONS(4175), + [anon_sym_ctypedef] = ACTIONS(4175), + [anon_sym_public] = ACTIONS(4175), + [anon_sym_packed] = ACTIONS(4175), + [anon_sym_inline] = ACTIONS(4175), + [anon_sym_readonly] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(4175), + [sym__dedent] = ACTIONS(4173), + [sym_string_start] = ACTIONS(4173), + }, + [2184] = { + [ts_builtin_sym_end] = ACTIONS(2879), + [sym_identifier] = ACTIONS(2877), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_cimport] = ACTIONS(2877), + [anon_sym_from] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2879), + [anon_sym_print] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_del] = ACTIONS(2877), + [anon_sym_raise] = ACTIONS(2877), + [anon_sym_pass] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_async] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2877), + [anon_sym_try] = ACTIONS(2877), + [anon_sym_with] = ACTIONS(2877), + [anon_sym_def] = ACTIONS(2877), + [anon_sym_global] = ACTIONS(2877), + [anon_sym_nonlocal] = ACTIONS(2877), + [anon_sym_exec] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_class] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_AT] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_TILDE] = ACTIONS(2879), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_lambda] = ACTIONS(2877), + [anon_sym_yield] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2879), + [anon_sym_None] = ACTIONS(2877), + [anon_sym_0x] = ACTIONS(2879), + [anon_sym_0X] = ACTIONS(2879), + [anon_sym_0o] = ACTIONS(2879), + [anon_sym_0O] = ACTIONS(2879), + [anon_sym_0b] = ACTIONS(2879), + [anon_sym_0B] = ACTIONS(2879), + [aux_sym_integer_token4] = ACTIONS(2877), + [sym_float] = ACTIONS(2879), + [anon_sym_await] = ACTIONS(2877), + [anon_sym_api] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2877), + [anon_sym_include] = ACTIONS(2877), + [anon_sym_DEF] = ACTIONS(2877), + [anon_sym_IF] = ACTIONS(2877), + [anon_sym_cdef] = ACTIONS(2877), + [anon_sym_cpdef] = ACTIONS(2877), + [anon_sym_new] = ACTIONS(2877), + [anon_sym_ctypedef] = ACTIONS(2877), + [anon_sym_public] = ACTIONS(2877), + [anon_sym_packed] = ACTIONS(2877), + [anon_sym_inline] = ACTIONS(2877), + [anon_sym_readonly] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2877), + [sym_string_start] = ACTIONS(2879), + }, + [2185] = { + [ts_builtin_sym_end] = ACTIONS(4267), + [sym_identifier] = ACTIONS(4265), + [anon_sym_import] = ACTIONS(4265), + [anon_sym_cimport] = ACTIONS(4265), + [anon_sym_from] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_print] = ACTIONS(4265), + [anon_sym_assert] = ACTIONS(4265), + [anon_sym_return] = ACTIONS(4265), + [anon_sym_del] = ACTIONS(4265), + [anon_sym_raise] = ACTIONS(4265), + [anon_sym_pass] = ACTIONS(4265), + [anon_sym_break] = ACTIONS(4265), + [anon_sym_continue] = ACTIONS(4265), + [anon_sym_if] = ACTIONS(4265), + [anon_sym_match] = ACTIONS(4265), + [anon_sym_async] = ACTIONS(4265), + [anon_sym_for] = ACTIONS(4265), + [anon_sym_while] = ACTIONS(4265), + [anon_sym_try] = ACTIONS(4265), + [anon_sym_with] = ACTIONS(4265), + [anon_sym_def] = ACTIONS(4265), + [anon_sym_global] = ACTIONS(4265), + [anon_sym_nonlocal] = ACTIONS(4265), + [anon_sym_exec] = ACTIONS(4265), + [anon_sym_type] = ACTIONS(4265), + [anon_sym_class] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_not] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_lambda] = ACTIONS(4265), + [anon_sym_yield] = ACTIONS(4265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [anon_sym_None] = ACTIONS(4265), + [anon_sym_0x] = ACTIONS(4267), + [anon_sym_0X] = ACTIONS(4267), + [anon_sym_0o] = ACTIONS(4267), + [anon_sym_0O] = ACTIONS(4267), + [anon_sym_0b] = ACTIONS(4267), + [anon_sym_0B] = ACTIONS(4267), + [aux_sym_integer_token4] = ACTIONS(4265), + [sym_float] = ACTIONS(4267), + [anon_sym_await] = ACTIONS(4265), + [anon_sym_api] = ACTIONS(4265), + [sym_true] = ACTIONS(4265), + [sym_false] = ACTIONS(4265), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4265), + [anon_sym_include] = ACTIONS(4265), + [anon_sym_DEF] = ACTIONS(4265), + [anon_sym_IF] = ACTIONS(4265), + [anon_sym_cdef] = ACTIONS(4265), + [anon_sym_cpdef] = ACTIONS(4265), + [anon_sym_new] = ACTIONS(4265), + [anon_sym_ctypedef] = ACTIONS(4265), + [anon_sym_public] = ACTIONS(4265), + [anon_sym_packed] = ACTIONS(4265), + [anon_sym_inline] = ACTIONS(4265), + [anon_sym_readonly] = ACTIONS(4265), + [anon_sym_sizeof] = ACTIONS(4265), + [sym_string_start] = ACTIONS(4267), + }, + [2186] = { + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_cimport] = ACTIONS(2317), + [anon_sym_from] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [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(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(2317), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_lambda] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_None] = ACTIONS(2317), + [anon_sym_0x] = ACTIONS(2315), + [anon_sym_0X] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0O] = ACTIONS(2315), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0B] = ACTIONS(2315), + [aux_sym_integer_token4] = ACTIONS(2317), + [sym_float] = ACTIONS(2315), + [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_IF] = ACTIONS(2317), + [anon_sym_cdef] = ACTIONS(2317), + [anon_sym_cpdef] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2315), + }, + [2187] = { + [sym_identifier] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_cimport] = ACTIONS(4271), + [anon_sym_from] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_print] = ACTIONS(4271), + [anon_sym_assert] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_del] = ACTIONS(4271), + [anon_sym_raise] = ACTIONS(4271), + [anon_sym_pass] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_match] = ACTIONS(4271), + [anon_sym_async] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_with] = ACTIONS(4271), + [anon_sym_def] = ACTIONS(4271), + [anon_sym_global] = ACTIONS(4271), + [anon_sym_nonlocal] = ACTIONS(4271), + [anon_sym_exec] = ACTIONS(4271), + [anon_sym_type] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_TILDE] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_lambda] = ACTIONS(4271), + [anon_sym_yield] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4269), + [anon_sym_None] = ACTIONS(4271), + [anon_sym_0x] = ACTIONS(4269), + [anon_sym_0X] = ACTIONS(4269), + [anon_sym_0o] = ACTIONS(4269), + [anon_sym_0O] = ACTIONS(4269), + [anon_sym_0b] = ACTIONS(4269), + [anon_sym_0B] = ACTIONS(4269), + [aux_sym_integer_token4] = ACTIONS(4271), + [sym_float] = ACTIONS(4269), + [anon_sym_await] = ACTIONS(4271), + [anon_sym_api] = ACTIONS(4271), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4271), + [anon_sym_include] = ACTIONS(4271), + [anon_sym_DEF] = ACTIONS(4271), + [anon_sym_IF] = ACTIONS(4271), + [anon_sym_cdef] = ACTIONS(4271), + [anon_sym_cpdef] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_ctypedef] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_packed] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym_readonly] = ACTIONS(4271), + [anon_sym_sizeof] = ACTIONS(4271), + [sym__dedent] = ACTIONS(4269), + [sym_string_start] = ACTIONS(4269), + }, + [2188] = { + [sym_identifier] = ACTIONS(4275), + [anon_sym_import] = ACTIONS(4275), + [anon_sym_cimport] = ACTIONS(4275), + [anon_sym_from] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_print] = ACTIONS(4275), + [anon_sym_assert] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_del] = ACTIONS(4275), + [anon_sym_raise] = ACTIONS(4275), + [anon_sym_pass] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_match] = ACTIONS(4275), + [anon_sym_async] = ACTIONS(4275), + [anon_sym_for] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_with] = ACTIONS(4275), + [anon_sym_def] = ACTIONS(4275), + [anon_sym_global] = ACTIONS(4275), + [anon_sym_nonlocal] = ACTIONS(4275), + [anon_sym_exec] = ACTIONS(4275), + [anon_sym_type] = ACTIONS(4275), + [anon_sym_class] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_AT] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4273), + [anon_sym_not] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_lambda] = ACTIONS(4275), + [anon_sym_yield] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4273), + [anon_sym_None] = ACTIONS(4275), + [anon_sym_0x] = ACTIONS(4273), + [anon_sym_0X] = ACTIONS(4273), + [anon_sym_0o] = ACTIONS(4273), + [anon_sym_0O] = ACTIONS(4273), + [anon_sym_0b] = ACTIONS(4273), + [anon_sym_0B] = ACTIONS(4273), + [aux_sym_integer_token4] = ACTIONS(4275), + [sym_float] = ACTIONS(4273), + [anon_sym_await] = ACTIONS(4275), + [anon_sym_api] = ACTIONS(4275), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4275), + [anon_sym_include] = ACTIONS(4275), + [anon_sym_DEF] = ACTIONS(4275), + [anon_sym_IF] = ACTIONS(4275), + [anon_sym_cdef] = ACTIONS(4275), + [anon_sym_cpdef] = ACTIONS(4275), + [anon_sym_new] = ACTIONS(4275), + [anon_sym_ctypedef] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_packed] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_readonly] = ACTIONS(4275), + [anon_sym_sizeof] = ACTIONS(4275), + [sym__dedent] = ACTIONS(4273), + [sym_string_start] = ACTIONS(4273), + }, + [2189] = { + [sym_identifier] = ACTIONS(4231), + [anon_sym_import] = ACTIONS(4231), + [anon_sym_cimport] = ACTIONS(4231), + [anon_sym_from] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_print] = ACTIONS(4231), + [anon_sym_assert] = ACTIONS(4231), + [anon_sym_return] = ACTIONS(4231), + [anon_sym_del] = ACTIONS(4231), + [anon_sym_raise] = ACTIONS(4231), + [anon_sym_pass] = ACTIONS(4231), + [anon_sym_break] = ACTIONS(4231), + [anon_sym_continue] = ACTIONS(4231), + [anon_sym_if] = ACTIONS(4231), + [anon_sym_match] = ACTIONS(4231), + [anon_sym_async] = ACTIONS(4231), + [anon_sym_for] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(4231), + [anon_sym_try] = ACTIONS(4231), + [anon_sym_with] = ACTIONS(4231), + [anon_sym_def] = ACTIONS(4231), + [anon_sym_global] = ACTIONS(4231), + [anon_sym_nonlocal] = ACTIONS(4231), + [anon_sym_exec] = ACTIONS(4231), + [anon_sym_type] = ACTIONS(4231), + [anon_sym_class] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_lambda] = ACTIONS(4231), + [anon_sym_yield] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4229), + [anon_sym_None] = ACTIONS(4231), + [anon_sym_0x] = ACTIONS(4229), + [anon_sym_0X] = ACTIONS(4229), + [anon_sym_0o] = ACTIONS(4229), + [anon_sym_0O] = ACTIONS(4229), + [anon_sym_0b] = ACTIONS(4229), + [anon_sym_0B] = ACTIONS(4229), + [aux_sym_integer_token4] = ACTIONS(4231), + [sym_float] = ACTIONS(4229), + [anon_sym_await] = ACTIONS(4231), + [anon_sym_api] = ACTIONS(4231), + [sym_true] = ACTIONS(4231), + [sym_false] = ACTIONS(4231), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4231), + [anon_sym_include] = ACTIONS(4231), + [anon_sym_DEF] = ACTIONS(4231), + [anon_sym_IF] = ACTIONS(4231), + [anon_sym_cdef] = ACTIONS(4231), + [anon_sym_cpdef] = ACTIONS(4231), + [anon_sym_new] = ACTIONS(4231), + [anon_sym_ctypedef] = ACTIONS(4231), + [anon_sym_public] = ACTIONS(4231), + [anon_sym_packed] = ACTIONS(4231), + [anon_sym_inline] = ACTIONS(4231), + [anon_sym_readonly] = ACTIONS(4231), + [anon_sym_sizeof] = ACTIONS(4231), + [sym__dedent] = ACTIONS(4229), + [sym_string_start] = ACTIONS(4229), + }, + [2190] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, + [2191] = { + [sym_list_splat_pattern] = STATE(2843), + [sym_primary_expression] = STATE(4075), + [sym_binary_operator] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_attribute] = STATE(2885), + [sym_subscript] = STATE(2885), + [sym_ellipsis] = STATE(2885), + [sym_call] = STATE(2885), + [sym_list] = STATE(2885), + [sym_set] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_set_comprehension] = STATE(2885), + [sym_generator_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_string] = STATE(2589), + [sym_integer] = STATE(2885), + [sym_none] = STATE(2885), + [sym_await] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [aux_sym_integer_repeat4] = STATE(2452), + [sym_identifier] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_STAR_STAR] = ACTIONS(981), + [anon_sym_exec] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1614), + [anon_sym_0X] = ACTIONS(1614), + [anon_sym_0o] = ACTIONS(1521), + [anon_sym_0O] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0B] = ACTIONS(1523), + [aux_sym_integer_token4] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_api] = ACTIONS(1606), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1537), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [26269] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2465), 14, + ACTIONS(1537), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4281), 1, + sym_identifier, + ACTIONS(4283), 1, anon_sym_LPAREN, + ACTIONS(4285), 1, anon_sym_STAR, + ACTIONS(4289), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(4291), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(3978), 1, + sym_list_splat_pattern, + STATE(4087), 1, + sym_primary_expression, + STATE(5348), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3980), 2, + sym_attribute, + sym_subscript, + STATE(5445), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(2463), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2195), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4287), 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_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(1279), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - anon_sym_LBRACK, - ACTIONS(1289), 1, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [123] = 29, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(4281), 1, + sym_identifier, + ACTIONS(4283), 1, + anon_sym_LPAREN, + ACTIONS(4285), 1, anon_sym_STAR, - ACTIONS(3675), 1, - anon_sym_COLON, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(4289), 1, + anon_sym_LBRACK, + ACTIONS(4291), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(3978), 1, sym_list_splat_pattern, - STATE(4282), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4087), 1, + sym_primary_expression, + STATE(5348), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3980), 2, + sym_attribute, + sym_subscript, + STATE(5445), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(2207), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4287), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -153751,420 +220747,269 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [26457] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2401), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [246] = 29, + ACTIONS(1505), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(2399), 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, + ACTIONS(1517), 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_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, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [26527] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3677), 14, + ACTIONS(1537), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, + sym_identifier, + ACTIONS(4297), 1, anon_sym_LPAREN, + ACTIONS(4299), 1, anon_sym_STAR, + ACTIONS(4303), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(4305), 1, 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, - [26597] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4064), 1, + sym_pattern, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3633), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4295), 2, + anon_sym_from, + anon_sym_in, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [367] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [26667] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3683), 14, - sym__dedent, + ACTIONS(1537), 1, sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, + sym_identifier, + ACTIONS(4297), 1, anon_sym_LPAREN, + ACTIONS(4299), 1, anon_sym_STAR, + ACTIONS(4303), 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(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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(4305), 1, 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, - [26737] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4064), 1, + sym_pattern, + STATE(4072), 1, + sym_primary_expression, 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(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4307), 2, + anon_sym_from, + anon_sym_in, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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_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(1279), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - anon_sym_LBRACK, - ACTIONS(1289), 1, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [488] = 29, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2227), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(2231), 1, + anon_sym_LBRACK, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(2235), 1, + anon_sym_await, + ACTIONS(4309), 1, + sym_identifier, + ACTIONS(4311), 1, + anon_sym_LPAREN, + ACTIONS(4313), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(4070), 1, + sym_primary_expression, + STATE(4101), 1, sym_list_splat_pattern, - STATE(4113), 1, - sym_expression, - STATE(5701), 1, - sym_expression_list, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(6332), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4102), 2, + sym_attribute, + sym_subscript, + STATE(6467), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(2229), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -154177,420 +221022,267 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [26925] = 3, - 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, - anon_sym_DASH, + [608] = 29, + ACTIONS(1505), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1515), 1, 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, + ACTIONS(1517), 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_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, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [26995] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3555), 14, + ACTIONS(1537), 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(2233), 1, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3553), 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, + ACTIONS(4293), 1, sym_identifier, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, 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, - [27065] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4072), 1, + sym_primary_expression, + STATE(5845), 1, + sym_pattern, + STATE(6882), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(2467), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [728] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [27135] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3691), 14, - sym__dedent, + ACTIONS(1537), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(2227), 1, anon_sym_STAR, + ACTIONS(2231), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(2233), 1, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3689), 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, + ACTIONS(2235), 1, 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, - [27205] = 3, + ACTIONS(4309), 1, + sym_identifier, + ACTIONS(4311), 1, + anon_sym_LPAREN, + ACTIONS(4319), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4070), 1, + sym_primary_expression, + STATE(4101), 1, + sym_list_splat_pattern, + STATE(6332), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3695), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4102), 2, + sym_attribute, + sym_subscript, + STATE(6467), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2229), 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_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, - [27275] = 27, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - anon_sym_LBRACK, - ACTIONS(1289), 1, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [848] = 29, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(4293), 1, + sym_identifier, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4307), 1, + anon_sym_in, + ACTIONS(4315), 1, anon_sym_STAR, - ACTIONS(3697), 1, - anon_sym_COLON, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(4317), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(4061), 1, sym_list_splat_pattern, - STATE(4273), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4064), 1, + sym_pattern, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(4301), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -154603,1819 +221295,2036 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, 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, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [968] = 29, + ACTIONS(1505), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3699), 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, + ACTIONS(1517), 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_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, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [27463] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3535), 14, + ACTIONS(1537), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4319), 1, + anon_sym_RBRACK, + ACTIONS(4321), 1, + sym_identifier, + ACTIONS(4323), 1, anon_sym_LPAREN, + ACTIONS(4325), 1, anon_sym_STAR, + ACTIONS(4329), 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(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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(4331), 1, 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, - [27533] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4084), 1, + sym_primary_expression, + STATE(4096), 1, + sym_list_splat_pattern, + STATE(6343), 1, + sym_pattern, 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(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4097), 2, + sym_attribute, + sym_subscript, + STATE(6574), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3617), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4327), 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_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(3619), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1088] = 29, + ACTIONS(1505), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3621), 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, + ACTIONS(1517), 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_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, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [27673] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3671), 14, - sym__dedent, + ACTIONS(1537), 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, + ACTIONS(2233), 1, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3673), 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, + ACTIONS(4293), 1, sym_identifier, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, 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, - [27743] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4064), 1, + sym_pattern, + STATE(4072), 1, + sym_primary_expression, 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(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3705), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1208] = 28, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4333), 1, sym_identifier, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4343), 1, 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, - [27813] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4108), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4339), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(4341), 2, + anon_sym_with, + anon_sym_nogil, + STATE(2558), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 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(3709), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4337), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1326] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, sym_identifier, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, 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, - [27883] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4072), 1, + sym_primary_expression, + STATE(6147), 1, + sym_pattern, + STATE(6988), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3711), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1446] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, sym_identifier, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, 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, - [27953] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4072), 1, + sym_primary_expression, + STATE(6132), 1, + sym_pattern, + STATE(6855), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3717), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3715), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1566] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, sym_identifier, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, 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, - [28023] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4072), 1, + sym_primary_expression, + STATE(6156), 1, + sym_pattern, + STATE(6630), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3721), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3719), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1686] = 27, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [28093] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3725), 14, - sym__dedent, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1917), 1, + anon_sym_await, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_STAR, + ACTIONS(4345), 1, + sym_identifier, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2806), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(4339), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(4341), 2, + anon_sym_with, + anon_sym_nogil, + ACTIONS(1913), 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(3723), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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, + anon_sym_api, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1802] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, sym_identifier, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, 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, - [28163] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4072), 1, + sym_primary_expression, + STATE(6125), 1, + sym_pattern, + STATE(6810), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3543), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3541), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1922] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, sym_identifier, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, 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, - [28233] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4072), 1, + sym_primary_expression, + STATE(6161), 1, + sym_pattern, + STATE(6642), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3711), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2042] = 29, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [28303] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3727), 14, + ACTIONS(1537), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4313), 1, + anon_sym_RBRACK, + ACTIONS(4321), 1, + sym_identifier, + ACTIONS(4323), 1, anon_sym_LPAREN, + ACTIONS(4325), 1, anon_sym_STAR, + ACTIONS(4329), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(4331), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4084), 1, + sym_primary_expression, + STATE(4096), 1, + sym_list_splat_pattern, + STATE(6343), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4097), 2, + sym_attribute, + sym_subscript, + STATE(6574), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3729), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4327), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2162] = 28, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [28373] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3731), 14, + ACTIONS(1537), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(2227), 1, anon_sym_STAR, + ACTIONS(2231), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(2235), 1, + anon_sym_await, + ACTIONS(4309), 1, + sym_identifier, + ACTIONS(4311), 1, + anon_sym_LPAREN, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4070), 1, + sym_primary_expression, + STATE(4101), 1, + sym_list_splat_pattern, + STATE(6332), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4102), 2, + sym_attribute, + sym_subscript, + STATE(6467), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3733), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2229), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2279] = 28, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [28443] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3735), 14, + ACTIONS(1537), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4321), 1, + sym_identifier, + ACTIONS(4323), 1, anon_sym_LPAREN, + ACTIONS(4325), 1, anon_sym_STAR, + ACTIONS(4329), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(4331), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4084), 1, + sym_primary_expression, + STATE(4096), 1, + sym_list_splat_pattern, + STATE(6343), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4097), 2, + sym_attribute, + sym_subscript, + STATE(6574), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3737), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4327), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2396] = 28, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [28513] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3741), 14, - sym__dedent, + ACTIONS(1537), 1, sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4281), 1, + sym_identifier, + ACTIONS(4283), 1, anon_sym_LPAREN, + ACTIONS(4285), 1, anon_sym_STAR, + ACTIONS(4289), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(4291), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(3978), 1, + sym_list_splat_pattern, + STATE(4087), 1, + sym_primary_expression, + STATE(5348), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3980), 2, + sym_attribute, + sym_subscript, + STATE(5445), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3739), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4287), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2513] = 28, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2193), 1, sym_identifier, + ACTIONS(2197), 1, + anon_sym_LPAREN, + ACTIONS(2203), 1, + anon_sym_LBRACK, + ACTIONS(2205), 1, 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, - [28583] = 3, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4347), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(3168), 1, + sym_list_splat_pattern, + STATE(4065), 1, + sym_pattern, + STATE(4112), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3743), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3170), 2, + sym_attribute, + sym_subscript, + STATE(4080), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3745), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2201), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2630] = 28, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, sym_identifier, + ACTIONS(4297), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_STAR, + ACTIONS(4317), 1, 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, - [28653] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4064), 1, + sym_pattern, + STATE(4072), 1, + sym_primary_expression, 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(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3747), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2747] = 28, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [28723] = 3, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(2449), 1, + sym_identifier, + ACTIONS(2451), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_LBRACK, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(4349), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(3335), 1, + sym_list_splat_pattern, + STATE(4064), 1, + sym_pattern, + STATE(4079), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3336), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2455), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2864] = 28, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [28793] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3727), 14, - sym__dedent, + ACTIONS(1537), 1, sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4293), 1, + sym_identifier, + ACTIONS(4297), 1, anon_sym_LPAREN, + ACTIONS(4299), 1, anon_sym_STAR, + ACTIONS(4303), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(4305), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(4061), 1, + sym_list_splat_pattern, + STATE(4064), 1, + sym_pattern, + STATE(4072), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4043), 2, + sym_attribute, + sym_subscript, + STATE(4106), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1610), 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(3729), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4301), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2981] = 27, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4351), 1, sym_identifier, + ACTIONS(4357), 1, 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, - [28863] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4353), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4032), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 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(3737), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4355), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3095] = 27, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4359), 1, sym_identifier, + ACTIONS(4363), 1, 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, - [28933] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4070), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3755), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4353), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3998), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 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(3757), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4361), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3209] = 27, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4365), 1, sym_identifier, + ACTIONS(4371), 1, 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, - [29003] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4082), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4367), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3348), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 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(3583), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4369), 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, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3323] = 27, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4365), 1, sym_identifier, + ACTIONS(4371), 1, 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, - [29073] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4082), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3589), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4373), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3348), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 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(3587), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4369), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3437] = 25, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [29143] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3571), 14, + ACTIONS(117), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(2543), 1, + anon_sym_STAR, + ACTIONS(2547), 1, + anon_sym_LT, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2802), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1885), 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(3569), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3546] = 25, + ACTIONS(1849), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1855), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1859), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, + ACTIONS(1863), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1865), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, sym_float, - ACTIONS(1311), 1, + ACTIONS(1877), 1, + anon_sym_await, + ACTIONS(1879), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1881), 1, sym_string_start, - ACTIONS(1368), 1, - anon_sym_STAR, - ACTIONS(1376), 1, + ACTIONS(2057), 1, anon_sym_LT, - ACTIONS(1378), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(2493), 1, + anon_sym_STAR, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3307), 1, + STATE(2669), 1, sym_primary_expression, + STATE(2895), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1374), 4, + ACTIONS(1857), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1370), 5, + ACTIONS(1853), 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, + STATE(2897), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156432,885 +223341,979 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [29323] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3333), 14, - sym__dedent, - sym_string_start, + [3655] = 25, + ACTIONS(1810), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1816), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1820), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1824), 1, 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1826), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, + sym_float, + ACTIONS(1838), 1, 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, + ACTIONS(1840), 1, anon_sym_sizeof, - [29393] = 3, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_LT, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2655), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3525), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1818), 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(3527), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1814), 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_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, + STATE(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3764] = 25, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [29463] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3537), 14, - sym__dedent, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1917), 1, + anon_sym_await, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_STAR, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2779), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1913), 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(3539), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3873] = 25, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [29533] = 3, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(1909), 1, + anon_sym_await, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, + anon_sym_STAR, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(2917), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3761), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1905), 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(3759), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1606), 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_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, + STATE(2885), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3982] = 25, + ACTIONS(1694), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, + anon_sym_LBRACE, + ACTIONS(1702), 1, + anon_sym_LT, + ACTIONS(1706), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, + sym_float, + ACTIONS(1726), 1, anon_sym_sizeof, - [29603] = 3, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(1802), 1, + anon_sym_STAR, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, + sym_string, + STATE(3149), 1, + sym_primary_expression, + STATE(3359), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3765), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1696), 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(3763), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1923), 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, + anon_sym_api, + STATE(3333), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4091] = 25, + ACTIONS(1969), 1, + anon_sym_LPAREN, + ACTIONS(1975), 1, + anon_sym_LBRACK, + ACTIONS(1979), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, + sym_float, + ACTIONS(1997), 1, 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, + ACTIONS(1999), 1, anon_sym_sizeof, - [29673] = 3, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(2147), 1, + anon_sym_LT, + ACTIONS(2563), 1, + anon_sym_STAR, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, + sym_string, + STATE(2875), 1, + sym_primary_expression, + STATE(3239), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3769), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1977), 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(3767), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1973), 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_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, + STATE(3225), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4200] = 25, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [29743] = 3, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(1965), 1, + anon_sym_await, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, + anon_sym_STAR, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(3037), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3721), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1509), 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(3719), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1606), 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(2885), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4309] = 25, + 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, - 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, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [29813] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3771), 14, + ACTIONS(117), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2681), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + 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(3773), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4418] = 25, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [29883] = 3, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2011), 1, + anon_sym_await, + ACTIONS(3171), 1, + anon_sym_STAR, + ACTIONS(3175), 1, + anon_sym_LT, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(3253), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2737), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2005), 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(2735), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1606), 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, + anon_sym_api, + STATE(2885), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4527] = 25, + ACTIONS(1931), 1, + anon_sym_LPAREN, + ACTIONS(1937), 1, + anon_sym_LBRACK, + ACTIONS(1941), 1, + anon_sym_LBRACE, + ACTIONS(1945), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1947), 1, + anon_sym_None, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, + sym_float, + ACTIONS(1959), 1, 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, + ACTIONS(1961), 1, anon_sym_sizeof, - [29953] = 3, + ACTIONS(1963), 1, + sym_string_start, + ACTIONS(2027), 1, + anon_sym_LT, + ACTIONS(2485), 1, + anon_sym_STAR, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, + sym_string, + STATE(2816), 1, + sym_primary_expression, + STATE(3221), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3769), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1939), 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(3767), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1935), 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, + anon_sym_api, + STATE(3062), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, - anon_sym_await, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4636] = 8, + ACTIONS(988), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1000), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(4377), 7, + anon_sym_class, 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, - [30023] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3561), 14, - sym__dedent, - sym_string_start, + ACTIONS(1014), 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(981), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, + 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(983), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [4711] = 25, + ACTIONS(1632), 1, + anon_sym_LBRACE, + ACTIONS(1636), 1, anon_sym_LT, + ACTIONS(1642), 1, anon_sym_DOT_DOT_DOT, - sym_float, - 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, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1644), 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_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, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, + sym_float, + ACTIONS(1672), 1, anon_sym_sizeof, - [30093] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3573), 14, - sym__dedent, + ACTIONS(1674), 1, sym_string_start, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, anon_sym_LPAREN, + ACTIONS(1901), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(4375), 1, + anon_sym_not, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(2749), 1, + sym_primary_expression, + STATE(3178), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1630), 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(3575), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1895), 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_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(1452), 1, + STATE(3183), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4820] = 24, + ACTIONS(67), 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, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, + ACTIONS(1583), 1, anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, + anon_sym_await, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2760), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(4347), 1, - sym_expression, - STATE(5352), 1, - sym_with_item, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(2779), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157327,885 +224330,894 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [30281] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3623), 14, - sym__dedent, - sym_string_start, + [4926] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1501), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1505), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - sym_float, - 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, + ACTIONS(1517), 1, anon_sym_None, - sym_integer, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4379), 1, sym_identifier, + ACTIONS(4383), 1, 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, - [30351] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4093), 1, + sym_primary_expression, 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(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2401), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 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(3747), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4381), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5036] = 24, + ACTIONS(1849), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1855), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1859), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1863), 1, anon_sym_DOT_DOT_DOT, - sym_float, - 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, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1865), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, + sym_float, + ACTIONS(1877), 1, 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, + ACTIONS(1879), 1, anon_sym_sizeof, - [30491] = 3, + ACTIONS(1881), 1, + sym_string_start, + ACTIONS(2057), 1, + anon_sym_LT, + ACTIONS(2493), 1, + anon_sym_STAR, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, + sym_string, + STATE(2663), 1, + sym_primary_expression, + STATE(2895), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2737), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1857), 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(2735), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1853), 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_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, + STATE(2897), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5142] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [30561] = 3, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(1909), 1, + anon_sym_await, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(2917), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3635), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1905), 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(3637), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1606), 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, + anon_sym_api, + STATE(2885), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5248] = 24, + ACTIONS(1931), 1, + anon_sym_LPAREN, + ACTIONS(1937), 1, + anon_sym_LBRACK, + ACTIONS(1941), 1, + anon_sym_LBRACE, + ACTIONS(1945), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1947), 1, + anon_sym_None, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, + sym_float, + ACTIONS(1959), 1, 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, + ACTIONS(1961), 1, anon_sym_sizeof, - [30631] = 3, + ACTIONS(1963), 1, + sym_string_start, + ACTIONS(2027), 1, + anon_sym_LT, + ACTIONS(2485), 1, + anon_sym_STAR, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, + sym_string, + STATE(2722), 1, + sym_primary_expression, + STATE(3221), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1939), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1935), 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, + anon_sym_api, + STATE(3062), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5354] = 24, + ACTIONS(1849), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_LBRACE, + ACTIONS(1863), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1865), 1, + anon_sym_None, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, + sym_float, + ACTIONS(1877), 1, 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, + ACTIONS(1879), 1, anon_sym_sizeof, - [30701] = 3, + ACTIONS(1881), 1, + sym_string_start, + ACTIONS(2057), 1, + anon_sym_LT, + ACTIONS(2493), 1, + anon_sym_STAR, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, + sym_string, + STATE(2636), 1, + sym_primary_expression, + STATE(2895), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3647), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1857), 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(3649), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1853), 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_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, + STATE(2897), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5460] = 24, + ACTIONS(1694), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, + anon_sym_LBRACE, + ACTIONS(1702), 1, + anon_sym_LT, + ACTIONS(1706), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, + sym_float, + ACTIONS(1726), 1, anon_sym_sizeof, - [30771] = 3, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(1802), 1, + anon_sym_STAR, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, + sym_string, + STATE(3149), 1, + sym_primary_expression, + STATE(3359), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3775), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1696), 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(3777), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1923), 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, + anon_sym_api, + STATE(3333), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5566] = 24, + ACTIONS(1849), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_LBRACE, + ACTIONS(1863), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1865), 1, + anon_sym_None, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, + sym_float, + ACTIONS(1877), 1, 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, + ACTIONS(1879), 1, anon_sym_sizeof, - [30841] = 3, + ACTIONS(1881), 1, + sym_string_start, + ACTIONS(2057), 1, + anon_sym_LT, + ACTIONS(2493), 1, + anon_sym_STAR, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, + sym_string, + STATE(2639), 1, + sym_primary_expression, + STATE(2895), 1, + sym_list_splat_pattern, 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(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1857), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1853), 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, + anon_sym_api, + STATE(2897), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5672] = 24, + ACTIONS(1849), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_LBRACE, + ACTIONS(1863), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1865), 1, + anon_sym_None, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, + sym_float, + ACTIONS(1877), 1, 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, + ACTIONS(1879), 1, anon_sym_sizeof, - [30911] = 3, + ACTIONS(1881), 1, + sym_string_start, + ACTIONS(2057), 1, + anon_sym_LT, + ACTIONS(2493), 1, + anon_sym_STAR, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, + sym_string, + STATE(2642), 1, + sym_primary_expression, + STATE(2895), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1857), 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(2411), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1853), 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, + anon_sym_api, + STATE(2897), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5778] = 24, + ACTIONS(1849), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_LBRACE, + ACTIONS(1863), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1865), 1, + anon_sym_None, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, + sym_float, + ACTIONS(1877), 1, 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, + ACTIONS(1879), 1, anon_sym_sizeof, - [30981] = 3, + ACTIONS(1881), 1, + sym_string_start, + ACTIONS(2057), 1, + anon_sym_LT, + ACTIONS(2493), 1, + anon_sym_STAR, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, + sym_string, + STATE(2643), 1, + sym_primary_expression, + STATE(2895), 1, + sym_list_splat_pattern, 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, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1857), 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(2415), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1853), 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, + anon_sym_api, + STATE(2897), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5884] = 24, + ACTIONS(1849), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_LBRACE, + ACTIONS(1863), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1865), 1, + anon_sym_None, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, + sym_float, + ACTIONS(1877), 1, 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, + ACTIONS(1879), 1, anon_sym_sizeof, - [31051] = 3, + ACTIONS(1881), 1, + sym_string_start, + ACTIONS(2057), 1, + anon_sym_LT, + ACTIONS(2493), 1, + anon_sym_STAR, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, + sym_string, + STATE(2647), 1, + sym_primary_expression, + STATE(2895), 1, + sym_list_splat_pattern, 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, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1857), 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(3643), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1853), 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_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, + STATE(2897), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5990] = 24, + ACTIONS(1849), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1855), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1859), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1863), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1865), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, sym_float, - ACTIONS(1307), 1, + ACTIONS(1877), 1, anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1879), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1881), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2057), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2493), 1, anon_sym_STAR, - ACTIONS(3779), 1, - anon_sym_COLON, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, sym_string, - STATE(2435), 1, + STATE(2648), 1, + sym_primary_expression, + STATE(2895), 1, sym_list_splat_pattern, - STATE(4273), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1857), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1853), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2897), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158222,286 +225234,328 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [31239] = 3, + [6096] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4333), 1, + sym_identifier, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4385), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4108), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3651), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2558), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3653), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4337), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6206] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [31309] = 3, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(1616), 1, + anon_sym_await, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4109), 1, + sym_primary_expression, 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(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1610), 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(3739), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1606), 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, + anon_sym_api, + STATE(2885), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6312] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4387), 1, sym_identifier, + ACTIONS(4391), 1, 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, - [31379] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4083), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3783), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3240), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 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(3781), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4389), 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_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, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6422] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(4335), 1, anon_sym_STAR, - ACTIONS(3785), 1, - anon_sym_COLON, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(4393), 1, + sym_identifier, + ACTIONS(4397), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4329), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4070), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3996), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(4395), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -158514,1019 +225568,1220 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [31567] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3771), 14, - sym__dedent, + [6532] = 24, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, + anon_sym_sizeof, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(2543), 1, + anon_sym_STAR, + ACTIONS(2547), 1, + anon_sym_LT, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2731), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1885), 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(3773), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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, + anon_sym_api, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6638] = 24, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1820), 1, + anon_sym_LBRACE, + ACTIONS(1824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, + sym_float, + ACTIONS(1838), 1, 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, + ACTIONS(1840), 1, anon_sym_sizeof, - [31637] = 3, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_LT, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2682), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3659), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1818), 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(3661), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1814), 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, + anon_sym_api, + STATE(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6744] = 24, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1820), 1, + anon_sym_LBRACE, + ACTIONS(1824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, + sym_float, + ACTIONS(1838), 1, 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, + ACTIONS(1840), 1, anon_sym_sizeof, - [31707] = 3, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_LT, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2686), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1818), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1814), 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, + anon_sym_api, + STATE(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6850] = 24, + ACTIONS(1969), 1, + anon_sym_LPAREN, + ACTIONS(1975), 1, + anon_sym_LBRACK, + ACTIONS(1979), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, + sym_float, + ACTIONS(1997), 1, 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, + ACTIONS(1999), 1, anon_sym_sizeof, - [31777] = 3, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(2147), 1, + anon_sym_LT, + ACTIONS(2563), 1, + anon_sym_STAR, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, + sym_string, + STATE(2875), 1, + sym_primary_expression, + STATE(3239), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3787), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1977), 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(3789), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1973), 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, + anon_sym_api, + STATE(3225), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6956] = 24, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1820), 1, + anon_sym_LBRACE, + ACTIONS(1824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, + sym_float, + ACTIONS(1838), 1, 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, + ACTIONS(1840), 1, anon_sym_sizeof, - [31847] = 3, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_LT, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2689), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3313), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1818), 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(3315), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1814), 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, + anon_sym_api, + STATE(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7062] = 24, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1820), 1, + anon_sym_LBRACE, + ACTIONS(1824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, + sym_float, + ACTIONS(1838), 1, 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, + ACTIONS(1840), 1, anon_sym_sizeof, - [31917] = 3, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_LT, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2691), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3333), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1818), 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(3331), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1814), 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, + anon_sym_api, + STATE(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7168] = 24, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1820), 1, + anon_sym_LBRACE, + ACTIONS(1824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, + sym_float, + ACTIONS(1838), 1, 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, + ACTIONS(1840), 1, anon_sym_sizeof, - [31987] = 3, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_LT, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2694), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3783), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1818), 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(3781), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1814), 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, + anon_sym_api, + STATE(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, sym_integer, - sym_identifier, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7274] = 24, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1820), 1, + anon_sym_LBRACE, + ACTIONS(1824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, + sym_float, + ACTIONS(1838), 1, 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, + ACTIONS(1840), 1, anon_sym_sizeof, - [32057] = 3, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_LT, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2695), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3761), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1818), 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(3759), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1814), 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(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7380] = 24, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1820), 1, + anon_sym_LBRACE, + ACTIONS(1824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1826), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, + sym_float, + ACTIONS(1838), 1, 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, + ACTIONS(1840), 1, anon_sym_sizeof, - [32127] = 3, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_LT, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2670), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, 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, - anon_sym_AT, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1818), 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(3793), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1814), 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_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, + STATE(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7486] = 24, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [32197] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3765), 14, + ACTIONS(117), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(2543), 1, + anon_sym_STAR, + ACTIONS(2547), 1, + anon_sym_LT, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2726), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1885), 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(3763), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7592] = 24, + 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(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [32267] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3591), 14, - sym__dedent, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2674), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7698] = 24, + ACTIONS(1694), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, + anon_sym_LBRACE, + ACTIONS(1702), 1, + anon_sym_LT, + ACTIONS(1706), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, + sym_float, + ACTIONS(1726), 1, anon_sym_sizeof, - [32337] = 3, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(1802), 1, + anon_sym_STAR, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, + sym_string, + STATE(3157), 1, + sym_primary_expression, + STATE(3359), 1, + sym_list_splat_pattern, 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, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1696), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1923), 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_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, + STATE(3333), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7804] = 24, + ACTIONS(1694), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, + anon_sym_LBRACE, + ACTIONS(1702), 1, + anon_sym_LT, + ACTIONS(1706), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, + sym_float, + ACTIONS(1726), 1, anon_sym_sizeof, - [32407] = 3, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(1802), 1, + anon_sym_STAR, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, + sym_string, + STATE(3158), 1, + sym_primary_expression, + STATE(3359), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3795), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1696), 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(3797), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1923), 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_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, + STATE(3333), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7910] = 24, + ACTIONS(1694), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, + anon_sym_LBRACE, + ACTIONS(1702), 1, + anon_sym_LT, + ACTIONS(1706), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, + sym_float, + ACTIONS(1726), 1, anon_sym_sizeof, - [32477] = 3, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(1802), 1, + anon_sym_STAR, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, + sym_string, + STATE(3159), 1, + sym_primary_expression, + STATE(3359), 1, + sym_list_splat_pattern, 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(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1696), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1923), 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_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(1289), 1, + STATE(3333), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8016] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2435), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(4105), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, - STATE(5825), 1, - sym_expression_list, + STATE(2675), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1587), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159543,550 +226798,646 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [32665] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3775), 14, - sym__dedent, + [8122] = 24, + 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(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, + anon_sym_sizeof, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2681), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + 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(3777), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8228] = 24, + 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(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [32735] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3801), 14, - sym__dedent, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2685), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + 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(3799), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8334] = 24, + 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(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [32805] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3565), 14, - sym__dedent, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2690), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8440] = 24, + 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(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [32875] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3677), 14, - sym__dedent, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2650), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + 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(3679), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8546] = 24, + 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(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [32945] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3551), 14, + ACTIONS(117), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2665), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + 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(3549), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8652] = 24, + 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(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [33015] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3731), 14, - sym__dedent, + ACTIONS(117), 1, sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2660), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, + 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(3733), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8758] = 24, + ACTIONS(1694), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, + anon_sym_LBRACE, + ACTIONS(1702), 1, + anon_sym_LT, + ACTIONS(1706), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, + sym_float, + ACTIONS(1726), 1, anon_sym_sizeof, - [33085] = 3, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(1802), 1, + anon_sym_STAR, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, + sym_string, + STATE(3160), 1, + sym_primary_expression, + STATE(3359), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3743), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1696), 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(3745), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1923), 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_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(1285), 1, + STATE(3333), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8864] = 24, + ACTIONS(1694), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1698), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1702), 1, + anon_sym_LT, + ACTIONS(1706), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1726), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(1802), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, sym_string, - STATE(2435), 1, + STATE(3162), 1, + sym_primary_expression, + STATE(3359), 1, sym_list_splat_pattern, - STATE(4184), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, - STATE(5776), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1696), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(3333), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160103,81 +227454,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [33273] = 27, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, + [8970] = 24, + ACTIONS(1694), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1698), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1702), 1, + anon_sym_LT, + ACTIONS(1706), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1726), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(1802), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, sym_string, - STATE(2435), 1, + STATE(3164), 1, + sym_primary_expression, + STATE(3359), 1, sym_list_splat_pattern, - STATE(4039), 1, - sym_expression, - STATE(5350), 1, - sym_expression_list, - STATE(5708), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1696), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(3333), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160194,148 +227536,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [33391] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3805), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + [9076] = 24, + ACTIONS(1694), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1698), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1702), 1, anon_sym_LT, + ACTIONS(1706), 1, 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, - 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(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, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1726), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(1802), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, sym_string, - STATE(2435), 1, + STATE(3165), 1, + sym_primary_expression, + STATE(3359), 1, sym_list_splat_pattern, - STATE(4000), 1, - sym_expression, - STATE(5507), 1, - sym_expression_list, - STATE(5708), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1696), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(3333), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160352,148 +227618,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [33579] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3795), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [9182] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(77), 1, 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, + 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_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, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [33649] = 27, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(117), 1, + sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1589), 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, + ACTIONS(1889), 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, + ACTIONS(2543), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(2547), 1, + anon_sym_LT, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2435), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(4188), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, - STATE(5828), 1, - sym_expression_list, + STATE(2700), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1885), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1587), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160510,81 +227700,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [33767] = 27, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [9288] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(1965), 1, + anon_sym_await, + ACTIONS(2191), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2787), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4042), 1, - sym_expression, - STATE(5360), 1, - sym_expression_list, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(3030), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160601,211 +227782,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [33885] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3801), 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(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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, - [33955] = 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, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3689), 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, - [34025] = 23, - ACTIONS(1279), 1, + [9394] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(1368), 1, - anon_sym_STAR, - ACTIONS(1376), 1, - anon_sym_LT, - ACTIONS(1378), 1, + ACTIONS(1965), 1, anon_sym_await, - STATE(2209), 1, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3307), 1, + STATE(3032), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1374), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1370), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160822,148 +227864,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, 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, - 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(3693), 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, - [34205] = 27, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [9500] = 24, + ACTIONS(1931), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1937), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1941), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1947), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, sym_float, - ACTIONS(1307), 1, + ACTIONS(1959), 1, anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1961), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1963), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2027), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2485), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, sym_string, - STATE(2435), 1, + STATE(2816), 1, + sym_primary_expression, + STATE(3221), 1, sym_list_splat_pattern, - STATE(4191), 1, - sym_expression, - STATE(5525), 1, - sym_expression_list, - STATE(5708), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1939), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1935), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(3062), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160980,215 +227946,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [34323] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3701), 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(3699), 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, - [34393] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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, - 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(1279), 1, + [9606] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2011), 1, + anon_sym_await, + ACTIONS(3171), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(3175), 1, + anon_sym_LT, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4194), 1, - sym_expression, - STATE(5537), 1, - sym_expression_list, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(3253), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(2005), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161205,215 +228028,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [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, + [9712] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(77), 1, 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, + 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_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, - [34651] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_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, + ACTIONS(115), 1, anon_sym_sizeof, - [34721] = 27, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(117), 1, + sym_string_start, + ACTIONS(1583), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1589), 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, + ACTIONS(1889), 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, + ACTIONS(2543), 1, anon_sym_STAR, - ACTIONS(3807), 1, - anon_sym_COLON, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(2547), 1, + anon_sym_LT, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2435), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(4273), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(2728), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1885), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1587), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161430,682 +228110,238 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [34839] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3595), 14, - sym__dedent, - sym_string_start, + [9818] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1501), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1505), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - sym_float, - 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, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1517), 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_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, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, anon_sym_sizeof, - [34909] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3599), 14, - sym__dedent, + ACTIONS(1537), 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, + ACTIONS(2233), 1, 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(4333), 1, sym_identifier, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4399), 1, 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, - [34979] = 3, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(4108), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3655), 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(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, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, 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, - [35049] = 3, - 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(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2558), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 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), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(4337), 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_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(2473), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [9928] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(77), 1, 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, + 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_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, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, + sym_float, + ACTIONS(115), 1, anon_sym_sizeof, - [35189] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3805), 14, + ACTIONS(117), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1583), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1589), 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(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, + ACTIONS(1889), 1, 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, - [35259] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3703), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(2543), 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(2547), 1, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3705), 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, - [35329] = 3, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, + sym_string, + STATE(2599), 1, + sym_list_splat_pattern, + STATE(2772), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 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(3709), 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, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, 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, - [35399] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3787), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1885), 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(3789), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1587), 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_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, - [35469] = 26, - ACTIONS(67), 1, + STATE(2544), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [10034] = 24, + ACTIONS(1969), 1, + anon_sym_LPAREN, + ACTIONS(1975), 1, + anon_sym_LBRACK, + ACTIONS(1979), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1983), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1997), 1, + anon_sym_await, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(2001), 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(2819), 1, - anon_sym_not, - ACTIONS(2821), 1, - anon_sym_lambda, - ACTIONS(2823), 1, - anon_sym_new, - ACTIONS(3175), 1, + ACTIONS(2147), 1, + anon_sym_LT, + ACTIONS(2563), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, sym_string, - STATE(2215), 1, + STATE(2999), 1, + sym_primary_expression, + STATE(3239), 1, sym_list_splat_pattern, - STATE(3545), 1, - sym_expression, - STATE(5878), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1977), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1973), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(3225), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162122,79 +228358,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [35584] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [10140] = 24, + ACTIONS(1969), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1975), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1979), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1983), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, sym_float, - ACTIONS(1307), 1, + ACTIONS(1997), 1, anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2147), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2563), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, sym_string, - STATE(2435), 1, + STATE(3000), 1, + sym_primary_expression, + STATE(3239), 1, sym_list_splat_pattern, - STATE(4403), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1977), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1973), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(3225), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162211,84 +228440,160 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [35699] = 27, - ACTIONS(1448), 1, + [10246] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, + ACTIONS(4393), 1, sym_identifier, - ACTIONS(3813), 1, + ACTIONS(4401), 1, anon_sym_await, - STATE(2259), 1, - sym_primary_expression, - STATE(2403), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4296), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(4070), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2583), 2, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3996), 2, sym_attribute, sym_subscript, - ACTIONS(1464), 3, + ACTIONS(1610), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4395), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [10356] = 24, + ACTIONS(1969), 1, + anon_sym_LPAREN, + ACTIONS(1975), 1, + anon_sym_LBRACK, + ACTIONS(1979), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, + sym_float, + ACTIONS(1997), 1, + anon_sym_await, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(2147), 1, + anon_sym_LT, + ACTIONS(2563), 1, + anon_sym_STAR, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, + sym_string, + STATE(3001), 1, + sym_primary_expression, + STATE(3239), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1977), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3811), 5, + ACTIONS(1973), 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), 18, + STATE(3225), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -162301,79 +228606,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [35816] = 26, - ACTIONS(2545), 1, + [10462] = 24, + ACTIONS(1969), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1975), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1979), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1983), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1997), 1, + anon_sym_await, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2601), 1, + ACTIONS(2147), 1, anon_sym_LT, - 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, + ACTIONS(2563), 1, anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, sym_string, - STATE(2610), 1, + STATE(3002), 1, + sym_primary_expression, + STATE(3239), 1, sym_list_splat_pattern, - STATE(4045), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(1977), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1973), 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, + STATE(3225), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162390,79 +228688,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [35931] = 26, - ACTIONS(2545), 1, + [10568] = 24, + ACTIONS(1969), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1975), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1979), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1983), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1997), 1, + anon_sym_await, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2601), 1, + ACTIONS(2147), 1, anon_sym_LT, - 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, + ACTIONS(2563), 1, anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, sym_string, - STATE(2610), 1, + STATE(3003), 1, + sym_primary_expression, + STATE(3239), 1, sym_list_splat_pattern, - STATE(4046), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(1977), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1973), 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, + STATE(3225), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162479,79 +228770,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36046] = 26, - ACTIONS(2545), 1, + [10674] = 24, + ACTIONS(1969), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1975), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1979), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1983), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1997), 1, + anon_sym_await, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2601), 1, + ACTIONS(2147), 1, anon_sym_LT, - 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, + ACTIONS(2563), 1, anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, sym_string, - STATE(2610), 1, + STATE(3005), 1, + sym_primary_expression, + STATE(3239), 1, sym_list_splat_pattern, - STATE(4047), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(1977), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1973), 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, + STATE(3225), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162568,79 +228852,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36161] = 26, - ACTIONS(2545), 1, + [10780] = 24, + ACTIONS(1969), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1975), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1979), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1983), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1997), 1, + anon_sym_await, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2601), 1, + ACTIONS(2147), 1, anon_sym_LT, - 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, + ACTIONS(2563), 1, anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, sym_string, - STATE(2610), 1, + STATE(3006), 1, + sym_primary_expression, + STATE(3239), 1, sym_list_splat_pattern, - STATE(2637), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(1977), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1973), 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, + STATE(3225), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162657,79 +228934,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36276] = 26, - ACTIONS(2545), 1, + [10886] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(1537), 1, sym_string_start, - 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(2921), 1, + ACTIONS(1965), 1, anon_sym_await, - ACTIONS(3105), 1, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2610), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4048), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, + STATE(3034), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162746,79 +229016,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36391] = 26, - ACTIONS(1448), 1, + [10992] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, + ACTIONS(2011), 1, anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(3171), 1, + anon_sym_STAR, + ACTIONS(3175), 1, + anon_sym_LT, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4343), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(3263), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(2005), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162835,79 +229098,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36506] = 26, - ACTIONS(1394), 1, + [11098] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, - anon_sym_LT, - ACTIONS(1404), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1406), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1410), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1426), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(1558), 1, - anon_sym_LBRACK, - ACTIONS(1560), 1, + ACTIONS(2011), 1, anon_sym_await, - ACTIONS(2503), 1, - anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, + ACTIONS(3171), 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, + ACTIONS(3175), 1, + anon_sym_LT, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2540), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(2643), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + STATE(3264), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1392), 4, + ACTIONS(2005), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1556), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162924,79 +229180,154 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36621] = 26, - ACTIONS(2545), 1, + [11204] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2601), 1, + ACTIONS(2011), 1, + anon_sym_await, + ACTIONS(3171), 1, + anon_sym_STAR, + ACTIONS(3175), 1, anon_sym_LT, - ACTIONS(2913), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, + sym_string, + STATE(2843), 1, + sym_list_splat_pattern, + STATE(3265), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, sym_identifier, - ACTIONS(2921), 1, + sym_true, + sym_false, + ACTIONS(2005), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1606), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2885), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [11310] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, + sym_float, + ACTIONS(1535), 1, + anon_sym_sizeof, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(2011), 1, anon_sym_await, - ACTIONS(3105), 1, + ACTIONS(3171), 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, + ACTIONS(3175), 1, + anon_sym_LT, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2572), 1, - sym_expression, - STATE(2610), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(5539), 1, - sym__named_expression_lhs, + STATE(3266), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(2005), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163013,79 +229344,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36736] = 26, - ACTIONS(2545), 1, + [11416] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(1537), 1, sym_string_start, - 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(2921), 1, + ACTIONS(2011), 1, anon_sym_await, - ACTIONS(3105), 1, + ACTIONS(3171), 1, anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, + ACTIONS(3175), 1, + anon_sym_LT, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2610), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4066), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, + STATE(3267), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(2005), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163102,79 +229426,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36851] = 26, - ACTIONS(2545), 1, + [11522] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(2913), 1, - sym_identifier, - ACTIONS(2921), 1, + ACTIONS(2011), 1, anon_sym_await, - ACTIONS(3105), 1, + ACTIONS(3171), 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, + ACTIONS(3175), 1, + anon_sym_LT, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2584), 1, - sym_expression, - STATE(2610), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(5539), 1, - sym__named_expression_lhs, + STATE(3268), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(2005), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163191,79 +229508,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [36966] = 26, - ACTIONS(2545), 1, + [11628] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(1537), 1, sym_string_start, - 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(2921), 1, + ACTIONS(2011), 1, anon_sym_await, - ACTIONS(3105), 1, + ACTIONS(3171), 1, anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, + ACTIONS(3175), 1, + anon_sym_LT, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2610), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4074), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, + STATE(3222), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(2005), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163280,168 +229590,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [37081] = 26, - ACTIONS(2477), 1, - anon_sym_LPAREN, - ACTIONS(2483), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + [11734] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - 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(2161), 1, - sym_primary_expression, - STATE(2226), 1, - sym_string, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(3932), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - [37196] = 26, - ACTIONS(2477), 1, + ACTIONS(1583), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(1589), 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(2633), 1, - anon_sym_lambda, - ACTIONS(2637), 1, + ACTIONS(1917), 1, anon_sym_await, - ACTIONS(2639), 1, - anon_sym_new, - ACTIONS(3093), 1, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_STAR, - STATE(2161), 1, - sym_primary_expression, - STATE(2226), 1, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2500), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(3949), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, + STATE(2801), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163458,79 +229672,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [37311] = 26, - ACTIONS(2477), 1, - anon_sym_LPAREN, - ACTIONS(2483), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + [11840] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - ACTIONS(2629), 1, - anon_sym_not, - ACTIONS(2631), 1, - anon_sym_LT, - ACTIONS(2633), 1, - anon_sym_lambda, - ACTIONS(2637), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, anon_sym_await, - ACTIONS(2639), 1, - anon_sym_new, - ACTIONS(3093), 1, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_STAR, - STATE(2161), 1, - sym_primary_expression, - STATE(2226), 1, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2500), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(3954), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, + STATE(2804), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163547,79 +229754,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [37426] = 26, - ACTIONS(2477), 1, - anon_sym_LPAREN, - ACTIONS(2483), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + [11946] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - ACTIONS(2629), 1, - anon_sym_not, - ACTIONS(2631), 1, - anon_sym_LT, - ACTIONS(2633), 1, - anon_sym_lambda, - ACTIONS(2637), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, anon_sym_await, - ACTIONS(2639), 1, - anon_sym_new, - ACTIONS(3093), 1, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_STAR, - STATE(2161), 1, - sym_primary_expression, - STATE(2226), 1, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2442), 1, - sym_expression, - STATE(2500), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(5722), 1, - sym__named_expression_lhs, + STATE(2809), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163636,79 +229836,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [37541] = 26, - ACTIONS(2477), 1, - anon_sym_LPAREN, - ACTIONS(2483), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + [12052] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - ACTIONS(2629), 1, - anon_sym_not, - ACTIONS(2631), 1, - anon_sym_LT, - ACTIONS(2633), 1, - anon_sym_lambda, - ACTIONS(2637), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, anon_sym_await, - ACTIONS(2639), 1, - anon_sym_new, - ACTIONS(3093), 1, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_STAR, - STATE(2161), 1, - sym_primary_expression, - STATE(2226), 1, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2500), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(3958), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, + STATE(2810), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163725,79 +229918,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [37656] = 26, - ACTIONS(2477), 1, - anon_sym_LPAREN, - ACTIONS(2483), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + [12158] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - ACTIONS(2631), 1, - anon_sym_LT, - ACTIONS(2637), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, anon_sym_await, - ACTIONS(3093), 1, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 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(2226), 1, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2470), 1, - sym_expression, - STATE(2500), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + STATE(2813), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163814,79 +230000,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [37771] = 26, - ACTIONS(2477), 1, - anon_sym_LPAREN, - ACTIONS(2483), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + [12264] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - ACTIONS(2629), 1, - anon_sym_not, - ACTIONS(2631), 1, - anon_sym_LT, - ACTIONS(2633), 1, - anon_sym_lambda, - ACTIONS(2637), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, anon_sym_await, - ACTIONS(2639), 1, - anon_sym_new, - ACTIONS(3093), 1, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_STAR, - STATE(2161), 1, - sym_primary_expression, - STATE(2226), 1, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2500), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(3917), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, + STATE(2814), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163903,79 +230082,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [37886] = 26, - ACTIONS(2477), 1, - anon_sym_LPAREN, - ACTIONS(2483), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + [12370] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - ACTIONS(2631), 1, - anon_sym_LT, - ACTIONS(2637), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, anon_sym_await, - ACTIONS(3093), 1, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 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(2226), 1, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2377), 1, - sym_expression, - STATE(2500), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + STATE(2815), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163992,79 +230164,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38001] = 26, - ACTIONS(2477), 1, + [12476] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2487), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - ACTIONS(2629), 1, - anon_sym_not, - ACTIONS(2631), 1, - anon_sym_LT, - ACTIONS(2633), 1, - anon_sym_lambda, - ACTIONS(2637), 1, + ACTIONS(1965), 1, anon_sym_await, - ACTIONS(2639), 1, - anon_sym_new, - ACTIONS(3093), 1, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, anon_sym_STAR, - STATE(2161), 1, - sym_primary_expression, - STATE(2226), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2500), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3928), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, + STATE(3039), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164081,79 +230246,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38116] = 26, - ACTIONS(2437), 1, + [12582] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1537), 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, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, + ACTIONS(1965), 1, anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2465), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3969), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, + STATE(3040), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164170,79 +230328,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38231] = 26, - ACTIONS(2437), 1, + [12688] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1537), 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, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, + ACTIONS(1965), 1, anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2465), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3971), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, + STATE(3041), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164259,83 +230410,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38346] = 26, - ACTIONS(2437), 1, + [12794] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2763), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(2767), 1, - anon_sym_lambda, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4403), 1, sym_identifier, - ACTIONS(2879), 1, + ACTIONS(4407), 1, anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2465), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3972), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2773), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(4405), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -164348,79 +230494,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38461] = 26, - ACTIONS(2437), 1, + [12904] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1537), 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, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, + ACTIONS(1965), 1, anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2465), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3973), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, + STATE(3042), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164437,79 +230576,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38576] = 26, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, + [13010] = 24, + ACTIONS(1632), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1636), 1, + anon_sym_LT, + ACTIONS(1642), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1644), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1672), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1674), 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, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, + ACTIONS(2435), 1, + anon_sym_STAR, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, sym_string, - STATE(2465), 1, + STATE(2789), 1, + sym_primary_expression, + STATE(3178), 1, sym_list_splat_pattern, - STATE(3976), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(1895), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164526,79 +230658,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38691] = 26, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, + [13116] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2757), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(2543), 1, anon_sym_STAR, - ACTIONS(2765), 1, + ACTIONS(2547), 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, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2465), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(2535), 1, - sym_expression, - STATE(5596), 1, - sym__named_expression_lhs, + STATE(2729), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1885), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(1587), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164615,83 +230740,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38806] = 26, - ACTIONS(1394), 1, + [13222] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1396), 1, - anon_sym_not, - ACTIONS(1398), 1, - anon_sym_LT, - ACTIONS(1400), 1, - anon_sym_lambda, - ACTIONS(1404), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1406), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1410), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1416), 1, - anon_sym_new, - ACTIONS(1426), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(1558), 1, - anon_sym_LBRACK, - ACTIONS(1560), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4383), 1, anon_sym_await, - ACTIONS(2503), 1, - anon_sym_LPAREN, - ACTIONS(2827), 1, + ACTIONS(4409), 1, sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - STATE(2169), 1, - sym_primary_expression, - STATE(2242), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2540), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3995), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, + STATE(4093), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1392), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2401), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1556), 5, + ACTIONS(4381), 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -164704,83 +230824,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [38921] = 26, - ACTIONS(2437), 1, + [13332] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2763), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(2767), 1, - anon_sym_lambda, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4385), 1, anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, + ACTIONS(4411), 1, + sym_identifier, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2465), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3918), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, + STATE(4108), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2558), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(4337), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -164793,79 +230908,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39036] = 26, - ACTIONS(2437), 1, + [13442] = 24, + ACTIONS(1931), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(1937), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(1941), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1947), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1959), 1, + anon_sym_await, + ACTIONS(1961), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1963), 1, sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2765), 1, + ACTIONS(2027), 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, + ACTIONS(2485), 1, + anon_sym_STAR, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, sym_string, - STATE(2456), 1, - sym_expression, - STATE(2465), 1, + STATE(2718), 1, + sym_primary_expression, + STATE(3221), 1, sym_list_splat_pattern, - STATE(5596), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1939), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(1935), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(3062), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164882,79 +230990,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39151] = 26, - ACTIONS(2437), 1, + [13548] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1537), 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, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, + ACTIONS(1965), 1, anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2465), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3923), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, + STATE(2882), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164971,83 +231072,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39266] = 26, - ACTIONS(1448), 1, + [13654] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, + ACTIONS(4413), 1, sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(4417), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4288), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4023), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(4415), 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -165060,79 +231156,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39381] = 26, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, + [13764] = 24, + ACTIONS(67), 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, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, + ACTIONS(1583), 1, anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(2543), 1, + anon_sym_STAR, + ACTIONS(2547), 1, + anon_sym_LT, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2760), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(4293), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(2705), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1885), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165149,83 +231238,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39496] = 26, - ACTIONS(1448), 1, + [13870] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, + ACTIONS(4403), 1, sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(4419), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4294), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2773), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(4405), 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -165238,79 +231322,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39611] = 26, - ACTIONS(1448), 1, + [13980] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, + ACTIONS(1909), 1, anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2753), 1, - sym_expression, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(2855), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1905), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165327,79 +231404,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39726] = 26, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, + [14086] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1454), 1, - anon_sym_not, - ACTIONS(1456), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1458), 1, - anon_sym_lambda, - ACTIONS(1460), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, + ACTIONS(1583), 1, anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1595), 1, + anon_sym_await, + ACTIONS(2592), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2760), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(4301), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(2667), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165416,79 +231486,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39841] = 26, - ACTIONS(1448), 1, + [14192] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, - anon_sym_LT, - ACTIONS(1460), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, + ACTIONS(1965), 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(2403), 1, + ACTIONS(2191), 1, + anon_sym_LT, + ACTIONS(2787), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(2780), 1, - sym_expression, - STATE(5611), 1, - sym__named_expression_lhs, + STATE(3037), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1509), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165505,83 +231568,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [39956] = 26, - ACTIONS(1448), 1, + [14298] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, + ACTIONS(4421), 1, sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(4425), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4322), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(4081), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2879), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(4423), 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -165594,79 +231652,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [40071] = 26, - ACTIONS(1448), 1, + [14408] = 24, + ACTIONS(1931), 1, + anon_sym_LPAREN, + ACTIONS(1937), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1941), 1, anon_sym_LBRACE, - ACTIONS(1456), 1, - anon_sym_LT, - ACTIONS(1460), 1, + ACTIONS(1945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1947), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, sym_float, - ACTIONS(1472), 1, + ACTIONS(1959), 1, + anon_sym_await, + ACTIONS(1961), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1963), 1, sym_string_start, - ACTIONS(2427), 1, + ACTIONS(2027), 1, + anon_sym_LT, + ACTIONS(2485), 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, - ACTIONS(3843), 1, - anon_sym_new, - STATE(2258), 1, - sym_primary_expression, - STATE(2403), 1, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, sym_string, - STATE(2760), 1, + STATE(2758), 1, + sym_primary_expression, + STATE(3221), 1, sym_list_splat_pattern, - STATE(2793), 1, - sym_expression, - STATE(5611), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1939), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1935), 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, + STATE(3062), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165683,83 +231734,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [40186] = 26, - ACTIONS(1448), 1, + [14514] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, + ACTIONS(4427), 1, sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(4429), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4341), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2773), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(4405), 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -165772,83 +231818,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [40301] = 26, - ACTIONS(2517), 1, + [14624] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_not, - ACTIONS(2727), 1, + ACTIONS(2233), 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, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, + ACTIONS(4365), 1, + sym_identifier, + ACTIONS(4371), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2736), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3907), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + STATE(4082), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3348), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(4369), 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -165861,79 +231902,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [40416] = 26, - ACTIONS(2517), 1, + [14734] = 24, + ACTIONS(1849), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(1855), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(1859), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1863), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1865), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1877), 1, + anon_sym_await, + ACTIONS(1879), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1881), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_not, - ACTIONS(2727), 1, + ACTIONS(2057), 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, + ACTIONS(2493), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, sym_string, - STATE(2736), 1, + STATE(2657), 1, + sym_primary_expression, + STATE(2895), 1, sym_list_splat_pattern, - STATE(3909), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1857), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(1853), 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, + STATE(2897), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165950,79 +231984,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, 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, + [14840] = 24, + ACTIONS(1632), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1636), 1, + anon_sym_LT, + ACTIONS(1642), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1644), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1672), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1674), 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, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, anon_sym_await, - ACTIONS(2733), 1, - anon_sym_new, - ACTIONS(3097), 1, - sym_identifier, - ACTIONS(3233), 1, + ACTIONS(2435), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, sym_string, - STATE(2736), 1, + STATE(2746), 1, + sym_primary_expression, + STATE(3178), 1, sym_list_splat_pattern, - STATE(3910), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(1895), 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166039,79 +232066,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [40646] = 26, - ACTIONS(2517), 1, - anon_sym_LPAREN, - ACTIONS(2523), 1, - anon_sym_LBRACK, - ACTIONS(2527), 1, + [14946] = 24, + ACTIONS(1632), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1636), 1, + anon_sym_LT, + ACTIONS(1642), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1644), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1672), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1674), 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, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, anon_sym_await, - ACTIONS(2733), 1, - anon_sym_new, - ACTIONS(3097), 1, - sym_identifier, - ACTIONS(3233), 1, + ACTIONS(2435), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, sym_string, - STATE(2709), 1, - sym_expression, - STATE(2736), 1, + STATE(2747), 1, + sym_primary_expression, + STATE(3178), 1, sym_list_splat_pattern, - STATE(5751), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(1895), 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166128,79 +232148,156 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [40761] = 26, - ACTIONS(2517), 1, + [15052] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_not, - ACTIONS(2727), 1, + ACTIONS(2233), 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, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, + ACTIONS(4431), 1, + sym_identifier, + ACTIONS(4435), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2736), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3912), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + STATE(4070), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, + sym_true, + sym_false, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3156), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4433), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2885), 19, + 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_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [15162] = 24, + ACTIONS(1632), 1, + anon_sym_LBRACE, + ACTIONS(1636), 1, + anon_sym_LT, + ACTIONS(1642), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1644), 1, + anon_sym_None, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, + sym_float, + ACTIONS(1672), 1, + anon_sym_sizeof, + ACTIONS(1674), 1, + sym_string_start, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, + anon_sym_await, + ACTIONS(2435), 1, + anon_sym_STAR, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(2749), 1, + sym_primary_expression, + STATE(3178), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(1895), 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166217,79 +232314,154 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [40876] = 26, - ACTIONS(2517), 1, + [15268] = 24, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(1816), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(1820), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1824), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1826), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1838), 1, + anon_sym_await, + ACTIONS(1840), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1842), 1, sym_string_start, - ACTIONS(2727), 1, + ACTIONS(2163), 1, + anon_sym_STAR, + ACTIONS(2171), 1, anon_sym_LT, - ACTIONS(2731), 1, - anon_sym_await, - ACTIONS(3097), 1, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, + sym_string, + STATE(2651), 1, + sym_primary_expression, + STATE(2890), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, sym_identifier, - ACTIONS(3233), 1, + sym_true, + sym_false, + ACTIONS(1818), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1814), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2971), 21, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_integer, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [15374] = 24, + ACTIONS(1632), 1, + anon_sym_LBRACE, + ACTIONS(1636), 1, + anon_sym_LT, + ACTIONS(1642), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1644), 1, + anon_sym_None, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, + sym_float, + ACTIONS(1672), 1, + anon_sym_sizeof, + ACTIONS(1674), 1, + sym_string_start, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, + anon_sym_await, + ACTIONS(2435), 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(2324), 1, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, sym_string, - STATE(2680), 1, - sym_expression, - STATE(2736), 1, + STATE(2750), 1, + sym_primary_expression, + STATE(3178), 1, sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(1895), 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166306,79 +232478,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, 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, + [15480] = 24, + ACTIONS(1632), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1636), 1, + anon_sym_LT, + ACTIONS(1642), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1644), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1672), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1674), 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, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, anon_sym_await, - ACTIONS(2733), 1, - anon_sym_new, - ACTIONS(3097), 1, - sym_identifier, - ACTIONS(3233), 1, + ACTIONS(2435), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, sym_string, - STATE(2736), 1, + STATE(2751), 1, + sym_primary_expression, + STATE(3178), 1, sym_list_splat_pattern, - STATE(3914), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(1895), 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166395,79 +232560,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [41106] = 26, - ACTIONS(2517), 1, + [15586] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(1616), 1, anon_sym_await, - ACTIONS(3097), 1, - sym_identifier, - ACTIONS(3233), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 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(2324), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2682), 1, - sym_expression, - STATE(2736), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + STATE(4078), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166484,79 +232642,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [41221] = 26, - ACTIONS(2517), 1, + [15692] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1537), 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, + ACTIONS(1616), 1, anon_sym_await, - ACTIONS(2733), 1, - anon_sym_new, - ACTIONS(3097), 1, - sym_identifier, - ACTIONS(3233), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2736), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3915), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + STATE(4085), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2719), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166573,79 +232724,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [41336] = 26, + [15798] = 24, 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, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(1583), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(2543), 1, anon_sym_STAR, - 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(2140), 1, + ACTIONS(2547), 1, + anon_sym_LT, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2199), 1, - sym_expression, - STATE(2215), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(5657), 1, - sym__named_expression_lhs, + STATE(2802), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1885), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1587), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166662,79 +232806,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [41451] = 26, - ACTIONS(67), 1, + [15904] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, + ACTIONS(1616), 1, anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3533), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(4090), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166751,79 +232888,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [41566] = 26, - ACTIONS(1394), 1, + [16010] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1396), 1, - anon_sym_not, - ACTIONS(1398), 1, - anon_sym_LT, - ACTIONS(1400), 1, - anon_sym_lambda, - ACTIONS(1404), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1406), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1410), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1416), 1, - anon_sym_new, - ACTIONS(1426), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(1558), 1, - anon_sym_LBRACK, - ACTIONS(1560), 1, + ACTIONS(1616), 1, anon_sym_await, - ACTIONS(2503), 1, - anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2169), 1, - sym_primary_expression, - STATE(2242), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2540), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(2588), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, + STATE(4094), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1392), 4, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1556), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166840,82 +232970,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [41681] = 27, - ACTIONS(2517), 1, + [16116] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2539), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_not, - ACTIONS(2727), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(2729), 1, - anon_sym_lambda, - ACTIONS(2733), 1, - anon_sym_new, - ACTIONS(3233), 1, + ACTIONS(4335), 1, anon_sym_STAR, - ACTIONS(3857), 1, + ACTIONS(4403), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(4437), 1, anon_sym_await, - STATE(2277), 1, - sym_primary_expression, - STATE(2324), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2736), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4312), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_attribute, - sym_subscript, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(2525), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2773), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3859), 5, + ACTIONS(4405), 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), 18, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -166930,79 +233054,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [41798] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [16226] = 24, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(1616), 1, + anon_sym_await, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4314), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4095), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167019,79 +233136,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [41913] = 26, - ACTIONS(67), 1, + [16332] = 24, + ACTIONS(1694), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1702), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1706), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1718), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1726), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1728), 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, + ACTIONS(1802), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1927), 1, + anon_sym_await, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(3015), 1, sym_string, - STATE(2215), 1, + STATE(3113), 1, + sym_primary_expression, + STATE(3359), 1, sym_list_splat_pattern, - STATE(4064), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1710), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1722), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1696), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(3333), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167108,79 +233218,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42028] = 26, - ACTIONS(1448), 1, + [16438] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, + ACTIONS(1616), 1, anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4317), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(4099), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167197,79 +233300,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42143] = 26, - ACTIONS(67), 1, + [16544] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, + ACTIONS(1616), 1, anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4373), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(4100), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167286,79 +233382,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42258] = 26, - ACTIONS(67), 1, + [16650] = 24, + ACTIONS(1632), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1636), 1, anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1642), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1644), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1672), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1674), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1792), 1, anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(1891), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_STAR, - 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(2140), 1, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, sym_string, - STATE(2215), 1, + STATE(2752), 1, + sym_primary_expression, + STATE(3178), 1, sym_list_splat_pattern, - STATE(2235), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1895), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167375,83 +233464,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42373] = 26, - ACTIONS(67), 1, + [16756] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 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, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, anon_sym_STAR, - 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(2140), 1, + ACTIONS(4391), 1, + anon_sym_await, + ACTIONS(4439), 1, + sym_identifier, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2194), 1, - sym_expression, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(5657), 1, - sym__named_expression_lhs, + STATE(4083), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3240), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4389), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -167464,79 +233548,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42488] = 26, - ACTIONS(67), 1, + [16866] = 24, + ACTIONS(1969), 1, + anon_sym_LPAREN, + ACTIONS(1975), 1, + anon_sym_LBRACK, + ACTIONS(1979), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1983), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(1995), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1997), 1, + anon_sym_await, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(2001), 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, + ACTIONS(2147), 1, + anon_sym_LT, + ACTIONS(2563), 1, anon_sym_STAR, - 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(2140), 1, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(2727), 1, sym_string, - STATE(2205), 1, - sym_expression, - STATE(2215), 1, + STATE(2913), 1, + sym_primary_expression, + STATE(3239), 1, sym_list_splat_pattern, - STATE(5657), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1987), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1967), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1977), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1973), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(3225), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167553,83 +233630,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42603] = 26, - ACTIONS(67), 1, + [16972] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4441), 1, sym_identifier, - ACTIONS(895), 1, + ACTIONS(4445), 1, anon_sym_await, - 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, - STATE(2130), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2186), 1, - sym_expression, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(5657), 1, - sym__named_expression_lhs, + STATE(4084), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3181), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4443), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -167642,79 +233714,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42718] = 26, - ACTIONS(67), 1, + [17082] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, + ACTIONS(2011), 1, anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(3171), 1, anon_sym_STAR, - 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(2140), 1, + ACTIONS(3175), 1, + anon_sym_LT, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2214), 1, - sym_expression, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(5657), 1, - sym__named_expression_lhs, + STATE(3305), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2009), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2005), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167731,83 +233796,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42833] = 26, - ACTIONS(2437), 1, + [17188] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2765), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(2871), 1, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4447), 1, sym_identifier, - ACTIONS(2879), 1, + ACTIONS(4451), 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, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2465), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4393), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + STATE(4086), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2898), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(4449), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -167820,79 +233880,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [42948] = 26, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, + [17298] = 24, + ACTIONS(67), 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, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, + ACTIONS(1583), 1, anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, + anon_sym_await, + ACTIONS(3023), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_STAR, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2760), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(4366), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(2806), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1913), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1587), 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167909,83 +233962,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43063] = 26, - ACTIONS(67), 1, + [17404] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4365), 1, sym_identifier, - ACTIONS(895), 1, + ACTIONS(4453), 1, anon_sym_await, - 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, - STATE(2130), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2210), 1, - sym_expression, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(5657), 1, - sym__named_expression_lhs, + STATE(4070), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3348), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4369), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -167998,83 +234046,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43178] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [17514] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(4351), 1, + sym_identifier, + ACTIONS(4455), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4523), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4032), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(4355), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168087,83 +234130,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43293] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [17624] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(4457), 1, + sym_identifier, + ACTIONS(4461), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4358), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4079), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3406), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(4459), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168176,83 +234214,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43408] = 26, - ACTIONS(2545), 1, + [17734] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2567), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2601), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(2603), 1, - anon_sym_lambda, - ACTIONS(2609), 1, - anon_sym_new, - ACTIONS(2913), 1, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4403), 1, sym_identifier, - ACTIONS(2921), 1, + ACTIONS(4463), 1, anon_sym_await, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2610), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4109), 1, - sym_expression, - STATE(5863), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(2553), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2773), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2917), 5, + ACTIONS(4405), 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168265,83 +234298,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43523] = 26, - ACTIONS(67), 1, + [17844] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4403), 1, sym_identifier, - ACTIONS(895), 1, + ACTIONS(4465), 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, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4240), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2773), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4405), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168354,83 +234382,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43638] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [17954] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(4403), 1, + sym_identifier, + ACTIONS(4467), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4526), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2773), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(4405), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168443,79 +234466,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43753] = 26, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, + [18064] = 24, + ACTIONS(1632), 1, anon_sym_LBRACE, - ACTIONS(1454), 1, - anon_sym_not, - ACTIONS(1456), 1, + ACTIONS(1636), 1, anon_sym_LT, - ACTIONS(1458), 1, - anon_sym_lambda, - ACTIONS(1460), 1, + ACTIONS(1642), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1644), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1672), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1674), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(1901), 1, + anon_sym_await, + ACTIONS(2435), 1, + anon_sym_STAR, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, sym_string, - STATE(2760), 1, + STATE(2753), 1, + sym_primary_expression, + STATE(3178), 1, sym_list_splat_pattern, - STATE(4352), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1895), 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168532,83 +234548,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43868] = 26, - ACTIONS(67), 1, + [18170] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4439), 1, sym_identifier, - ACTIONS(895), 1, + ACTIONS(4469), 1, anon_sym_await, - 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, - STATE(2130), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(2227), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, + STATE(4084), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3240), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4389), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168621,83 +234632,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [43983] = 26, - ACTIONS(67), 1, + [18280] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4471), 1, sym_identifier, - ACTIONS(895), 1, + ACTIONS(4475), 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, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4349), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(4087), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3999), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4473), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168710,83 +234716,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [44098] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [18390] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2233), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(4359), 1, + sym_identifier, + ACTIONS(4477), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2435), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4538), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4070), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3998), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(4361), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168799,83 +234800,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [44213] = 26, - ACTIONS(67), 1, + [18500] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4479), 1, sym_identifier, - ACTIONS(895), 1, + ACTIONS(4483), 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, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4020), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(4112), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3212), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168888,83 +234884,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [44328] = 26, - ACTIONS(67), 1, + [18610] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4333), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(4343), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4262), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(4108), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2558), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4337), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168977,79 +234968,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [44443] = 26, - ACTIONS(67), 1, + [18720] = 24, + ACTIONS(1632), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1636), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1642), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1644), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1652), 1, + aux_sym_integer_token4, + ACTIONS(1654), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1672), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1674), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1792), 1, anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(1891), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2461), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, sym_string, - STATE(2215), 1, + STATE(2755), 1, + sym_primary_expression, + STATE(3178), 1, sym_list_splat_pattern, - STATE(4114), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1646), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1648), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1650), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1658), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1630), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1895), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(3183), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169066,79 +235050,147 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [44558] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + [18826] = 17, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(4491), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4500), 1, + anon_sym_COLON, + ACTIONS(4502), 1, + anon_sym_EQ, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_complex, + ACTIONS(4510), 1, + anon_sym___stdcall, + STATE(4299), 1, + sym_type_index, + STATE(4318), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4489), 2, + sym__newline, + anon_sym_LPAREN, + STATE(4560), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4494), 3, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(4496), 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, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + anon_sym_GT, + ACTIONS(4485), 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(4506), 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, + [18918] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_LBRACE, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, + ACTIONS(1909), 1, anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4129), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(2871), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1905), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169155,79 +235207,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [44673] = 26, - ACTIONS(1448), 1, + [19024] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, + ACTIONS(1909), 1, anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4326), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(2872), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1905), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169244,79 +235289,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [44788] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [19130] = 24, + ACTIONS(1849), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1855), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1859), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1863), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1865), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1873), 1, + aux_sym_integer_token4, + ACTIONS(1875), 1, sym_float, - ACTIONS(1307), 1, + ACTIONS(1877), 1, anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1879), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1881), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2057), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2493), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2455), 1, + aux_sym_integer_repeat4, + STATE(2557), 1, sym_string, - STATE(2435), 1, + STATE(2669), 1, + sym_primary_expression, + STATE(2895), 1, sym_list_splat_pattern, - STATE(4528), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1867), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1869), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1871), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1847), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1857), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1853), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(2897), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169333,79 +235371,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [44903] = 26, - ACTIONS(67), 1, + [19236] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, + ACTIONS(1909), 1, anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4133), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(2877), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1905), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169422,79 +235453,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45018] = 26, - ACTIONS(67), 1, + [19342] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, + ACTIONS(1909), 1, anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3602), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(2878), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1905), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169511,79 +235535,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45133] = 26, - ACTIONS(67), 1, + [19448] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, + ACTIONS(1909), 1, anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4134), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(2884), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1905), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169600,79 +235617,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45248] = 26, - ACTIONS(67), 1, + [19554] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, + ACTIONS(1909), 1, anon_sym_await, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4136), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(2888), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1905), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1606), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169689,79 +235699,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45363] = 26, - ACTIONS(1448), 1, + [19660] = 24, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1505), 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, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2427), 1, - anon_sym_STAR, - ACTIONS(2431), 1, + ACTIONS(1909), 1, anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, + ACTIONS(2479), 1, + anon_sym_LT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2760), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4275), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + STATE(2889), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1519), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1905), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1606), 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, + STATE(2885), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169778,79 +235781,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45478] = 26, - ACTIONS(1448), 1, + [19766] = 24, + ACTIONS(1931), 1, + anon_sym_LPAREN, + ACTIONS(1937), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(1941), 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, + ACTIONS(1945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1462), 1, + ACTIONS(1947), 1, anon_sym_None, - ACTIONS(1466), 1, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, sym_float, - ACTIONS(1470), 1, - anon_sym_new, - ACTIONS(1472), 1, + ACTIONS(1959), 1, + anon_sym_await, + ACTIONS(1961), 1, anon_sym_sizeof, - ACTIONS(1474), 1, + ACTIONS(1963), 1, sym_string_start, - ACTIONS(2427), 1, + ACTIONS(2027), 1, + anon_sym_LT, + ACTIONS(2485), 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, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, sym_string, - STATE(2760), 1, + STATE(2723), 1, + sym_primary_expression, + STATE(3221), 1, sym_list_splat_pattern, - STATE(4346), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1450), 4, + ACTIONS(1939), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2429), 5, + ACTIONS(1935), 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, + STATE(3062), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169867,79 +235863,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45593] = 26, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, + [19872] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(87), 1, + aux_sym_integer_token4, + ACTIONS(89), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2757), 1, + ACTIONS(1583), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(2543), 1, anon_sym_STAR, - ACTIONS(2765), 1, + ACTIONS(2547), 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, + STATE(2428), 1, + aux_sym_integer_repeat4, + STATE(2457), 1, sym_string, - STATE(2465), 1, + STATE(2599), 1, sym_list_splat_pattern, - STATE(4279), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + STATE(2724), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(85), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(2445), 4, + ACTIONS(1885), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2875), 5, + ACTIONS(1587), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3948), 8, - 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, + STATE(2544), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169956,83 +235945,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45708] = 26, - ACTIONS(2477), 1, + [19978] = 26, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(2487), 1, + ACTIONS(1505), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(2501), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2615), 1, - sym_identifier, - ACTIONS(2629), 1, - anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(2233), 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, + ACTIONS(4335), 1, anon_sym_STAR, - STATE(2161), 1, - sym_primary_expression, - STATE(2226), 1, + ACTIONS(4413), 1, + sym_identifier, + ACTIONS(4512), 1, + anon_sym_await, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2500), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(4058), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(2485), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4023), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2623), 5, + ACTIONS(4415), 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -170045,79 +236029,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45823] = 26, - ACTIONS(67), 1, + [20088] = 24, + ACTIONS(1931), 1, + anon_sym_LPAREN, + ACTIONS(1937), 1, + anon_sym_LBRACK, + ACTIONS(1941), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1947), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, sym_float, - ACTIONS(107), 1, + ACTIONS(1959), 1, + anon_sym_await, + ACTIONS(1961), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1963), 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, + ACTIONS(2027), 1, + anon_sym_LT, + ACTIONS(2485), 1, anon_sym_STAR, - 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(2140), 1, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, sym_string, - STATE(2198), 1, - sym_expression, - STATE(2215), 1, + STATE(2713), 1, + sym_primary_expression, + STATE(3221), 1, sym_list_splat_pattern, - STATE(5657), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1939), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1935), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, 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, + STATE(3062), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170134,79 +236111,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [45938] = 26, - ACTIONS(67), 1, + [20194] = 24, + ACTIONS(1931), 1, + anon_sym_LPAREN, + ACTIONS(1937), 1, + anon_sym_LBRACK, + ACTIONS(1941), 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(1945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1947), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1959), 1, + anon_sym_await, + ACTIONS(1961), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1963), 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, + ACTIONS(2027), 1, + anon_sym_LT, + ACTIONS(2485), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, sym_string, - STATE(2215), 1, + STATE(2714), 1, + sym_primary_expression, + STATE(3221), 1, sym_list_splat_pattern, - STATE(4158), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1939), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1935), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(3062), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170223,79 +236193,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [46053] = 26, - ACTIONS(67), 1, + [20300] = 24, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1820), 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(1824), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1826), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1836), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1838), 1, + anon_sym_await, + ACTIONS(1840), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1842), 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, + ACTIONS(2163), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(2171), 1, + anon_sym_LT, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(2634), 1, sym_string, - STATE(2215), 1, + STATE(2655), 1, + sym_primary_expression, + STATE(2890), 1, sym_list_splat_pattern, - STATE(4318), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1828), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1808), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1818), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(1814), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2971), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170312,79 +236275,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [46168] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [20406] = 24, + ACTIONS(1931), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1937), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1941), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1947), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, sym_float, - ACTIONS(1307), 1, + ACTIONS(1959), 1, anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1961), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1963), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2027), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2485), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, sym_string, - STATE(2435), 1, + STATE(2716), 1, + sym_primary_expression, + STATE(3221), 1, sym_list_splat_pattern, - STATE(4560), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1939), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1935), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(3062), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170401,79 +236357,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [46283] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [20512] = 24, + ACTIONS(1931), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1937), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(1941), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, + ACTIONS(1945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + ACTIONS(1947), 1, anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(1957), 1, sym_float, - ACTIONS(1307), 1, + ACTIONS(1959), 1, anon_sym_await, - ACTIONS(1309), 1, - anon_sym_new, - ACTIONS(1311), 1, + ACTIONS(1961), 1, anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1963), 1, sym_string_start, - ACTIONS(2783), 1, + ACTIONS(2027), 1, anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(2485), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(2698), 1, sym_string, - STATE(2435), 1, + STATE(2717), 1, + sym_primary_expression, + STATE(3221), 1, sym_list_splat_pattern, - STATE(4383), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1929), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1293), 4, + ACTIONS(1939), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1283), 5, + ACTIONS(1935), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3186), 8, - 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, + STATE(3062), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170490,83 +236439,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [46398] = 26, - ACTIONS(67), 1, + [20618] = 26, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1505), 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(1515), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1527), 1, sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, + ACTIONS(1535), 1, anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(2233), 1, + anon_sym_LT, + ACTIONS(4335), 1, + anon_sym_STAR, + ACTIONS(4403), 1, sym_identifier, - ACTIONS(895), 1, + ACTIONS(4429), 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, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(2589), 1, sym_string, - STATE(2215), 1, + STATE(2843), 1, sym_list_splat_pattern, - STATE(3571), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(4072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1531), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2773), 2, + sym_attribute, + sym_subscript, + ACTIONS(1610), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(870), 5, + ACTIONS(4405), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3525), 8, - 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, + STATE(2885), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -170579,21283 +236523,17425 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_integer, sym_none, sym_await, sym_sizeof_expression, sym_cast_expression, - [46513] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + [20728] = 5, + ACTIONS(4520), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4518), 2, + anon_sym_new, + anon_sym_delete, + ACTIONS(4516), 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, - ACTIONS(71), 1, + 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(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_LT_EQ, + anon_sym_GT, + anon_sym_BANG, + anon_sym_xor, + ACTIONS(4514), 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, + [20795] = 5, + ACTIONS(4528), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4526), 2, anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + anon_sym_delete, + ACTIONS(4524), 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(4522), 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, + [20862] = 10, + ACTIONS(988), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(4530), 1, + anon_sym_for, + ACTIONS(4532), 1, + anon_sym_with, + ACTIONS(4534), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1000), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1014), 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(983), 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(981), 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, + [20937] = 10, + ACTIONS(988), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(4536), 1, + sym_identifier, + ACTIONS(4538), 1, sym_string_start, - ACTIONS(855), 1, + STATE(5799), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1000), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(981), 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(1014), 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(983), 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, + [21012] = 11, + ACTIONS(988), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(1000), 1, + anon_sym_EQ, + ACTIONS(1042), 1, + anon_sym_COLON, + ACTIONS(4536), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(4538), 1, + sym_string_start, + STATE(5799), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(981), 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(1014), 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(983), 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, + [21089] = 10, + ACTIONS(988), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(4540), 1, + anon_sym_for, + ACTIONS(4542), 1, + anon_sym_with, + ACTIONS(4544), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1000), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1014), 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(983), 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(981), 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, + [21164] = 10, + ACTIONS(4491), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4502), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_COLON, + ACTIONS(4549), 1, + anon_sym_LBRACK, + STATE(5644), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4506), 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(4496), 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(4485), 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, + [21237] = 7, + ACTIONS(4491), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4502), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(4506), 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(4496), 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(4485), 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, + [21303] = 7, + ACTIONS(988), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1000), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1014), 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(983), 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(981), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(3611), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [21369] = 8, + ACTIONS(988), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(1000), 1, + anon_sym_EQ, + ACTIONS(1042), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(1014), 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(983), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [46628] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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_GT, + ACTIONS(981), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(4392), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [21437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4553), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [46743] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4551), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, 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(4273), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + 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, + [21494] = 6, + ACTIONS(4557), 1, + anon_sym_COMMA, + ACTIONS(4564), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4562), 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(4560), 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(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [46858] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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_GT, + ACTIONS(4555), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(4186), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [21557] = 6, + ACTIONS(4502), 1, + anon_sym_EQ, + ACTIONS(4568), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4506), 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(4571), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [46973] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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_GT, + ACTIONS(4566), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(4462), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [21620] = 5, 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(3525), 8, - 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, - [47088] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1602), 3, + anon_sym_EQ, 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_GT, + ACTIONS(1844), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(1599), 13, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4316), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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(1597), 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, + [21681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4575), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [47203] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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_GT, + ACTIONS(4573), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, 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(4183), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [21738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4579), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [47318] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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_GT, + ACTIONS(4577), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, 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(4095), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [21795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4583), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [47433] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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_GT, + ACTIONS(4581), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, 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(4152), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [21852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4579), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [47548] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4577), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, 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(4565), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + 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, + [21909] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4587), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4593), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4590), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [47663] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4585), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, 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(4157), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [21970] = 6, + ACTIONS(4502), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4491), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4506), 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(4496), 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(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [47778] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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(1560), 1, - anon_sym_await, - ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(4485), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - ACTIONS(3815), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, 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(2540), 1, - sym_list_splat_pattern, - STATE(2542), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + 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, + [22033] = 6, + ACTIONS(4502), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4568), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4506), 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(4571), 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(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, - [47893] = 26, - ACTIONS(2517), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4566), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(4299), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + 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, + [22096] = 7, + ACTIONS(4597), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(4587), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4595), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(4593), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4590), 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_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, - [48008] = 26, - 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(1560), 1, - anon_sym_await, - ACTIONS(2503), 1, - anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - ACTIONS(3815), 1, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4585), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(2540), 1, - sym_list_splat_pattern, - STATE(2543), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + 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, + [22161] = 6, + ACTIONS(4491), 1, + anon_sym_COMMA, + ACTIONS(4502), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4506), 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(4496), 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(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, - [48123] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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(1560), 1, - anon_sym_await, - ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(4485), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - ACTIONS(3815), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, 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(2540), 1, - sym_list_splat_pattern, - STATE(2544), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + 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, + [22224] = 6, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(4608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4606), 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(4604), 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(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, - [48238] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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(1560), 1, - anon_sym_await, - ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(4599), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - ACTIONS(3815), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, 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(2536), 1, - sym_expression, - STATE(2540), 1, - sym_list_splat_pattern, - STATE(5817), 1, - sym__named_expression_lhs, + 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, + [22287] = 6, + ACTIONS(4608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4601), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4606), 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(4604), 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(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, - [48353] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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(1560), 1, - anon_sym_await, - ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(4599), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - ACTIONS(3815), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, 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(2540), 1, - sym_list_splat_pattern, - STATE(2545), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + 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, + [22350] = 6, + ACTIONS(4564), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4557), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4562), 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(4560), 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(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, - [48468] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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(1560), 1, - anon_sym_await, - ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(4555), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - ACTIONS(3815), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, 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(2540), 1, - sym_list_splat_pattern, - STATE(2546), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + 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, + [22413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4612), 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(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, - [48583] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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(1560), 1, - anon_sym_await, - ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(4610), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - ACTIONS(3815), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, 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(2540), 1, - sym_list_splat_pattern, - STATE(2547), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + 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, + [22470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4583), 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(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, - [48698] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4581), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, 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(1307), 1, - anon_sym_await, - 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(3863), 1, anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, + 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, + [22527] = 27, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4618), 1, + anon_sym_pass, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4636), 1, + anon_sym_ctypedef, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(4646), 1, + sym_string_start, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, + STATE(6970), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4624), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2418), 5, sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3244), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [22631] = 27, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4648), 1, + sym_identifier, + ACTIONS(4652), 1, + anon_sym_COLON, + ACTIONS(4654), 1, + anon_sym_api, + ACTIONS(4656), 1, + anon_sym_extern, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4664), 1, + anon_sym_enum, + ACTIONS(4666), 1, + anon_sym_cppclass, + ACTIONS(4668), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4718), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4662), 2, + anon_sym_struct, + anon_sym_union, + STATE(3188), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2160), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(2161), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(113), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2052), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4650), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [48813] = 26, - ACTIONS(1277), 1, + anon_sym_await, + [22735] = 27, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(4616), 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(4618), 1, + anon_sym_pass, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4636), 1, + anon_sym_ctypedef, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(4646), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - ACTIONS(3863), 1, - anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, - sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3257), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, + STATE(6946), 1, + sym_pass_statement, 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, + ACTIONS(4624), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, anon_sym_api, - STATE(3186), 8, - 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, - [48928] = 26, - ACTIONS(1277), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2419), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [22839] = 27, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(4616), 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(4618), 1, + anon_sym_pass, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4636), 1, + anon_sym_ctypedef, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(4646), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - ACTIONS(3863), 1, - anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, - sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3184), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, + STATE(6906), 1, + sym_pass_statement, 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, + ACTIONS(4624), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2421), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [22943] = 27, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4654), 1, anon_sym_api, - STATE(3186), 8, - 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, - [49043] = 26, - ACTIONS(1277), 1, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4670), 1, sym_identifier, - 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(1307), 1, - anon_sym_await, - 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(3863), 1, - anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, - sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3240), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + ACTIONS(4674), 1, + anon_sym_COLON, + ACTIONS(4676), 1, + anon_sym_extern, + ACTIONS(4680), 1, + anon_sym_enum, + ACTIONS(4682), 1, + anon_sym_cppclass, + ACTIONS(4684), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4713), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4678), 2, + anon_sym_struct, + anon_sym_union, + STATE(3083), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2044), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(2057), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(113), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2046), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4672), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [49158] = 26, - ACTIONS(1277), 1, + anon_sym_await, + [23047] = 27, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(4616), 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(4618), 1, + anon_sym_pass, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4636), 1, + anon_sym_ctypedef, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(4646), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - 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(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2507), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, + STATE(6959), 1, + sym_pass_statement, 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, + ACTIONS(4624), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, anon_sym_api, - STATE(2434), 8, - 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, - [49273] = 26, - ACTIONS(1277), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2420), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [23151] = 26, + ACTIONS(4686), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(4689), 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(4692), 1, + anon_sym_class, + ACTIONS(4710), 1, + anon_sym_long, + ACTIONS(4716), 1, + anon_sym_ctypedef, + ACTIONS(4722), 1, + anon_sym_enum, + ACTIONS(4725), 1, + anon_sym_cppclass, + ACTIONS(4728), 1, + anon_sym_fused, + ACTIONS(4731), 1, + sym__dedent, + ACTIONS(4733), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - ACTIONS(3863), 1, - anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, - sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3238), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, 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, + ACTIONS(4698), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4704), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4707), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4713), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4719), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4701), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4695), 5, anon_sym_api, - STATE(3186), 8, - 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, - [49388] = 26, - ACTIONS(1277), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2417), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [23252] = 26, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(4616), 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4636), 1, + anon_sym_ctypedef, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(4646), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - 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(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2512), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + ACTIONS(4736), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, 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, + ACTIONS(4624), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, anon_sym_api, - STATE(2434), 8, - 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, - [49503] = 26, - ACTIONS(1277), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2417), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [23353] = 26, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(4616), 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4636), 1, + anon_sym_ctypedef, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(4646), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - ACTIONS(3863), 1, - anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, - sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3250), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + ACTIONS(4738), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, 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, + ACTIONS(4624), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, anon_sym_api, - STATE(3186), 8, - 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, - [49618] = 26, - ACTIONS(2545), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2417), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [23454] = 26, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 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, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4636), 1, + anon_sym_ctypedef, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(4646), 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(2548), 1, - sym_expression, - STATE(2610), 1, - sym_list_splat_pattern, - STATE(5539), 1, - sym__named_expression_lhs, + ACTIONS(4740), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4624), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, 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, - [49733] = 26, - ACTIONS(2545), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2417), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [23555] = 26, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 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, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4636), 1, + anon_sym_ctypedef, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(4646), 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(2549), 1, - sym_expression, - STATE(2610), 1, - sym_list_splat_pattern, - STATE(5539), 1, - sym__named_expression_lhs, + ACTIONS(4742), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4624), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3647), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, 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, - [49848] = 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2417), 5, sym_string, - STATE(2550), 1, - sym_expression, - STATE(2610), 1, - sym_list_splat_pattern, - STATE(5539), 1, - sym__named_expression_lhs, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [23656] = 26, + ACTIONS(4744), 1, + sym_identifier, + ACTIONS(4747), 1, + anon_sym_class, + ACTIONS(4753), 1, + anon_sym_extern, + ACTIONS(4759), 1, + anon_sym_operator, + ACTIONS(4768), 1, + anon_sym_long, + ACTIONS(4774), 1, + anon_sym_ctypedef, + ACTIONS(4780), 1, + anon_sym_enum, + ACTIONS(4783), 1, + anon_sym_cppclass, + ACTIONS(4786), 1, + anon_sym_fused, + ACTIONS(4789), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4762), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4765), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4771), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4777), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(4756), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4750), 5, 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, - [49963] = 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [23755] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2610), 1, - sym_list_splat_pattern, - STATE(2637), 1, - sym_expression, - STATE(5539), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4807), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [50078] = 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [23854] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2551), 1, - sym_expression, - STATE(2610), 1, - sym_list_splat_pattern, - STATE(5539), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4809), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [50193] = 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, - ACTIONS(2731), 1, - anon_sym_await, - ACTIONS(2733), 1, - anon_sym_new, - ACTIONS(3097), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [23953] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(4297), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4811), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [50308] = 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24052] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2552), 1, - sym_expression, - STATE(2610), 1, - sym_list_splat_pattern, - STATE(5539), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4813), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [50423] = 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24151] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2553), 1, - sym_expression, - STATE(2610), 1, - sym_list_splat_pattern, - STATE(5539), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4815), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [50538] = 26, - 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(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(2226), 1, - sym_string, - STATE(2352), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24250] = 9, + ACTIONS(4821), 1, + aux_sym_integer_token4, + ACTIONS(4823), 1, + aux_sym_integer_token5, + ACTIONS(4825), 1, + sym_c_integer_signedness, + ACTIONS(4827), 1, + aux_sym_c_integer_type_token1, + STATE(2441), 1, + aux_sym_integer_repeat4, + STATE(2562), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - [50653] = 26, - ACTIONS(2477), 1, + ACTIONS(4819), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4817), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2483), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(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(2226), 1, - sym_string, - STATE(2356), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2485), 4, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, 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, - [50768] = 26, - 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, + anon_sym_CARET, + anon_sym_LT_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, + [24315] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, sym_identifier, - 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(2226), 1, - sym_string, - STATE(2358), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4829), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [50883] = 26, - 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24414] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, sym_identifier, - 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(2226), 1, - sym_string, - STATE(2442), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4831), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [50998] = 26, - 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24513] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, sym_identifier, - 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(2226), 1, - sym_string, - STATE(2359), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4833), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [51113] = 26, - 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24612] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, sym_identifier, - 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(2226), 1, - sym_string, - STATE(2368), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4835), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [51228] = 26, - 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24711] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, sym_identifier, - 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(2226), 1, - sym_string, - STATE(2373), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + ACTIONS(4837), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [51343] = 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2422), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24810] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2515), 1, - sym_expression, - STATE(5596), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(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, - [51458] = 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2426), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [24906] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2517), 1, - sym_expression, - STATE(5596), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [51573] = 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(2518), 1, - sym_expression, - STATE(5596), 1, - sym__named_expression_lhs, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2431), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [25002] = 8, + ACTIONS(4825), 1, + sym_c_integer_signedness, + ACTIONS(4827), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4843), 1, + aux_sym_integer_token2, + STATE(2448), 1, + aux_sym_integer_repeat2, + STATE(2523), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - 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, - [51688] = 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, + anon_sym_CARET, + anon_sym_LT_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, + [25064] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2519), 1, - sym_expression, - STATE(5596), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [51803] = 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(2527), 1, - sym_expression, - STATE(5596), 1, - sym__named_expression_lhs, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2429), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [25160] = 8, + ACTIONS(4825), 1, + sym_c_integer_signedness, + ACTIONS(4827), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4845), 1, + aux_sym_integer_token1, + STATE(2449), 1, + aux_sym_integer_repeat1, + STATE(2523), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - 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, - [51918] = 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, + anon_sym_CARET, + anon_sym_LT_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, + [25222] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2407), 1, - sym_expression, - STATE(2465), 1, - sym_list_splat_pattern, - STATE(5596), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [52033] = 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_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2432), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [25318] = 8, + ACTIONS(4825), 1, + sym_c_integer_signedness, + ACTIONS(4827), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4847), 1, + aux_sym_integer_token3, + STATE(2450), 1, + aux_sym_integer_repeat3, + STATE(2523), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_await, - ACTIONS(3833), 1, + anon_sym_GT, + ACTIONS(4839), 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, - ACTIONS(3835), 1, - anon_sym_lambda, - ACTIONS(3837), 1, - anon_sym_new, - STATE(2162), 1, - sym_primary_expression, - STATE(2231), 1, - sym_string, - STATE(2376), 1, - sym_expression, - STATE(2465), 1, - sym_list_splat_pattern, - STATE(5596), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [25380] = 5, + ACTIONS(4853), 1, + aux_sym_integer_token4, + STATE(2441), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(4851), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4849), 36, + 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_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - 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, - 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, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_nogil, + [25436] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2403), 1, - sym_string, - STATE(2745), 1, - sym_expression, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(5611), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - 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, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2430), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [25532] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2403), 1, - sym_string, - STATE(2746), 1, - sym_expression, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(5611), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [52378] = 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, - 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, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2424), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [25628] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2403), 1, - sym_string, - STATE(2747), 1, - sym_expression, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(5611), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [52493] = 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, - 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, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2427), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [25724] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2403), 1, - sym_string, - STATE(2753), 1, - sym_expression, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(5611), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [52608] = 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, - 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, - 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(2403), 1, - sym_string, - STATE(2748), 1, - sym_expression, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(5611), 1, - sym__named_expression_lhs, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2423), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [25820] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [52723] = 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, - 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, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2433), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [25916] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(2403), 1, - sym_string, - STATE(2749), 1, - sym_expression, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(5611), 1, - sym__named_expression_lhs, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3472), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3938), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3940), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4622), 5, 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, - [52838] = 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, - 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, - 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(2403), 1, - sym_string, - STATE(2751), 1, - sym_expression, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(5611), 1, - sym__named_expression_lhs, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2425), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [26012] = 5, + ACTIONS(4860), 1, + aux_sym_integer_token2, + STATE(2448), 1, + aux_sym_integer_repeat2, 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, - [52953] = 26, - ACTIONS(2517), 1, + ACTIONS(4858), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4856), 35, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(3847), 1, - anon_sym_lambda, - ACTIONS(3849), 1, - anon_sym_new, - STATE(2174), 1, - sym_primary_expression, - STATE(2324), 1, - sym_string, - STATE(2712), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_nogil, + [26067] = 5, + ACTIONS(4867), 1, + aux_sym_integer_token1, + STATE(2449), 1, + aux_sym_integer_repeat1, 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, - [53068] = 26, - ACTIONS(2517), 1, + ACTIONS(4865), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4863), 35, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(3847), 1, - anon_sym_lambda, - ACTIONS(3849), 1, - anon_sym_new, - STATE(2174), 1, - sym_primary_expression, - STATE(2324), 1, - sym_string, - STATE(2715), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_nogil, + [26122] = 5, + ACTIONS(4874), 1, + aux_sym_integer_token3, + STATE(2450), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(4872), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4870), 35, + 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_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, - [53183] = 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(2727), 1, - anon_sym_LT, - ACTIONS(2731), 1, - anon_sym_await, - ACTIONS(3097), 1, - sym_identifier, - ACTIONS(3233), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_nogil, + [26177] = 14, + ACTIONS(4491), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 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(2324), 1, - sym_string, - STATE(2716), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_complex, + STATE(4265), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, 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, - [53298] = 26, - ACTIONS(2517), 1, + ACTIONS(4489), 2, 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(2727), 1, + anon_sym_RPAREN, + STATE(4477), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4496), 4, + anon_sym_as, + anon_sym_SLASH, 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_GT, + ACTIONS(4485), 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, - ACTIONS(3847), 1, - anon_sym_lambda, - ACTIONS(3849), 1, - anon_sym_new, - STATE(2174), 1, - sym_primary_expression, - STATE(2324), 1, - sym_string, - STATE(2709), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + 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, + [26249] = 9, + ACTIONS(4887), 1, + aux_sym_integer_token4, + ACTIONS(4889), 1, + aux_sym_integer_token5, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + STATE(2480), 1, + aux_sym_integer_repeat4, + STATE(2928), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(4819), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_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_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, - [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, - 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, - ACTIONS(3097), 1, - sym_identifier, - ACTIONS(3233), 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, + [26311] = 13, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 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(2324), 1, - sym_string, - STATE(2719), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_complex, + STATE(4265), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, 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, - [53528] = 26, - ACTIONS(2517), 1, + ACTIONS(4489), 2, 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(2727), 1, + anon_sym_RPAREN, + STATE(4477), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4496), 4, + anon_sym_as, + anon_sym_SLASH, 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_GT, + ACTIONS(4485), 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, - ACTIONS(3847), 1, - anon_sym_lambda, - ACTIONS(3849), 1, - anon_sym_new, - STATE(2174), 1, - sym_primary_expression, - STATE(2324), 1, - sym_string, - STATE(2720), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + 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, + [26381] = 5, + ACTIONS(117), 1, + sym_string_start, 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, - [53643] = 26, - ACTIONS(2517), 1, + STATE(2458), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4897), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4895), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(3847), 1, - anon_sym_lambda, - ACTIONS(3849), 1, - anon_sym_new, - STATE(2174), 1, - sym_primary_expression, - STATE(2324), 1, - sym_string, - STATE(2721), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [26435] = 9, + ACTIONS(4899), 1, + aux_sym_integer_token4, + ACTIONS(4901), 1, + aux_sym_integer_token5, + ACTIONS(4903), 1, + sym_c_integer_signedness, + ACTIONS(4905), 1, + aux_sym_c_integer_type_token1, + STATE(2481), 1, + aux_sym_integer_repeat4, + STATE(2922), 1, + sym_c_integer_type, 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, - [53758] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(4819), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4817), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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(3181), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [26497] = 9, + ACTIONS(4907), 1, + aux_sym_integer_token4, + ACTIONS(4909), 1, + aux_sym_integer_token5, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + STATE(2466), 1, + aux_sym_integer_repeat4, + STATE(2982), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4819), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_in, + anon_sym_STAR_STAR, + 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [53873] = 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, + anon_sym_CARET, + anon_sym_LT_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, + [26559] = 5, + ACTIONS(117), 1, sym_string_start, - 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(3879), 1, - anon_sym_await, - STATE(2231), 1, - sym_string, - STATE(2269), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, - STATE(4267), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2416), 2, - sym_attribute, - sym_subscript, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + STATE(2454), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 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_AMP, - anon_sym_TILDE, - ACTIONS(3877), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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), 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, - [53990] = 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, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [26613] = 5, + ACTIONS(4919), 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(3589), 1, - sym_expression, - STATE(5561), 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(3525), 8, - 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, - [54105] = 26, - ACTIONS(2477), 1, + STATE(2458), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4915), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2483), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(2161), 1, - sym_primary_expression, - STATE(2226), 1, - sym_string, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(4124), 1, - sym_expression, - STATE(5722), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [26667] = 9, + ACTIONS(4922), 1, + aux_sym_integer_token4, + ACTIONS(4924), 1, + aux_sym_integer_token5, + ACTIONS(4926), 1, + sym_c_integer_signedness, + ACTIONS(4928), 1, + aux_sym_c_integer_type_token1, + STATE(2503), 1, + aux_sym_integer_repeat4, + STATE(3184), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2485), 4, + ACTIONS(4819), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4817), 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_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, - [54220] = 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_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [26728] = 26, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2535), 1, - sym_float, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 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, + ACTIONS(4930), 1, sym_identifier, - ACTIONS(3233), 1, + ACTIONS(4932), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, + ACTIONS(4936), 1, + anon_sym_if, + ACTIONS(4938), 1, + anon_sym_COLON, + ACTIONS(4940), 1, + anon_sym_STAR_STAR, + ACTIONS(4942), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(4261), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5663), 1, + sym_case_pattern, + STATE(6758), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5564), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4946), 3, + anon_sym__, 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, + STATE(5199), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [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(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(4272), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + [26823] = 9, + ACTIONS(4952), 1, + aux_sym_integer_token4, + ACTIONS(4954), 1, + aux_sym_integer_token5, + ACTIONS(4956), 1, + sym_c_integer_signedness, + ACTIONS(4958), 1, + aux_sym_c_integer_type_token1, + STATE(2515), 1, + aux_sym_integer_repeat4, + STATE(3071), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4819), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4817), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [54450] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [26884] = 21, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_EQ, + ACTIONS(4976), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + ACTIONS(4982), 1, + anon_sym_PIPE, + ACTIONS(4984), 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(4529), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(4986), 1, + anon_sym_AMP, + ACTIONS(4988), 1, + anon_sym_CARET, + ACTIONS(4990), 1, + anon_sym_is, + STATE(3973), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4980), 2, 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(3186), 8, - 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, + ACTIONS(4992), 2, anon_sym_LT, - ACTIONS(1400), 1, - anon_sym_lambda, - 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, - STATE(2169), 1, - sym_primary_expression, - STATE(2242), 1, - sym_string, - STATE(2540), 1, - sym_list_splat_pattern, - STATE(4092), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, + anon_sym_GT, + STATE(2379), 2, + sym__not_in, + sym__is_not, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4970), 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(4964), 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, + [26969] = 8, + ACTIONS(4903), 1, + sym_c_integer_signedness, + ACTIONS(4905), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4994), 1, + aux_sym_integer_token1, + STATE(2497), 1, + aux_sym_integer_repeat1, + STATE(2974), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_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, - [54680] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, anon_sym_not, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [27028] = 8, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4996), 1, + aux_sym_integer_token2, + STATE(2498), 1, + aux_sym_integer_repeat2, + STATE(2845), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(4839), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + 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, - 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(4077), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [27087] = 8, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4998), 1, + aux_sym_integer_token3, + STATE(2502), 1, + aux_sym_integer_repeat3, + STATE(2845), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [54795] = 26, - ACTIONS(2517), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [27146] = 5, + ACTIONS(5000), 1, + aux_sym_integer_token4, + STATE(2466), 1, + aux_sym_integer_repeat4, + 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), 33, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2523), 1, + 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, - 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [27199] = 14, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_STAR, - STATE(2195), 1, - sym_primary_expression, - STATE(2324), 1, - sym_string, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(4284), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_complex, + ACTIONS(5003), 1, + anon_sym_EQ, + STATE(4265), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + STATE(4477), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4489), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4496), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4485), 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_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, - [54910] = 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_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, + [27270] = 21, + ACTIONS(4974), 1, + anon_sym_as, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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(3598), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + ACTIONS(5023), 1, + anon_sym_PIPE, + ACTIONS(5025), 1, + anon_sym_AMP, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_is, + STATE(2521), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5009), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5011), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5021), 2, 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(3525), 8, - 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, + ACTIONS(5031), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2368), 2, + sym__not_in, + sym__is_not, + STATE(2920), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [55025] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5019), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5013), 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(4964), 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, + [27355] = 21, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_EQ, + ACTIONS(4976), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + ACTIONS(4982), 1, + anon_sym_PIPE, + ACTIONS(4984), 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(4436), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(4986), 1, + anon_sym_AMP, + ACTIONS(4988), 1, + anon_sym_CARET, + ACTIONS(4990), 1, + anon_sym_is, + STATE(2535), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4980), 2, 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(3186), 8, - 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, + ACTIONS(4992), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2379), 2, + sym__not_in, + sym__is_not, + STATE(2973), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [55140] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4970), 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(4964), 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, + [27440] = 21, + ACTIONS(4974), 1, + anon_sym_EQ, + ACTIONS(4984), 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, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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(3545), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + ACTIONS(5051), 1, + anon_sym_PIPE, + ACTIONS(5053), 1, + anon_sym_AMP, + ACTIONS(5055), 1, + anon_sym_CARET, + ACTIONS(5057), 1, + anon_sym_is, + STATE(2602), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5039), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5049), 2, 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(3525), 8, - 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, + ACTIONS(5059), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2265), 2, + sym__not_in, + sym__is_not, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [55255] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5041), 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(4964), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [27525] = 8, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5061), 1, + aux_sym_integer_token1, + STATE(2486), 1, + aux_sym_integer_repeat1, + STATE(2845), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(4839), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + 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, - ACTIONS(3175), 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, + sym_type_conversion, + [27584] = 14, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(3614), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_complex, + ACTIONS(5003), 1, + anon_sym_EQ, + STATE(4265), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4489), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(4477), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4496), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4485), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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(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_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, + [27655] = 26, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(4930), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(4934), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(4936), 1, + anon_sym_if, + ACTIONS(4940), 1, + anon_sym_STAR_STAR, + ACTIONS(4942), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5063), 1, + anon_sym_COLON, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4562), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5663), 1, + sym_case_pattern, + STATE(6868), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5564), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4946), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5199), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [55485] = 26, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, - anon_sym_LBRACE, - ACTIONS(1454), 1, + [27750] = 21, + ACTIONS(4974), 1, + anon_sym_as, + ACTIONS(4984), 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(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - ACTIONS(3881), 1, - anon_sym_STAR, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, - sym_string, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(4280), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5023), 1, + anon_sym_PIPE, + ACTIONS(5025), 1, + anon_sym_AMP, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_is, + STATE(3972), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1450), 4, + ACTIONS(5009), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5011), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5021), 2, 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, - [55600] = 26, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, - anon_sym_LBRACE, - ACTIONS(1454), 1, - anon_sym_not, - ACTIONS(1456), 1, + ACTIONS(5031), 2, 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(2431), 1, - anon_sym_await, - ACTIONS(2571), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_identifier, - ACTIONS(3883), 1, - anon_sym_STAR, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, - sym_string, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(4327), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + anon_sym_GT, + STATE(2368), 2, + sym__not_in, + sym__is_not, + STATE(2920), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5019), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5013), 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(4964), 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, + [27835] = 8, + ACTIONS(4903), 1, + sym_c_integer_signedness, + ACTIONS(4905), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5065), 1, + aux_sym_integer_token2, + STATE(2514), 1, + aux_sym_integer_repeat2, + STATE(2974), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1450), 4, + ACTIONS(4841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_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, - [55715] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, anon_sym_not, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [27894] = 8, + ACTIONS(4903), 1, + sym_c_integer_signedness, + ACTIONS(4905), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5067), 1, + aux_sym_integer_token3, + STATE(2508), 1, + aux_sym_integer_repeat3, + STATE(2974), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, 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_GT, + ACTIONS(4839), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(3175), 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, + [27953] = 6, + ACTIONS(5074), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4281), 1, - sym_expression, - STATE(5561), 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(3525), 8, - 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, - [55830] = 23, - ACTIONS(1279), 1, + ACTIONS(5079), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5071), 4, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_STAR_STAR, 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(1361), 1, - anon_sym_COMMA, - ACTIONS(1368), 1, - anon_sym_STAR, - ACTIONS(1376), 1, + anon_sym_AMP, + ACTIONS(5077), 4, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(1378), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3307), 1, - sym_primary_expression, + anon_sym_GT, + ACTIONS(5069), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_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, + [28008] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5081), 1, + aux_sym_integer_token2, + STATE(2511), 1, + aux_sym_integer_repeat2, + STATE(2964), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 2, - anon_sym_DOT, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1366), 2, - anon_sym_from, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + 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_TILDE, - ACTIONS(1370), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(1576), 8, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [28067] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5083), 1, + aux_sym_integer_token3, + STATE(2512), 1, + aux_sym_integer_repeat3, + STATE(2964), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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, - 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, - [55939] = 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, - 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, - STATE(2169), 1, - sym_primary_expression, - STATE(2242), 1, - sym_string, - STATE(2540), 1, - sym_list_splat_pattern, - STATE(4067), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [28126] = 5, + ACTIONS(5085), 1, + aux_sym_integer_token4, + STATE(2480), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(4851), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4849), 33, + 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_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, - [56054] = 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, - 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(4283), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [28179] = 5, + ACTIONS(5088), 1, + aux_sym_integer_token4, + STATE(2481), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1450), 4, + ACTIONS(4851), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4849), 33, + 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_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, - [56169] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [28232] = 21, + ACTIONS(4974), 1, + anon_sym_EQ, + ACTIONS(4984), 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, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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(4332), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + ACTIONS(5051), 1, + anon_sym_PIPE, + ACTIONS(5053), 1, + anon_sym_AMP, + ACTIONS(5055), 1, + anon_sym_CARET, + ACTIONS(5057), 1, + anon_sym_is, + STATE(3960), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5039), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5049), 2, 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(3525), 8, - 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, + ACTIONS(5059), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2265), 2, + sym__not_in, + sym__is_not, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [56284] = 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, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5041), 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(4964), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [28317] = 8, + ACTIONS(4926), 1, + sym_c_integer_signedness, + ACTIONS(4928), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5091), 1, + aux_sym_integer_token3, + STATE(2627), 1, + aux_sym_integer_repeat3, + STATE(3200), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, + anon_sym_as, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_await, - ACTIONS(3079), 1, + anon_sym_GT, + ACTIONS(4839), 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, - 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(4339), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [28375] = 4, + ACTIONS(5097), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5095), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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, - [56399] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [28425] = 21, + ACTIONS(4974), 1, + anon_sym_as, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 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(1307), 1, - anon_sym_await, - 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(3869), 1, - anon_sym_not, - ACTIONS(3871), 1, - anon_sym_lambda, - ACTIONS(3873), 1, - anon_sym_new, - STATE(2160), 1, - sym_primary_expression, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2502), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + ACTIONS(5117), 1, + anon_sym_PIPE, + ACTIONS(5119), 1, + anon_sym_AMP, + ACTIONS(5121), 1, + anon_sym_CARET, + ACTIONS(5123), 1, + anon_sym_is, + STATE(3993), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5103), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5105), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5115), 2, 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(2434), 8, - 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, - [56514] = 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(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(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, + ACTIONS(5125), 2, anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - 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(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2513), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + anon_sym_GT, + STATE(2278), 2, + sym__not_in, + sym__is_not, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5113), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5107), 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(4964), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [28509] = 5, + ACTIONS(5127), 1, + aux_sym_integer_token1, + STATE(2486), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4865), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4863), 32, + 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2434), 8, - 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, - [56629] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [28561] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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(1307), 1, - anon_sym_await, - 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(3869), 1, - anon_sym_not, - ACTIONS(3871), 1, - anon_sym_lambda, - ACTIONS(3873), 1, - anon_sym_new, - STATE(2160), 1, - sym_primary_expression, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2521), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, + ACTIONS(5142), 1, + anon_sym_PIPE, + ACTIONS(5144), 1, + anon_sym_AMP, + ACTIONS(5146), 1, + anon_sym_CARET, + ACTIONS(5148), 1, + anon_sym_is, + STATE(3989), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5130), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5140), 2, 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(2434), 8, - 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, - [56744] = 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(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(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, + ACTIONS(5150), 2, anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - 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(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2450), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + anon_sym_GT, + STATE(2337), 2, + sym__not_in, + sym__is_not, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5138), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 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(4964), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [28643] = 9, + ACTIONS(5152), 1, + aux_sym_integer_token4, + ACTIONS(5154), 1, + aux_sym_integer_token5, + ACTIONS(5156), 1, + sym_c_integer_signedness, + ACTIONS(5158), 1, + aux_sym_c_integer_type_token1, + STATE(2561), 1, + aux_sym_integer_repeat4, + STATE(3237), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4819), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4817), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2434), 8, - 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, - [56859] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [28703] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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(1307), 1, - anon_sym_await, - 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(3869), 1, - anon_sym_not, - ACTIONS(3871), 1, - anon_sym_lambda, - ACTIONS(3873), 1, - anon_sym_new, - STATE(2160), 1, - sym_primary_expression, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2452), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, + ACTIONS(5142), 1, + anon_sym_PIPE, + ACTIONS(5144), 1, + anon_sym_AMP, + ACTIONS(5146), 1, + anon_sym_CARET, + ACTIONS(5148), 1, + anon_sym_is, + STATE(2672), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5130), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5140), 2, 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(2434), 8, - 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, + ACTIONS(5150), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2337), 2, + sym__not_in, + sym__is_not, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [56974] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5138), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 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(4964), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [28785] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5051), 1, + anon_sym_PIPE, + ACTIONS(5053), 1, + anon_sym_AMP, + ACTIONS(5055), 1, + anon_sym_CARET, + ACTIONS(5057), 1, + anon_sym_is, + ACTIONS(5160), 1, + anon_sym_DOT, + ACTIONS(5162), 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(1307), 1, - anon_sym_await, - 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(3869), 1, - anon_sym_not, - ACTIONS(3871), 1, - anon_sym_lambda, - ACTIONS(3873), 1, - anon_sym_new, - STATE(2160), 1, - sym_primary_expression, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2440), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + STATE(3960), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5039), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5049), 2, 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(2434), 8, - 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, + ACTIONS(5059), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2265), 2, + sym__not_in, + sym__is_not, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [57089] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5041), 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(4964), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [28867] = 8, + ACTIONS(4956), 1, + sym_c_integer_signedness, + ACTIONS(4958), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5164), 1, + aux_sym_integer_token1, + STATE(2583), 1, + aux_sym_integer_repeat1, + STATE(3084), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - 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(1307), 1, - anon_sym_await, - 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(3869), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(3871), 1, - anon_sym_lambda, - ACTIONS(3873), 1, - anon_sym_new, - STATE(2160), 1, - sym_primary_expression, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2511), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [28925] = 4, + ACTIONS(5170), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5168), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2434), 8, - 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, - [57204] = 26, - ACTIONS(2545), 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, + [28975] = 4, + ACTIONS(5172), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5168), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2551), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(2921), 1, - anon_sym_await, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2168), 1, - sym_primary_expression, - STATE(2283), 1, - sym_string, - STATE(2608), 1, - sym_expression, - STATE(2610), 1, - sym_list_splat_pattern, - STATE(5863), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [29025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2553), 4, + ACTIONS(5176), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5174), 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, 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, - [57319] = 27, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, - anon_sym_LBRACE, - ACTIONS(1454), 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, + [29073] = 20, + ACTIONS(4984), 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(2571), 1, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_await, - ACTIONS(3885), 1, - sym_identifier, - STATE(2270), 1, - sym_primary_expression, - STATE(2403), 1, - sym_string, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(4296), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, + ACTIONS(5190), 1, + anon_sym_PIPE, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_CARET, + ACTIONS(5196), 1, + anon_sym_is, + STATE(3990), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2761), 2, - sym_attribute, - sym_subscript, - ACTIONS(1464), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1450), 4, + ACTIONS(5178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5188), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(3887), 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), 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, + ACTIONS(5198), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2234), 2, + sym__not_in, + sym__is_not, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [57436] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5186), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5182), 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(4964), 8, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [29155] = 8, + ACTIONS(4926), 1, + sym_c_integer_signedness, + ACTIONS(4928), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5200), 1, + aux_sym_integer_token1, + STATE(2618), 1, + aux_sym_integer_repeat1, + STATE(3200), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(4548), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [29213] = 5, + ACTIONS(5202), 1, + aux_sym_integer_token1, + STATE(2497), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4865), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4863), 32, + 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_AMP, - anon_sym_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [57551] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1396), 1, anon_sym_not, - ACTIONS(1398), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [29265] = 5, + ACTIONS(5205), 1, + aux_sym_integer_token2, + STATE(2498), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4858), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(1400), 1, - anon_sym_lambda, - 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_GT, + ACTIONS(4856), 32, + 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, - ACTIONS(1560), 1, - anon_sym_await, - ACTIONS(2503), 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, + sym_type_conversion, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [29317] = 21, + ACTIONS(4974), 1, + anon_sym_as, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 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(2540), 1, - sym_list_splat_pattern, - STATE(3984), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, + anon_sym_PIPE, + ACTIONS(5228), 1, + anon_sym_AMP, + ACTIONS(5230), 1, + anon_sym_CARET, + ACTIONS(5232), 1, + anon_sym_is, + STATE(3979), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(5212), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5214), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5224), 2, 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, + ACTIONS(5234), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2331), 2, + sym__not_in, + sym__is_not, + STATE(3069), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [57666] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5222), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5216), 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(4964), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [29401] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(3825), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [29451] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4496), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 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_AMP, - anon_sym_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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(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(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, - STATE(2169), 1, - sym_primary_expression, - STATE(2242), 1, - sym_string, - STATE(2540), 1, - sym_list_splat_pattern, - STATE(4063), 1, - sym_expression, - STATE(5637), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [29501] = 5, + ACTIONS(5236), 1, + aux_sym_integer_token3, + STATE(2502), 1, + aux_sym_integer_repeat3, 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_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, - [57896] = 26, - ACTIONS(2477), 1, + ACTIONS(4872), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4870), 32, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2483), 1, + 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, - 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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(2161), 1, - sym_primary_expression, - STATE(2226), 1, - sym_string, - STATE(2491), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5722), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [29553] = 5, + ACTIONS(5239), 1, + aux_sym_integer_token4, + STATE(2503), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2485), 4, + ACTIONS(4851), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4849), 32, + 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_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, - [58011] = 27, - ACTIONS(2517), 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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [29605] = 21, + ACTIONS(4974), 1, + anon_sym_as, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 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(2733), 1, - anon_sym_new, - 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(2736), 1, - sym_list_splat_pattern, - STATE(4312), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + ACTIONS(5226), 1, + anon_sym_PIPE, + ACTIONS(5228), 1, + anon_sym_AMP, + ACTIONS(5230), 1, + anon_sym_CARET, + ACTIONS(5232), 1, + anon_sym_is, + STATE(2673), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2767), 2, - sym_attribute, - sym_subscript, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(5212), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5214), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5224), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(3891), 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), 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, + ACTIONS(5234), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2331), 2, + sym__not_in, + sym__is_not, + STATE(3069), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [58128] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1396), 1, + ACTIONS(5222), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5216), 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(4964), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [29689] = 21, + ACTIONS(4974), 1, + anon_sym_as, + ACTIONS(4984), 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(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, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 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(2536), 1, - sym_expression, - STATE(2540), 1, - sym_list_splat_pattern, - STATE(5637), 1, - sym__named_expression_lhs, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LBRACK, + ACTIONS(5117), 1, + anon_sym_PIPE, + ACTIONS(5119), 1, + anon_sym_AMP, + ACTIONS(5121), 1, + anon_sym_CARET, + ACTIONS(5123), 1, + anon_sym_is, + STATE(2666), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(5103), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5105), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5115), 2, 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, + ACTIONS(5125), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2278), 2, + sym__not_in, + sym__is_not, + STATE(3180), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [58243] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5113), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5107), 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(4964), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [29773] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5242), 1, + aux_sym_integer_token1, + STATE(2615), 1, + aux_sym_integer_repeat1, + STATE(2964), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + 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, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(3826), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [29831] = 8, + ACTIONS(4926), 1, + sym_c_integer_signedness, + ACTIONS(4928), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5244), 1, + aux_sym_integer_token2, + STATE(2616), 1, + aux_sym_integer_repeat2, + STATE(3200), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [58358] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [29889] = 5, + ACTIONS(5246), 1, + aux_sym_integer_token3, + STATE(2508), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4872), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4870), 32, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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(3832), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_c_integer_signedness, + aux_sym_c_integer_type_token1, + [29941] = 8, + ACTIONS(4956), 1, + sym_c_integer_signedness, + ACTIONS(4958), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5249), 1, + aux_sym_integer_token2, + STATE(2584), 1, + aux_sym_integer_repeat2, + STATE(3084), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [58473] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [29999] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5253), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5251), 34, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(3184), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [30047] = 5, + ACTIONS(5255), 1, + aux_sym_integer_token2, + STATE(2511), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4858), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4856), 32, + 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [58588] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [30099] = 5, + ACTIONS(5258), 1, + aux_sym_integer_token3, + STATE(2512), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4872), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4870), 32, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 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, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(3833), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_c_integer_signedness, + aux_sym_c_integer_type_token1, + [30151] = 8, + ACTIONS(4956), 1, + sym_c_integer_signedness, + ACTIONS(4958), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5261), 1, + aux_sym_integer_token3, + STATE(2591), 1, + aux_sym_integer_repeat3, + STATE(3084), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4841), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [58703] = 26, - ACTIONS(2437), 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, + [30209] = 5, + ACTIONS(5263), 1, + aux_sym_integer_token2, + STATE(2514), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4858), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4856), 32, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2443), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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(2231), 1, - sym_string, - STATE(2465), 1, - sym_list_splat_pattern, - STATE(3959), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_c_integer_signedness, + aux_sym_c_integer_type_token1, + [30261] = 5, + ACTIONS(5266), 1, + aux_sym_integer_token4, + STATE(2515), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(4851), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4849), 32, + 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_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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, - [58818] = 27, - ACTIONS(2437), 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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [30313] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5045), 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, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, + ACTIONS(5190), 1, + anon_sym_PIPE, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_CARET, + ACTIONS(5196), 1, + anon_sym_is, + STATE(2644), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5178), 2, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_SLASH, + ACTIONS(5180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5188), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5198), 2, anon_sym_LT, - ACTIONS(3079), 1, - anon_sym_not, - ACTIONS(3081), 1, - anon_sym_lambda, - ACTIONS(3083), 1, - anon_sym_new, - ACTIONS(3879), 1, - anon_sym_await, - ACTIONS(3893), 1, - sym_identifier, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, - sym_string, - STATE(2465), 1, - sym_list_splat_pattern, - STATE(4267), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + anon_sym_GT, + STATE(2234), 2, + sym__not_in, + sym__is_not, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5186), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5182), 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(4964), 8, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [30395] = 8, + ACTIONS(5156), 1, + sym_c_integer_signedness, + ACTIONS(5158), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5269), 1, + aux_sym_integer_token3, + STATE(2697), 1, + aux_sym_integer_repeat3, + STATE(3247), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2768), 2, - sym_attribute, - sym_subscript, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(4841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_AMP, - anon_sym_TILDE, - ACTIONS(3895), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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), 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, - [58935] = 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, - ACTIONS(1404), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1406), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30452] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(1410), 1, - sym_float, - ACTIONS(1416), 1, - anon_sym_new, - ACTIONS(1426), 1, - anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 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, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - STATE(2169), 1, - sym_primary_expression, - STATE(2242), 1, - sym_string, - STATE(2540), 1, - sym_list_splat_pattern, - STATE(4087), 1, - sym_expression, - STATE(5637), 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_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, - [59050] = 26, - ACTIONS(2437), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5275), 1, + anon_sym_RPAREN, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, - anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(5291), 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, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2465), 1, - sym_list_splat_pattern, - STATE(3903), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3948), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [59165] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [30541] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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(1307), 1, - anon_sym_await, - 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(3863), 1, - anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, - sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3234), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + ACTIONS(5311), 1, + anon_sym_PIPE, + ACTIONS(5313), 1, + anon_sym_AMP, + ACTIONS(5315), 1, + anon_sym_CARET, + ACTIONS(5317), 1, + anon_sym_is, + STATE(4010), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5297), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5299), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5309), 2, 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(3186), 8, - 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, + ACTIONS(5319), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2237), 2, + sym__not_in, + sym__is_not, + STATE(2926), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [59280] = 23, - ACTIONS(893), 1, + ACTIONS(5307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5301), 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(4964), 7, 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, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_by, + anon_sym_and, + anon_sym_or, + [30622] = 5, + ACTIONS(5321), 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(3307), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, - anon_sym_DOT, + STATE(2520), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(879), 2, - anon_sym_from, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4915), 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, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + anon_sym_STAR_STAR, + 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_TILDE, - ACTIONS(1370), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(857), 8, + anon_sym_CARET, + anon_sym_LT_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, + [30673] = 5, + STATE(2527), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2368), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5324), 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, - 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(1279), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30724] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5340), 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(3877), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(5346), 1, + anon_sym_PIPE, + ACTIONS(5348), 1, + anon_sym_AMP, + ACTIONS(5350), 1, + anon_sym_CARET, + ACTIONS(5352), 1, + anon_sym_is, + STATE(2739), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5332), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5334), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5344), 2, 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(3186), 8, - 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, - [59504] = 26, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, - anon_sym_LBRACE, - ACTIONS(1454), 1, - anon_sym_not, - ACTIONS(1456), 1, + ACTIONS(5354), 2, 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(2821), 1, - sym_expression, - STATE(5628), 1, - sym__named_expression_lhs, + anon_sym_GT, + STATE(2253), 2, + sym__not_in, + sym__is_not, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5336), 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(4964), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [30805] = 3, 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, - [59619] = 26, - ACTIONS(2517), 1, + ACTIONS(5358), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5356), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(2695), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5751), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [30852] = 9, + ACTIONS(5360), 1, + aux_sym_integer_token4, + ACTIONS(5362), 1, + aux_sym_integer_token5, + ACTIONS(5364), 1, + sym_c_integer_signedness, + ACTIONS(5366), 1, + aux_sym_c_integer_type_token1, + STATE(2676), 1, + aux_sym_integer_repeat4, + STATE(3371), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(4819), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4817), 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_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, - [59734] = 26, - ACTIONS(1277), 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, + [30911] = 24, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(5291), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - 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(3863), 1, - anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, + ACTIONS(5368), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3239), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [59849] = 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, + [31000] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5374), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4073), 1, - sym_expression, - STATE(5561), 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, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5380), 1, + anon_sym_RBRACK, + ACTIONS(5382), 1, 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(3525), 8, - 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, + ACTIONS(5386), 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, + ACTIONS(5390), 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(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, - STATE(2130), 1, - sym_primary_expression, - STATE(2140), 1, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(2221), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [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(1291), 1, + [31089] = 9, + ACTIONS(5399), 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(3858), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(5402), 1, + anon_sym_is, + STATE(2527), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5405), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2368), 2, + sym__not_in, + sym__is_not, + ACTIONS(5394), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5396), 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(5392), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [60194] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [31148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5410), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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(1560), 1, - anon_sym_await, - ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(5408), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2827), 1, - sym_identifier, - ACTIONS(3067), 1, - anon_sym_STAR, - ACTIONS(3815), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(2540), 1, - sym_list_splat_pattern, - STATE(2588), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [31195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1392), 4, + ACTIONS(5414), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5412), 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_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, - [60309] = 26, - ACTIONS(1277), 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, + [31242] = 24, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(5291), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - 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(3863), 1, - anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, + ACTIONS(5416), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3181), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(5532), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60424] = 26, - ACTIONS(1277), 1, + [31331] = 24, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5374), 1, + anon_sym_STAR, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 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, + ACTIONS(5390), 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, + ACTIONS(5418), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4135), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(5535), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60539] = 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, + [31420] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5420), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4210), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(5583), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60654] = 26, - ACTIONS(1277), 1, + [31509] = 24, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 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, + ACTIONS(5291), 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, + ACTIONS(5422), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4521), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60769] = 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, + [31598] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5374), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(5424), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4231), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60884] = 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, - 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(4211), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + [31687] = 5, + STATE(2549), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + STATE(2379), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5324), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [60999] = 26, - ACTIONS(1277), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [31738] = 24, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(5291), 1, sym_float, - ACTIONS(1307), 1, - anon_sym_await, - 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(3869), 1, - anon_sym_not, - ACTIONS(3871), 1, - anon_sym_lambda, - ACTIONS(3873), 1, - anon_sym_new, - STATE(2160), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(5426), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(2493), 1, - sym_expression, - STATE(5755), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(2434), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [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, + [31827] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(2563), 1, - sym_float, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(2913), 1, + ACTIONS(5370), 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(5539), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - [61229] = 26, - ACTIONS(2477), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(5374), 1, + anon_sym_STAR, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, anon_sym_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, - anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(5390), 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, - 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(2226), 1, + ACTIONS(5428), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2491), 1, - sym_expression, - STATE(2500), 1, - sym_list_splat_pattern, - STATE(5584), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [61344] = 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, + [31916] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(2455), 1, - sym_float, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2765), 1, - anon_sym_LT, - ACTIONS(2871), 1, + ACTIONS(5271), 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(2506), 1, - sym_expression, - STATE(5596), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(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, - [61459] = 26, - ACTIONS(1448), 1, + ACTIONS(5273), 1, + anon_sym_LPAREN, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(1452), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 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, + ACTIONS(5291), 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, - 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(2403), 1, + ACTIONS(5430), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2760), 1, - sym_list_splat_pattern, - STATE(2821), 1, - sym_expression, - STATE(5611), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [61574] = 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(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, - ACTIONS(3849), 1, - anon_sym_new, - STATE(2174), 1, - sym_primary_expression, - STATE(2324), 1, - sym_string, - STATE(2695), 1, - sym_expression, - STATE(2736), 1, - sym_list_splat_pattern, - STATE(5623), 1, - sym__named_expression_lhs, + [32005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(5434), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5432), 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_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, - [61689] = 26, - ACTIONS(1277), 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, + [32052] = 24, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 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, + ACTIONS(5291), 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, + ACTIONS(5436), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4467), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [61804] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + [32141] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5440), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5438), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4499), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [32188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5444), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5442), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [61919] = 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_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [32235] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5446), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4200), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [62034] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + [32324] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(4485), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4219), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [32371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5450), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5448), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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(69), 1, anon_sym_not, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [32418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5454), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5452), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4220), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [32465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5458), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5456), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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_CARET, + anon_sym_LT_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, + [32512] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5462), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5460), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(4238), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [32559] = 9, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5467), 1, + anon_sym_is, + STATE(2549), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(5470), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2379), 2, + sym__not_in, + sym__is_not, + ACTIONS(5394), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(5464), 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(5392), 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_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, - [62379] = 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_CARET, + anon_sym_LT_LT, + sym_type_conversion, + [32618] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5473), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4251), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(5660), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [62494] = 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, + [32707] = 5, + ACTIONS(5475), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2551), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4915), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, 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(4252), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [32758] = 8, + ACTIONS(5156), 1, + sym_c_integer_signedness, + ACTIONS(5158), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5478), 1, + aux_sym_integer_token2, + STATE(2696), 1, + aux_sym_integer_repeat2, + STATE(3247), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [62609] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, anon_sym_not, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [32815] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5482), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5480), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4190), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [32862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4579), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4577), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [62724] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, anon_sym_not, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [32909] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5486), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5484), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4139), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [32956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4604), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4599), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [62839] = 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, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [33003] = 5, + ACTIONS(1881), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2601), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4496), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, 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(4146), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [33054] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4590), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4593), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [62954] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4585), 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, - 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_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, + [33105] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5488), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4159), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(5552), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [63069] = 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, + [33194] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5374), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(5490), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4161), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(5554), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [63184] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + [33283] = 5, + ACTIONS(5492), 1, + aux_sym_integer_token4, + STATE(2561), 1, + aux_sym_integer_repeat4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4851), 4, + anon_sym_STAR, + anon_sym_SLASH, 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_GT, + ACTIONS(4849), 32, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + 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, - 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(4165), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [33334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4841), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [63299] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 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, + [33381] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4560), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4555), 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, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [33428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5497), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + anon_sym_GT, + ACTIONS(5495), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [33475] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5499), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4176), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(5609), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [63414] = 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, + [33564] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5501), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4177), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [63529] = 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, + [33653] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5374), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(5503), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4214), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [63644] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + [33742] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5095), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + anon_sym_GT, + ACTIONS(5093), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [33789] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5505), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4216), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [63759] = 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, + [33878] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5374), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(5507), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4217), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [63874] = 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, + [33967] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5509), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4218), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [63989] = 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, + [34056] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5511), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4258), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [64104] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [34145] = 8, + ACTIONS(5156), 1, + sym_c_integer_signedness, + ACTIONS(5158), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5513), 1, + aux_sym_integer_token1, + STATE(2671), 1, + aux_sym_integer_repeat1, + STATE(3247), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34202] = 13, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4493), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_complex, + STATE(4265), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4489), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(4477), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4496), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4485), 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_AMP, - anon_sym_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [64219] = 26, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + 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, + [34269] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5517), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(1404), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1406), 1, + anon_sym_GT, + ACTIONS(5515), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [34316] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(1410), 1, - sym_float, - ACTIONS(1426), 1, - anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 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, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(3067), 1, + ACTIONS(5273), 1, + anon_sym_LPAREN, + ACTIONS(5277), 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, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5519), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2540), 1, - sym_list_splat_pattern, - STATE(2676), 1, - sym_expression, - STATE(5817), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(5683), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [64334] = 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, + [34405] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5374), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(5521), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4232), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(5686), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [64449] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + [34494] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5525), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5523), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4130), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [34541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5529), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5527), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [64564] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 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, + [34588] = 21, + ACTIONS(4974), 1, + anon_sym_EQ, + ACTIONS(4984), 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, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5305), 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(4168), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, + ACTIONS(5543), 1, + anon_sym_PIPE, + ACTIONS(5545), 1, + anon_sym_AMP, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_is, + STATE(2741), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5533), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5541), 2, 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(3525), 8, - 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, + ACTIONS(5551), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2322), 2, + sym__not_in, + sym__is_not, + STATE(2926), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [64679] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(5539), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + ACTIONS(5535), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34671] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5555), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5553), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [34718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5559), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5557), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [64794] = 26, - ACTIONS(2517), 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, + [34765] = 5, + ACTIONS(5561), 1, + aux_sym_integer_token1, + STATE(2583), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4865), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4863), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(4185), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_c_integer_signedness, + aux_sym_c_integer_type_token1, + [34816] = 5, + ACTIONS(5564), 1, + aux_sym_integer_token2, + STATE(2584), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(4858), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4856), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, 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, - [64909] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, anon_sym_not, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [34867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5569), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5567), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4197), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [34914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5573), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5571), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [65024] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 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, + [34961] = 20, + ACTIONS(4984), 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, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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(4199), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + ACTIONS(5311), 1, + anon_sym_PIPE, + ACTIONS(5313), 1, + anon_sym_AMP, + ACTIONS(5315), 1, + anon_sym_CARET, + ACTIONS(5317), 1, + anon_sym_is, + STATE(2800), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5297), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5299), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5309), 2, 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(3525), 8, - 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, + ACTIONS(5319), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2237), 2, + sym__not_in, + sym__is_not, + STATE(2926), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [65139] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(5307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5301), 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(4964), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_by, + anon_sym_and, + anon_sym_or, + [35042] = 21, + ACTIONS(4974), 1, + anon_sym_EQ, + ACTIONS(4984), 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, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, + ACTIONS(5543), 1, + anon_sym_PIPE, + ACTIONS(5545), 1, + anon_sym_AMP, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_is, + STATE(3967), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5531), 2, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + anon_sym_SLASH, + ACTIONS(5533), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5541), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5551), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2322), 2, + sym__not_in, + sym__is_not, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5539), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + ACTIONS(5535), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35125] = 5, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2603), 2, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4223), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + aux_sym_concatenated_string_repeat1, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35176] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1602), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [65254] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1597), 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, - ACTIONS(71), 1, + 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, + [35227] = 5, + ACTIONS(5575), 1, + aux_sym_integer_token3, + STATE(2591), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4872), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, 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, + anon_sym_GT, + ACTIONS(4870), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [35278] = 5, + ACTIONS(1842), 1, sym_string_start, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2520), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4897), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4895), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + 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, - 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(4225), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + 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, + [35329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4974), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4964), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [65369] = 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_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [35376] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5578), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4226), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(5648), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [65484] = 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, - 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(4241), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + [35465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5582), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5580), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [65599] = 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_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [35512] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5584), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4243), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(5654), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [65714] = 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, + [35601] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5374), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(5586), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4244), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(5573), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [65829] = 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, + [35690] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5588), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4245), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [65944] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + [35779] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4571), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(4566), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4246), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [35826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5592), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5590), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [66059] = 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, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [35873] = 5, + ACTIONS(1881), 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(4248), 1, - sym_expression, - STATE(5561), 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, + STATE(2551), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4897), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4895), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [66174] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, anon_sym_not, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35924] = 5, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2265), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5324), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + 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, - 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(4249), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35975] = 5, + ACTIONS(1537), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + STATE(2620), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4897), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4895), 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_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [66289] = 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_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [36026] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5594), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4250), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [66404] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + [36115] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5598), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(5596), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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(4253), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [36162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5602), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5600), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [66519] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 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, + [36209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 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, - 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_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [36256] = 24, + ACTIONS(1708), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5604), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4260), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [66634] = 26, - ACTIONS(1277), 1, + [36345] = 24, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5374), 1, + anon_sym_STAR, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 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, + ACTIONS(5390), 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, + ACTIONS(5606), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4424), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1293), 4, + STATE(5346), 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, + [36434] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5610), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5608), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [66749] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 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, + [36481] = 9, + ACTIONS(5399), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(5615), 1, + anon_sym_is, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5618), 2, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + anon_sym_GT, + STATE(2265), 2, + sym__not_in, + sym__is_not, + ACTIONS(5394), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(5612), 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(5392), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_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, + [36540] = 24, + ACTIONS(1985), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(895), 1, - anon_sym_await, - ACTIONS(1347), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(3175), 1, + ACTIONS(5374), 1, anon_sym_STAR, - STATE(2131), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(5621), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(4097), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3525), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [66864] = 26, - ACTIONS(2517), 1, + [36629] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5077), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5069), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [36676] = 22, + ACTIONS(4614), 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(4104), 1, - sym_expression, - STATE(5751), 1, - sym__named_expression_lhs, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_cppclass, + ACTIONS(4644), 1, + anon_sym_fused, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3716), 2, + sym_cdef_type_declaration, + sym_cvar_decl, + STATE(3728), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3688), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3747), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [36761] = 5, + ACTIONS(5623), 1, + aux_sym_integer_token1, + STATE(2615), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4865), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4863), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_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_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, - [66979] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [36812] = 5, + ACTIONS(5626), 1, + aux_sym_integer_token2, + STATE(2616), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4858), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4856), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(4516), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_c_integer_signedness, + aux_sym_c_integer_type_token1, + [36863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4612), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4610), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [67094] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [36910] = 5, + ACTIONS(5629), 1, + aux_sym_integer_token1, + STATE(2618), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4865), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4863), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(1297), 1, - anon_sym_lambda, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [36961] = 24, + ACTIONS(1708), 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, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(3113), 1, + ACTIONS(5271), 1, + sym_identifier, + ACTIONS(5273), 1, + anon_sym_LPAREN, + ACTIONS(5277), 1, anon_sym_STAR, - STATE(2156), 1, - sym_primary_expression, - STATE(2209), 1, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(5632), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4558), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [67209] = 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, - 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, + [37050] = 5, + ACTIONS(5634), 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, - STATE(2169), 1, - sym_primary_expression, - STATE(2242), 1, - sym_string, - STATE(2540), 1, - sym_list_splat_pattern, - STATE(4002), 1, - sym_expression, - STATE(5637), 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, + STATE(2620), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4915), 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_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, - [67324] = 26, - ACTIONS(1277), 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, + [37101] = 24, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5374), 1, + anon_sym_STAR, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 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, + ACTIONS(5390), 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, + ACTIONS(5637), 1, + anon_sym_RBRACK, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4404), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [67439] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [37190] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5340), 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(4416), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(5346), 1, + anon_sym_PIPE, + ACTIONS(5348), 1, + anon_sym_AMP, + ACTIONS(5350), 1, + anon_sym_CARET, + ACTIONS(5352), 1, + anon_sym_is, + STATE(3966), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5332), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5334), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5344), 2, 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(3186), 8, - 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, + ACTIONS(5354), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2253), 2, + sym__not_in, + sym__is_not, + STATE(3236), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [67554] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5336), 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(4964), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [37271] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5641), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5639), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(4426), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [37318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4553), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4551), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [67669] = 26, - ACTIONS(1277), 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, + [37365] = 24, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 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, + ACTIONS(5291), 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, + ACTIONS(5643), 1, + anon_sym_RPAREN, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4435), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [67784] = 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(4441), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + [37454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5647), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5645), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [67899] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [37501] = 5, + ACTIONS(5649), 1, + aux_sym_integer_token3, + STATE(2627), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4872), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4870), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(4447), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_c_integer_signedness, + aux_sym_c_integer_type_token1, + [37552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5654), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [68014] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [37599] = 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), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(4449), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [37646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4583), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4581), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [68129] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [37693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4583), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4581), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(4453), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [37740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5658), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5656), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [68244] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [37787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4579), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4577), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1291), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [37834] = 5, + ACTIONS(1842), 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(4457), 1, - sym_expression, - STATE(5708), 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, + STATE(2592), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [68359] = 26, - ACTIONS(1277), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [37885] = 23, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(5370), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5374), 1, + anon_sym_STAR, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 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, + ACTIONS(5390), 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, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4460), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + STATE(6246), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5984), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5384), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5346), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [68474] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [37971] = 11, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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(4464), 1, - sym_expression, - STATE(5708), 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, + ACTIONS(5009), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5021), 2, 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(3186), 8, - 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, + STATE(2920), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [68589] = 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, + ACTIONS(5019), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_as, 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(4465), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_GT, + ACTIONS(5660), 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, + [38033] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5111), 1, + anon_sym_LBRACK, + ACTIONS(5330), 1, + anon_sym_LPAREN, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5346), 1, + anon_sym_PIPE, + ACTIONS(5348), 1, + anon_sym_AMP, + ACTIONS(5350), 1, + anon_sym_CARET, + ACTIONS(5352), 1, + anon_sym_is, + STATE(3966), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5332), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5334), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5344), 2, 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(3186), 8, - 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, + ACTIONS(5354), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2253), 2, + sym__not_in, + sym__is_not, + STATE(3236), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [68704] = 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, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + ACTIONS(5336), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [38113] = 9, + ACTIONS(5399), 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(4468), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(5667), 1, + anon_sym_is, + STATE(2638), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5670), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2278), 2, + sym__not_in, + sym__is_not, + ACTIONS(5394), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5664), 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(5392), 21, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [68819] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [38171] = 8, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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(4477), 1, - sym_expression, - STATE(5708), 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, + STATE(2920), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [38227] = 5, + ACTIONS(5673), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2640), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4915), 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_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [68934] = 26, - ACTIONS(1277), 1, + 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, + [38277] = 23, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5271), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5273), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 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, + ACTIONS(5291), 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, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4482), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + STATE(6232), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5958), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5285), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5323), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [69049] = 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, + [38363] = 10, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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(4234), 1, - sym_expression, - STATE(5561), 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, + ACTIONS(5009), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2920), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5019), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [69164] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [38423] = 14, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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(4485), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(5025), 1, + anon_sym_AMP, + ACTIONS(5027), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5009), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5011), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5021), 2, 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(3186), 8, - 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, + STATE(2920), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [69279] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(5019), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 17, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, - ACTIONS(71), 1, + 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, + [38491] = 5, + STATE(2677), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2234), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 4, + anon_sym_STAR, + anon_sym_SLASH, 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_GT, + ACTIONS(5324), 30, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + 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, - 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(4235), 1, - sym_expression, - STATE(5561), 1, - sym__named_expression_lhs, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [38541] = 9, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5679), 1, + anon_sym_is, + STATE(2645), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5682), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2337), 2, + sym__not_in, + sym__is_not, + ACTIONS(5676), 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(5392), 22, + 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_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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [69394] = 26, - ACTIONS(1277), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [38599] = 23, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4930), 1, sym_identifier, - ACTIONS(1279), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4934), 1, + anon_sym_STAR, + ACTIONS(4940), 1, + anon_sym_STAR_STAR, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 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, + ACTIONS(4950), 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, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(4486), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5663), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5564), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4946), 3, + anon_sym__, 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(3186), 8, - 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, + STATE(5199), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [69509] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + [38685] = 13, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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(4491), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + ACTIONS(5027), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5009), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5011), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5021), 2, 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(3186), 8, - 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, + STATE(2920), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [69624] = 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(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(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, + ACTIONS(5019), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, - ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(5660), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, - ACTIONS(2833), 1, - anon_sym_lambda, - ACTIONS(2835), 1, - anon_sym_new, - 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(4080), 1, - sym_expression, - STATE(5807), 1, - sym__named_expression_lhs, + 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, + [38751] = 12, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, + anon_sym_LPAREN, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5009), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5011), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5021), 2, 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(3186), 8, - 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, + STATE(2920), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [69739] = 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(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(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, + ACTIONS(5019), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, - ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(5660), 19, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, - ACTIONS(2833), 1, - anon_sym_lambda, - ACTIONS(2835), 1, - anon_sym_new, - 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(4081), 1, - sym_expression, - STATE(5807), 1, - sym__named_expression_lhs, + 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, + [38815] = 8, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, + anon_sym_LPAREN, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5685), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [69854] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [38871] = 14, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(2831), 1, - anon_sym_not, - ACTIONS(2833), 1, - anon_sym_lambda, - ACTIONS(2835), 1, - anon_sym_new, - 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(4082), 1, - sym_expression, - STATE(5807), 1, - sym__named_expression_lhs, + ACTIONS(5053), 1, + anon_sym_AMP, + ACTIONS(5055), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5039), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5049), 2, 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(3186), 8, - 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, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [69969] = 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(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(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, anon_sym_LT, - ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(5660), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, - ACTIONS(2833), 1, - anon_sym_lambda, - ACTIONS(2835), 1, - anon_sym_new, - 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(3184), 1, - sym_expression, - STATE(5807), 1, - sym__named_expression_lhs, + 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, + [38939] = 8, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, + anon_sym_LPAREN, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [70084] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [38995] = 8, + ACTIONS(5364), 1, + sym_c_integer_signedness, + ACTIONS(5366), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5693), 1, + aux_sym_integer_token1, + STATE(2748), 1, + aux_sym_integer_repeat1, + STATE(3397), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 28, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 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, - 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(2831), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(2833), 1, - anon_sym_lambda, - ACTIONS(2835), 1, - anon_sym_new, - 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(4083), 1, - sym_expression, - STATE(5807), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [39051] = 5, + ACTIONS(1963), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + STATE(2658), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4897), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4895), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [70199] = 26, - ACTIONS(2437), 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, + [39101] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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(4400), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5685), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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, - [70314] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 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, + [39157] = 15, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 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(1307), 1, - anon_sym_await, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, - anon_sym_LT, - ACTIONS(2831), 1, - anon_sym_not, - ACTIONS(2833), 1, - anon_sym_lambda, - ACTIONS(2835), 1, - anon_sym_new, - 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(4084), 1, - sym_expression, - STATE(5807), 1, - sym__named_expression_lhs, + ACTIONS(4982), 1, + anon_sym_PIPE, + ACTIONS(4986), 1, + anon_sym_AMP, + ACTIONS(4988), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4980), 2, 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(3186), 8, - 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, + STATE(2973), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [70429] = 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(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(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5697), 3, + anon_sym_EQ, anon_sym_LT, - ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(5695), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, anon_sym_not, - ACTIONS(2833), 1, - anon_sym_lambda, - ACTIONS(2835), 1, - anon_sym_new, - 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(4085), 1, - sym_expression, - STATE(5807), 1, - sym__named_expression_lhs, + 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, + [39227] = 8, + ACTIONS(5364), 1, + sym_c_integer_signedness, + ACTIONS(5366), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5699), 1, + aux_sym_integer_token2, + STATE(2708), 1, + aux_sym_integer_repeat2, + STATE(3397), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [70544] = 26, - ACTIONS(2437), 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, + [39283] = 8, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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(4386), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + STATE(2920), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 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_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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, - [70659] = 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, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [39339] = 5, + ACTIONS(5701), 1, sym_string_start, - ACTIONS(2757), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2658), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 5, + anon_sym_as, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_await, - ACTIONS(3079), 1, + anon_sym_GT, + ACTIONS(4915), 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, - 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(4387), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [39389] = 8, + ACTIONS(5364), 1, + sym_c_integer_signedness, + ACTIONS(5366), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5704), 1, + aux_sym_integer_token3, + STATE(2709), 1, + aux_sym_integer_repeat3, + STATE(3397), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(4841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 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_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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, - [70774] = 26, - ACTIONS(2437), 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, + [39445] = 12, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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(4388), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5039), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5049), 2, 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(3948), 8, - 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, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [70889] = 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, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, anon_sym_LT, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_await, - ACTIONS(3079), 1, + anon_sym_GT, + ACTIONS(5660), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, 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(3973), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + 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, + [39509] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5718), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5726), 1, + anon_sym_AMP, + ACTIONS(5728), 1, + anon_sym_CARET, + ACTIONS(5730), 1, + anon_sym_is, + STATE(2924), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5722), 2, 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(3948), 8, - 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, + ACTIONS(5732), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2240), 2, + sym__not_in, + sym__is_not, + STATE(3370), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [71004] = 26, - ACTIONS(2437), 1, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5714), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [39589] = 23, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(5734), 1, + sym_identifier, + ACTIONS(5736), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5738), 1, + anon_sym_STAR, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5742), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5744), 1, + anon_sym_DASH, + ACTIONS(5748), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, - anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(5752), 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, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(5097), 1, sym_string, - STATE(2465), 1, - sym_list_splat_pattern, - STATE(4389), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + STATE(5257), 1, + sym_integer, + STATE(5427), 1, + sym_dotted_name, + STATE(6308), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5750), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6140), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5746), 3, + anon_sym__, 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(3948), 8, - 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, + STATE(5428), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [71119] = 26, - ACTIONS(2437), 1, + [39675] = 8, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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(4390), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + STATE(2920), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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, - [71234] = 26, - ACTIONS(2437), 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, + [39731] = 6, + ACTIONS(5074), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5079), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5071), 4, anon_sym_LPAREN, - ACTIONS(2443), 1, + anon_sym_STAR_STAR, 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_AMP, + ACTIONS(5077), 4, + anon_sym_as, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_await, - ACTIONS(3079), 1, + anon_sym_GT, + ACTIONS(5069), 26, + anon_sym_DOT, + 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, - 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(4391), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + 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, + [39783] = 13, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5055), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5039), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5049), 2, 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(3948), 8, - 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, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [71349] = 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(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(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, anon_sym_LT, - ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(5660), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, - ACTIONS(2833), 1, - anon_sym_lambda, - ACTIONS(2835), 1, - anon_sym_new, - 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(3181), 1, - sym_expression, - STATE(5807), 1, - sym__named_expression_lhs, + 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, + [39849] = 5, + STATE(2638), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + STATE(2278), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5324), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [71464] = 26, - ACTIONS(2437), 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, + [39899] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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, - ACTIONS(2773), 1, - anon_sym_new, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_await, - STATE(2159), 1, - sym_primary_expression, - STATE(2231), 1, - sym_string, - STATE(2465), 1, - sym_list_splat_pattern, - STATE(4086), 1, - sym_expression, - STATE(5709), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2875), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3948), 8, - 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, - [71579] = 26, - ACTIONS(2437), 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, + [39955] = 8, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2920), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 5, + anon_sym_as, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(2871), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_await, - ACTIONS(3079), 1, + anon_sym_GT, + ACTIONS(5685), 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, - 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(3959), 1, - sym_expression, - STATE(5813), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [40011] = 15, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 1, + anon_sym_LPAREN, + ACTIONS(5015), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5023), 1, + anon_sym_PIPE, + ACTIONS(5025), 1, + anon_sym_AMP, + ACTIONS(5027), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5009), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5011), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5021), 2, 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(3948), 8, - 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, + STATE(2920), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [71694] = 26, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(1279), 1, + ACTIONS(5019), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5697), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5695), 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, + [40081] = 12, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 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(4578), 1, - sym_expression, - STATE(5708), 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, + ACTIONS(4966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4980), 2, 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(3186), 8, - 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, + STATE(2973), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [71809] = 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, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, 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(4579), 1, - sym_expression, - STATE(5708), 1, - sym__named_expression_lhs, + anon_sym_GT, + ACTIONS(5660), 19, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [40145] = 5, + ACTIONS(5754), 1, + aux_sym_integer_token1, + STATE(2671), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + ACTIONS(4865), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4863), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [71924] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [40195] = 5, + STATE(2645), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2337), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 4, + anon_sym_STAR, + anon_sym_SLASH, 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_GT, + ACTIONS(5324), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1353), 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(2819), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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(3897), 1, - sym_expression, - STATE(5878), 1, - sym__named_expression_lhs, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [40245] = 5, + STATE(2684), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + STATE(2331), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5324), 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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [72039] = 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_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [40295] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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(2140), 1, - sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(3898), 1, - sym_expression, - STATE(5878), 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, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [72154] = 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_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [40351] = 11, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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(2140), 1, - sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(3899), 1, - sym_expression, - STATE(5878), 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, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5049), 2, 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(3525), 8, - 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, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [72269] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, 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(1353), 1, - anon_sym_LBRACK, - ACTIONS(2819), 1, + anon_sym_GT, + ACTIONS(5660), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, - 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(3900), 1, - sym_expression, - STATE(5878), 1, - sym__named_expression_lhs, + 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, + [40413] = 5, + ACTIONS(5757), 1, + aux_sym_integer_token4, + STATE(2676), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4851), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4849), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_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_TILDE, - ACTIONS(870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3525), 8, - 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, - [72384] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [40463] = 9, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5763), 1, + anon_sym_is, + STATE(2677), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5766), 2, 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_GT, + STATE(2234), 2, + sym__not_in, + sym__is_not, + ACTIONS(5760), 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(5392), 22, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(2819), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_nogil, + [40521] = 20, + ACTIONS(4962), 1, + anon_sym_LPAREN, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4982), 1, + anon_sym_PIPE, + ACTIONS(4984), 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(3901), 1, - sym_expression, - STATE(5878), 1, - sym__named_expression_lhs, + ACTIONS(4986), 1, + anon_sym_AMP, + ACTIONS(4988), 1, + anon_sym_CARET, + ACTIONS(4990), 1, + anon_sym_is, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(3973), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(4966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4980), 2, 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(3525), 8, - 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, - [72499] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(4992), 2, 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_GT, + STATE(2379), 2, + sym__not_in, + sym__is_not, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(4970), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [40601] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5718), 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(2140), 1, - sym_string, - STATE(2215), 1, - sym_list_splat_pattern, - STATE(3820), 1, - sym_expression, - STATE(5878), 1, - sym__named_expression_lhs, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5726), 1, + anon_sym_AMP, + ACTIONS(5728), 1, + anon_sym_CARET, + ACTIONS(5730), 1, + anon_sym_is, + STATE(4046), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5722), 2, 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(3525), 8, - 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, - [72614] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(5732), 2, 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_GT, + STATE(2240), 2, + sym__not_in, + sym__is_not, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5714), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [40681] = 6, + ACTIONS(5074), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5079), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5071), 4, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(2819), 1, + anon_sym_AMP, + ACTIONS(5077), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5069), 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, - 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(3533), 1, - sym_expression, - STATE(5878), 1, - sym__named_expression_lhs, + 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, + sym_type_conversion, + [40733] = 15, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_PIPE, + ACTIONS(5053), 1, + anon_sym_AMP, + ACTIONS(5055), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5039), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5049), 2, 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(3525), 8, - 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, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [72729] = 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(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(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2783), 1, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5697), 3, + anon_sym_EQ, anon_sym_LT, - ACTIONS(3113), 1, - anon_sym_STAR, - ACTIONS(3863), 1, + anon_sym_GT, + ACTIONS(5695), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_not, - ACTIONS(3865), 1, - anon_sym_lambda, - ACTIONS(3867), 1, - anon_sym_new, - STATE(2209), 1, - sym_string, - STATE(2414), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3260), 1, - sym_expression, - STATE(5567), 1, - sym__named_expression_lhs, + 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, + [40803] = 8, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, + anon_sym_LPAREN, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1293), 4, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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_TILDE, - ACTIONS(1283), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3186), 8, - 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, - [72844] = 22, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [40859] = 23, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4930), 1, + sym_identifier, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4934), 1, + anon_sym_STAR, + ACTIONS(4940), 1, + anon_sym_STAR_STAR, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(4950), 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, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3307), 1, - sym_primary_expression, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5198), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1361), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1363), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5564), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4946), 3, + anon_sym__, 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(1576), 8, + STATE(5199), 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, + [40945] = 9, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5772), 1, + anon_sym_is, + STATE(2684), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5775), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2331), 2, + sym__not_in, + sym__is_not, + ACTIONS(5394), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5769), 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(5392), 21, + 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_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, - 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, - [72950] = 22, - ACTIONS(1279), 1, + [41003] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 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(3307), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, - anon_sym_DOT, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(893), 2, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 26, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - 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_as, anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - 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, - [73056] = 22, - ACTIONS(1279), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [41059] = 11, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 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(3307), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, - anon_sym_DOT, + ACTIONS(4966), 2, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(893), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(4980), 2, 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, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4978), 3, anon_sym_AT, - anon_sym_PIPE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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, - 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, - [73162] = 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, + 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, + [41121] = 5, + ACTIONS(1674), 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(3307), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1361), 2, + STATE(2692), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4496), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - 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_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_TILDE, - 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_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [41171] = 6, + ACTIONS(5074), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5079), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5071), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5077), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5069), 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, - 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, - [73268] = 21, - ACTIONS(1279), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [41223] = 8, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 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(3307), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, - anon_sym_DOT, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_STAR, + anon_sym_EQ, 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(1370), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(857), 8, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 26, + 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_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, - 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, - [73370] = 8, - ACTIONS(864), 1, - anon_sym_COMMA, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + 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, + [41279] = 10, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5043), 1, + anon_sym_STAR_STAR, + ACTIONS(5045), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(879), 2, - anon_sym_COLON, + ACTIONS(5037), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5047), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, anon_sym_EQ, - ACTIONS(3897), 7, - anon_sym_class, - anon_sym_api, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - 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, - ACTIONS(857), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 23, sym__newline, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [41339] = 10, + ACTIONS(4960), 1, anon_sym_DOT, + ACTIONS(4962), 1, anon_sym_LPAREN, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4966), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 23, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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(859), 16, + sym_type_conversion, + [41399] = 5, + ACTIONS(1674), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2640), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4897), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4895), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [73445] = 17, - ACTIONS(3901), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [41449] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5208), 1, anon_sym_DOT, - ACTIONS(3905), 1, - anon_sym_COMMA, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(3914), 1, - anon_sym_COLON, - ACTIONS(3916), 1, - anon_sym_EQ, - ACTIONS(3918), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(3922), 1, - anon_sym_complex, - ACTIONS(3924), 1, - anon_sym___stdcall, - STATE(3523), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, - sym_type_index, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5726), 1, + anon_sym_AMP, + ACTIONS(5728), 1, + anon_sym_CARET, + ACTIONS(5730), 1, + anon_sym_is, + STATE(4046), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 2, - sym__newline, - anon_sym_LPAREN, - STATE(3795), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3908), 3, + ACTIONS(5710), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5722), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5732), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2240), 2, + sym__not_in, + sym__is_not, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5714), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [41529] = 14, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, + anon_sym_LPAREN, + ACTIONS(4972), 1, anon_sym_STAR_STAR, + ACTIONS(4976), 1, + anon_sym_LBRACK, + ACTIONS(4986), 1, anon_sym_AMP, - ACTIONS(3910), 12, + ACTIONS(4988), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4968), 2, anon_sym_GT_GT, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4980), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4978), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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, + [41597] = 13, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, + anon_sym_LPAREN, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4976), 1, + anon_sym_LBRACK, + ACTIONS(4988), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4968), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(4980), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2973), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 13, - anon_sym_SEMI, + ACTIONS(5660), 18, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - 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, - [73537] = 5, - ACTIONS(3932), 1, - anon_sym_DQUOTE_DQUOTE, + sym_type_conversion, + [41663] = 5, + ACTIONS(5778), 1, + aux_sym_integer_token2, + STATE(2696), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3930), 2, - anon_sym_new, - anon_sym_delete, - ACTIONS(3928), 20, + ACTIONS(4858), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4856), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_EQ, + 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_SLASH, anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, + anon_sym_is, anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_BANG, - anon_sym_xor, - ACTIONS(3926), 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, - [73604] = 5, - ACTIONS(3940), 1, - anon_sym_DQUOTE_DQUOTE, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [41713] = 5, + ACTIONS(5781), 1, + aux_sym_integer_token3, + STATE(2697), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_new, - anon_sym_delete, - ACTIONS(3936), 20, + ACTIONS(4872), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4870), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_EQ, + 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_SLASH, anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, + anon_sym_is, 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(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, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [41763] = 5, + ACTIONS(1963), 1, sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3942), 1, - sym_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, - anon_sym_STAR, - ACTIONS(3950), 1, - anon_sym_LBRACK, - ACTIONS(3952), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3213), 1, - sym_list_splat_pattern, - STATE(3339), 1, - sym_primary_expression, - STATE(4504), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3222), 2, - sym_attribute, - sym_subscript, - STATE(4439), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + STATE(2653), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4496), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 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_TILDE, - ACTIONS(2799), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3948), 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, - [73776] = 24, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 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, + [41813] = 24, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, - sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3942), 1, - sym_identifier, - ACTIONS(3944), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(3946), 1, - anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(3952), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5738), 1, + anon_sym_STAR, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5788), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(3213), 1, - sym_list_splat_pattern, - STATE(3339), 1, - sym_primary_expression, - STATE(4504), 1, - sym_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3222), 2, - sym_attribute, - sym_subscript, - STATE(4439), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2811), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3948), 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [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(4973), 1, - sym_string, + [41900] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(879), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(857), 10, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 26, 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(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, - ACTIONS(859), 22, + anon_sym_from, + anon_sym_COMMA, 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, @@ -191863,195 +253949,167 @@ static const uint16_t ts_small_parse_table[] = { 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(874), 1, - anon_sym_COLON_EQ, - ACTIONS(3958), 1, - anon_sym_for, - ACTIONS(3960), 1, - anon_sym_with, - ACTIONS(3962), 1, - anon_sym_def, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [41955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(879), 2, - anon_sym_COLON, - anon_sym_EQ, - 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, - ACTIONS(859), 15, + ACTIONS(4575), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_EQ, 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(857), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(4573), 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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74031] = 10, - ACTIONS(864), 1, - anon_sym_COMMA, - ACTIONS(874), 1, - anon_sym_COLON_EQ, - ACTIONS(3964), 1, - anon_sym_for, - ACTIONS(3966), 1, - anon_sym_with, - ACTIONS(3968), 1, - anon_sym_def, + [42000] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(879), 2, - anon_sym_COLON, - anon_sym_EQ, - 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, - ACTIONS(859), 15, + ACTIONS(4583), 5, anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4581), 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_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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [42045] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5176), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(5174), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74106] = 11, - ACTIONS(864), 1, - anon_sym_COMMA, - ACTIONS(874), 1, - anon_sym_COLON_EQ, - ACTIONS(876), 1, - anon_sym_COLON, - ACTIONS(879), 1, - anon_sym_EQ, - ACTIONS(3954), 1, - sym_identifier, - ACTIONS(3956), 1, - sym_string_start, - STATE(4973), 1, - sym_string, + sym_type_conversion, + [42090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(857), 10, - sym__newline, - anon_sym_SEMI, + ACTIONS(4583), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4581), 31, anon_sym_DOT, + anon_sym_from, 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(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, - ACTIONS(859), 22, + anon_sym_COMMA, anon_sym_as, - anon_sym_STAR, 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, @@ -192059,2372 +254117,1234 @@ static const uint16_t ts_small_parse_table[] = { 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, - [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, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3970), 1, - sym_identifier, - ACTIONS(3974), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [42135] = 11, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(3980), 1, + ACTIONS(5045), 1, anon_sym_LBRACK, - ACTIONS(3982), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(3331), 1, - sym_pattern, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3972), 2, - anon_sym_from, - anon_sym_in, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - 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(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(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(2849), 1, - anon_sym_LT, - ACTIONS(3970), 1, - sym_identifier, - ACTIONS(3974), 1, - anon_sym_LPAREN, - ACTIONS(3976), 1, + ACTIONS(5130), 2, anon_sym_STAR, - ACTIONS(3980), 1, - anon_sym_LBRACK, - ACTIONS(3982), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(3331), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3984), 2, - anon_sym_from, - anon_sym_in, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + anon_sym_SLASH, + ACTIONS(5140), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_AMP, - 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, - [74389] = 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, - ACTIONS(2849), 1, + ACTIONS(5662), 2, 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(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(4835), 1, - sym_pattern, - STATE(5642), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - 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(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, + anon_sym_GT, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [74491] = 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, - 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(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(5156), 1, - sym_pattern, - STATE(5607), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5138), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + 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_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, - [74593] = 24, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 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, + [42196] = 24, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, - sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2843), 1, - anon_sym_STAR, - ACTIONS(2847), 1, - anon_sym_LBRACK, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(2851), 1, - anon_sym_await, - ACTIONS(3986), 1, - sym_identifier, - ACTIONS(3988), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(3990), 1, - anon_sym_RPAREN, - STATE(2209), 1, - sym_string, - STATE(3305), 1, - sym_list_splat_pattern, - STATE(3332), 1, - sym_primary_expression, - STATE(5356), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3308), 2, - sym_attribute, - sym_subscript, - STATE(5357), 2, - sym_tuple_pattern, - sym_list_pattern, - 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(2845), 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, - [74695] = 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, - ACTIONS(2843), 1, - anon_sym_STAR, - ACTIONS(2847), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(2851), 1, - anon_sym_await, - ACTIONS(3986), 1, - sym_identifier, - ACTIONS(3988), 1, - anon_sym_LPAREN, - ACTIONS(3992), 1, - anon_sym_RPAREN, - STATE(2209), 1, - sym_string, - STATE(3305), 1, - sym_list_splat_pattern, - STATE(3332), 1, - sym_primary_expression, - STATE(5356), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3308), 2, - sym_attribute, - sym_subscript, - STATE(5357), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(4944), 1, 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(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, - [74797] = 23, - ACTIONS(1279), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(3994), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(4002), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(5790), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3330), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3998), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(4000), 2, - anon_sym_with, - anon_sym_nogil, - STATE(2232), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, + STATE(4964), 1, sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(3996), 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, - [74897] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, - sym_string_start, - 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(4004), 1, - sym_identifier, - STATE(2140), 1, - sym_string, - STATE(2154), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + STATE(5195), 1, + sym_dotted_name, + STATE(5325), 1, + sym_splat_pattern, + STATE(5904), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3998), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(4000), 2, - anon_sym_with, - anon_sym_nogil, - ACTIONS(81), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1351), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [74995] = 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, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3990), 1, - anon_sym_RBRACK, - ACTIONS(4006), 1, - sym_identifier, - ACTIONS(4008), 1, - anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_STAR, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3295), 1, - sym_list_splat_pattern, - STATE(3337), 1, - sym_primary_expression, - STATE(5295), 1, - sym_pattern, + [42283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3296), 2, - sym_attribute, - sym_subscript, - STATE(5351), 2, - sym_tuple_pattern, - sym_list_pattern, - 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(4012), 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, - [75097] = 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, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3970), 1, - sym_identifier, - ACTIONS(3974), 1, - anon_sym_LPAREN, - ACTIONS(3976), 1, + ACTIONS(4579), 5, anon_sym_STAR, - ACTIONS(3980), 1, - anon_sym_LBRACK, - ACTIONS(3982), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(5118), 1, - sym_pattern, - STATE(5822), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - 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(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, - [75199] = 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, - ACTIONS(2849), 1, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(3970), 1, - sym_identifier, - ACTIONS(3974), 1, + anon_sym_GT, + ACTIONS(4577), 31, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(3980), 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, anon_sym_LBRACK, - ACTIONS(3982), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(4809), 1, - sym_pattern, - STATE(5717), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - 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, - [75301] = 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, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3992), 1, - anon_sym_RBRACK, - ACTIONS(4006), 1, - sym_identifier, - ACTIONS(4008), 1, - anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_STAR, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3295), 1, - sym_list_splat_pattern, - STATE(3337), 1, - sym_primary_expression, - STATE(5295), 1, - sym_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [42328] = 5, + ACTIONS(5792), 1, + aux_sym_integer_token2, + STATE(2708), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3296), 2, - sym_attribute, - sym_subscript, - STATE(5351), 2, - sym_tuple_pattern, - sym_list_pattern, - 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(4012), 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, - [75403] = 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, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3970), 1, - sym_identifier, - ACTIONS(3974), 1, - anon_sym_LPAREN, - ACTIONS(3976), 1, + ACTIONS(4858), 4, anon_sym_STAR, - ACTIONS(3980), 1, - anon_sym_LBRACK, - ACTIONS(3982), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(5112), 1, - sym_pattern, - STATE(5773), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - 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(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, - [75505] = 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, - ACTIONS(2849), 1, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(3970), 1, - sym_identifier, - ACTIONS(3974), 1, + anon_sym_GT, + ACTIONS(4856), 30, + anon_sym_DOT, 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(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(5152), 1, - sym_pattern, - STATE(5595), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - 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(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, - [75607] = 10, - ACTIONS(3905), 1, + anon_sym_RPAREN, 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(4628), 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_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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [42377] = 5, + ACTIONS(5795), 1, + aux_sym_integer_token3, + STATE(2709), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4872), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 16, - sym__newline, - anon_sym_SEMI, + ACTIONS(4870), 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_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, - [75680] = 23, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [42426] = 24, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, - sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2843), 1, - anon_sym_STAR, - ACTIONS(2847), 1, + ACTIONS(4932), 1, + anon_sym_LPAREN, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(2851), 1, - anon_sym_await, - ACTIONS(3986), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5738), 1, + anon_sym_STAR, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(3988), 1, - anon_sym_LPAREN, - STATE(2209), 1, + ACTIONS(5798), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(3305), 1, - sym_list_splat_pattern, - STATE(3332), 1, - sym_primary_expression, - STATE(5356), 1, - sym_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3308), 2, - sym_attribute, - sym_subscript, - STATE(5357), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1374), 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(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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [75779] = 23, - ACTIONS(1289), 1, - anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, + [42513] = 24, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1305), 1, - sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(4006), 1, - sym_identifier, - ACTIONS(4008), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_STAR, - ACTIONS(4014), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5738), 1, + anon_sym_STAR, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5800), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(3295), 1, - sym_list_splat_pattern, - STATE(3337), 1, - sym_primary_expression, - STATE(5295), 1, - sym_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3296), 2, - sym_attribute, - sym_subscript, - STATE(5351), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4012), 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [75878] = 23, - 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(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(3274), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, - STATE(3331), 1, - sym_pattern, + [42600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3275), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(4579), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4577), 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_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, - [75977] = 23, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 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, + [42645] = 8, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(3154), 1, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, - anon_sym_await, - ACTIONS(4023), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2809), 1, - sym_list_splat_pattern, - STATE(3331), 1, - sym_pattern, - STATE(3333), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2811), 2, - sym_attribute, - sym_subscript, - STATE(3300), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(3152), 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, - [76076] = 23, - 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(2797), 1, - sym_identifier, - ACTIONS(2801), 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, + [42700] = 11, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(2807), 1, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, anon_sym_LBRACK, - ACTIONS(2809), 1, - anon_sym_await, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(4025), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2604), 1, - sym_list_splat_pattern, - STATE(3294), 1, - sym_primary_expression, - STATE(3303), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2605), 2, - sym_attribute, - sym_subscript, - STATE(3293), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5103), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5115), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2805), 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, + STATE(3180), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [76175] = 23, - 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(2849), 1, + ACTIONS(5113), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, - ACTIONS(3942), 1, - sym_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + anon_sym_GT, + ACTIONS(5660), 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, + [42761] = 6, + ACTIONS(5074), 1, anon_sym_STAR, - ACTIONS(3950), 1, - anon_sym_LBRACK, - ACTIONS(3952), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(3213), 1, - sym_list_splat_pattern, - STATE(3339), 1, - sym_primary_expression, - STATE(4504), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3222), 2, - sym_attribute, - sym_subscript, - STATE(4439), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5079), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5071), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(3948), 5, - anon_sym_print, - anon_sym_match, + ACTIONS(5077), 4, + anon_sym_as, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5069), 25, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, 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, - [76274] = 22, - ACTIONS(1279), 1, + 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, + [42812] = 8, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4027), 1, - sym_identifier, - ACTIONS(4033), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4029), 2, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 25, anon_sym_COMMA, - anon_sym_COLON, - STATE(3237), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + 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_TILDE, - ACTIONS(4031), 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, - [76370] = 22, - ACTIONS(1279), 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, + [42867] = 10, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4035), 1, - sym_identifier, - ACTIONS(4041), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3335), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4037), 2, - anon_sym_RPAREN, + ACTIONS(5103), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5113), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 22, anon_sym_COMMA, - STATE(2818), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + 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_TILDE, - ACTIONS(4039), 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, - [76466] = 8, - ACTIONS(864), 1, - anon_sym_COMMA, - ACTIONS(874), 1, - anon_sym_COLON_EQ, - ACTIONS(876), 1, - anon_sym_COLON, - ACTIONS(879), 1, - anon_sym_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [42926] = 14, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_AMP, + ACTIONS(5121), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - ACTIONS(859), 15, + ACTIONS(5103), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5105), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5115), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5113), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(5660), 16, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [42993] = 4, + ACTIONS(5802), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5095), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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, + 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, - [76534] = 22, - ACTIONS(1279), 1, + [43040] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(4043), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(4047), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(5804), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3332), 1, - sym_primary_expression, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4029), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3219), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4045), 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [76630] = 22, - ACTIONS(1279), 1, + [43127] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(4035), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(4041), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(5806), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3335), 1, - sym_primary_expression, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4049), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2818), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4039), 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [76726] = 7, - ACTIONS(3905), 1, - anon_sym_COMMA, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + [43214] = 13, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LBRACK, + ACTIONS(5121), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3916), 2, - anon_sym_COLON, - anon_sym_EQ, - 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, + ACTIONS(5103), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5105), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5115), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5113), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + ACTIONS(5660), 17, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_LBRACK, + 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, - [76792] = 7, - ACTIONS(864), 1, - anon_sym_COMMA, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [43279] = 12, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(879), 2, - anon_sym_COLON, - anon_sym_EQ, - 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, - ACTIONS(859), 15, + ACTIONS(5103), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5105), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5115), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5113), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + ACTIONS(5660), 18, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_LBRACK, + 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, - [76858] = 6, - ACTIONS(4053), 1, - anon_sym_COMMA, - ACTIONS(4060), 1, - anon_sym_EQ, + [43342] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, 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, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(4056), 15, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_if, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4051), 17, - 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, + [43397] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5293), 1, anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5820), 1, + anon_sym_PIPE, + ACTIONS(5822), 1, + anon_sym_AMP, + ACTIONS(5824), 1, + anon_sym_CARET, + ACTIONS(5826), 1, + anon_sym_is, + STATE(4066), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5818), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5828), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2279), 2, + sym__not_in, + sym__is_not, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5816), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 5, anon_sym_as, anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, + anon_sym_else, anon_sym_and, anon_sym_or, - anon_sym_is, + ACTIONS(5812), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76921] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4064), 3, + [43476] = 10, + ACTIONS(5033), 1, anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, + ACTIONS(5045), 1, anon_sym_LBRACK, - ACTIONS(4070), 3, - anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4067), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5138), 3, 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(4062), 29, + ACTIONS(5660), 23, sym__newline, anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [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, + [43535] = 5, + ACTIONS(2001), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4053), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4058), 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(4056), 15, + STATE(2743), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4496), 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, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(4485), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77136] = 3, + [43584] = 14, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, + ACTIONS(5144), 1, + anon_sym_AMP, + ACTIONS(5146), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 16, + ACTIONS(5130), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5140), 2, 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(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 32, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5138), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 17, 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_in, - anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -194434,1122 +255354,1038 @@ 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, - [77193] = 6, - ACTIONS(3905), 1, - anon_sym_COMMA, - ACTIONS(3916), 1, - anon_sym_EQ, + [43651] = 13, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, + ACTIONS(5146), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3920), 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(3910), 15, + ACTIONS(5130), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5140), 2, 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(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 17, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5138), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 18, 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_in, - anon_sym_LBRACK, + 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, - [77256] = 6, - ACTIONS(4080), 1, - anon_sym_COMMA, - ACTIONS(4087), 1, - anon_sym_EQ, + [43716] = 20, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(5830), 1, + anon_sym_extern, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4085), 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(4083), 15, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3728), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(3588), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [43795] = 12, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5140), 2, 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(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 17, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5138), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 19, 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_in, - anon_sym_LBRACK, + 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, - [77319] = 3, + [43858] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 16, + ACTIONS(983), 6, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_COLON, 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(4074), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(981), 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_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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [77376] = 3, + sym_type_conversion, + [43905] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 16, + ACTIONS(4496), 6, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_COLON, 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(4089), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(4485), 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_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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [77433] = 20, - ACTIONS(1279), 1, + sym_type_conversion, + [43952] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 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(4632), 1, + anon_sym_long, + ACTIONS(4676), 1, + anon_sym_extern, + ACTIONS(4680), 1, + anon_sym_enum, + ACTIONS(4684), 1, + anon_sym_fused, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4324), 1, + sym_c_type, 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, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4678), 2, + anon_sym_struct, + anon_sym_union, + STATE(3760), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1257), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [44031] = 20, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4640), 1, + anon_sym_enum, + ACTIONS(4644), 1, + anon_sym_fused, + ACTIONS(5830), 1, + anon_sym_extern, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4348), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4080), 2, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4638), 2, + anon_sym_struct, + anon_sym_union, + STATE(3728), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(3672), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [44110] = 5, + ACTIONS(4491), 1, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4085), 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(4083), 15, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4496), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 28, + anon_sym_DOT, + anon_sym_LPAREN, + 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_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, + 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, + [44159] = 5, + ACTIONS(988), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(981), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77587] = 20, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - anon_sym_LT, - ACTIONS(1404), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1406), 1, + sym_type_conversion, + [44208] = 24, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1410), 1, - sym_float, - ACTIONS(1426), 1, - anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(1558), 1, - anon_sym_LBRACK, - ACTIONS(2503), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - ACTIONS(3067), 1, + ACTIONS(4942), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(4072), 1, - anon_sym_not, - STATE(2242), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5832), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2339), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5397), 1, + sym_splat_pattern, + STATE(5869), 1, + sym__key_value_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(1408), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(2507), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [77678] = 3, + [44295] = 5, + STATE(2740), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 16, + STATE(2253), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 4, 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(4089), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(5324), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(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(1347), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - ACTIONS(4072), 1, + [44344] = 9, + ACTIONS(5399), 1, anon_sym_not, - STATE(2140), 1, - sym_string, - STATE(2153), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + ACTIONS(5837), 1, + anon_sym_is, + STATE(2740), 1, + aux_sym_comparison_operator_repeat1, 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(1351), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [77826] = 20, - 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, + ACTIONS(5394), 2, anon_sym_STAR, - ACTIONS(2571), 1, + anon_sym_SLASH, + ACTIONS(5840), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2253), 2, + sym__not_in, + sym__is_not, + ACTIONS(5834), 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(5392), 21, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2579), 1, - anon_sym_await, - ACTIONS(4072), 1, - anon_sym_not, - STATE(2403), 1, - sym_string, - STATE(2538), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1450), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - 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(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, - [77917] = 6, - ACTIONS(3916), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3905), 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(3910), 15, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + [44401] = 5, + STATE(2817), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(5324), 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77980] = 20, - 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, + [44450] = 24, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(2563), 1, - sym_float, - ACTIONS(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(4072), 1, - anon_sym_not, - STATE(2283), 1, - sym_string, - STATE(2320), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - 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(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, - [78071] = 20, - ACTIONS(2517), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(2531), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(4072), 1, - anon_sym_not, - STATE(2324), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5843), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2498), 1, - sym_primary_expression, - STATE(2736), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5312), 1, + sym_splat_pattern, + STATE(5761), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [78162] = 5, + [44537] = 5, + ACTIONS(2001), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1366), 3, - anon_sym_EQ, + STATE(2757), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4897), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1576), 3, + ACTIONS(4895), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1363), 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_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(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, - 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, + [44586] = 4, + ACTIONS(5845), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 16, + ACTIONS(5168), 5, anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 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_EQ, + 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, + 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, + [44633] = 4, + ACTIONS(5847), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5168), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4093), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(5166), 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, + sym_type_conversion, + [44680] = 8, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 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(2457), 1, - anon_sym_await, - 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(4072), 1, - anon_sym_not, - STATE(2231), 1, - sym_string, - STATE(2245), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - 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(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, + STATE(3069), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [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, + ACTIONS(5662), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4067), 12, - anon_sym_STAR, + ACTIONS(5660), 25, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_STAR_STAR, + 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_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(4062), 28, - sym__newline, - anon_sym_SEMI, - 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, + [44735] = 11, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, + anon_sym_LPAREN, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5212), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5224), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3069), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5222), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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_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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, + [44796] = 5, + ACTIONS(5849), 1, + aux_sym_integer_token1, + STATE(2748), 1, + aux_sym_integer_repeat1, 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, + ACTIONS(4865), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4863), 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_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, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 17, - 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_c_integer_signedness, + aux_sym_c_integer_type_token1, + [44845] = 15, + ACTIONS(5208), 1, anon_sym_DOT, + ACTIONS(5210), 1, anon_sym_LPAREN, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, + anon_sym_PIPE, + ACTIONS(5228), 1, + anon_sym_AMP, + ACTIONS(5230), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5212), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5214), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5224), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3069), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5222), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5697), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5695), 15, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195559,95 +256395,146 @@ static const uint16_t ts_small_parse_table[] = { 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, + [44914] = 8, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, + anon_sym_LPAREN, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3920), 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(4106), 15, + STATE(3069), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 25, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_STAR_STAR, + 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_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, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 17, - 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, + [44969] = 10, + ACTIONS(5208), 1, anon_sym_DOT, + ACTIONS(5210), 1, anon_sym_LPAREN, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5212), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3069), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5222), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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_LBRACK, + 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, - [78562] = 3, + [45028] = 14, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, + anon_sym_LPAREN, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 1, + anon_sym_LBRACK, + ACTIONS(5228), 1, + anon_sym_AMP, + ACTIONS(5230), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 16, + ACTIONS(5212), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5214), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5224), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(3069), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5222), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4108), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5660), 16, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195657,9598 +256544,7712 @@ 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, - [78619] = 3, + [45095] = 13, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, + anon_sym_LPAREN, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 16, + ACTIONS(5212), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5214), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5224), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(3069), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5222), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4112), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5660), 17, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_LBRACK, + 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [78676] = 21, - ACTIONS(1279), 1, + [45160] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(4116), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(4120), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(5852), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2300), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4118), 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [78768] = 19, - ACTIONS(2517), 1, + [45247] = 12, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2533), 1, - sym_primary_expression, - 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, + ACTIONS(5212), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5214), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5224), 2, 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, + STATE(3069), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [78856] = 21, - 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(2849), 1, + ACTIONS(5222), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_as, anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4122), 1, - sym_identifier, - ACTIONS(4126), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, + anon_sym_GT, + ACTIONS(5660), 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, + [45310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3264), 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(4124), 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, - [78948] = 19, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(5176), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, 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, + anon_sym_GT, + ACTIONS(5174), 31, sym_string_start, - ACTIONS(1347), 1, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2154), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + 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, + [45355] = 5, + ACTIONS(5854), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(2757), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4915), 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_TILDE, - 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(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, - [79036] = 19, - ACTIONS(2545), 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, + [45404] = 8, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 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(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2283), 1, - sym_string, - STATE(2318), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2553), 4, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2549), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [79124] = 19, - 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(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2283), 1, - sym_string, - STATE(2319), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [45459] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2553), 4, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1602), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 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_TILDE, - ACTIONS(2549), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [79212] = 19, - ACTIONS(2477), 1, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1597), 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, + [45508] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, - anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(4950), 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, + ACTIONS(5738), 1, anon_sym_STAR, - STATE(2226), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5857), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2253), 1, - sym_primary_expression, - STATE(2500), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [79300] = 19, - ACTIONS(2545), 1, + [45595] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, - anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(5738), 1, anon_sym_STAR, - STATE(2283), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5859), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2329), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2543), 4, + STATE(4964), 1, sym_integer, - sym_identifier, - sym_true, - sym_false, - 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(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, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [79388] = 19, - ACTIONS(2545), 1, + [45682] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, - anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(5738), 1, anon_sym_STAR, - STATE(2283), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5861), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2331), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(2553), 4, + STATE(5725), 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, + [45769] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4612), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4610), 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_TILDE, - ACTIONS(2549), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [79476] = 27, - ACTIONS(59), 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, + [45814] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 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_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, + [45861] = 20, + ACTIONS(135), 1, anon_sym_class, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4128), 1, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON, - ACTIONS(4134), 1, - anon_sym_api, - ACTIONS(4136), 1, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4656), 1, anon_sym_extern, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4144), 1, + ACTIONS(4664), 1, anon_sym_enum, - ACTIONS(4146), 1, - anon_sym_cppclass, - ACTIONS(4148), 1, + ACTIONS(4668), 1, anon_sym_fused, - STATE(3253), 1, + STATE(4071), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3952), 1, - sym_maybe_typed_name, + STATE(4329), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4142), 2, + ACTIONS(4662), 2, anon_sym_struct, anon_sym_union, - STATE(2541), 2, + STATE(3696), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 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, + ACTIONS(4622), 5, + anon_sym_api, 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, + STATE(1524), 6, + sym_class_definition, 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, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [45940] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(2559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2561), 1, - anon_sym_None, - ACTIONS(2563), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(5738), 1, anon_sym_STAR, - STATE(2283), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5863), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2332), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - 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(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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [79668] = 19, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - anon_sym_LT, - ACTIONS(1404), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1406), 1, + [46027] = 24, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(1410), 1, - sym_float, - ACTIONS(1426), 1, - anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(1558), 1, - anon_sym_LBRACK, - ACTIONS(2503), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - ACTIONS(3067), 1, + ACTIONS(4942), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5738), 1, anon_sym_STAR, - STATE(2242), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5865), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2314), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_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(1408), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(2507), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [79756] = 19, - 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(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2283), 1, - sym_string, - STATE(2334), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, + [46114] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2553), 4, + ACTIONS(4496), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 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_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_TILDE, - ACTIONS(2549), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [79844] = 19, - ACTIONS(2545), 1, - anon_sym_LPAREN, - ACTIONS(2551), 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, + [46161] = 6, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(5867), 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(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2283), 1, - sym_string, - STATE(2335), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, + STATE(5205), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2553), 4, + ACTIONS(4496), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + 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_PERCENT, + anon_sym_SLASH_SLASH, 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(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, - [79932] = 27, - ACTIONS(127), 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, + [46212] = 20, + ACTIONS(59), 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, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_COLON, - ACTIONS(4156), 1, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4676), 1, anon_sym_extern, - ACTIONS(4160), 1, + ACTIONS(4680), 1, anon_sym_enum, - ACTIONS(4162), 1, - anon_sym_cppclass, - ACTIONS(4164), 1, + ACTIONS(4684), 1, anon_sym_fused, - STATE(3253), 1, + STATE(4071), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3930), 1, - sym_maybe_typed_name, + STATE(4324), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4158), 2, + ACTIONS(4678), 2, anon_sym_struct, anon_sym_union, - STATE(2650), 2, + STATE(3760), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 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, + ACTIONS(4622), 5, + anon_sym_api, 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, + STATE(1584), 6, + sym_class_definition, 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(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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(3994), 1, - sym_identifier, - ACTIONS(4002), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3330), 1, - sym_primary_expression, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [46291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2232), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5253), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5251), 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_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_TILDE, - ACTIONS(3996), 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, - [80128] = 19, - ACTIONS(1279), 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, + [46336] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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(1378), 1, - anon_sym_await, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3306), 1, - sym_primary_expression, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + 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_TILDE, - 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, - [80216] = 21, - ACTIONS(1279), 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, + [46391] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4590), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4593), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4166), 1, - sym_identifier, - ACTIONS(4170), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3336), 1, - sym_primary_expression, + 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(4585), 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, + [46440] = 4, + ACTIONS(5869), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2703), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5095), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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_TILDE, - ACTIONS(4168), 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, - [80308] = 21, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [46487] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4002), 1, - anon_sym_await, - ACTIONS(4172), 1, - sym_identifier, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3330), 1, - sym_primary_expression, + 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, + [46534] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2232), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(4496), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 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_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_TILDE, - ACTIONS(3996), 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, - [80400] = 21, - ACTIONS(1279), 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, + [46581] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5305), 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4174), 1, - sym_identifier, - ACTIONS(4178), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3332), 1, - sym_primary_expression, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5820), 1, + anon_sym_PIPE, + ACTIONS(5822), 1, + anon_sym_AMP, + ACTIONS(5824), 1, + anon_sym_CARET, + ACTIONS(5826), 1, + anon_sym_is, + STATE(3148), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3229), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5818), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4176), 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, + ACTIONS(5828), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2279), 2, + sym__not_in, + sym__is_not, + STATE(2926), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80492] = 19, - ACTIONS(2477), 1, + ACTIONS(5816), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 5, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(5812), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46660] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, - anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(4950), 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, + ACTIONS(5738), 1, anon_sym_STAR, - STATE(2226), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5871), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2243), 1, - sym_primary_expression, - STATE(2500), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80580] = 19, - ACTIONS(2477), 1, + [46747] = 15, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(5045), 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, - STATE(2226), 1, - sym_string, - STATE(2244), 1, - sym_primary_expression, - STATE(2500), 1, - sym_list_splat_pattern, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, + ACTIONS(5190), 1, + anon_sym_PIPE, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2485), 4, + ACTIONS(5178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5188), 2, 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, + ACTIONS(5697), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80668] = 19, - ACTIONS(2437), 1, + ACTIONS(5186), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5695), 16, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [46816] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2453), 1, - anon_sym_None, - ACTIONS(2455), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 1, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(2765), 1, - anon_sym_LT, - STATE(2231), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2245), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(2445), 4, + STATE(5725), 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, + [46903] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5875), 1, + aux_sym_integer_token1, + STATE(2934), 1, + aux_sym_integer_repeat1, + STATE(2964), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4839), 27, + anon_sym_DOT, + anon_sym_LPAREN, + 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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [80756] = 19, - ACTIONS(2477), 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, + [46958] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2493), 1, - anon_sym_None, - ACTIONS(2495), 1, + ACTIONS(4950), 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, + ACTIONS(5738), 1, anon_sym_STAR, - STATE(2226), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5877), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2246), 1, - sym_primary_expression, - STATE(2500), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5440), 1, + sym_splat_pattern, + STATE(5726), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, - sym_integer, - sym_identifier, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80844] = 19, - ACTIONS(2477), 1, + [47045] = 8, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 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, - STATE(2226), 1, - sym_string, - STATE(2247), 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, + STATE(3180), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5685), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_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, - [80932] = 19, - ACTIONS(2477), 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, + [47100] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(5045), 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, - STATE(2226), 1, - sym_string, - STATE(2248), 1, - sym_primary_expression, - STATE(2500), 1, - sym_list_splat_pattern, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2485), 4, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5685), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + 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_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, - [81020] = 19, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 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, + [47155] = 4, + ACTIONS(5879), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5168), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, 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(1347), 1, + anon_sym_GT, + ACTIONS(5166), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2150), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + 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, + [47202] = 4, + ACTIONS(5881), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(5168), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 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_TILDE, - 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(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, - [81108] = 19, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 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, + [47249] = 4, + ACTIONS(5883), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5168), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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(1347), 1, + anon_sym_GT, + ACTIONS(5166), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 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, anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2152), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47296] = 4, + ACTIONS(5885), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(5168), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 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_TILDE, - 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(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, - [81196] = 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(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, - sym_string_start, - ACTIONS(1347), 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, + [47343] = 8, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2153), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(3069), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 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_TILDE, - 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(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, - [81284] = 19, - ACTIONS(2477), 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, + [47398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5176), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5174), 31, + sym_string_start, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2483), 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, 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, - STATE(2226), 1, - sym_string, - STATE(2249), 1, - sym_primary_expression, - STATE(2500), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47443] = 6, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(1602), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2485), 4, + ACTIONS(1597), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1599), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2481), 5, - anon_sym_print, - anon_sym_match, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47494] = 6, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4593), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4585), 2, 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, - [81372] = 19, - ACTIONS(2477), 1, + anon_sym_for, + ACTIONS(4590), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 27, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2483), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, 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_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, + [47545] = 20, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_extern, + ACTIONS(4664), 1, + anon_sym_enum, + ACTIONS(4668), 1, + anon_sym_fused, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4329), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4662), 2, + anon_sym_struct, + anon_sym_union, + STATE(3696), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1563), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [47624] = 6, + ACTIONS(5074), 1, anon_sym_STAR, - STATE(2226), 1, - sym_string, - STATE(2250), 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, + ACTIONS(5079), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5071), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2481), 5, - anon_sym_print, - anon_sym_match, + ACTIONS(5077), 4, + anon_sym_as, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5069), 25, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, 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, - [81460] = 19, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + 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, + [47675] = 5, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(1897), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, 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(1347), 1, + anon_sym_GT, + ACTIONS(981), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2145), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47724] = 5, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(5003), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(4496), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 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_TILDE, - 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(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, - [81548] = 21, - ACTIONS(1279), 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, + [47773] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(4180), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(4184), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(5887), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3299), 1, - sym_primary_expression, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1978), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4182), 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [81640] = 19, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + [47860] = 24, + ACTIONS(1517), 1, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5738), 1, anon_sym_STAR, - STATE(2140), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5889), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2147), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_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, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1351), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [81728] = 19, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + [47947] = 9, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5894), 1, + anon_sym_is, + STATE(2799), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5897), 2, 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(1347), 1, + anon_sym_GT, + STATE(2237), 2, + sym__not_in, + sym__is_not, + ACTIONS(5891), 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(5392), 21, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_by, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2155), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + 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, + [48004] = 5, + STATE(2799), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(2237), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5324), 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_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_TILDE, - 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(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, - [81816] = 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(107), 1, - anon_sym_sizeof, - ACTIONS(109), 1, - sym_string_start, - ACTIONS(1347), 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, + [48053] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(5045), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2157), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 26, + sym__newline, + 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_TILDE, - 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(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, - [81904] = 21, - ACTIONS(1279), 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, + [48108] = 15, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4184), 1, - anon_sym_await, - ACTIONS(4186), 1, - sym_identifier, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3299), 1, - sym_primary_expression, + ACTIONS(5136), 1, + anon_sym_STAR_STAR, + ACTIONS(5142), 1, + anon_sym_PIPE, + ACTIONS(5144), 1, + anon_sym_AMP, + ACTIONS(5146), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1978), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5130), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5140), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4182), 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, + ACTIONS(5697), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [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, + ACTIONS(5138), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5695), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + 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, + [48177] = 20, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_pass, - ACTIONS(4202), 1, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(4206), 1, - sym_string_start, - STATE(3325), 1, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(3573), 1, + STATE(4380), 1, sym_c_type, - STATE(5662), 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, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - STATE(2903), 2, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3719), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3812), 2, + STATE(4578), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(4626), 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, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2113), 5, - sym_string, - sym_cdef_type_declaration, + STATE(3868), 6, + sym_class_definition, + sym_extern_block, sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [82100] = 21, - ACTIONS(1279), 1, + sym_struct, + sym_enum, + sym_fused, + [48256] = 11, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5178), 2, anon_sym_STAR, - ACTIONS(4116), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, + anon_sym_SLASH, + ACTIONS(5188), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5186), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 21, + sym__newline, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [48317] = 4, + ACTIONS(5900), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2300), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5095), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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_TILDE, - ACTIONS(4118), 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, - [82192] = 19, - ACTIONS(1279), 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, + [48364] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 4, anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2251), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 26, + sym__newline, + 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, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [48419] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5685), 26, + sym__newline, + 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_TILDE, - ACTIONS(1303), 4, - sym_integer, + anon_sym_CARET, + anon_sym_LT_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, + [48474] = 20, + ACTIONS(4614), 1, sym_identifier, - sym_true, - sym_false, - ACTIONS(1370), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(4795), 1, + anon_sym_extern, + ACTIONS(4801), 1, + anon_sym_enum, + ACTIONS(4805), 1, + anon_sym_fused, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4380), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3719), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, 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, - [82280] = 21, - ACTIONS(1279), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(3892), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [48553] = 8, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4210), 1, - sym_identifier, - ACTIONS(4214), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3334), 1, - sym_primary_expression, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2464), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 26, + sym__newline, + 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_TILDE, - ACTIONS(4212), 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, - [82372] = 19, - ACTIONS(2545), 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, + [48608] = 10, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(2551), 1, + ACTIONS(5045), 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(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2283), 1, - sym_string, - STATE(2330), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2553), 4, + ACTIONS(5178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2539), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5186), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 23, + sym__newline, + 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_TILDE, - ACTIONS(2549), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [82460] = 19, - ACTIONS(1279), 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, + [48667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5253), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5251), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [48712] = 8, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(5210), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5218), 1, + anon_sym_STAR_STAR, + ACTIONS(5220), 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(1378), 1, - anon_sym_await, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3310), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + STATE(3069), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5685), 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_TILDE, - 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, - [82548] = 19, - ACTIONS(1279), 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, + [48767] = 14, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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(1378), 1, - anon_sym_await, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3311), 1, - sym_primary_expression, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, + ACTIONS(5192), 1, + anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5188), 2, 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(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, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [82636] = 19, - ACTIONS(1279), 1, + ACTIONS(5186), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 17, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [48834] = 13, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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, - STATE(2209), 1, - sym_string, - STATE(2255), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, + ACTIONS(5194), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(5178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5188), 2, 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, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [82724] = 19, - ACTIONS(1279), 1, + ACTIONS(5186), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 18, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [48899] = 12, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5045), 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(1378), 1, - anon_sym_await, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3312), 1, - sym_primary_expression, + ACTIONS(5184), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5188), 2, 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(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, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2539), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [82812] = 19, - ACTIONS(1279), 1, + ACTIONS(5186), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 19, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [48962] = 15, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5109), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 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(1378), 1, - anon_sym_await, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3313), 1, - sym_primary_expression, + ACTIONS(5117), 1, + anon_sym_PIPE, + ACTIONS(5119), 1, + anon_sym_AMP, + ACTIONS(5121), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5103), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5105), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5115), 2, 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(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, + STATE(3180), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [82900] = 19, - 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(1378), 1, - anon_sym_await, - ACTIONS(2849), 1, + ACTIONS(5113), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5697), 3, + anon_sym_as, anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3314), 1, - sym_primary_expression, + anon_sym_GT, + ACTIONS(5695), 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, + [49031] = 9, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5905), 1, + anon_sym_is, + STATE(2817), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5908), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2322), 2, + sym__not_in, + sym__is_not, + ACTIONS(5394), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(5902), 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(5392), 20, + 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_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, 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(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, - [82988] = 19, - 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(1378), 1, - anon_sym_await, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3315), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_LT, + [49088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5253), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5251), 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, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, 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(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, - [83076] = 19, - 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(1378), 1, - anon_sym_await, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3316), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1303), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(4553), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4551), 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_TILDE, - 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, - [83164] = 21, - ACTIONS(1279), 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, + [49178] = 24, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(4942), 1, anon_sym_LBRACK, - ACTIONS(1289), 1, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(1299), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1305), 1, + ACTIONS(4950), 1, sym_float, - ACTIONS(1311), 1, - anon_sym_sizeof, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, + ACTIONS(5738), 1, anon_sym_STAR, - ACTIONS(4035), 1, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(4041), 1, - anon_sym_await, - STATE(2209), 1, + ACTIONS(5911), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3335), 1, - sym_primary_expression, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2818), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, sym_true, sym_false, - ACTIONS(1374), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4039), 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, + STATE(5725), 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, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [83256] = 19, - 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, - STATE(2226), 1, - sym_string, - STATE(2284), 1, - sym_primary_expression, - STATE(2500), 1, - sym_list_splat_pattern, + [49265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2485), 4, + ACTIONS(5440), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5438), 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_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, - [83344] = 19, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 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, + [49309] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4583), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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_GT, + ACTIONS(4581), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - ACTIONS(3067), 1, - anon_sym_STAR, - STATE(2242), 1, - sym_string, - STATE(2348), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + 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, + [49353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + ACTIONS(4612), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4610), 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_TILDE, - 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(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, - [83432] = 19, - ACTIONS(1394), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [49397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5253), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, 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, + anon_sym_GT, + ACTIONS(5251), 30, sym_string_start, - ACTIONS(1558), 1, - anon_sym_LBRACK, - ACTIONS(2503), 1, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - ACTIONS(3067), 1, - anon_sym_STAR, - STATE(2242), 1, - sym_string, - STATE(2349), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + 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, + [49441] = 4, + ACTIONS(5913), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + ACTIONS(5095), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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_TILDE, - 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(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, - [83520] = 19, - ACTIONS(2517), 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, + [49487] = 6, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(1014), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(988), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(983), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 26, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_by, + anon_sym_STAR_STAR, 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2534), 1, - sym_primary_expression, - STATE(2736), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2525), 4, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, 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, - [83608] = 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(2344), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_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, + [49581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + ACTIONS(5525), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5523), 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_TILDE, - 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(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, - [83696] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4041), 1, - anon_sym_await, - ACTIONS(4216), 1, - sym_identifier, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3332), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_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, + [49625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2590), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5529), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5527), 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_TILDE, - ACTIONS(4218), 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, - [83788] = 19, - 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(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2765), 1, - anon_sym_LT, - STATE(2231), 1, - sym_string, - STATE(2263), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_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, + [49669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5095), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [83876] = 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(2341), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + ACTIONS(5517), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5515), 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_TILDE, - 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(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, - [83964] = 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(2298), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49757] = 4, + ACTIONS(4557), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + ACTIONS(4560), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4555), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + 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_TILDE, - 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(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, - [84052] = 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(2299), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_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, + [49803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - 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(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, - [84140] = 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(2289), 1, - sym_primary_expression, - STATE(2540), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_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, + [49847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + ACTIONS(5647), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5645), 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_TILDE, - 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(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, - [84228] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4208), 1, - anon_sym_await, - ACTIONS(4220), 1, - sym_identifier, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_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, + [49891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2300), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5450), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5448), 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_TILDE, - ACTIONS(4118), 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, - [84320] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4170), 1, - anon_sym_await, - ACTIONS(4222), 1, - sym_identifier, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3336), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2703), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5454), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5452), 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_TILDE, - ACTIONS(4168), 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, - [84412] = 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(2667), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - 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(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, - [84500] = 19, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(5654), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, 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(1347), 1, + anon_sym_GT, + ACTIONS(5652), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1353), 1, + 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, - ACTIONS(1359), 1, - anon_sym_await, - ACTIONS(3175), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2158), 1, - sym_primary_expression, - STATE(2215), 1, - sym_list_splat_pattern, + 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, + [50023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(983), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 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_TILDE, - 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(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, - [84588] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4170), 1, - anon_sym_await, - ACTIONS(4224), 1, - sym_identifier, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3337), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2614), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5569), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5567), 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_TILDE, - ACTIONS(4226), 5, - anon_sym_print, - anon_sym_match, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50111] = 5, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1597), 2, 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, - [84680] = 19, - ACTIONS(2517), 1, + anon_sym_for, + ACTIONS(1599), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 27, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2523), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2469), 1, - sym_primary_expression, - STATE(2736), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50159] = 5, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, 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, + ACTIONS(4585), 2, 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, - [84768] = 21, - ACTIONS(1279), 1, + anon_sym_for, + ACTIONS(4590), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 27, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4214), 1, - anon_sym_await, - ACTIONS(4228), 1, - sym_identifier, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3338), 1, - sym_primary_expression, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2488), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5658), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5656), 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_TILDE, - ACTIONS(4230), 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, - [84860] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4035), 1, - sym_identifier, - ACTIONS(4232), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3332), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_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, + [50251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2818), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(4571), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4566), 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_TILDE, - ACTIONS(4039), 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, - [84952] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4027), 1, - sym_identifier, - ACTIONS(4033), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3327), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3237), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(4974), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4964), 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_TILDE, - ACTIONS(4031), 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, - [85044] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4234), 1, - sym_identifier, - ACTIONS(4238), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3333), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_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, + [50339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2757), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5358), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5356), 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_TILDE, - ACTIONS(4236), 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, - [85136] = 21, - ACTIONS(1279), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [50383] = 20, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5305), 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4222), 1, - sym_identifier, - ACTIONS(4240), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3337), 1, - sym_primary_expression, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, + ACTIONS(5543), 1, + anon_sym_PIPE, + ACTIONS(5545), 1, + anon_sym_AMP, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_is, + STATE(3260), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2703), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5533), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5541), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4168), 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, - [85228] = 21, - 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(2849), 1, + ACTIONS(5551), 2, anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4242), 1, - sym_identifier, - ACTIONS(4246), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3339), 1, - sym_primary_expression, + anon_sym_GT, + STATE(2322), 2, + sym__not_in, + sym__is_not, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5539), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4964), 4, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5535), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3215), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5582), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5580), 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_TILDE, - ACTIONS(4244), 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, - [85320] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4043), 1, - sym_identifier, - ACTIONS(4047), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3332), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_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, + [50505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3219), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5573), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5571), 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_TILDE, - ACTIONS(4045), 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, - [85412] = 21, - 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(2849), 1, - anon_sym_LT, - ACTIONS(3976), 1, - anon_sym_STAR, - ACTIONS(4248), 1, - sym_identifier, - ACTIONS(4252), 1, - anon_sym_await, - STATE(2209), 1, - sym_string, - STATE(2435), 1, - sym_list_splat_pattern, - STATE(3294), 1, - sym_primary_expression, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2627), 2, - sym_attribute, - sym_subscript, - ACTIONS(1303), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1374), 4, + ACTIONS(5602), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5600), 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_TILDE, - ACTIONS(4250), 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, - [85504] = 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3573), 1, - sym_c_type, - STATE(5682), 1, - sym_pass_statement, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50593] = 3, 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(3812), 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(2114), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [85608] = 19, - 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(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 1, + ACTIONS(4579), 5, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - STATE(2231), 1, - sym_string, - STATE(2265), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [50637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5641), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5639), 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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [85696] = 19, - 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(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2765), 1, - anon_sym_LT, - STATE(2231), 1, - sym_string, - STATE(2266), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5582), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5580), 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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [85784] = 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(2538), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, + ACTIONS(5592), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5590), 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_TILDE, - 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(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, - [85872] = 19, - 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(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2765), 1, - anon_sym_LT, - STATE(2231), 1, - sym_string, - STATE(2267), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50769] = 5, + ACTIONS(5919), 1, + anon_sym_and, + ACTIONS(5921), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5917), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5915), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [85960] = 19, - ACTIONS(2437), 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, + [50817] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2765), 1, - anon_sym_LT, - STATE(2231), 1, - sym_string, - STATE(2268), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2445), 4, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + 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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [86048] = 19, - 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(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 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, + [50871] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5559), 5, + anon_sym_as, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_SLASH, anon_sym_LT, - STATE(2231), 1, - sym_string, - STATE(2271), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, + anon_sym_GT, + ACTIONS(5557), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(4612), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4610), 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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [86136] = 19, - ACTIONS(2437), 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, + [50959] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 4, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_SLASH, anon_sym_LT, - STATE(2231), 1, - sym_string, - STATE(2272), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, + anon_sym_GT, + ACTIONS(5685), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + 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, + [51013] = 4, + ACTIONS(5923), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(5168), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [86224] = 19, - ACTIONS(2437), 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, + [51059] = 4, + ACTIONS(5919), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5610), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5608), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2443), 1, + 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, - 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(2457), 1, - anon_sym_await, - ACTIONS(2459), 1, - anon_sym_sizeof, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(2757), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51105] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4604), 5, anon_sym_STAR, - ACTIONS(2765), 1, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, - STATE(2231), 1, - sym_string, - STATE(2273), 1, - sym_primary_expression, - STATE(2465), 1, - sym_list_splat_pattern, + anon_sym_GT, + ACTIONS(4599), 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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2445), 4, + ACTIONS(4560), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4555), 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_TILDE, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [86312] = 19, - ACTIONS(1279), 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, + [51193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4579), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4577), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - 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, - STATE(2209), 1, - sym_string, - STATE(2264), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51237] = 4, + ACTIONS(5925), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(5168), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 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_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, - [86400] = 19, - ACTIONS(1279), 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, + [51283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4579), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4577), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - 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, - STATE(2209), 1, - sym_string, - STATE(2274), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(5598), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5596), 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_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, - [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, + anon_sym_CARET, + anon_sym_LT_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, + [51371] = 5, + ACTIONS(1728), 1, sym_string_start, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3573), 1, - sym_c_type, - STATE(5731), 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(3812), 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, + STATE(2980), 2, sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [86592] = 19, - ACTIONS(2545), 1, + aux_sym_concatenated_string_repeat1, + ACTIONS(4897), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4895), 28, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2551), 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, - 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(2565), 1, - anon_sym_await, - ACTIONS(2567), 1, - anon_sym_sizeof, - ACTIONS(2569), 1, - sym_string_start, - ACTIONS(2601), 1, - anon_sym_LT, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2283), 1, - sym_string, - STATE(2320), 1, - sym_primary_expression, - STATE(2610), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2543), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2553), 4, + ACTIONS(5077), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5069), 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_TILDE, - ACTIONS(2549), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [86680] = 19, - 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, - STATE(2209), 1, - sym_string, - STATE(2276), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_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, + [51463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(5486), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5484), 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_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, - [86768] = 19, - ACTIONS(1279), 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, + [51507] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5610), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5608), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, + [51551] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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, - STATE(2209), 1, - sym_string, - STATE(2279), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + 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_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, - [86856] = 19, - ACTIONS(1279), 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, + [51605] = 11, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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, - STATE(2209), 1, - sym_string, - STATE(2280), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(5297), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, 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, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2926), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [86944] = 19, - ACTIONS(1279), 1, + ACTIONS(5307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 20, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_by, + 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, + [51665] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4553), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4551), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1285), 1, + 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, - 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, - STATE(2209), 1, - sym_string, - STATE(2281), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(5497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5495), 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_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, - [87032] = 19, - ACTIONS(1279), 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, + [51753] = 15, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5340), 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, - STATE(2209), 1, - sym_string, - STATE(2282), 1, - sym_primary_expression, - STATE(2435), 1, - sym_list_splat_pattern, + ACTIONS(5346), 1, + anon_sym_PIPE, + ACTIONS(5348), 1, + anon_sym_AMP, + ACTIONS(5350), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(5332), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5334), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5344), 2, 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, - [87120] = 19, - ACTIONS(1448), 1, - anon_sym_LBRACK, - ACTIONS(1452), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, + ACTIONS(5697), 2, 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(2556), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, + anon_sym_GT, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5695), 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, + [51821] = 7, + ACTIONS(5929), 1, + anon_sym_as, + ACTIONS(5933), 1, + anon_sym_if, + ACTIONS(5935), 1, + anon_sym_and, + ACTIONS(5937), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, + ACTIONS(5931), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5927), 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_TILDE, - 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(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, - [87208] = 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_CARET, + anon_sym_LT_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, + [51873] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2579), 1, - anon_sym_await, - STATE(2403), 1, - sym_string, - STATE(2557), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + 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_TILDE, - 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(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, - [87296] = 19, - ACTIONS(2517), 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, + [51927] = 10, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2498), 1, - sym_primary_expression, - 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, + ACTIONS(5297), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + 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_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, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51985] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, + ACTIONS(4590), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4593), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 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_TILDE, - 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(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, - [87472] = 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_CARET, + anon_sym_LT_LT, + ACTIONS(4585), 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, + [52033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5440), 5, + anon_sym_as, anon_sym_STAR, - ACTIONS(2571), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5438), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2579), 1, - anon_sym_await, - STATE(2403), 1, - sym_string, - STATE(2559), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, + 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, + [52077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, + ACTIONS(5410), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5408), 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_TILDE, - 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(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, - [87560] = 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_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52121] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2579), 1, - anon_sym_await, - STATE(2403), 1, - sym_string, - STATE(2560), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - 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(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, - [87648] = 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(2561), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, + ACTIONS(5414), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5412), 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_TILDE, - 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(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, - [87736] = 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_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52219] = 14, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2579), 1, - anon_sym_await, - STATE(2403), 1, - sym_string, - STATE(2562), 1, - sym_primary_expression, - STATE(2760), 1, - sym_list_splat_pattern, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5313), 1, + anon_sym_AMP, + ACTIONS(5315), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 4, + ACTIONS(5297), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5299), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5309), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - 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(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, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2926), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [87824] = 19, - ACTIONS(2517), 1, + ACTIONS(5307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_by, + 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, + [52285] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2523), 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, 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2528), 1, - sym_primary_expression, - STATE(2736), 1, - sym_list_splat_pattern, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52329] = 6, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4506), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(4491), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 26, + anon_sym_DOT, + anon_sym_LPAREN, + 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_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, - [87912] = 19, - ACTIONS(2517), 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, + [52379] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(5305), 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2529), 1, - sym_primary_expression, - STATE(2736), 1, - sym_list_splat_pattern, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2525), 4, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5685), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_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, - [88000] = 19, - ACTIONS(2517), 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, + [52433] = 13, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2530), 1, - sym_primary_expression, - STATE(2736), 1, - sym_list_splat_pattern, + ACTIONS(5315), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(5297), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5299), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5309), 2, 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, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2926), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [88088] = 19, - ACTIONS(2517), 1, + ACTIONS(5307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + 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, + [52497] = 12, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(2523), 1, + ACTIONS(5303), 1, + anon_sym_STAR_STAR, + ACTIONS(5305), 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, - anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2531), 1, - sym_primary_expression, - 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, + ACTIONS(5297), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5299), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5309), 2, 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, - [88176] = 19, - 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(2537), 1, - anon_sym_await, - ACTIONS(2539), 1, - anon_sym_sizeof, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(2727), 1, + ACTIONS(5662), 2, anon_sym_LT, - ACTIONS(3233), 1, - anon_sym_STAR, - STATE(2324), 1, - sym_string, - STATE(2532), 1, - sym_primary_expression, - STATE(2736), 1, - sym_list_splat_pattern, + anon_sym_GT, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_by, + 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, + [52559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2525), 4, + ACTIONS(4571), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4566), 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_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_CARET, + anon_sym_LT_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, + [52603] = 5, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(988), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(983), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, 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_GT, + ACTIONS(981), 27, + anon_sym_DOT, 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, + 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, + [52651] = 7, + ACTIONS(5919), 1, + anon_sym_and, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5939), 1, + anon_sym_as, + ACTIONS(5941), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + ACTIONS(5931), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5927), 26, + sym__newline, + anon_sym_SEMI, + 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_PLUS, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - 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(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, - [88352] = 26, - ACTIONS(4254), 1, - sym_identifier, - ACTIONS(4257), 1, - anon_sym_LPAREN, - ACTIONS(4260), 1, - anon_sym_class, - ACTIONS(4278), 1, - anon_sym_long, - ACTIONS(4284), 1, - anon_sym_ctypedef, - ACTIONS(4290), 1, - anon_sym_enum, - ACTIONS(4293), 1, - anon_sym_cppclass, - ACTIONS(4296), 1, - anon_sym_fused, - ACTIONS(4299), 1, - sym__dedent, - ACTIONS(4301), 1, - sym_string_start, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3573), 1, - sym_c_type, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4266), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(4272), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4275), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4281), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4287), 2, - anon_sym_struct, - anon_sym_union, - STATE(2903), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4269), 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(4263), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(2111), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [88453] = 26, - 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, + ACTIONS(5641), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5639), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(4206), 1, - sym_string_start, - ACTIONS(4304), 1, - sym__dedent, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3573), 1, - sym_c_type, + 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, + [52747] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, 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(3812), 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(2111), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [88554] = 26, - 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, + ACTIONS(4496), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(4206), 1, - sym_string_start, - ACTIONS(4306), 1, - sym__dedent, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3573), 1, - sym_c_type, + 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, + [52793] = 3, 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(3812), 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(2111), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [88655] = 26, - 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, + ACTIONS(4571), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4566), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(4206), 1, - sym_string_start, - ACTIONS(4308), 1, - sym__dedent, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3573), 1, - sym_c_type, + 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, + [52837] = 5, + ACTIONS(998), 1, + anon_sym_COLON_EQ, 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(3812), 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(2111), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [88756] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4326), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(988), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(983), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52885] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [88855] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4328), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(4496), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52929] = 5, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [88954] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4330), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(4590), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4593), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 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(4585), 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, + [52977] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89053] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4332), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(5095), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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, + [53021] = 6, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(5943), 1, + anon_sym_LBRACK, + STATE(5418), 1, + sym_type_parameter, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89152] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4334), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4485), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53071] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89251] = 26, - ACTIONS(4336), 1, - sym_identifier, - ACTIONS(4339), 1, - anon_sym_class, - ACTIONS(4345), 1, - anon_sym_extern, - ACTIONS(4351), 1, - anon_sym_operator, - ACTIONS(4360), 1, - anon_sym_long, - ACTIONS(4366), 1, - anon_sym_ctypedef, - ACTIONS(4372), 1, - anon_sym_enum, - ACTIONS(4375), 1, - anon_sym_cppclass, - ACTIONS(4378), 1, - anon_sym_fused, - ACTIONS(4381), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(5517), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5515), 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, + [53115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4357), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4363), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4369), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(4348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89350] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4383), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(983), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53159] = 5, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89449] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4385), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1602), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 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(1597), 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, + [53207] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89548] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4387), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(5641), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5639), 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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53251] = 4, + ACTIONS(5945), 1, + aux_sym_c_integer_type_token1, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89647] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4389), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(5168), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 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, + [53297] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89746] = 26, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - ACTIONS(4391), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(5450), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5448), 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, + [53341] = 7, + ACTIONS(5919), 1, + anon_sym_and, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5939), 1, + anon_sym_as, + ACTIONS(5941), 1, + anon_sym_if, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2120), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89845] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(5949), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5947), 26, + sym__newline, + anon_sym_SEMI, + 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_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, + [53393] = 6, + ACTIONS(5074), 1, + anon_sym_STAR, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(5079), 2, anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2123), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [89941] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + anon_sym___stdcall, + ACTIONS(5077), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5071), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5069), 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_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, + [53443] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2122), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90037] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(5444), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5442), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53487] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2125), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90133] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + ACTIONS(5454), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5452), 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, + [53531] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2119), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90229] = 21, - ACTIONS(4395), 1, + ACTIONS(5458), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5456), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53575] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5458), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5456), 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, + [53619] = 8, + ACTIONS(5328), 1, anon_sym_DOT, - ACTIONS(4397), 1, + ACTIONS(5330), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(5338), 1, anon_sym_STAR_STAR, - ACTIONS(4407), 1, - anon_sym_EQ, - ACTIONS(4409), 1, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(4415), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5689), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4417), 1, + anon_sym_PLUS, anon_sym_not, - ACTIONS(4419), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4421), 1, anon_sym_CARET, - ACTIONS(4423), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2139), 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, + [53673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4399), 2, + ACTIONS(5462), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5460), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4413), 2, + 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, - ACTIONS(4425), 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, + sym_type_conversion, + [53717] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5482), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, 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, + ACTIONS(5480), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4403), 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(4393), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + [53761] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5555), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5553), 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_with, + anon_sym_in, + anon_sym_STAR_STAR, + 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_nogil, - [90317] = 21, - ACTIONS(4395), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [53805] = 15, + ACTIONS(5293), 1, anon_sym_DOT, - ACTIONS(4397), 1, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(5303), 1, anon_sym_STAR_STAR, - ACTIONS(4407), 1, - anon_sym_EQ, - ACTIONS(4409), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, - ACTIONS(4415), 1, + ACTIONS(5311), 1, anon_sym_PIPE, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4419), 1, + ACTIONS(5313), 1, anon_sym_AMP, - ACTIONS(4421), 1, + ACTIONS(5315), 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, + ACTIONS(5297), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4401), 2, + ACTIONS(5299), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4413), 2, + ACTIONS(5309), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4425), 2, + ACTIONS(5697), 2, anon_sym_LT, anon_sym_GT, - STATE(2031), 2, - sym__not_in, - sym__is_not, - STATE(2203), 2, + STATE(2926), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4411), 3, + ACTIONS(5307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4403), 6, + ACTIONS(5695), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, 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, - ACTIONS(4393), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + [53873] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4585), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(4590), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_with, + anon_sym_in, + anon_sym_STAR_STAR, + 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_nogil, - [90405] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2115), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90501] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2116), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90597] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2117), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90693] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2118), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90789] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2124), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90885] = 25, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(4314), 1, - anon_sym_extern, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4320), 1, - anon_sym_enum, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(4324), 1, - anon_sym_fused, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53919] = 3, 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(4318), 2, - anon_sym_struct, - anon_sym_union, - STATE(2899), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(3172), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3173), 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(2121), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [90981] = 13, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4429), 1, + ACTIONS(5569), 5, anon_sym_STAR, - ACTIONS(4433), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5567), 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, - ACTIONS(4435), 1, - anon_sym_complex, - STATE(3483), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, + 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, + [53963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 2, + ACTIONS(5434), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5432), 30, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3665), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + 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___stdcall, - ACTIONS(3910), 4, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54007] = 4, + ACTIONS(5951), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5095), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 23, + ACTIONS(5093), 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, @@ -205258,6 +264259,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, @@ -205266,39 +264268,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91051] = 5, - STATE(2142), 1, - aux_sym_comparison_operator_repeat1, + [54053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2031), 2, - sym__not_in, - sym__is_not, - ACTIONS(4439), 5, + ACTIONS(4841), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4437), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4839), 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, @@ -205314,27 +264309,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91105] = 5, - ACTIONS(109), 1, - sym_string_start, + [54097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2141), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3910), 5, + ACTIONS(5573), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5571), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -205342,12 +264328,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, @@ -205363,35 +264349,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91159] = 5, - ACTIONS(109), 1, - sym_string_start, + sym_type_conversion, + [54141] = 5, + STATE(2925), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4443), 5, + STATE(2240), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4441), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5324), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -205412,46 +264393,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91213] = 9, - ACTIONS(4452), 1, + [54189] = 9, + ACTIONS(5399), 1, anon_sym_not, - ACTIONS(4455), 1, + ACTIONS(5956), 1, anon_sym_is, - STATE(2142), 1, + STATE(2925), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4458), 2, + ACTIONS(5394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5959), 2, anon_sym_LT, anon_sym_GT, - STATE(2031), 2, + STATE(2240), 2, sym__not_in, sym__is_not, - ACTIONS(4447), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(4449), 6, + ACTIONS(5953), 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), 25, - sym__newline, - anon_sym_SEMI, + ACTIONS(5392), 20, 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_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -205465,35 +264440,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_nogil, - [91275] = 5, - ACTIONS(4465), 1, - sym_string_start, + [54245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4463), 5, + ACTIONS(5434), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4461), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5432), 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, @@ -205514,57 +264481,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91329] = 14, - ACTIONS(3905), 1, - anon_sym_COMMA, - 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(3483), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, + [54289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3665), 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, + ACTIONS(5410), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 22, + ACTIONS(5408), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -205573,38 +264521,30 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_type_conversion, + [54333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2203), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, + ACTIONS(4841), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(4839), 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_with, + anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205623,47 +264563,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91460] = 14, - 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, - ACTIONS(4472), 1, - anon_sym_EQ, - STATE(3483), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, + [54377] = 4, + ACTIONS(5962), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3665), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3910), 3, + ACTIONS(5168), 5, + anon_sym_as, + anon_sym_STAR, 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, + ACTIONS(5166), 29, + 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, @@ -205673,6 +264596,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, @@ -205681,49 +264605,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91531] = 10, - ACTIONS(4395), 1, + [54423] = 8, + ACTIONS(5328), 1, anon_sym_DOT, - ACTIONS(4397), 1, + ACTIONS(5330), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(5338), 1, anon_sym_STAR_STAR, - ACTIONS(4409), 1, + ACTIONS(5340), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4399), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2203), 2, + STATE(3236), 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, + ACTIONS(5687), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(5685), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, + 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, @@ -205733,56 +264651,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91594] = 14, - 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, - ACTIONS(4472), 1, - anon_sym_EQ, - STATE(3483), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, + [54477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3665), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3903), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3910), 3, + ACTIONS(4974), 5, + anon_sym_as, + anon_sym_STAR, 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, + ACTIONS(4964), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -205791,102 +264692,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91665] = 21, - ACTIONS(4407), 1, + [54521] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 5, anon_sym_as, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4474), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 29, anon_sym_DOT, - ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4484), 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(4486), 1, anon_sym_LBRACK, - ACTIONS(4492), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4494), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4496), 1, anon_sym_CARET, - ACTIONS(4498), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2213), 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, + [54567] = 4, + ACTIONS(4568), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 2, + ACTIONS(4571), 5, anon_sym_STAR, + anon_sym_EQ, 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, + ACTIONS(4566), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, 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(4482), 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(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(4409), 1, - anon_sym_LBRACK, + sym_type_conversion, + [54613] = 5, + ACTIONS(5964), 1, + aux_sym_integer_token1, + STATE(2934), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2203), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, + ACTIONS(4865), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(4863), 29, + 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_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205905,42 +264817,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91809] = 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, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [54661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2203), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4504), 5, + ACTIONS(983), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4502), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(981), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -205956,51 +264859,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91868] = 11, - 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, + sym_type_conversion, + [54705] = 4, + ACTIONS(4491), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4399), 2, + ACTIONS(4496), 5, anon_sym_STAR, - anon_sym_SLASH, - 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_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(4485), 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_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, @@ -206010,97 +264901,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91933] = 15, - ACTIONS(4395), 1, + sym_type_conversion, + [54751] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4553), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4551), 30, anon_sym_DOT, - ACTIONS(4397), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4409), 1, anon_sym_LBRACK, - ACTIONS(4415), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4419), 1, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4421), 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, + [54795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4399), 2, + ACTIONS(5602), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5600), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4413), 2, + 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, - STATE(2203), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4411), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4508), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [54839] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5525), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4506), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(5523), 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_with, + 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, - anon_sym_nogil, - [92006] = 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, + [54883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2203), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4512), 5, + ACTIONS(5529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(5527), 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_with, + anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206119,526 +265066,323 @@ static const uint16_t ts_small_parse_table[] = { 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, + [54927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4399), 2, + ACTIONS(4604), 5, + anon_sym_as, 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, + ACTIONS(4599), 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_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [92136] = 21, - ACTIONS(4407), 1, - anon_sym_EQ, - ACTIONS(4417), 1, - anon_sym_not, - 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(4532), 1, - anon_sym_PIPE, - ACTIONS(4534), 1, - anon_sym_AMP, - ACTIONS(4536), 1, - anon_sym_CARET, - ACTIONS(4538), 1, - anon_sym_is, - STATE(3192), 1, - aux_sym_comparison_operator_repeat1, + [54971] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, + ACTIONS(4560), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4520), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4530), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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(4528), 3, + ACTIONS(4555), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4522), 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(4393), 8, - anon_sym_COMMA, + [55015] = 7, + ACTIONS(5969), 1, anon_sym_as, + ACTIONS(5973), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_by, + ACTIONS(5975), 1, anon_sym_and, + ACTIONS(5977), 1, anon_sym_or, - [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, - ACTIONS(4421), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4399), 2, + ACTIONS(5971), 4, 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), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(5967), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + anon_sym_GT_GT, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [92290] = 12, - 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, + [55067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4399), 2, + ACTIONS(5559), 5, 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_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(5557), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_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, - [92357] = 21, - ACTIONS(4407), 1, - anon_sym_EQ, - ACTIONS(4417), 1, - anon_sym_not, - 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(4560), 1, - anon_sym_PIPE, - ACTIONS(4562), 1, - anon_sym_AMP, - ACTIONS(4564), 1, - anon_sym_CARET, - ACTIONS(4566), 1, - anon_sym_is, - STATE(3200), 1, - aux_sym_comparison_operator_repeat1, + sym_type_conversion, + [55111] = 4, + ACTIONS(5935), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4546), 2, + ACTIONS(5610), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4548), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4558), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4568), 2, anon_sym_LT, anon_sym_GT, - STATE(2025), 2, - sym__not_in, - sym__is_not, - STATE(2451), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4556), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - 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(4393), 8, + ACTIONS(5608), 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_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [92442] = 21, - ACTIONS(4407), 1, - anon_sym_EQ, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(4524), 1, + anon_sym_in, anon_sym_STAR_STAR, - 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(4518), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4520), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4530), 2, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - 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(4528), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4522), 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(4393), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_by, + sym_type_conversion, + [55157] = 5, + ACTIONS(5975), 1, anon_sym_and, + ACTIONS(5977), 1, anon_sym_or, - [92527] = 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(3199), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 2, + ACTIONS(5917), 5, + anon_sym_as, 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, + ACTIONS(5915), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [92612] = 21, - ACTIONS(4407), 1, - anon_sym_EQ, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4542), 1, - anon_sym_DOT, - ACTIONS(4544), 1, - anon_sym_LPAREN, - ACTIONS(4552), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4554), 1, anon_sym_LBRACK, - ACTIONS(4560), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4562), 1, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4564), 1, anon_sym_CARET, - ACTIONS(4566), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2190), 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, + [55205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4546), 2, + ACTIONS(5647), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4548), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4558), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4568), 2, anon_sym_LT, anon_sym_GT, - STATE(2025), 2, - sym__not_in, - sym__is_not, - STATE(2451), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4556), 3, + ACTIONS(5645), 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, - ACTIONS(4550), 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(4393), 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, - [92697] = 6, - ACTIONS(4575), 1, - anon_sym_STAR, + [55249] = 3, 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, + ACTIONS(5654), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 29, - sym__newline, - anon_sym_SEMI, + ACTIONS(5652), 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, anon_sym_DASH, anon_sym_PIPE, @@ -206648,6 +265392,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, @@ -206656,103 +265401,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [92752] = 21, - ACTIONS(4407), 1, - anon_sym_as, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4582), 1, + [55293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5658), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5656), 30, anon_sym_DOT, - ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4592), 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(4594), 1, anon_sym_LBRACK, - ACTIONS(4600), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4602), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4604), 1, anon_sym_CARET, - ACTIONS(4606), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2241), 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, + [55337] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, + ACTIONS(5555), 5, + anon_sym_as, 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, - ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - STATE(2091), 2, - sym__not_in, - sym__is_not, - STATE(2622), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4596), 3, + ACTIONS(5553), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4590), 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(4393), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + [55381] = 4, + ACTIONS(5975), 1, anon_sym_and, - anon_sym_or, - [92836] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 6, + ACTIONS(5610), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(5608), 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_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, @@ -206765,33 +265525,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [92886] = 3, + [55427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, + ACTIONS(5176), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 34, - sym__newline, + ACTIONS(5174), 30, sym_string_start, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206810,32 +265566,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [92934] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [55471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 6, + ACTIONS(4974), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(4964), 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, @@ -206856,287 +265607,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [92984] = 21, - ACTIONS(4407), 1, - anon_sym_as, - ACTIONS(4417), 1, - anon_sym_not, - 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(4600), 1, - anon_sym_PIPE, - ACTIONS(4602), 1, - anon_sym_AMP, - ACTIONS(4604), 1, - anon_sym_CARET, - ACTIONS(4606), 1, - anon_sym_is, - STATE(3228), 1, - aux_sym_comparison_operator_repeat1, + [55515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, + ACTIONS(5525), 5, + anon_sym_as, 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, - ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - STATE(2091), 2, - sym__not_in, - sym__is_not, - STATE(2622), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4596), 3, + ACTIONS(5523), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4590), 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(4393), 7, - anon_sym_COMMA, + [55559] = 7, + ACTIONS(5969), 1, + anon_sym_as, + ACTIONS(5973), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + ACTIONS(5975), 1, anon_sym_and, + ACTIONS(5977), 1, anon_sym_or, - [93068] = 21, - ACTIONS(4407), 1, - anon_sym_as, - ACTIONS(4417), 1, - anon_sym_not, - 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(4638), 1, - anon_sym_is, - STATE(3212), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(5931), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4630), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4640), 2, anon_sym_LT, anon_sym_GT, - STATE(2110), 2, - sym__not_in, - sym__is_not, - STATE(2628), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - 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(4393), 7, - anon_sym_RPAREN, + ACTIONS(5927), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - [93152] = 20, - ACTIONS(4397), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4415), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4417), 1, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(4419), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4421), 1, anon_sym_CARET, - ACTIONS(4423), 1, + anon_sym_LT_LT, anon_sym_is, - ACTIONS(4642), 1, - anon_sym_DOT, - ACTIONS(4644), 1, - anon_sym_LBRACK, - STATE(3056), 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, + [55611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4399), 2, + ACTIONS(5582), 5, anon_sym_STAR, + anon_sym_EQ, 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), 8, - sym__newline, - anon_sym_SEMI, + ACTIONS(5580), 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_and, - anon_sym_or, - [93234] = 21, - ACTIONS(4407), 1, - anon_sym_as, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4614), 1, - anon_sym_DOT, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4624), 1, + anon_sym_else, + anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, - ACTIONS(4626), 1, anon_sym_LBRACK, - ACTIONS(4632), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4634), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4636), 1, anon_sym_CARET, - ACTIONS(4638), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2262), 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, + [55655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(5529), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4630), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4640), 2, anon_sym_LT, anon_sym_GT, - STATE(2110), 2, - sym__not_in, - sym__is_not, - STATE(2628), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4628), 3, + ACTIONS(5527), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4622), 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(4393), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [93318] = 3, + [55699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 5, + ACTIONS(5462), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4646), 34, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(5460), 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, @@ -207152,32 +265816,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93366] = 3, + [55743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, + ACTIONS(5253), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5251), 30, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207196,100 +265857,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [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, + [55787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 2, + ACTIONS(5592), 5, + anon_sym_as, 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, + ACTIONS(5590), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4662), 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(4393), 7, - anon_sym_COMMA, + [55831] = 7, + ACTIONS(5969), 1, anon_sym_as, + ACTIONS(5973), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5975), 1, anon_sym_and, + ACTIONS(5977), 1, anon_sym_or, - [93494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, + ACTIONS(5949), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5947), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, + anon_sym_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, @@ -207301,26 +265943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93541] = 5, - ACTIONS(4682), 1, - sym_string_start, + [55883] = 4, + ACTIONS(4601), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2176), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4463), 5, + ACTIONS(4604), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4461), 30, + ACTIONS(4599), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -207348,41 +265985,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [93592] = 9, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4688), 1, - anon_sym_is, - STATE(2177), 1, - aux_sym_comparison_operator_repeat1, + [55929] = 3, 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, + ACTIONS(5647), 5, + anon_sym_as, 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_LT, + anon_sym_GT, + ACTIONS(5645), 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, @@ -207390,6 +266012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -207397,35 +266020,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [93651] = 9, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4697), 1, anon_sym_is, - STATE(2178), 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, + [55973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4700), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2047), 2, - sym__not_in, - sym__is_not, - ACTIONS(4447), 3, + ACTIONS(5358), 5, 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(4445), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5356), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207434,6 +266045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_in, anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -207441,6 +266053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -207448,37 +266061,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [93710] = 5, - ACTIONS(1313), 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, + [56017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2182), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4443), 5, + ACTIONS(5654), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4441), 30, + ACTIONS(5652), 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, @@ -207494,34 +266108,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [93761] = 3, + [56061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 5, + ACTIONS(5658), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4703), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5656), 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, @@ -207537,22 +266149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93808] = 3, + [56105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 5, + ACTIONS(5414), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4108), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5412), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -207560,12 +266168,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, @@ -207581,23 +266189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93855] = 5, - ACTIONS(4707), 1, - sym_string_start, + sym_type_conversion, + [56149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2182), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4463), 5, + ACTIONS(5486), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4461), 30, + ACTIONS(5484), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207605,14 +266208,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, @@ -207628,21 +266230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [93906] = 3, + sym_type_conversion, + [56193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4407), 5, + ACTIONS(5497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4393), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5495), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -207650,12 +266250,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, @@ -207671,93 +266271,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3573), 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(3009), 2, - sym_cdef_type_declaration, - sym_cvar_decl, - STATE(3812), 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, + sym_type_conversion, + [56237] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 5, + ACTIONS(983), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4710), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(981), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -207778,22 +266314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94085] = 3, + [56283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, + ACTIONS(4496), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4485), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -207801,12 +266333,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, @@ -207822,75 +266354,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94132] = 3, + sym_type_conversion, + [56327] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4720), 5, + ACTIONS(1599), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1602), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4718), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(1844), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1597), 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, - anon_sym_nogil, - [94179] = 5, - ACTIONS(4722), 1, - sym_string_start, + sym_type_conversion, + [56375] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2188), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4463), 5, - anon_sym_as, + ACTIONS(5434), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4461), 30, + ACTIONS(5432), 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, @@ -207913,34 +266438,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [94230] = 3, + sym_type_conversion, + [56419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(5358), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5356), 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, @@ -207956,29 +266480,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94277] = 5, - STATE(2177), 1, - aux_sym_comparison_operator_repeat1, + [56463] = 7, + ACTIONS(5919), 1, + anon_sym_and, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5939), 1, + anon_sym_as, + ACTIONS(5941), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2025), 2, - sym__not_in, - sym__is_not, - ACTIONS(4439), 5, + ACTIONS(5971), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4437), 30, + ACTIONS(5967), 26, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -207986,11 +266512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -208002,30 +266525,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [94328] = 3, + [56515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 5, + ACTIONS(5077), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5069), 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, @@ -208046,35 +266566,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94375] = 3, + [56559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, + ACTIONS(4575), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4573), 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, @@ -208090,35 +266607,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94422] = 3, + [56603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, + ACTIONS(4583), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4581), 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, @@ -208134,42 +266648,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94469] = 6, - ACTIONS(4743), 1, - anon_sym_as, - ACTIONS(4748), 1, - anon_sym_and, - ACTIONS(4750), 1, - anon_sym_or, + [56647] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4746), 5, + ACTIONS(4583), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(4581), 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_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -208181,104 +266689,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94522] = 20, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4654), 1, + [56691] = 5, + ACTIONS(5979), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2980), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4915), 28, anon_sym_DOT, - ACTIONS(4656), 1, anon_sym_LPAREN, - ACTIONS(4664), 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(4666), 1, anon_sym_LBRACK, - ACTIONS(4672), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4674), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4676), 1, anon_sym_CARET, - ACTIONS(4678), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(3203), 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, + [56739] = 23, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, + anon_sym_LPAREN, + ACTIONS(4942), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5738), 1, + anon_sym_STAR, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5784), 1, + sym_identifier, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, + sym_string, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + STATE(5691), 1, + sym_splat_pattern, + STATE(6363), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5786), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5725), 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, + [56823] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 2, + ACTIONS(4841), 5, anon_sym_STAR, + anon_sym_EQ, 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, + ACTIONS(4839), 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, - ACTIONS(4662), 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(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, + sym_type_conversion, + [56867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4758), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2009), 2, - sym__not_in, - sym__is_not, - ACTIONS(4447), 3, - anon_sym_as, + ACTIONS(5440), 5, anon_sym_STAR, + anon_sym_EQ, 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_LT, + anon_sym_GT, + ACTIONS(5438), 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, @@ -208286,6 +266860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -208293,29 +266868,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94662] = 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, + [56911] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 5, + ACTIONS(5176), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4761), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5174), 30, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -208336,30 +266916,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94709] = 3, + [56955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 5, + ACTIONS(5095), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4765), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5093), 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, @@ -208380,22 +266957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94756] = 3, + [56999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4771), 5, + ACTIONS(5444), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4769), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5442), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -208403,12 +266976,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, @@ -208424,30 +266997,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94803] = 3, + sym_type_conversion, + [57043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4775), 5, + ACTIONS(5517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4773), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5515), 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, @@ -208468,30 +267039,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94850] = 3, + [57087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4779), 5, + ACTIONS(5598), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4777), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5596), 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, @@ -208512,44 +267080,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94897] = 13, - ACTIONS(3912), 1, + [57131] = 5, + ACTIONS(998), 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(3483), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3665), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3910), 3, + ACTIONS(1597), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1599), 5, + anon_sym_as, + anon_sym_STAR, 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, + ACTIONS(1844), 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, @@ -208559,6 +267114,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, @@ -208567,29 +267123,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [94964] = 3, + [57179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4783), 5, + ACTIONS(4575), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4573), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -208610,35 +267164,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95011] = 3, + [57223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4787), 5, + ACTIONS(4579), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4785), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4577), 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, @@ -208654,34 +267205,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95058] = 5, - ACTIONS(4748), 1, - anon_sym_and, - ACTIONS(4750), 1, - anon_sym_or, + [57267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 5, + ACTIONS(5450), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4789), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(5448), 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, @@ -208689,6 +267233,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, @@ -208700,30 +267246,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95109] = 3, + [57311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, + ACTIONS(5454), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5452), 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, @@ -208744,76 +267287,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95156] = 5, + [57355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 2, + ACTIONS(4604), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1366), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1576), 14, + ACTIONS(4599), 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(1361), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + 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, + [57399] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5458), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5456), 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_with, + 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, - anon_sym_nogil, - [95207] = 3, + [57443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 5, + ACTIONS(5462), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4112), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5460), 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, @@ -208834,23 +267410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95254] = 5, - ACTIONS(1313), 1, - sym_string_start, + [57487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2179), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3910), 5, + ACTIONS(5610), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 30, + ACTIONS(5608), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208881,35 +267451,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [95305] = 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, + [57531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 5, + ACTIONS(4583), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4793), 29, - sym__newline, - anon_sym_SEMI, + ACTIONS(4581), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -208917,6 +267479,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, @@ -208928,32 +267492,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95360] = 3, + [57575] = 8, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, + anon_sym_LPAREN, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5340), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 5, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(5660), 25, 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208972,32 +267538,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95407] = 3, + [57629] = 11, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, + anon_sym_LPAREN, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5340), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 5, + ACTIONS(5332), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, + 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, + [57689] = 8, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, + anon_sym_LPAREN, + ACTIONS(5338), 1, anon_sym_STAR_STAR, + ACTIONS(5340), 1, anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -209016,44 +267633,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95454] = 5, - STATE(2196), 1, - aux_sym_comparison_operator_repeat1, + [57743] = 10, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, + anon_sym_LPAREN, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5340), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2009), 2, - sym__not_in, - sym__is_not, - ACTIONS(4439), 5, - anon_sym_as, + ACTIONS(5332), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4437), 30, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 22, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -209063,31 +267681,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [95505] = 4, - ACTIONS(4748), 1, + [57801] = 14, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, + anon_sym_LPAREN, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5340), 1, + anon_sym_LBRACK, + ACTIONS(5348), 1, + anon_sym_AMP, + ACTIONS(5350), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5332), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5334), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, + ACTIONS(4583), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(4581), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -209095,6 +267761,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, @@ -209107,66 +267774,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95554] = 3, + [57911] = 13, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, + anon_sym_LPAREN, + ACTIONS(5338), 1, + anon_sym_STAR_STAR, + ACTIONS(5340), 1, + anon_sym_LBRACK, + ACTIONS(5350), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 5, + ACTIONS(5332), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5334), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, + anon_sym_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, + [57975] = 12, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, + anon_sym_LPAREN, + ACTIONS(5338), 1, anon_sym_STAR_STAR, + ACTIONS(5340), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5332), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5334), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5344), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + STATE(3236), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5342), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 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, - anon_sym_nogil, - [95601] = 3, + [58037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 5, + ACTIONS(4560), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4801), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4555), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -209174,12 +267894,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, @@ -209195,30 +267915,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95648] = 3, + sym_type_conversion, + [58081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 5, + ACTIONS(5555), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5553), 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, @@ -209239,35 +267957,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95695] = 3, + [58125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4807), 5, + ACTIONS(4579), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4805), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4577), 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, @@ -209283,30 +267998,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95742] = 3, + [58169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, + ACTIONS(5569), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5567), 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, @@ -209327,30 +268039,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95789] = 3, + [58213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, + ACTIONS(5573), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5571), 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, @@ -209371,30 +268080,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95836] = 3, + [58257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 5, + ACTIONS(4612), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4809), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4610), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -209415,30 +268121,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95883] = 3, + [58301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4815), 5, + ACTIONS(5602), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4813), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5600), 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, @@ -209459,30 +268162,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95930] = 3, + [58345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, + ACTIONS(5559), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5557), 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, @@ -209503,30 +268203,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95977] = 3, + [58389] = 5, + ACTIONS(1728), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4823), 5, + STATE(2867), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4496), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4821), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4485), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -209547,22 +268246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96024] = 3, + [58437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4827), 5, + ACTIONS(5482), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4825), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5480), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -209570,12 +268265,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, @@ -209591,23 +268286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96071] = 5, - ACTIONS(2501), 1, - sym_string_start, + sym_type_conversion, + [58481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2228), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3910), 5, + ACTIONS(5598), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 30, + ACTIONS(5596), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209638,42 +268328,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96122] = 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, + [58525] = 5, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4831), 5, + ACTIONS(4585), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4590), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4829), 29, - sym__newline, - anon_sym_SEMI, + ACTIONS(4587), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_if, 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, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -209685,29 +268371,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96177] = 5, - ACTIONS(2501), 1, - sym_string_start, + [58573] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2188), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4443), 5, + ACTIONS(4496), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4441), 30, + ACTIONS(4485), 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, @@ -209716,7 +268398,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, @@ -209732,29 +268413,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96228] = 5, - ACTIONS(2461), 1, - sym_string_start, + [58619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2176), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4443), 5, + ACTIONS(5410), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4441), 30, + ACTIONS(5408), 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, @@ -209777,22 +268454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [96279] = 3, + [58663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(4553), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4551), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -209800,12 +268473,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, @@ -209821,23 +268494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96326] = 5, - ACTIONS(2461), 1, - sym_string_start, + sym_type_conversion, + [58707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2229), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3910), 5, + ACTIONS(5486), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 30, + ACTIONS(5484), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209845,13 +268513,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, @@ -209867,81 +268536,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [96377] = 5, + [58751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, + ACTIONS(5497), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4070), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4064), 14, + ACTIONS(5495), 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(4062), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_with, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96428] = 3, + [58795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 5, + ACTIONS(5414), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4093), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5412), 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, @@ -209957,30 +268618,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96475] = 3, + [58839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4835), 5, + ACTIONS(5482), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4833), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5480), 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, @@ -210001,41 +268659,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96522] = 7, - ACTIONS(4748), 1, - anon_sym_and, - ACTIONS(4750), 1, - anon_sym_or, - ACTIONS(4795), 1, + [58883] = 7, + ACTIONS(5929), 1, anon_sym_as, - ACTIONS(4799), 1, + ACTIONS(5933), 1, anon_sym_if, + ACTIONS(5935), 1, + anon_sym_and, + ACTIONS(5937), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 5, + ACTIONS(5949), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4837), 29, - sym__newline, - anon_sym_SEMI, + ACTIONS(5947), 26, 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_PERCENT, @@ -210049,35 +268703,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96577] = 3, + sym_type_conversion, + [58935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, + ACTIONS(5610), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5608), 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, @@ -210093,35 +268745,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96624] = 3, + [58979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4843), 5, + ACTIONS(5077), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5069), 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, @@ -210137,30 +268786,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96671] = 3, + [59023] = 5, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4847), 5, + ACTIONS(4491), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4496), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4845), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4485), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -210181,32 +268829,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96718] = 3, + [59071] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(5660), 24, 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, @@ -210225,33 +268875,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96765] = 5, - STATE(2178), 1, - aux_sym_comparison_operator_repeat1, + [59125] = 5, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2047), 2, - sym__not_in, - sym__is_not, - ACTIONS(4439), 5, + ACTIONS(4491), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4496), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4437), 30, + ACTIONS(4485), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -210272,42 +268918,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96816] = 5, - STATE(2278), 1, - aux_sym_comparison_operator_repeat1, + [59173] = 11, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2091), 2, - sym__not_in, - sym__is_not, - ACTIONS(4439), 5, - anon_sym_as, + ACTIONS(5531), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5541), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5539), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4437), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5660), 19, 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -210317,36 +268967,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96866] = 5, - ACTIONS(1428), 1, - sym_string_start, + [59233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2256), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(5592), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(5590), 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, @@ -210362,39 +269007,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96916] = 8, - ACTIONS(4474), 1, + sym_type_conversion, + [59277] = 8, + ACTIONS(5293), 1, anon_sym_DOT, - ACTIONS(4476), 1, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_STAR_STAR, - ACTIONS(4486), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2485), 2, + STATE(2926), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4470), 5, - anon_sym_as, + ACTIONS(5662), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 26, + ACTIONS(5660), 24, anon_sym_COMMA, + 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, @@ -210410,48 +269054,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96972] = 11, - ACTIONS(4474), 1, + [59331] = 6, + ACTIONS(5919), 1, + anon_sym_and, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5984), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5987), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5982), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4484), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4486), 1, 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, + [59381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 2, + ACTIONS(5444), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4490), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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), 21, + ACTIONS(5442), 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, anon_sym_CARET, anon_sym_LT_LT, @@ -210461,51 +269139,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97034] = 15, - ACTIONS(4542), 1, + [59425] = 15, + ACTIONS(5293), 1, anon_sym_DOT, - ACTIONS(4544), 1, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(4552), 1, - anon_sym_STAR_STAR, - ACTIONS(4554), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, - ACTIONS(4560), 1, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, + ACTIONS(5543), 1, anon_sym_PIPE, - ACTIONS(4562), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(4564), 1, + ACTIONS(5547), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4546), 2, + ACTIONS(5531), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4548), 2, + ACTIONS(5533), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4558), 2, + ACTIONS(5541), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2451), 2, + STATE(2926), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4508), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4556), 3, + ACTIONS(5539), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4506), 16, + ACTIONS(5697), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5695), 14, 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, @@ -210515,36 +269192,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [97104] = 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, + [59493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2485), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, - anon_sym_as, + ACTIONS(4575), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 26, + 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, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -210564,43 +269232,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97160] = 10, - ACTIONS(4474), 1, + sym_type_conversion, + [59537] = 10, + ACTIONS(5293), 1, anon_sym_DOT, - ACTIONS(4476), 1, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_STAR_STAR, - ACTIONS(4486), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 2, + ACTIONS(5531), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2485), 2, + STATE(2926), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4470), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4488), 3, + ACTIONS(5539), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 23, + ACTIONS(5662), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 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_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -210614,51 +269281,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97220] = 14, - ACTIONS(4474), 1, + [59595] = 14, + ACTIONS(5293), 1, anon_sym_DOT, - ACTIONS(4476), 1, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_STAR_STAR, - ACTIONS(4486), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, - ACTIONS(4494), 1, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(4496), 1, + ACTIONS(5547), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 2, + ACTIONS(5531), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4480), 2, + ACTIONS(5533), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4490), 2, + ACTIONS(5541), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2485), 2, + STATE(2926), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4470), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4488), 3, + ACTIONS(5539), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 17, + ACTIONS(5662), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 15, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -210668,49 +269333,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97288] = 13, - ACTIONS(4474), 1, + [59661] = 13, + ACTIONS(5293), 1, anon_sym_DOT, - ACTIONS(4476), 1, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_STAR_STAR, - ACTIONS(4486), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, - ACTIONS(4496), 1, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, + ACTIONS(5547), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 2, + ACTIONS(5531), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4480), 2, + ACTIONS(5533), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4490), 2, + ACTIONS(5541), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2485), 2, + STATE(2926), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4470), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4488), 3, + ACTIONS(5539), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 18, + ACTIONS(5662), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -210721,47 +269384,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97354] = 12, - ACTIONS(4474), 1, + [59725] = 12, + ACTIONS(5293), 1, anon_sym_DOT, - ACTIONS(4476), 1, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_STAR_STAR, - ACTIONS(4486), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 2, + ACTIONS(5531), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4480), 2, + ACTIONS(5533), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4490), 2, + ACTIONS(5541), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2485), 2, + STATE(2926), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4470), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4488), 3, + ACTIONS(5539), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 19, + ACTIONS(5662), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 17, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -210773,43 +269434,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [59787] = 7, + ACTIONS(5929), 1, + anon_sym_as, + ACTIONS(5933), 1, + anon_sym_if, + ACTIONS(5935), 1, + anon_sym_and, + ACTIONS(5937), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4512), 5, + ACTIONS(5971), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 26, + ACTIONS(5967), 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, @@ -210821,43 +269478,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97474] = 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, + sym_type_conversion, + [59839] = 6, + ACTIONS(5935), 1, + anon_sym_and, + ACTIONS(5937), 1, + anon_sym_or, + ACTIONS(5989), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4504), 5, + ACTIONS(5987), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4502), 26, + ACTIONS(5982), 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, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -210869,99 +269522,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97530] = 15, - 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(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, - STATE(2485), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4488), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - 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, + sym_type_conversion, + [59889] = 5, + ACTIONS(5935), 1, anon_sym_and, + ACTIONS(5937), 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, - [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, + ACTIONS(5917), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 26, + ACTIONS(5915), 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, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -210970,80 +269565,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97652] = 15, - 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(4532), 1, - anon_sym_PIPE, - ACTIONS(4534), 1, - anon_sym_AMP, - ACTIONS(4536), 1, - anon_sym_CARET, + sym_type_conversion, + [59937] = 6, + ACTIONS(5975), 1, + anon_sym_and, + ACTIONS(5977), 1, + anon_sym_or, + ACTIONS(5992), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, + ACTIONS(5987), 4, anon_sym_STAR, anon_sym_SLASH, - 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(4508), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4528), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4506), 16, + ACTIONS(5982), 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, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97722] = 5, - ACTIONS(1428), 1, - sym_string_start, + [59987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4443), 5, + ACTIONS(5486), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4441), 29, + ACTIONS(5484), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -211052,6 +269631,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, @@ -211070,48 +269650,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97772] = 9, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4856), 1, - anon_sym_is, - STATE(2257), 1, - aux_sym_comparison_operator_repeat1, + [60030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4859), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2110), 2, - sym__not_in, - sym__is_not, - ACTIONS(4447), 3, + ACTIONS(4575), 5, 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_LT, + anon_sym_GT, + 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, + 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, @@ -211119,163 +269684,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97830] = 20, - ACTIONS(4417), 1, - anon_sym_not, - 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(4886), 1, anon_sym_is, - STATE(2422), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - ACTIONS(4888), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2082), 2, - sym__not_in, - sym__is_not, - STATE(2825), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4876), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4393), 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, - [97910] = 20, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4614), 1, - anon_sym_DOT, - ACTIONS(4626), 1, - anon_sym_LBRACK, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_STAR_STAR, - ACTIONS(4880), 1, - anon_sym_PIPE, - ACTIONS(4882), 1, - anon_sym_AMP, - ACTIONS(4884), 1, - anon_sym_CARET, - ACTIONS(4886), 1, - anon_sym_is, - STATE(3272), 1, - aux_sym_comparison_operator_repeat1, + [60073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - ACTIONS(4888), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2082), 2, - sym__not_in, - sym__is_not, - STATE(2825), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4876), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4393), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4583), 5, 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, - [97990] = 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, + 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, + 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, @@ -211284,45 +269730,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98042] = 6, - ACTIONS(4575), 1, - anon_sym_STAR, + [60116] = 3, 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, + ACTIONS(4583), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 26, + ACTIONS(4581), 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, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -211331,25 +269770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98094] = 5, - STATE(2257), 1, - aux_sym_comparison_operator_repeat1, + [60159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2110), 2, - sym__not_in, - sym__is_not, - ACTIONS(4439), 5, + ACTIONS(4579), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4437), 29, + ACTIONS(4577), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -211358,6 +269791,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, @@ -211376,38 +269810,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98144] = 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, + [60202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2451), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4512), 5, + ACTIONS(4579), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 26, + 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, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -211423,37 +269850,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98200] = 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, + [60245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, + ACTIONS(5450), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 26, + ACTIONS(5448), 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_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -211472,38 +269890,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98256] = 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, + [60288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2451), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, + ACTIONS(5454), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 26, + ACTIONS(5452), 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, @@ -211519,48 +269930,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98312] = 11, - 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, + [60331] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4546), 2, + ACTIONS(4557), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4560), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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(4556), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 21, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(4555), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + 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, @@ -211570,39 +269971,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98374] = 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, + [60376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2451), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, + ACTIONS(983), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 26, + ACTIONS(981), 29, + anon_sym_DOT, + 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, @@ -211618,47 +270011,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98430] = 10, - 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, + [60419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4546), 2, + ACTIONS(5458), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(2451), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4556), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 23, + ACTIONS(5456), 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, @@ -211668,328 +270051,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98490] = 20, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4474), 1, - anon_sym_DOT, - ACTIONS(4486), 1, - anon_sym_LBRACK, - ACTIONS(4544), 1, - anon_sym_LPAREN, - ACTIONS(4552), 1, - anon_sym_STAR_STAR, - ACTIONS(4560), 1, - anon_sym_PIPE, - ACTIONS(4562), 1, - anon_sym_AMP, - ACTIONS(4564), 1, - anon_sym_CARET, - ACTIONS(4566), 1, - anon_sym_is, - STATE(3200), 1, - aux_sym_comparison_operator_repeat1, + [60462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4546), 2, + ACTIONS(5462), 5, + anon_sym_as, 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, - ACTIONS(4568), 2, anon_sym_LT, anon_sym_GT, - STATE(2025), 2, - sym__not_in, - sym__is_not, - STATE(2451), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4556), 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_RBRACE, - anon_sym_and, - anon_sym_or, - 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, - [98570] = 20, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4862), 1, + ACTIONS(5460), 29, 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(4886), 1, - anon_sym_is, - STATE(3272), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - ACTIONS(4888), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2082), 2, - sym__not_in, - sym__is_not, - STATE(2825), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4876), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4393), 6, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4870), 6, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [98650] = 14, - 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(4562), 1, - anon_sym_AMP, - 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(4556), 3, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 17, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - 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, - ACTIONS(4564), 1, - anon_sym_CARET, + [60505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4546), 2, + ACTIONS(5414), 5, + anon_sym_as, 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(4556), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 18, + ACTIONS(5412), 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, - [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, + [60548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4546), 2, + ACTIONS(5641), 5, + anon_sym_as, 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(4556), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 19, + ACTIONS(5639), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98848] = 11, - 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, + [60591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, + ACTIONS(5582), 5, + anon_sym_as, 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(4470), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4528), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 21, + ACTIONS(5580), 29, + anon_sym_DOT, + 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, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -211999,38 +270211,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [60634] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2451), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4504), 5, + ACTIONS(4496), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4502), 26, + ACTIONS(4485), 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, @@ -212046,37 +270251,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98966] = 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, + [60677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, + ACTIONS(5410), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 26, + ACTIONS(5408), 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_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -212095,94 +270291,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(3203), 1, - aux_sym_comparison_operator_repeat1, + [60720] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 2, + ACTIONS(5555), 5, + anon_sym_as, 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, + ACTIONS(5553), 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, - ACTIONS(4662), 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, - [99102] = 9, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4893), 1, - anon_sym_is, - STATE(2278), 1, - aux_sym_comparison_operator_repeat1, + [60763] = 3, 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(4447), 3, + ACTIONS(4974), 5, 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_LT, + anon_sym_GT, + ACTIONS(4964), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212190,6 +270349,7 @@ 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, @@ -212197,6 +270357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -212204,47 +270365,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99160] = 10, - 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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, + ACTIONS(5569), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4528), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 23, + ACTIONS(5567), 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_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, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -212254,181 +270411,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99220] = 14, - 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(4534), 1, - anon_sym_AMP, - ACTIONS(4536), 1, - anon_sym_CARET, + [60849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, + ACTIONS(5573), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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(4470), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4528), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 17, + ACTIONS(5571), 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_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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99288] = 13, - 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(4536), 1, - anon_sym_CARET, + [60892] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, + ACTIONS(4568), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4571), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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(4470), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4528), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 18, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(4566), 27, + anon_sym_DOT, + anon_sym_LPAREN, + 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, - [99354] = 12, - 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, + [60937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, + ACTIONS(5434), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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(4470), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4528), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 19, + ACTIONS(5432), 29, + anon_sym_DOT, + 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, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99418] = 5, - ACTIONS(2569), 1, - sym_string_start, + [60980] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2285), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3910), 5, + ACTIONS(5602), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(5600), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212458,39 +270572,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99468] = 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, + [61023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2485), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4512), 5, + ACTIONS(4841), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 26, + ACTIONS(4839), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -212506,22 +270612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99524] = 5, - ACTIONS(2569), 1, - sym_string_start, + [61066] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2287), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4443), 5, + ACTIONS(5559), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4441), 29, + ACTIONS(5557), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212551,39 +270652,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99574] = 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, + [61109] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2485), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4504), 5, + ACTIONS(4491), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4496), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4502), 26, - anon_sym_COMMA, + ACTIONS(4485), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -212599,24 +270693,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99630] = 5, - ACTIONS(4899), 1, - sym_string_start, + [61154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2287), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4463), 5, + ACTIONS(5525), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4461), 29, + ACTIONS(5523), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -212625,7 +270715,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, @@ -212644,22 +270733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99680] = 5, - ACTIONS(4902), 1, - sym_string_start, + [61197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4463), 5, + ACTIONS(5529), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4461), 29, + ACTIONS(5527), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212689,85 +270773,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99730] = 12, - 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, + [61240] = 7, + ACTIONS(4597), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(4590), 2, anon_sym_STAR, 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, + ACTIONS(4593), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 18, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4595), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4585), 12, + anon_sym_as, 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, - [99793] = 5, - ACTIONS(3905), 1, - anon_sym_COMMA, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + ACTIONS(4587), 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, + [61291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 6, + ACTIONS(4604), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 28, + ACTIONS(4599), 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, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -212783,29 +270857,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [99842] = 3, + [61334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, + ACTIONS(5647), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 31, + ACTIONS(5645), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -212826,28 +270897,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99887] = 3, + [61377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, + ACTIONS(5654), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 31, - sym_string_start, + ACTIONS(5652), 29, anon_sym_DOT, 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, @@ -212868,76 +270937,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99932] = 5, + [61420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 2, + ACTIONS(5658), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1366), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1576), 14, + ACTIONS(5656), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(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, + [61463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, + ACTIONS(4560), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 31, - sym_string_start, + ACTIONS(4555), 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, @@ -212953,95 +271017,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - 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, + [61506] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(981), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4202), 1, + anon_sym_LBRACK, + ACTIONS(983), 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(1014), 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, + [61551] = 21, + ACTIONS(413), 1, anon_sym_long, - STATE(3325), 1, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(5995), 1, + sym_identifier, + ACTIONS(5999), 1, + anon_sym_COLON, + ACTIONS(6001), 1, + anon_sym_class, + ACTIONS(6003), 1, + anon_sym_api, + ACTIONS(6007), 1, + anon_sym_enum, + STATE(4025), 1, sym__signedness, - STATE(3549), 1, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, sym__longness, - STATE(3573), 1, - sym_c_type, + STATE(4430), 1, + sym_operator_name, + STATE(4762), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4158), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(4198), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(2970), 2, + ACTIONS(6005), 2, + anon_sym_struct, + anon_sym_union, + STATE(3444), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3812), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, - anon_sym_api, + ACTIONS(113), 4, 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(4584), 1, - anon_sym_LPAREN, - ACTIONS(4592), 1, - anon_sym_STAR_STAR, - ACTIONS(4594), 1, - anon_sym_LBRACK, + ACTIONS(5997), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [61630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2622), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4504), 5, + ACTIONS(5358), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4502), 25, + ACTIONS(5356), 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, @@ -213060,24 +271156,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100160] = 3, + [61673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, + ACTIONS(5598), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 31, - sym_string_start, + ACTIONS(5596), 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, @@ -213086,7 +271181,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, @@ -213102,171 +271196,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [61716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(5497), 5, + anon_sym_as, anon_sym_STAR, 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(4628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 16, - anon_sym_RPAREN, + ACTIONS(5495), 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_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, - [100272] = 13, - 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(4636), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4618), 2, - anon_sym_STAR, - 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(4628), 3, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, 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, + [61759] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, + ACTIONS(4601), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4604), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4070), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4064), 14, + ACTIONS(4599), 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(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, - [100386] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [61804] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 6, + ACTIONS(5610), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 29, + ACTIONS(5608), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -213278,7 +271302,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, @@ -213294,27 +271317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100433] = 6, - ACTIONS(4575), 1, - anon_sym_STAR, + [61847] = 3, 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, + ACTIONS(5077), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 25, + ACTIONS(5069), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -213322,6 +271337,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, @@ -213331,6 +271348,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, @@ -213339,34 +271357,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100484] = 4, - ACTIONS(3912), 1, + [61890] = 5, + ACTIONS(998), 1, anon_sym_COLON_EQ, + ACTIONS(1897), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 6, - anon_sym_as, + ACTIONS(983), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(981), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -213382,28 +271399,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100531] = 3, + [61937] = 5, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(5003), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 5, + ACTIONS(4496), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4108), 31, + ACTIONS(4485), 28, 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, @@ -213424,28 +271441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100576] = 3, + [61984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, + ACTIONS(5095), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 31, + ACTIONS(5093), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -213466,88 +271481,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3594), 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(3812), 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, + [62027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 6, + ACTIONS(5517), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 29, + ACTIONS(5515), 29, 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_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -213568,91 +271521,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3594), 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(3812), 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, + [62070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 5, + ACTIONS(5450), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4646), 31, - sym_string_start, + ACTIONS(5448), 29, anon_sym_DOT, 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, @@ -213668,30 +271561,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [100871] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + [62113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 6, + ACTIONS(5454), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(5452), 29, 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_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -213712,87 +271601,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3593), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(3812), 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, + [62156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, + ACTIONS(5458), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 31, + ACTIONS(5456), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -213813,33 +271641,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101042] = 6, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(4905), 1, - anon_sym_LBRACK, - STATE(4378), 1, - sym_type_parameter, + [62199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 6, + ACTIONS(5462), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(5460), 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, anon_sym_DASH, anon_sym_PIPE, @@ -213858,28 +271681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [62242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2628), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4512), 5, + ACTIONS(5482), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 25, + ACTIONS(5480), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -213887,6 +271701,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, @@ -213905,47 +271721,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101148] = 9, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4910), 1, - anon_sym_is, - STATE(2315), 1, - aux_sym_comparison_operator_repeat1, + [62285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4447), 2, + ACTIONS(5555), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4913), 2, anon_sym_LT, anon_sym_GT, - STATE(2099), 2, - sym__not_in, - sym__is_not, - 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(4445), 21, + ACTIONS(5553), 29, anon_sym_DOT, 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, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -213953,24 +271755,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101205] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 5, + ACTIONS(5569), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4646), 31, - sym_string_start, + ACTIONS(5567), 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, @@ -213979,7 +271786,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, @@ -213995,28 +271801,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101250] = 3, + [62371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, + ACTIONS(5573), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 31, + ACTIONS(5571), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -214037,94 +271841,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101295] = 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, + [62414] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2622), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, - anon_sym_as, + ACTIONS(1599), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1602), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 25, - anon_sym_COMMA, + ACTIONS(1844), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1597), 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, - [101350] = 11, - 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, + [62461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, + ACTIONS(5440), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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), 20, + ACTIONS(5438), 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, @@ -214134,82 +271923,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101411] = 15, - 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(4600), 1, - anon_sym_PIPE, - ACTIONS(4602), 1, - anon_sym_AMP, - ACTIONS(4604), 1, - anon_sym_CARET, + [62504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, + ACTIONS(5602), 5, + anon_sym_as, 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(4508), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4596), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4506), 15, + ACTIONS(5600), 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, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101480] = 3, + [62547] = 7, + ACTIONS(6009), 1, + anon_sym_as, + ACTIONS(6011), 1, + anon_sym_if, + ACTIONS(6013), 1, + anon_sym_and, + ACTIONS(6015), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 5, + ACTIONS(5971), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4646), 31, - sym_string_start, + ACTIONS(5967), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -214217,8 +271996,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, @@ -214230,28 +272007,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101525] = 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, + [62598] = 6, + ACTIONS(6013), 1, + anon_sym_and, + ACTIONS(6015), 1, + anon_sym_or, + ACTIONS(6017), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2628), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4504), 5, - anon_sym_as, + ACTIONS(5987), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4502), 25, + ACTIONS(5982), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -214259,13 +272032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -214277,40 +272050,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101580] = 6, - ACTIONS(874), 1, - anon_sym_COLON_EQ, - ACTIONS(1366), 1, - anon_sym_COLON, + [62647] = 5, + ACTIONS(6013), 1, + anon_sym_and, + ACTIONS(6015), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1361), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1363), 5, + ACTIONS(5917), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1576), 27, + ACTIONS(5915), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -214322,38 +272092,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101631] = 5, - ACTIONS(2541), 1, - sym_string_start, + [62694] = 4, + ACTIONS(6013), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2337), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3910), 4, + ACTIONS(5610), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(5608), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_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, @@ -214366,37 +272133,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101680] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [62739] = 7, + ACTIONS(6009), 1, + anon_sym_as, + ACTIONS(6011), 1, + anon_sym_if, + ACTIONS(6013), 1, + anon_sym_and, + ACTIONS(6015), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 6, + ACTIONS(5931), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 29, + ACTIONS(5927), 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_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -214408,21 +272177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101727] = 4, - ACTIONS(3912), 1, + [62790] = 4, + ACTIONS(998), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 6, + ACTIONS(983), 5, anon_sym_STAR, anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(981), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214432,10 +272199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -214451,41 +272218,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101774] = 6, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(4070), 1, - anon_sym_COLON, + [62835] = 7, + ACTIONS(6009), 1, + anon_sym_as, + ACTIONS(6011), 1, + anon_sym_if, + ACTIONS(6013), 1, + anon_sym_and, + ACTIONS(6015), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4062), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4067), 5, - anon_sym_as, + ACTIONS(5949), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4064), 27, + ACTIONS(5947), 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_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, @@ -214497,33 +272262,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101825] = 6, - ACTIONS(4575), 1, - anon_sym_STAR, + [62886] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, 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, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 25, + ACTIONS(4485), 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, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -214534,6 +272294,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, @@ -214542,35 +272303,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101876] = 8, - ACTIONS(4582), 1, + [62931] = 8, + ACTIONS(5706), 1, anon_sym_DOT, - ACTIONS(4584), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(4592), 1, + ACTIONS(5716), 1, anon_sym_STAR_STAR, - ACTIONS(4594), 1, + ACTIONS(5718), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2622), 2, + STATE(3370), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4470), 5, - anon_sym_as, + ACTIONS(5691), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 25, + ACTIONS(5689), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -214589,34 +272348,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [62984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2622), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4512), 5, + ACTIONS(5444), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 25, + ACTIONS(5442), 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, @@ -214636,46 +272388,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101986] = 10, - ACTIONS(4582), 1, + [63027] = 8, + ACTIONS(5706), 1, anon_sym_DOT, - ACTIONS(4584), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(4592), 1, + ACTIONS(5716), 1, anon_sym_STAR_STAR, - ACTIONS(4594), 1, + ACTIONS(5718), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2622), 2, + STATE(3370), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4470), 3, - anon_sym_as, + ACTIONS(5687), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4596), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 22, + ACTIONS(5685), 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_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, @@ -214685,239 +272433,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102045] = 14, - 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(4602), 1, - anon_sym_AMP, - ACTIONS(4604), 1, - anon_sym_CARET, + [63080] = 7, + ACTIONS(6020), 1, + anon_sym_as, + ACTIONS(6022), 1, + anon_sym_if, + ACTIONS(6024), 1, + anon_sym_and, + ACTIONS(6026), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, + ACTIONS(5971), 4, 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), 16, + ACTIONS(5967), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_GT_GT, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102112] = 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3573), 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(3812), 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(535), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [102191] = 13, - 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(4604), 1, - anon_sym_CARET, + [63131] = 6, + ACTIONS(6024), 1, + anon_sym_and, + ACTIONS(6026), 1, + anon_sym_or, + ACTIONS(6028), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, + ACTIONS(5987), 4, 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), 17, + ACTIONS(5982), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + 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_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, 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, + [63180] = 5, + ACTIONS(6024), 1, + anon_sym_and, + ACTIONS(6026), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, + ACTIONS(5917), 4, 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, + ACTIONS(5915), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102319] = 5, - ACTIONS(864), 1, - anon_sym_COMMA, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [63227] = 4, + ACTIONS(6024), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 6, + ACTIONS(5610), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 28, + ACTIONS(5608), 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, @@ -214927,10 +272589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -214943,40 +272603,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102368] = 5, - ACTIONS(2541), 1, - sym_string_start, + [63272] = 7, + ACTIONS(6020), 1, + anon_sym_as, + ACTIONS(6022), 1, + anon_sym_if, + ACTIONS(6024), 1, + anon_sym_and, + ACTIONS(6026), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2340), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4443), 4, + ACTIONS(5931), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4441), 29, + ACTIONS(5927), 26, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_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, @@ -214988,29 +272647,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102417] = 5, - ACTIONS(874), 1, - anon_sym_COLON_EQ, - ACTIONS(2509), 1, - anon_sym_EQ, + [63323] = 7, + ACTIONS(6020), 1, + anon_sym_as, + ACTIONS(6022), 1, + anon_sym_if, + ACTIONS(6024), 1, + anon_sym_and, + ACTIONS(6026), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, - anon_sym_as, + ACTIONS(5949), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 29, + ACTIONS(5947), 26, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, 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, @@ -215019,8 +272680,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, @@ -215032,86 +272691,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102466] = 15, - ACTIONS(4614), 1, - anon_sym_DOT, - ACTIONS(4616), 1, + [63374] = 21, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(5736), 1, anon_sym_LPAREN, - ACTIONS(4624), 1, + ACTIONS(5738), 1, + anon_sym_STAR, + ACTIONS(5740), 1, anon_sym_STAR_STAR, - ACTIONS(4626), 1, + ACTIONS(5742), 1, anon_sym_LBRACK, - ACTIONS(4632), 1, - anon_sym_PIPE, - ACTIONS(4634), 1, - anon_sym_AMP, - ACTIONS(4636), 1, - anon_sym_CARET, + ACTIONS(5744), 1, + anon_sym_DASH, + ACTIONS(5748), 1, + anon_sym_LBRACE, + ACTIONS(5752), 1, + sym_float, + ACTIONS(6031), 1, + sym_identifier, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(5097), 1, + sym_string, + STATE(5257), 1, + sym_integer, + STATE(5427), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5750), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6033), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5503), 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, + [63453] = 21, + ACTIONS(1826), 1, + anon_sym_None, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(1842), 1, + sym_string_start, + ACTIONS(5736), 1, + anon_sym_LPAREN, + ACTIONS(5738), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4630), 2, + ACTIONS(5740), 1, + anon_sym_STAR_STAR, + ACTIONS(5742), 1, + anon_sym_LBRACK, + ACTIONS(5744), 1, 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(4628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4506), 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, - [102535] = 5, - ACTIONS(4916), 1, - sym_string_start, + ACTIONS(5748), 1, + anon_sym_LBRACE, + ACTIONS(5752), 1, + sym_float, + ACTIONS(6031), 1, + sym_identifier, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(5097), 1, + sym_string, + STATE(5257), 1, + sym_integer, + STATE(5427), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2340), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4463), 4, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5750), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6035), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5507), 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, + [63532] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5559), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4461), 29, + ACTIONS(5557), 29, anon_sym_DOT, 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, @@ -215130,46 +272847,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102584] = 10, - 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, + [63575] = 7, + ACTIONS(6037), 1, + anon_sym_as, + ACTIONS(6039), 1, + anon_sym_if, + ACTIONS(6041), 1, + anon_sym_and, + ACTIONS(6043), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(5971), 4, anon_sym_STAR, anon_sym_SLASH, - STATE(2628), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 22, - anon_sym_RPAREN, + ACTIONS(5967), 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, anon_sym_CARET, anon_sym_LT_LT, @@ -215179,24 +272891,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102643] = 5, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(4472), 1, - anon_sym_EQ, + [63626] = 6, + ACTIONS(6041), 1, + anon_sym_and, + ACTIONS(6043), 1, + anon_sym_or, + ACTIONS(6045), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(5987), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(5982), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -215205,13 +272917,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, @@ -215223,101 +272934,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102692] = 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3593), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(3812), 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(1362), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [102771] = 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, + [63675] = 5, + ACTIONS(6041), 1, + anon_sym_and, + ACTIONS(6043), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2628), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, + ACTIONS(5917), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 25, - anon_sym_RPAREN, + ACTIONS(5915), 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, @@ -215329,28 +272976,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102826] = 5, - STATE(2315), 1, - aux_sym_comparison_operator_repeat1, + [63722] = 4, + ACTIONS(6041), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2099), 2, - sym__not_in, - sym__is_not, - ACTIONS(4439), 4, + ACTIONS(5610), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4437), 29, + ACTIONS(5608), 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, @@ -215360,7 +273005,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, @@ -215373,37 +273017,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102875] = 3, + [63767] = 7, + ACTIONS(6037), 1, + anon_sym_as, + ACTIONS(6039), 1, + anon_sym_if, + ACTIONS(6041), 1, + anon_sym_and, + ACTIONS(6043), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 5, + ACTIONS(5931), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4112), 31, + ACTIONS(5927), 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_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, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -215415,37 +273061,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102920] = 3, + [63818] = 7, + ACTIONS(6037), 1, + anon_sym_as, + ACTIONS(6039), 1, + anon_sym_if, + ACTIONS(6041), 1, + anon_sym_and, + ACTIONS(6043), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 5, + ACTIONS(5949), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4093), 31, + ACTIONS(5947), 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_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, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -215457,28 +273105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102965] = 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, + [63869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2628), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 5, + ACTIONS(5592), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 25, + ACTIONS(5590), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -215486,6 +273125,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, @@ -215504,47 +273145,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103020] = 11, - 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, + [63912] = 7, + ACTIONS(6048), 1, + anon_sym_as, + ACTIONS(6050), 1, + anon_sym_if, + ACTIONS(6052), 1, + anon_sym_and, + ACTIONS(6054), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(5971), 4, 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(4470), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 20, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5967), 26, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_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, @@ -215554,27 +273188,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103081] = 3, + anon_sym_nogil, + [63963] = 6, + ACTIONS(6052), 1, + anon_sym_and, + ACTIONS(6054), 1, + anon_sym_or, + ACTIONS(6056), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 5, + ACTIONS(5987), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 30, + ACTIONS(5982), 27, + sym__newline, 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_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -215582,8 +273220,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, @@ -215595,36 +273231,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103125] = 3, + anon_sym_nogil, + [64012] = 5, + ACTIONS(6052), 1, + anon_sym_and, + ACTIONS(6054), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, - anon_sym_as, + ACTIONS(5917), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 30, + ACTIONS(5915), 28, + sym__newline, 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_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, @@ -215636,40 +273273,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103169] = 7, - ACTIONS(4919), 1, - anon_sym_as, - ACTIONS(4921), 1, - anon_sym_if, - ACTIONS(4923), 1, + anon_sym_nogil, + [64059] = 4, + ACTIONS(6052), 1, anon_sym_and, - ACTIONS(4925), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 4, + ACTIONS(5610), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4837), 27, + ACTIONS(5608), 29, + sym__newline, 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_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_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -215681,27 +273314,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103221] = 3, + anon_sym_nogil, + [64104] = 7, + ACTIONS(6048), 1, + anon_sym_as, + ACTIONS(6050), 1, + anon_sym_if, + ACTIONS(6052), 1, + anon_sym_and, + ACTIONS(6054), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 5, + ACTIONS(5931), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 30, + ACTIONS(5927), 26, + sym__newline, 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_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -215709,8 +273347,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, @@ -215722,30 +273358,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103265] = 6, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(3920), 1, - anon_sym_from, + anon_sym_nogil, + [64155] = 7, + ACTIONS(6048), 1, + anon_sym_as, + ACTIONS(6050), 1, + anon_sym_if, + ACTIONS(6052), 1, + anon_sym_and, + ACTIONS(6054), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3905), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3910), 5, + ACTIONS(5949), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 26, + ACTIONS(5947), 26, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_by, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -215753,8 +273391,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, @@ -215766,23 +273402,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103315] = 3, + anon_sym_nogil, + [64206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, + ACTIONS(5486), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 30, + ACTIONS(5484), 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, @@ -215791,7 +273428,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, @@ -215807,28 +273443,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103359] = 6, - ACTIONS(4923), 1, - anon_sym_and, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_as, + [64249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4746), 4, + ACTIONS(5497), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 28, + ACTIONS(5495), 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, @@ -215837,9 +273468,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, @@ -215851,27 +273483,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103409] = 3, + [64292] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4835), 5, + ACTIONS(4496), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4833), 30, + ACTIONS(6059), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + ACTIONS(4485), 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, @@ -215892,27 +273524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103453] = 5, - ACTIONS(4923), 1, - anon_sym_and, - ACTIONS(4925), 1, - anon_sym_or, + [64337] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 5, + ACTIONS(5440), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4789), 28, + ACTIONS(5438), 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, @@ -215921,9 +273549,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, @@ -215935,25 +273564,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103501] = 4, - ACTIONS(4923), 1, - anon_sym_and, + [64380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, + ACTIONS(5444), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 29, + ACTIONS(5442), 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, @@ -215962,9 +273589,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, @@ -215977,17 +273604,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103547] = 3, + [64423] = 21, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5273), 1, + anon_sym_LPAREN, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(6061), 1, + sym_identifier, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, + sym_string, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4843), 5, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6063), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5477), 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, + [64502] = 21, + ACTIONS(1708), 1, + anon_sym_None, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(1728), 1, + sym_string_start, + ACTIONS(5273), 1, + anon_sym_LPAREN, + ACTIONS(5277), 1, + anon_sym_STAR, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_DASH, + ACTIONS(5287), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_float, + ACTIONS(6061), 1, + sym_identifier, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5041), 1, + sym_string, + STATE(5223), 1, + sym_integer, + STATE(5322), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6065), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5479), 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, + [64581] = 4, + ACTIONS(6067), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5168), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 30, + ACTIONS(5166), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215998,10 +273742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -216017,18 +273761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103591] = 3, + [64626] = 4, + ACTIONS(6069), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4787), 5, + ACTIONS(5168), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4785), 30, + ACTIONS(5166), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216036,11 +273780,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -216059,34 +273802,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103635] = 3, + [64671] = 9, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(6074), 1, + anon_sym_is, + STATE(3147), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4827), 5, + ACTIONS(5394), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(6077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4825), 30, + STATE(2279), 2, + sym__not_in, + sym__is_not, + ACTIONS(6071), 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(5392), 19, 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, @@ -216094,33 +273848,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [103679] = 3, + [64726] = 5, + STATE(3147), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, + STATE(2279), 2, + sym__not_in, + sym__is_not, + ACTIONS(5326), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 30, + ACTIONS(5324), 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, @@ -216141,17 +273890,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103723] = 3, + [64773] = 15, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5718), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5726), 1, + anon_sym_AMP, + ACTIONS(5728), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, + ACTIONS(5697), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5722), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5695), 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, + [64840] = 4, + ACTIONS(6080), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5095), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 30, + ACTIONS(5093), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216159,11 +273961,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -216182,32 +273983,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103767] = 3, + [64885] = 21, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_STAR, + ACTIONS(4940), 1, + anon_sym_STAR_STAR, + ACTIONS(4942), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(6082), 1, + sym_identifier, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, + sym_string, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6084), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5245), 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, + [64964] = 21, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_STAR, + ACTIONS(4940), 1, + anon_sym_STAR_STAR, + ACTIONS(4942), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(6082), 1, + sym_identifier, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, + sym_string, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6086), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5247), 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, + [65043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 5, - anon_sym_as, + ACTIONS(5253), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4112), 30, + ACTIONS(5251), 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, @@ -216223,61 +274139,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103811] = 6, - ACTIONS(4575), 1, - anon_sym_STAR, + [65086] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4578), 3, + ACTIONS(1599), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1602), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4572), 4, + ACTIONS(1844), 14, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, 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_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(1597), 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, - [103861] = 3, + [65133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 5, + ACTIONS(5176), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4703), 30, + ACTIONS(5174), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216288,10 +274202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -216307,118 +274221,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - 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, + [65176] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 4, + ACTIONS(4590), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4593), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4793), 27, + ACTIONS(4587), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [103957] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4648), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4646), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4585), 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, - [104001] = 5, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [65223] = 8, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5718), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1361), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1363), 5, - anon_sym_as, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1576), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5660), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -216437,40 +274308,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104049] = 5, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + [65276] = 11, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5718), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4062), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4067), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4064), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5722), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 19, + 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, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -216480,31 +274356,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104097] = 5, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [65335] = 8, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5718), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1361), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1363), 5, - anon_sym_as, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1576), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5660), 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, @@ -216523,86 +274401,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104145] = 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(4831), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4829), 27, + [65388] = 10, + ACTIONS(5706), 1, anon_sym_DOT, + ACTIONS(5708), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(5716), 1, anon_sym_STAR_STAR, + ACTIONS(5718), 1, 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, - [104197] = 6, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(4930), 1, - anon_sym_LBRACK, - STATE(4473), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 21, + 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_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, @@ -216612,32 +274448,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104247] = 3, + [65445] = 5, + ACTIONS(4506), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4807), 5, - anon_sym_as, + ACTIONS(4568), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4571), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4805), 30, + ACTIONS(4566), 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_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, @@ -216653,112 +274490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(4831), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4829), 26, + [65492] = 14, + ACTIONS(5706), 1, anon_sym_DOT, + ACTIONS(5708), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, + ACTIONS(5716), 1, anon_sym_STAR_STAR, + ACTIONS(5718), 1, 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, + ACTIONS(5726), 1, anon_sym_AMP, + ACTIONS(5728), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [104343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4771), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4769), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5722), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - 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, - [104387] = 3, + [65557] = 5, + ACTIONS(4506), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4807), 5, + ACTIONS(4491), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4496), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4805), 30, + ACTIONS(4485), 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, @@ -216780,108 +274583,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104431] = 3, + [65604] = 13, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5718), 1, + anon_sym_LBRACK, + ACTIONS(5728), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4815), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4813), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5722), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 16, + 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, - [104475] = 3, + [65667] = 12, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5718), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5722), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3370), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5720), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 17, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_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, - [104519] = 3, + [65728] = 5, + ACTIONS(4606), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4843), 5, + ACTIONS(4601), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4604), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 30, + ACTIONS(4599), 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, @@ -216903,32 +274724,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104563] = 3, + [65775] = 6, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, + ACTIONS(4549), 1, + anon_sym_LBRACK, + STATE(5644), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, - anon_sym_as, + ACTIONS(4496), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 30, + ACTIONS(4485), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -216944,72 +274767,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104607] = 3, + [65824] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4843), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 30, + ACTIONS(4566), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4571), 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_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, - [104651] = 3, + ACTIONS(4506), 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, + [65869] = 5, + ACTIONS(4562), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 5, + ACTIONS(4557), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4560), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 30, + ACTIONS(4555), 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_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, @@ -217025,147 +274850,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104695] = 3, + [65916] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4703), 30, + ACTIONS(4485), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(4496), 13, + anon_sym_STAR, 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_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, - [104739] = 3, + ACTIONS(4506), 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, + [65961] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4703), 30, + ACTIONS(4599), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4604), 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_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, - [104783] = 3, + ACTIONS(4606), 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, + [66006] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4815), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4813), 30, + ACTIONS(4555), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4560), 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_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, - [104827] = 3, + ACTIONS(4562), 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, + [66051] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 5, + ACTIONS(4557), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4560), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 30, + ACTIONS(4555), 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, @@ -217174,7 +274999,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, @@ -217190,32 +275014,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104871] = 3, + [66096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 5, + ACTIONS(983), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4093), 30, + ACTIONS(981), 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, @@ -217231,32 +275054,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104915] = 3, + [66139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, + ACTIONS(5641), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 30, + ACTIONS(5639), 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, @@ -217272,32 +275094,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104959] = 3, + [66182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, + ACTIONS(5582), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 30, + ACTIONS(5580), 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, @@ -217313,31 +275134,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105003] = 3, + [66225] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4720), 5, + ACTIONS(4585), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4590), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4718), 30, + ACTIONS(4587), 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, @@ -217353,32 +275175,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105047] = 3, + [66270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(4571), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 30, + ACTIONS(4566), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_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, @@ -217394,28 +275215,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105091] = 3, + [66313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, + ACTIONS(5410), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 30, + ACTIONS(5408), 29, anon_sym_DOT, 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, @@ -217436,32 +275255,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105135] = 3, + [66356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, + ACTIONS(5434), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 30, + ACTIONS(5432), 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, @@ -217477,64 +275295,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105179] = 3, + [66399] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4720), 5, - anon_sym_as, + ACTIONS(4590), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4593), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4718), 30, + ACTIONS(4587), 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(4585), 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, - [105223] = 3, + [66446] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, + ACTIONS(5414), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 30, + ACTIONS(5412), 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, @@ -217543,7 +275362,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, @@ -217559,27 +275377,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105267] = 3, + [66489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4815), 5, + ACTIONS(4496), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4813), 30, + ACTIONS(4485), 29, anon_sym_DOT, 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, @@ -217600,32 +275417,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105311] = 3, + [66532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(4841), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 30, + ACTIONS(4839), 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, @@ -217641,18 +275457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105355] = 3, + [66575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 5, + ACTIONS(5525), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4646), 30, - sym_string_start, + ACTIONS(5523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217682,24 +275497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105399] = 5, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + [66618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3905), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3910), 5, + ACTIONS(5529), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 27, + ACTIONS(5527), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -217707,6 +275518,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, @@ -217725,316 +275537,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105447] = 3, + [66661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, + ACTIONS(4612), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [105491] = 5, - ACTIONS(1474), 1, - sym_string_start, + ACTIONS(4610), 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, + [66704] = 21, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6003), 1, + anon_sym_api, + ACTIONS(6088), 1, + sym_identifier, + ACTIONS(6092), 1, + anon_sym_COLON, + ACTIONS(6094), 1, + anon_sym_class, + ACTIONS(6098), 1, + anon_sym_enum, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4721), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3910), 4, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(6096), 2, + anon_sym_struct, + anon_sym_union, + STATE(3444), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(113), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(6090), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [66783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4553), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [105539] = 3, + ACTIONS(4551), 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, + [66826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 5, + ACTIONS(4575), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [105583] = 3, + ACTIONS(4573), 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, + [66869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(4583), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3899), 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_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, - sym_type_conversion, - [105627] = 3, + ACTIONS(4581), 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, + [66912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4823), 5, + ACTIONS(4583), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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_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, - [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(4581), 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, + [66955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 5, + ACTIONS(4579), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4793), 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_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, - sym_type_conversion, - [105723] = 3, + ACTIONS(4577), 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, + [66998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4779), 5, + ACTIONS(4579), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [105767] = 3, + ACTIONS(4577), 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, + [67041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 5, + ACTIONS(4604), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4761), 30, + ACTIONS(4599), 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, @@ -218043,7 +275900,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, @@ -218059,23 +275915,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105811] = 3, + [67084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4407), 5, + ACTIONS(4560), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4393), 30, + ACTIONS(4555), 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, @@ -218084,7 +275940,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, @@ -218100,32 +275955,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105855] = 3, + [67127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4779), 5, + ACTIONS(5647), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4777), 30, + ACTIONS(5645), 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, @@ -218141,32 +275995,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105899] = 6, - ACTIONS(874), 1, - anon_sym_COLON_EQ, - ACTIONS(893), 1, - anon_sym_from, + [67170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(864), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(859), 5, + ACTIONS(5654), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 26, + ACTIONS(5652), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - 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, @@ -218185,32 +276035,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105949] = 4, - ACTIONS(4103), 1, - anon_sym_COMMA, + [67213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 5, + ACTIONS(5658), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 29, + ACTIONS(5656), 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_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, @@ -218226,90 +276075,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105995] = 20, - ACTIONS(4417), 1, - anon_sym_not, - 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(4532), 1, - anon_sym_PIPE, - ACTIONS(4534), 1, - anon_sym_AMP, - ACTIONS(4536), 1, - anon_sym_CARET, - ACTIONS(4538), 1, - anon_sym_is, - STATE(2706), 1, - aux_sym_comparison_operator_repeat1, + [67256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4520), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4530), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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(4528), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4393), 4, + ACTIONS(5358), 5, anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - 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, - [106073] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4847), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4845), 30, + ACTIONS(5356), 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, @@ -218325,34 +276115,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106117] = 4, + [67299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4062), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(4067), 5, + ACTIONS(4612), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4064), 27, + ACTIONS(4610), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -218368,31 +276155,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106163] = 3, + [67342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, + ACTIONS(5598), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 30, + ACTIONS(5596), 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, @@ -218408,64 +276195,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106207] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [67385] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(857), 29, + ACTIONS(1844), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1599), 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, - [106253] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + ACTIONS(1597), 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, + [67430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(4974), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(4964), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -218474,7 +276258,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, @@ -218493,31 +276276,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106299] = 3, + [67473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4775), 5, + ACTIONS(5610), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4773), 30, + ACTIONS(5608), 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, @@ -218533,32 +276316,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106343] = 3, + [67516] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, + ACTIONS(5077), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 30, + ACTIONS(5069), 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, @@ -218574,32 +276356,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106387] = 5, - STATE(2462), 1, - aux_sym_comparison_operator_repeat1, + [67559] = 6, + ACTIONS(5074), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2082), 2, - sym__not_in, - sym__is_not, - ACTIONS(4439), 4, - anon_sym_STAR, + ACTIONS(5079), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5077), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4437), 28, - anon_sym_DOT, + ACTIONS(5071), 4, anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5069), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -218609,7 +276391,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, @@ -218618,23 +276399,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106435] = 3, + [67608] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4847), 5, + ACTIONS(4568), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4571), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4845), 30, + ACTIONS(4566), 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, @@ -218643,7 +276425,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, @@ -218659,31 +276440,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106479] = 3, + [67653] = 21, + ACTIONS(1517), 1, + anon_sym_None, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(4932), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_STAR, + ACTIONS(4940), 1, + anon_sym_STAR_STAR, + ACTIONS(4942), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + sym_float, + ACTIONS(5784), 1, + sym_identifier, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4810), 1, + sym_string, + STATE(4964), 1, + sym_integer, + STATE(5195), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4835), 5, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6100), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6256), 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, + [67732] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4491), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4496), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4833), 30, + ACTIONS(4485), 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, @@ -218699,32 +276539,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106523] = 3, + [67777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4787), 5, + ACTIONS(5482), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4785), 30, + ACTIONS(5480), 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, @@ -218740,74 +276579,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106567] = 3, + [67820] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4823), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4821), 30, + ACTIONS(4587), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(4590), 13, + anon_sym_STAR, 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_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, - sym_type_conversion, - [106611] = 4, - ACTIONS(3905), 1, + ACTIONS(4585), 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, + [67865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(5095), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(5093), 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_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, @@ -218823,32 +276660,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106657] = 3, + [67908] = 21, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(5372), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_STAR, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(6102), 1, + sym_identifier, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, + sym_string, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4827), 5, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6104), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5433), 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, + [67987] = 21, + ACTIONS(1985), 1, + anon_sym_None, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(2001), 1, + sym_string_start, + ACTIONS(5372), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_STAR, + ACTIONS(5376), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, + anon_sym_DASH, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5390), 1, + sym_float, + ACTIONS(6102), 1, + sym_identifier, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5056), 1, + sym_string, + STATE(5298), 1, + sym_integer, + STATE(5345), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6106), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5309), 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, + [68066] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4553), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4825), 30, + ACTIONS(4551), 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, @@ -218864,19 +276816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106701] = 3, + [68109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, + ACTIONS(5517), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 30, - sym_string_start, + ACTIONS(5515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218906,32 +276856,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106745] = 4, - ACTIONS(4053), 1, - anon_sym_COMMA, + [68152] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 5, + ACTIONS(4601), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4604), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 29, + ACTIONS(4599), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -218947,28 +276897,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106791] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [68197] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, + ACTIONS(4585), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4590), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 29, + ACTIONS(4587), 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, @@ -218990,31 +276938,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106837] = 5, - ACTIONS(1474), 1, - sym_string_start, + [68242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2447), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4443), 4, + ACTIONS(5592), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4441), 28, + ACTIONS(5590), 29, 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, @@ -219033,22 +276978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106885] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + [68285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(4571), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(4566), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -219057,6 +276999,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, @@ -219075,17 +277018,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106931] = 3, + [68328] = 12, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5818), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5816), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 16, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4407), 5, + ACTIONS(4579), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4393), 30, + ACTIONS(4577), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219093,11 +277083,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -219116,17 +277105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106975] = 3, + [68430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 5, + ACTIONS(5414), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 30, + ACTIONS(5412), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219134,11 +277122,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -219157,17 +277144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107019] = 3, + [68472] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 5, + ACTIONS(4496), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4108), 30, + ACTIONS(4485), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219178,10 +277164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -219197,33 +277183,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107063] = 3, + [68514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, - anon_sym_as, + ACTIONS(4974), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 30, + ACTIONS(4964), 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, @@ -219239,32 +277222,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107107] = 3, + [68556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4775), 5, - anon_sym_as, + ACTIONS(5253), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4773), 30, + ACTIONS(5251), 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_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, @@ -219280,32 +277261,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107151] = 3, + [68598] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 5, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1602), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 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(1597), 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, + [68644] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4710), 30, + ACTIONS(981), 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, @@ -219321,35 +277341,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107195] = 7, - ACTIONS(4940), 1, - anon_sym_as, - ACTIONS(4942), 1, - anon_sym_if, - ACTIONS(4944), 1, + [68686] = 5, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(4946), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 5, + ACTIONS(5917), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4793), 26, + ACTIONS(5915), 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, @@ -219366,35 +277382,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107247] = 3, + [68732] = 4, + ACTIONS(6108), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 5, - anon_sym_as, + ACTIONS(5610), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4801), 30, + ACTIONS(5608), 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, + 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, @@ -219407,32 +277422,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107291] = 3, + [68776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, - anon_sym_as, + ACTIONS(5641), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 30, + ACTIONS(5639), 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, @@ -219448,31 +277461,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107335] = 5, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + [68818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3905), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(5582), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 27, + ACTIONS(5580), 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, @@ -219491,36 +277500,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107383] = 3, + [68860] = 7, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6112), 1, + anon_sym_as, + ACTIONS(6114), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 5, - anon_sym_as, + ACTIONS(5931), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 30, + ACTIONS(5927), 25, 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68910] = 7, + ACTIONS(6108), 1, anon_sym_and, + ACTIONS(6110), 1, anon_sym_or, + ACTIONS(6112), 1, + anon_sym_as, + ACTIONS(6114), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5949), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5947), 25, + 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_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -219532,32 +277586,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107427] = 3, + [68960] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(5434), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 30, + ACTIONS(5432), 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, @@ -219573,17 +277625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107471] = 3, + [69002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4783), 5, + ACTIONS(4841), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 30, + ACTIONS(4839), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219591,11 +277642,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -219614,21 +277664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107515] = 5, - ACTIONS(4948), 1, - sym_string_start, + [69044] = 4, + ACTIONS(6116), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2447), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4463), 4, + ACTIONS(5168), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4461), 28, + ACTIONS(5166), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -219657,32 +277704,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107563] = 3, + [69088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 5, - anon_sym_as, + ACTIONS(4571), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4108), 30, + ACTIONS(4566), 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, @@ -219698,68 +277743,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107607] = 3, + [69130] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, - anon_sym_as, + ACTIONS(4590), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4593), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 30, - sym_string_start, + ACTIONS(4587), 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(4585), 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, - [107651] = 3, + [69176] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, + ACTIONS(5176), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 30, + ACTIONS(5174), 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_else, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -219780,17 +277823,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107695] = 3, + [69218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4783), 5, + ACTIONS(5525), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 30, + ACTIONS(5523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219801,10 +277843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -219820,20 +277862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107739] = 4, - ACTIONS(4944), 1, - anon_sym_and, + [69260] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, + ACTIONS(5529), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 29, + ACTIONS(5527), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219841,16 +277879,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_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, @@ -219863,60 +277901,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107785] = 5, + [69302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 2, + ACTIONS(5647), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1366), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1576), 14, + ACTIONS(5645), 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(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, - sym_type_conversion, - [107833] = 3, + [69344] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 5, + ACTIONS(5654), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4112), 30, + ACTIONS(5652), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219927,10 +277960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -219946,61 +277979,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107877] = 5, + [69386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 2, + ACTIONS(5658), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1366), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1576), 14, + ACTIONS(5656), 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(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, - [107925] = 3, + [69428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4771), 5, + ACTIONS(5358), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4769), 30, + ACTIONS(5356), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220011,10 +278038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -220030,32 +278057,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107969] = 3, + [69470] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 5, + ACTIONS(983), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4093), 30, + ACTIONS(981), 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, @@ -220071,32 +278097,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108013] = 3, + [69514] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, + ACTIONS(4496), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 30, + ACTIONS(4485), 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, @@ -220112,59 +278137,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108057] = 3, + [69558] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, + ACTIONS(4590), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4593), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 30, + ACTIONS(4595), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(4585), 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(4587), 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_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, - [108101] = 3, + [69606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, + ACTIONS(5598), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 30, + ACTIONS(5596), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220175,10 +278199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -220194,18 +278218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108145] = 3, + [69648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, + ACTIONS(5610), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 30, + ACTIONS(5608), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220216,10 +278238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -220235,83 +278257,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - 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, + [69690] = 15, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5820), 1, + anon_sym_PIPE, + ACTIONS(5822), 1, + anon_sym_AMP, + ACTIONS(5824), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4957), 2, + ACTIONS(5697), 2, anon_sym_LT, anon_sym_GT, - STATE(2082), 2, - sym__not_in, - sym__is_not, - ACTIONS(4951), 6, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5818), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5816), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5695), 13, + anon_sym_as, + anon_sym_if, + anon_sym_else, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(4445), 20, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + [69756] = 7, + ACTIONS(6118), 1, anon_sym_as, - anon_sym_GT_GT, + ACTIONS(6120), 1, anon_sym_if, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(6122), 1, anon_sym_and, + ACTIONS(6124), 1, 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, + ACTIONS(5971), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 30, + ACTIONS(5967), 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_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, @@ -220323,61 +278351,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108289] = 5, + [69806] = 6, + ACTIONS(6122), 1, + anon_sym_and, + ACTIONS(6124), 1, + anon_sym_or, + ACTIONS(6126), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, + ACTIONS(5987), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4070), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4064), 14, + ACTIONS(5982), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_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, - 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, + [69854] = 5, + ACTIONS(6122), 1, + anon_sym_and, + ACTIONS(6124), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 5, + ACTIONS(5917), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 30, + ACTIONS(5915), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220386,16 +278415,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -220407,32 +278434,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108381] = 3, + [69900] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, + ACTIONS(1599), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 30, + ACTIONS(1844), 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, @@ -220448,32 +278474,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108425] = 3, + [69944] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 5, + ACTIONS(4590), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 30, + ACTIONS(4587), 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, @@ -220489,18 +278514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108469] = 3, + [69988] = 4, + ACTIONS(6122), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 5, + ACTIONS(5610), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 30, + ACTIONS(5608), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220508,7 +278533,6 @@ 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, @@ -220518,7 +278542,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, @@ -220531,39 +278554,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108513] = 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, + [70032] = 9, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5549), 1, + anon_sym_is, + STATE(2817), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2699), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4512), 4, + ACTIONS(5326), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5551), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 25, - anon_sym_COMMA, + STATE(2322), 2, + sym__not_in, + sym__is_not, + ACTIONS(5535), 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(5324), 18, + 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_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -220571,42 +278599,38 @@ 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, - [108567] = 3, + [70086] = 7, + ACTIONS(6118), 1, + anon_sym_as, + ACTIONS(6120), 1, + anon_sym_if, + ACTIONS(6122), 1, + anon_sym_and, + ACTIONS(6124), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 5, - anon_sym_as, + ACTIONS(5931), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4765), 30, + ACTIONS(5927), 25, 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_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, @@ -220618,27 +278642,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108611] = 3, + [70136] = 7, + ACTIONS(6118), 1, + anon_sym_as, + ACTIONS(6120), 1, + anon_sym_if, + ACTIONS(6122), 1, + anon_sym_and, + ACTIONS(6124), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, - anon_sym_as, + ACTIONS(5949), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 30, + ACTIONS(5947), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -220646,8 +278674,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, @@ -220659,34 +278685,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108655] = 8, - ACTIONS(4654), 1, + [70186] = 8, + ACTIONS(5293), 1, anon_sym_DOT, - ACTIONS(4656), 1, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(4664), 1, - anon_sym_STAR_STAR, - ACTIONS(4666), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2699), 2, + STATE(2926), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4504), 4, + ACTIONS(5662), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4502), 25, - anon_sym_COMMA, + ACTIONS(5660), 23, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -220705,37 +278729,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108709] = 3, + [70238] = 11, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4761), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5818), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5816), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 18, 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, @@ -220745,30 +278776,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108753] = 3, + [70296] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 5, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5662), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4761), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5660), 23, 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, @@ -220787,40 +278820,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108797] = 5, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + [70348] = 10, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4062), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4067), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4064), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5816), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 20, + 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, @@ -220830,103 +278866,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108845] = 3, + [70404] = 14, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, + anon_sym_AMP, + ACTIONS(5824), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5818), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5816), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 14, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108889] = 3, + [70468] = 13, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4779), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4777), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5818), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5816), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 15, + anon_sym_as, 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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108933] = 4, - ACTIONS(4080), 1, - anon_sym_COMMA, + [70530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 5, + ACTIONS(4583), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 29, + ACTIONS(4581), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -220934,10 +278985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -220953,33 +279004,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108979] = 3, + [70572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 5, - anon_sym_as, + ACTIONS(4579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 30, + 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, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -220995,32 +279043,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109023] = 3, + [70614] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 5, - anon_sym_as, + ACTIONS(1599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 30, + ACTIONS(1844), 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, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -221036,25 +279083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109067] = 3, + [70658] = 4, + ACTIONS(4498), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, - anon_sym_as, + ACTIONS(4590), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 30, + ACTIONS(4587), 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, @@ -221077,75 +279123,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109111] = 5, - ACTIONS(874), 1, + [70702] = 4, + ACTIONS(4498), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(864), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(859), 5, - anon_sym_as, + ACTIONS(4590), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [109159] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4739), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4737), 30, + ACTIONS(4587), 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, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -221161,27 +279163,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109203] = 3, + [70746] = 4, + ACTIONS(6129), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, + ACTIONS(5168), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 30, + ACTIONS(5166), 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, @@ -221202,25 +279203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109247] = 3, + [70790] = 4, + ACTIONS(998), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4783), 5, - anon_sym_as, + ACTIONS(1599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 30, + ACTIONS(1844), 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, @@ -221243,32 +279243,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109291] = 3, + [70834] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4823), 5, - anon_sym_as, + ACTIONS(4604), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4821), 30, + ACTIONS(4599), 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, @@ -221284,17 +279282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109335] = 3, + [70876] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4847), 5, + ACTIONS(4560), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4845), 30, + ACTIONS(4555), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221302,11 +279299,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -221325,60 +279321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109379] = 5, + [70918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, + ACTIONS(5095), 4, 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(4720), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 30, + ACTIONS(5093), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221386,11 +279338,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -221409,17 +279360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109471] = 3, + [70960] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(5517), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 30, + ACTIONS(5515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221427,11 +279377,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -221450,36 +279399,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109515] = 3, + [71002] = 7, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6112), 1, + anon_sym_as, + ACTIONS(6114), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 5, - anon_sym_as, + ACTIONS(5971), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4809), 30, + ACTIONS(5967), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -221491,31 +279442,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109559] = 5, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + [71052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(864), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(859), 5, - anon_sym_as, + ACTIONS(5450), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 27, + ACTIONS(5448), 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, @@ -221534,17 +279481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109607] = 3, + [71094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 5, + ACTIONS(5454), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4809), 30, + ACTIONS(5452), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221552,11 +279498,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -221575,17 +279520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109651] = 3, + [71136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 5, + ACTIONS(5458), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 30, + ACTIONS(5456), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221596,10 +279540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -221615,18 +279559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109695] = 3, + [71178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 5, + ACTIONS(5462), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 30, + ACTIONS(5460), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221637,10 +279579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -221656,18 +279598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109739] = 3, + [71220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, + ACTIONS(5555), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 30, + ACTIONS(5553), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221675,11 +279615,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -221698,17 +279637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109783] = 3, + [71262] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4775), 5, + ACTIONS(5569), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4773), 30, + ACTIONS(5567), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221716,11 +279654,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -221739,70 +279676,16 @@ static const uint16_t ts_small_parse_table[] = { 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(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, + [71304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4807), 5, + ACTIONS(5573), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4805), 30, + ACTIONS(5571), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221813,10 +279696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -221832,33 +279715,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109939] = 3, + [71346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 5, - anon_sym_as, + ACTIONS(5602), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 30, + ACTIONS(5600), 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, @@ -221874,29 +279754,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109983] = 3, + [71388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 5, - anon_sym_as, + ACTIONS(5559), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4112), 30, + ACTIONS(5557), 29, anon_sym_DOT, 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, @@ -221915,33 +279793,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110027] = 7, - ACTIONS(4940), 1, + [71430] = 7, + ACTIONS(6131), 1, anon_sym_as, - ACTIONS(4942), 1, + ACTIONS(6133), 1, anon_sym_if, - ACTIONS(4944), 1, + ACTIONS(6135), 1, anon_sym_and, - ACTIONS(4946), 1, + ACTIONS(6137), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 5, + ACTIONS(5971), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4837), 26, + ACTIONS(5967), 24, 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, @@ -221960,68 +279836,30 @@ static const uint16_t ts_small_parse_table[] = { 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_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, + [71480] = 6, + ACTIONS(6135), 1, anon_sym_and, + ACTIONS(6137), 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, - [110123] = 3, + ACTIONS(6139), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 5, + ACTIONS(5987), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4710), 30, + ACTIONS(5982), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -222029,8 +279867,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, @@ -222042,17 +279878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110167] = 3, + [71528] = 5, + ACTIONS(6135), 1, + anon_sym_and, + ACTIONS(6137), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 5, + ACTIONS(5917), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 30, + ACTIONS(5915), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222060,9 +279900,7 @@ 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, @@ -222070,8 +279908,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, @@ -222083,17 +279919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110211] = 3, + [71574] = 4, + ACTIONS(6135), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 5, + ACTIONS(5610), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4809), 30, + ACTIONS(5608), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222107,10 +279945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -222123,28 +279959,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110255] = 3, + [71618] = 7, + ACTIONS(6131), 1, + anon_sym_as, + ACTIONS(6133), 1, + anon_sym_if, + ACTIONS(6135), 1, + anon_sym_and, + ACTIONS(6137), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 5, + ACTIONS(5931), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4765), 30, + ACTIONS(5927), 24, 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, @@ -222152,8 +279991,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, @@ -222165,17 +280002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110299] = 3, + [71668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(5486), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 30, + ACTIONS(5484), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222183,11 +280019,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -222206,23 +280041,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110343] = 3, + [71710] = 7, + ACTIONS(6131), 1, + anon_sym_as, + ACTIONS(6133), 1, + anon_sym_if, + ACTIONS(6135), 1, + anon_sym_and, + ACTIONS(6137), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, + ACTIONS(5949), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 30, + ACTIONS(5947), 24, 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, @@ -222230,11 +280071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -222246,18 +280084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110387] = 3, + [71760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 5, + ACTIONS(5497), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4801), 30, + ACTIONS(5495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222265,11 +280101,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -222288,40 +280123,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [71802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4831), 5, + ACTIONS(5440), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4829), 26, + ACTIONS(5438), 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, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -222333,17 +280162,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110483] = 3, + [71844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4771), 5, + ACTIONS(5444), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4769), 30, + ACTIONS(5442), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222351,11 +280179,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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -222374,32 +280201,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110527] = 6, - ACTIONS(4944), 1, - anon_sym_and, - ACTIONS(4946), 1, - anon_sym_or, - ACTIONS(4960), 1, - anon_sym_as, + [71886] = 4, + ACTIONS(6142), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4746), 5, + ACTIONS(5095), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 27, + ACTIONS(5093), 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, @@ -222407,6 +280228,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, @@ -222418,36 +280241,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110577] = 3, + [71930] = 6, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6144), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4835), 5, - anon_sym_as, + ACTIONS(5987), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4833), 30, + ACTIONS(5982), 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, + 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, @@ -222459,39 +280283,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [71978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 5, + ACTIONS(5410), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4837), 26, + ACTIONS(5408), 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, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -222503,18 +280322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110673] = 3, + [72020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 5, + ACTIONS(4612), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4801), 30, + ACTIONS(4610), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222525,10 +280342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -222544,39 +280361,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110717] = 6, - ACTIONS(4936), 1, - anon_sym_and, - ACTIONS(4938), 1, - anon_sym_or, - ACTIONS(4963), 1, - anon_sym_as, + [72062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4746), 5, + ACTIONS(5482), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 27, + ACTIONS(5480), 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, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -222588,38 +280400,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110767] = 5, - ACTIONS(4936), 1, - anon_sym_and, - ACTIONS(4938), 1, - anon_sym_or, + [72104] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 5, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5691), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4789), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5689), 23, 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, @@ -222631,32 +280444,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110815] = 3, + [72156] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5687), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5685), 23, 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, @@ -222672,30 +280488,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110859] = 3, + [72208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 5, - anon_sym_as, + ACTIONS(4553), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4093), 30, + ACTIONS(4551), 29, anon_sym_DOT, 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, @@ -222714,21 +280527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110903] = 5, - ACTIONS(4944), 1, - anon_sym_and, - ACTIONS(4946), 1, - anon_sym_or, + [72250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 5, + ACTIONS(5592), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4789), 28, + ACTIONS(5590), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222736,16 +280544,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_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, anon_sym_AMP, @@ -222757,29 +280566,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110951] = 3, + [72292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, - anon_sym_as, + ACTIONS(4575), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 30, + ACTIONS(4573), 29, anon_sym_DOT, 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, @@ -222798,29 +280605,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110995] = 3, + [72334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, - anon_sym_as, + ACTIONS(4583), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 30, + ACTIONS(4581), 29, anon_sym_DOT, 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, @@ -222839,32 +280644,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111039] = 3, + [72376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4787), 5, - anon_sym_as, + ACTIONS(5077), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4785), 30, + ACTIONS(5069), 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, @@ -222880,26 +280683,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111083] = 3, + [72418] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6153), 1, + anon_sym_COLON, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6915), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 5, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72497] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6161), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6920), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72576] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5095), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4108), 30, + ACTIONS(5093), 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, @@ -222921,32 +280835,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111127] = 3, + [72617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4827), 5, - anon_sym_as, + ACTIONS(5517), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4825), 30, + ACTIONS(5515), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -222962,35 +280873,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111171] = 4, - ACTIONS(4936), 1, - anon_sym_and, + [72658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, + ACTIONS(5450), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 29, + ACTIONS(5448), 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, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -223003,35 +280911,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - 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, + [72699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2699), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 4, + ACTIONS(5454), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 25, + ACTIONS(5452), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -223050,46 +280949,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [72740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4658), 2, + ACTIONS(5458), 4, 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_LT, + anon_sym_GT, + ACTIONS(5456), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -223099,34 +280987,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [72781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2699), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 4, + ACTIONS(5462), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 25, + ACTIONS(5460), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -223145,45 +281025,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [72822] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4658), 2, + ACTIONS(5555), 4, 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_LT, + anon_sym_GT, + ACTIONS(5553), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -223193,184 +281063,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [72863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4658), 2, + ACTIONS(5569), 4, 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), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5567), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [72904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4658), 2, + ACTIONS(5573), 4, 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_LT, + anon_sym_GT, + ACTIONS(5571), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, 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, + [72945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4658), 2, + ACTIONS(5602), 4, 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), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5600), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111635] = 3, + [72986] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 5, + ACTIONS(5559), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4765), 30, + ACTIONS(5557), 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, @@ -223386,26 +281215,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [111679] = 3, + [73027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, - anon_sym_as, + ACTIONS(5486), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 29, + ACTIONS(5484), 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, @@ -223427,23 +281253,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111722] = 4, + [73068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, + ACTIONS(5497), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4966), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - ACTIONS(3899), 26, + ACTIONS(5495), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -223468,81 +281291,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [73109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4508), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4866), 2, + ACTIONS(5440), 4, 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_LT, + anon_sym_GT, + ACTIONS(5438), 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, - [111834] = 4, + [73150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4062), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4067), 5, - anon_sym_as, + ACTIONS(5444), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4064), 27, + ACTIONS(5442), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -223561,25 +281367,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111879] = 3, + [73191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 5, - anon_sym_as, + ACTIONS(4612), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 29, + ACTIONS(4610), 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, @@ -223601,89 +281405,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111922] = 21, - ACTIONS(381), 1, + [73232] = 22, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4968), 1, + ACTIONS(6147), 1, sym_identifier, - ACTIONS(4972), 1, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6163), 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, + STATE(4071), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3921), 1, - sym_maybe_typed_name, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6674), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(6159), 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, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 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, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 4, + ACTIONS(5410), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4837), 26, + ACTIONS(5408), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -223692,6 +281487,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, @@ -223703,30 +281500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112052] = 6, - ACTIONS(4986), 1, - anon_sym_and, - ACTIONS(4988), 1, - anon_sym_or, - ACTIONS(4990), 1, - anon_sym_as, + [73352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4746), 4, + ACTIONS(5414), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 27, + ACTIONS(5412), 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, @@ -223735,6 +281525,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, @@ -223746,29 +281538,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112101] = 5, - ACTIONS(4986), 1, - anon_sym_and, - ACTIONS(4988), 1, - anon_sym_or, + [73393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 5, - anon_sym_as, + ACTIONS(4496), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4789), 27, + ACTIONS(4485), 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, @@ -223777,6 +281563,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, @@ -223788,27 +281576,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112148] = 4, - ACTIONS(4986), 1, - anon_sym_and, + [73434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, - anon_sym_as, + ACTIONS(4974), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4714), 28, + ACTIONS(4964), 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, @@ -223817,6 +281601,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, @@ -223829,75 +281614,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [73475] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 4, + ACTIONS(4566), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4571), 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(4793), 26, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4506), 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, + [73518] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4485), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4496), 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_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, - [112244] = 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(4506), 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, + [73561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4831), 4, + ACTIONS(5482), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4829), 26, + ACTIONS(5480), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -223906,6 +281717,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, @@ -223917,82 +281730,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [73602] = 25, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6165), 1, + sym_identifier, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6169), 1, + anon_sym_RPAREN, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6177), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6179), 1, + anon_sym_operator, + STATE(4003), 1, + sym__signedness, + STATE(4022), 1, + sym_int_type, + STATE(4252), 1, + sym__longness, + STATE(4328), 1, + sym_function_pointer_type, + STATE(4449), 1, + sym_operator_name, + STATE(5624), 1, + sym_maybe_typed_name, + STATE(5661), 1, + sym_c_type, + STATE(6121), 1, + sym_type_index, + STATE(6620), 1, + sym__typedargslist, + STATE(6971), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6181), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5872), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [73687] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6183), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6636), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 4, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112346] = 6, - ACTIONS(4997), 1, - anon_sym_and, - ACTIONS(4999), 1, - anon_sym_or, - ACTIONS(5001), 1, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4746), 4, + ACTIONS(4553), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 27, + ACTIONS(4551), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -224004,37 +281885,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112395] = 5, - ACTIONS(4997), 1, - anon_sym_and, - ACTIONS(4999), 1, - anon_sym_or, + [73807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 5, - anon_sym_as, + ACTIONS(5592), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4789), 27, + ACTIONS(5590), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -224046,80 +281923,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112442] = 4, - ACTIONS(4997), 1, - anon_sym_and, + [73848] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4714), 28, + ACTIONS(4599), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4604), 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_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, - [112487] = 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(4606), 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, + [73891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 4, + ACTIONS(4575), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4793), 26, + ACTIONS(4573), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, + anon_sym_if, anon_sym_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, @@ -224131,39 +282000,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [73932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4831), 4, + ACTIONS(4583), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4829), 26, + ACTIONS(4581), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, + anon_sym_if, anon_sym_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, @@ -224175,25 +282038,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112589] = 3, + [73973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 5, - anon_sym_as, + ACTIONS(4583), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 29, + ACTIONS(4581), 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, @@ -224215,25 +282076,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112632] = 3, + [74014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 5, - anon_sym_as, + ACTIONS(4579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 29, + ACTIONS(4577), 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, @@ -224255,33 +282114,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112675] = 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, + [74055] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2825), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4470), 4, + ACTIONS(4579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4468), 24, + ACTIONS(4577), 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, @@ -224300,188 +282152,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [74096] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4866), 2, + ACTIONS(4590), 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, + ACTIONS(4593), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4585), 14, 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, - [112787] = 8, - ACTIONS(4862), 1, + ACTIONS(4587), 14, anon_sym_DOT, - ACTIONS(4864), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4874), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(4468), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112840] = 10, - ACTIONS(4862), 1, - anon_sym_DOT, - ACTIONS(4864), 1, + [74141] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, anon_sym_STAR_STAR, - ACTIONS(4874), 1, - anon_sym_LBRACK, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6185), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6944), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - 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_in, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112897] = 14, - 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(4882), 1, - anon_sym_AMP, - ACTIONS(4884), 1, - anon_sym_CARET, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [74220] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4866), 2, + ACTIONS(1599), 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), 15, + ACTIONS(1602), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 14, 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, @@ -224491,167 +282274,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112962] = 13, - ACTIONS(4862), 1, + ACTIONS(1844), 14, anon_sym_DOT, - ACTIONS(4864), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + anon_sym_GT_GT, 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(4470), 2, - anon_sym_LT, - anon_sym_GT, - 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_AT, anon_sym_DASH, + anon_sym_PIPE, 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_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, - [113025] = 12, - ACTIONS(4862), 1, - anon_sym_DOT, - ACTIONS(4864), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [74265] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, anon_sym_STAR_STAR, - ACTIONS(4874), 1, - anon_sym_LBRACK, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6187), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6736), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4470), 2, - anon_sym_LT, - anon_sym_GT, - 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_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, - [113086] = 3, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [74344] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4108), 29, + ACTIONS(4555), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4560), 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, - [113129] = 3, + ACTIONS(4562), 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, + [74387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 4, + ACTIONS(983), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 30, - sym_string_start, + ACTIONS(981), 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, @@ -224670,70 +282423,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113172] = 5, + [74428] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6189), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6759), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [74507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 2, + ACTIONS(4612), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1366), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1576), 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(1361), 15, + ACTIONS(4610), 19, + 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, - [113219] = 3, + 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, + [74548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, - anon_sym_as, + ACTIONS(5641), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 29, + ACTIONS(5639), 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, @@ -224752,28 +282556,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113262] = 3, + [74589] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 5, - anon_sym_as, + ACTIONS(5582), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4710), 29, + ACTIONS(5580), 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, @@ -224792,28 +282594,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113305] = 3, + [74630] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6191), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6784), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [74709] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4571), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 29, + ACTIONS(4566), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_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, @@ -224832,307 +282689,480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113348] = 3, + [74750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 4, + ACTIONS(4553), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4646), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - 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, - [113391] = 3, + ACTIONS(4551), 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, + [74791] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6193), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6996), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4407), 5, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [74870] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4583), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4393), 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, - [113434] = 4, + ACTIONS(4581), 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, + [74911] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4103), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4106), 5, - anon_sym_as, + ACTIONS(4583), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 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, - [113479] = 3, + ACTIONS(4581), 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, + [74952] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 5, - anon_sym_as, + ACTIONS(4579), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 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, - [113522] = 3, + ACTIONS(4577), 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, + [74993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, - anon_sym_as, + ACTIONS(4579), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4737), 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, - [113565] = 3, + ACTIONS(4577), 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, + [75034] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6195), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6721), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4710), 29, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75113] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1844), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1599), 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, - [113608] = 3, + ACTIONS(1597), 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, + [75156] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6197), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6848), 1, + sym_lambda_parameters, 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, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75235] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 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(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 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, - [113651] = 4, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6199), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6907), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3905), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(5434), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 27, + ACTIONS(5432), 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, @@ -225154,25 +283184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113696] = 3, + [75355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4407), 5, - anon_sym_as, + ACTIONS(4841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4393), 29, + ACTIONS(4839), 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, @@ -225194,431 +283222,731 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113739] = 4, + [75396] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6201), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6925), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4103), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4106), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [113784] = 4, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75475] = 7, + ACTIONS(4597), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3905), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(4590), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4593), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 27, + ACTIONS(4595), 3, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4585), 12, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113829] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(4051), 27, - anon_sym_DOT, + ACTIONS(4587), 12, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [113874] = 4, + [75524] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6203), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6607), 1, + sym_lambda_parameters, + STATE(6608), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(4051), 27, - anon_sym_DOT, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75603] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 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, - [113919] = 3, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6205), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6998), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4112), 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, - [113962] = 4, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75682] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(4064), 27, + ACTIONS(981), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(983), 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, - [114007] = 3, + ACTIONS(1014), 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, + [75725] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6207), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6727), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4771), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 29, - anon_sym_DOT, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75804] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 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, - [114050] = 4, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6209), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6779), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4080), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4083), 5, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75883] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4078), 27, - anon_sym_DOT, + ACTIONS(6211), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6804), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [75962] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 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, - [114095] = 3, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6213), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6834), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76041] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(857), 29, - anon_sym_DOT, + ACTIONS(6215), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6867), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76120] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 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(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 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, - [114138] = 3, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6217), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6889), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4823), 5, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76199] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4821), 29, - anon_sym_DOT, + ACTIONS(6219), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6923), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76278] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 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(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 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, - [114181] = 3, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6221), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6952), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 5, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4604), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4809), 29, + ACTIONS(4599), 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, @@ -225640,25 +283968,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114224] = 3, + [76398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4787), 5, - anon_sym_as, + ACTIONS(4560), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4785), 29, + ACTIONS(4555), 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, @@ -225680,112 +284006,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114267] = 5, + [76439] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6223), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6987), 1, + sym_lambda_parameters, 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, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76518] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - 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, - [114314] = 5, - ACTIONS(3920), 1, - anon_sym_from, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6225), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6601), 1, + sym_lambda_parameters, + STATE(6608), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4103), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4106), 4, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76597] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(6227), 1, anon_sym_COLON, - 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, - [114361] = 3, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6629), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 5, - anon_sym_as, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76676] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5525), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4093), 29, + ACTIONS(5523), 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, @@ -225804,28 +284215,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114404] = 3, + [76717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, - anon_sym_as, + ACTIONS(5529), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 29, + ACTIONS(5527), 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, @@ -225844,28 +284253,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114447] = 3, + [76758] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6229), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6643), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76837] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6231), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6712), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [76916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 5, - anon_sym_as, + ACTIONS(5647), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4074), 29, + ACTIONS(5645), 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, @@ -225884,28 +284405,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114490] = 3, + [76957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, - anon_sym_as, + ACTIONS(5654), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 29, + ACTIONS(5652), 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, @@ -225924,28 +284443,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114533] = 3, + [76998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 5, - anon_sym_as, + ACTIONS(5658), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4089), 29, + ACTIONS(5656), 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, @@ -225964,25 +284481,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114576] = 3, + [77039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4827), 5, - anon_sym_as, + ACTIONS(5358), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4825), 29, + ACTIONS(5356), 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, @@ -226004,28 +284519,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114619] = 5, - ACTIONS(3920), 1, - anon_sym_from, + [77080] = 7, + ACTIONS(6233), 1, + anon_sym_as, + ACTIONS(6235), 1, + anon_sym_if, + ACTIONS(6237), 1, + anon_sym_and, + ACTIONS(6239), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3905), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3910), 4, + ACTIONS(5971), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 27, + ACTIONS(5967), 24, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_by, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -226033,8 +284550,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, @@ -226046,26 +284561,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114666] = 4, + [77129] = 6, + ACTIONS(6237), 1, + anon_sym_and, + ACTIONS(6239), 1, + anon_sym_or, + ACTIONS(6241), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4080), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4083), 5, - anon_sym_as, + ACTIONS(5987), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 27, + ACTIONS(5982), 25, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -226074,8 +284591,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, @@ -226087,35 +284602,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114711] = 3, + [77176] = 5, + ACTIONS(6237), 1, + anon_sym_and, + ACTIONS(6239), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 5, - anon_sym_as, + ACTIONS(5917), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 29, + ACTIONS(5915), 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_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, @@ -226127,25 +284642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114754] = 3, + [77221] = 4, + ACTIONS(6237), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, - anon_sym_as, + ACTIONS(5610), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 29, + ACTIONS(5608), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -226154,7 +284669,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, @@ -226167,28 +284681,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114797] = 5, - ACTIONS(4058), 1, - anon_sym_from, + [77264] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6244), 1, + anon_sym_COLON, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6935), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4053), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4056), 4, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [77343] = 7, + ACTIONS(6233), 1, + anon_sym_as, + ACTIONS(6235), 1, + anon_sym_if, + ACTIONS(6237), 1, + anon_sym_and, + ACTIONS(6239), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5931), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 27, + ACTIONS(5927), 24, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_by, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -226196,8 +284769,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, @@ -226209,35 +284780,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114844] = 3, + [77392] = 7, + ACTIONS(6233), 1, + anon_sym_as, + ACTIONS(6235), 1, + anon_sym_if, + ACTIONS(6237), 1, + anon_sym_and, + ACTIONS(6239), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4823), 5, - anon_sym_as, + ACTIONS(5949), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4821), 29, + ACTIONS(5947), 24, 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, @@ -226249,97 +284822,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114887] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4101), 3, - anon_sym_DOT, + [77441] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4106), 13, + ACTIONS(6151), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(6155), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(6157), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3920), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6246), 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, - [114932] = 4, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6661), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3910), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3920), 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, - [114977] = 4, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [77520] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4051), 3, + ACTIONS(4587), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4056), 13, + ACTIONS(4590), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -226353,9 +284901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4058), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(4585), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -226372,28 +284918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [115022] = 5, - ACTIONS(4085), 1, - anon_sym_from, + [77563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4080), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4083), 4, + ACTIONS(5598), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 27, + ACTIONS(5596), 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_by, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -226414,28 +284956,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115069] = 3, + [77604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 5, - anon_sym_as, + ACTIONS(4590), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4809), 29, + ACTIONS(4587), 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, @@ -226454,69 +284994,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115112] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4078), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4083), 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(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, + [77645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 5, - anon_sym_as, + ACTIONS(5610), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 29, + ACTIONS(5608), 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, @@ -226535,28 +285032,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115200] = 3, + [77686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, - anon_sym_as, + ACTIONS(4590), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 29, + ACTIONS(4587), 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, @@ -226575,23 +285070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115243] = 5, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(4472), 1, - anon_sym_EQ, + [77727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, + ACTIONS(4590), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3899), 28, + ACTIONS(4587), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -226602,6 +285092,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, @@ -226617,25 +285108,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115290] = 3, + [77768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4807), 5, - anon_sym_as, + ACTIONS(5077), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4805), 29, + ACTIONS(5069), 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, @@ -226657,293 +285146,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115333] = 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), 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, - [115380] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 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(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, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [115423] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4114), 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(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(4095), 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(4093), 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, - [115509] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4076), 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(4074), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [77809] = 22, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 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, - [115552] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4076), 13, + ACTIONS(6151), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(6155), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(6157), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(4074), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6248), 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, - [115595] = 3, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6221), 1, + sym_tuple_pattern, + STATE(6608), 1, + sym__parameters, + STATE(6707), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 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(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, - [115638] = 3, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [77888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 13, + ACTIONS(4575), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -226957,9 +285221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4089), 21, - sym__newline, - anon_sym_SEMI, + ACTIONS(4573), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226979,35 +285241,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [115681] = 3, + [77929] = 7, + ACTIONS(6250), 1, + anon_sym_as, + ACTIONS(6252), 1, + anon_sym_if, + ACTIONS(6254), 1, + anon_sym_and, + ACTIONS(6256), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4783), 5, - anon_sym_as, + ACTIONS(5971), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 29, + ACTIONS(5967), 23, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + 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, @@ -227019,230 +285282,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115724] = 4, + [77977] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(6258), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - 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(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3420), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78049] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(6260), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4761), 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, - [115812] = 3, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3420), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78121] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(6262), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4779), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4777), 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, - [115855] = 6, - ACTIONS(4575), 1, - anon_sym_STAR, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3420), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78193] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(6264), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 2, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4578), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [115904] = 4, + STATE(3418), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78265] = 19, + ACTIONS(6266), 1, + sym_identifier, + ACTIONS(6275), 1, + anon_sym_operator, + ACTIONS(6284), 1, + anon_sym_long, + ACTIONS(6290), 1, + anon_sym_ctypedef, + ACTIONS(6293), 1, + anon_sym_cppclass, + ACTIONS(6296), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4064), 3, - anon_sym_DOT, + ACTIONS(6278), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6281), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6287), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6272), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3420), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(6269), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78337] = 21, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6298), 1, + sym_identifier, + ACTIONS(6300), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4067), 13, + ACTIONS(6302), 1, + anon_sym_RPAREN, + ACTIONS(6304), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(6308), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - 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, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5263), 1, + sym_c_type, + STATE(5998), 1, + sym_tuple_pattern, + STATE(6111), 1, + sym_parameter, + STATE(6664), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6113), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6365), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [78413] = 6, + ACTIONS(6254), 1, + anon_sym_and, + ACTIONS(6256), 1, + anon_sym_or, + ACTIONS(6310), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4783), 5, - anon_sym_as, + ACTIONS(5987), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 29, + ACTIONS(5982), 24, 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -227251,8 +285631,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, @@ -227264,35 +285642,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115992] = 3, + [78459] = 5, + ACTIONS(6254), 1, + anon_sym_and, + ACTIONS(6256), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 5, - anon_sym_as, + ACTIONS(5917), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 29, + ACTIONS(5915), 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_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, @@ -227304,34 +285681,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116035] = 3, + [78503] = 4, + ACTIONS(6254), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 5, - anon_sym_as, + ACTIONS(5610), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4078), 29, + ACTIONS(5608), 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_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, @@ -227344,35 +285719,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116078] = 3, + [78545] = 7, + ACTIONS(6250), 1, + anon_sym_as, + ACTIONS(6252), 1, + anon_sym_if, + ACTIONS(6254), 1, + anon_sym_and, + ACTIONS(6256), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4847), 5, - anon_sym_as, + ACTIONS(5931), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4845), 29, + ACTIONS(5927), 23, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + 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, @@ -227384,75 +285760,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116121] = 3, + [78593] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(6313), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3428), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78665] = 7, + ACTIONS(6250), 1, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4849), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(6252), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, + ACTIONS(6254), 1, anon_sym_and, + ACTIONS(6256), 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, - [116164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4775), 5, - anon_sym_as, + ACTIONS(5949), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4773), 29, + ACTIONS(5947), 23, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + 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, @@ -227464,8329 +285854,8144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116207] = 4, + [78713] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(6315), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(857), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(859), 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(893), 18, - sym__newline, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3420), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78785] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(6317), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3416), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78857] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4797), 1, + anon_sym_ctypedef, + ACTIONS(4803), 1, + anon_sym_cppclass, + ACTIONS(6319), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3954), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3417), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [78929] = 4, + ACTIONS(6321), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2949), 4, + sym__dedent, + sym_string_start, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_LPAREN, + ACTIONS(2947), 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, + [78970] = 4, + ACTIONS(6323), 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, - [116252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4650), 29, - anon_sym_DOT, + ACTIONS(2893), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [116295] = 3, + ACTIONS(2891), 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, + [79011] = 4, + ACTIONS(6325), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4801), 29, - anon_sym_DOT, + ACTIONS(2989), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, + ACTIONS(2987), 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, + [79052] = 22, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(6327), 1, + sym_identifier, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6331), 1, + anon_sym_COLON, + ACTIONS(6333), 1, 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, - [116338] = 3, + ACTIONS(6343), 1, + anon_sym_long, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5334), 1, + sym_c_type, + STATE(5855), 1, + sym_memory_view_index, + STATE(5964), 1, + sym_template_param, + STATE(6983), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 5, - anon_sym_as, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6335), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [79129] = 20, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6298), 1, + sym_identifier, + ACTIONS(6300), 1, + anon_sym_LPAREN, + ACTIONS(6304), 1, anon_sym_STAR, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4714), 29, - anon_sym_DOT, + ACTIONS(6347), 1, + anon_sym_RPAREN, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5263), 1, + sym_c_type, + STATE(5998), 1, + sym_tuple_pattern, + STATE(6341), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6113), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6365), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [79202] = 4, + ACTIONS(6349), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3039), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [116381] = 3, + ACTIONS(3041), 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, + [79243] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6351), 1, + anon_sym_COLON, + ACTIONS(6353), 1, + anon_sym_namespace, + ACTIONS(6355), 1, + anon_sym_nogil, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4713), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4570), 29, - anon_sym_DOT, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1317), 2, + sym_class_definition, + sym_cvar_def, + STATE(3947), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [79316] = 4, + ACTIONS(6357), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2915), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [116424] = 3, + ACTIONS(2913), 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, + [79357] = 20, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6359), 1, + anon_sym_COLON, + ACTIONS(6361), 1, + anon_sym_namespace, + ACTIONS(6363), 1, + anon_sym_nogil, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4744), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4761), 29, - anon_sym_DOT, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3467), 2, + sym_class_definition, + sym_cvar_def, + STATE(3944), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [79430] = 20, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(6365), 1, + anon_sym_COLON, + ACTIONS(6367), 1, + anon_sym_namespace, + ACTIONS(6369), 1, + anon_sym_nogil, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3893), 2, + sym_class_definition, + sym_cvar_def, + STATE(3942), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [79503] = 4, + ACTIONS(6371), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [116467] = 3, + ACTIONS(2855), 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, + [79544] = 4, + ACTIONS(6373), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4779), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4777), 29, - anon_sym_DOT, + ACTIONS(2851), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(2849), 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, + [79585] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2921), 5, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2919), 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, + [79624] = 5, + ACTIONS(6377), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3444), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6379), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(6375), 22, + anon_sym_print, + anon_sym_match, 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, - [116510] = 3, + 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, + [79667] = 20, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6382), 1, + anon_sym_COLON, + ACTIONS(6384), 1, + anon_sym_namespace, + ACTIONS(6386), 1, + anon_sym_nogil, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4718), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 5, - anon_sym_as, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2001), 2, + sym_class_definition, + sym_cvar_def, + STATE(3945), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [79740] = 20, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6298), 1, + sym_identifier, + ACTIONS(6300), 1, + anon_sym_LPAREN, + ACTIONS(6304), 1, anon_sym_STAR, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4703), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(6388), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [116553] = 3, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5263), 1, + sym_c_type, + STATE(5998), 1, + sym_tuple_pattern, + STATE(6341), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6113), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6365), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [79813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4843), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(6390), 12, + anon_sym_print, + anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_exec, + anon_sym_None, + aux_sym_integer_token4, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_sizeof, + ACTIONS(6392), 18, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [116596] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4771), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_TILDE, anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 29, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, + anon_sym_0x, + anon_sym_0X, + anon_sym_0o, + anon_sym_0O, + anon_sym_0b, + anon_sym_0B, + sym_float, + [79852] = 20, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6149), 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(6151), 1, + anon_sym_STAR, + ACTIONS(6155), 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, - [116639] = 7, - ACTIONS(4099), 1, - anon_sym_EQ, + ACTIONS(6157), 1, + anon_sym_SLASH, + ACTIONS(6388), 1, + anon_sym_COLON, + ACTIONS(6394), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6205), 1, + sym_tuple_pattern, + STATE(6590), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [79925] = 20, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6149), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, anon_sym_STAR, + ACTIONS(6155), 1, + anon_sym_STAR_STAR, + ACTIONS(6157), 1, anon_sym_SLASH, - ACTIONS(4070), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4097), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(6347), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4062), 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(4064), 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, - [116690] = 3, + ACTIONS(6394), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5280), 1, + sym_c_type, + STATE(6205), 1, + sym_tuple_pattern, + STATE(6590), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4847), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4845), 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, - [116733] = 3, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6159), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4577), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6503), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6502), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [79998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4835), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4833), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(6396), 12, + anon_sym_print, + anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_exec, + anon_sym_None, + aux_sym_integer_token4, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_sizeof, + ACTIONS(6398), 18, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [116776] = 3, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_0x, + anon_sym_0X, + anon_sym_0o, + anon_sym_0O, + anon_sym_0b, + anon_sym_0B, + sym_float, + [80037] = 4, + ACTIONS(6400), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4849), 29, - anon_sym_DOT, + ACTIONS(2955), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [116819] = 3, + ACTIONS(2953), 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, + [80078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4835), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4833), 29, - anon_sym_DOT, + ACTIONS(2961), 5, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [116862] = 3, + anon_sym_COLON, + ACTIONS(2959), 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, + [80117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4787), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4785), 29, - anon_sym_DOT, + ACTIONS(2664), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [116905] = 21, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4976), 1, - anon_sym_api, - ACTIONS(5004), 1, + ACTIONS(2666), 25, + anon_sym_class, sym_identifier, - ACTIONS(5008), 1, - anon_sym_COLON, - ACTIONS(5010), 1, + 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, + [80155] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3861), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3859), 25, anon_sym_class, - ACTIONS(5014), 1, + 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, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3936), 1, - sym_maybe_typed_name, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [80193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(3247), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3249), 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(5012), 2, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [80231] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3251), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3253), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 4, + 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, - ACTIONS(5006), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [116984] = 3, + [80269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4775), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4773), 29, - anon_sym_DOT, + ACTIONS(3261), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117027] = 3, + ACTIONS(3263), 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, + [80307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4827), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4825), 29, - anon_sym_DOT, + ACTIONS(3265), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117070] = 3, + ACTIONS(3267), 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, + [80345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4733), 29, - anon_sym_DOT, + ACTIONS(3309), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117113] = 3, + ACTIONS(3311), 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, + [80383] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6402), 1, + anon_sym_COLON, + ACTIONS(6404), 1, + anon_sym_nogil, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4744), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4817), 29, - anon_sym_DOT, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3634), 2, + sym_class_definition, + sym_cvar_def, + STATE(3944), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [80453] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117156] = 3, + ACTIONS(3279), 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, + [80491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4815), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4813), 29, - anon_sym_DOT, + ACTIONS(3701), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117199] = 3, + ACTIONS(3703), 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, + [80529] = 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, - anon_sym_DOT, + ACTIONS(3865), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117242] = 3, + ACTIONS(3863), 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, + [80567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4807), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 29, - anon_sym_DOT, + ACTIONS(3869), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117285] = 3, + ACTIONS(3867), 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, + [80605] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4650), 29, - anon_sym_DOT, + ACTIONS(3533), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117328] = 3, + ACTIONS(3535), 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, + [80643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4843), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 29, - anon_sym_DOT, + ACTIONS(3851), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117371] = 3, + ACTIONS(3853), 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, + [80681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4703), 29, - anon_sym_DOT, + ACTIONS(3395), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117414] = 6, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, - ACTIONS(4021), 1, - anon_sym_LBRACK, - STATE(4628), 1, - sym_type_parameter, + ACTIONS(3397), 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, + [80719] = 3, 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), 25, - anon_sym_DOT, + ACTIONS(3873), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as, - 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117463] = 3, + ACTIONS(3871), 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, + [80757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4815), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4813), 29, - anon_sym_DOT, + ACTIONS(3285), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117506] = 3, + ACTIONS(3287), 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, + [80795] = 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, - anon_sym_DOT, + ACTIONS(3537), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117549] = 5, + ACTIONS(3539), 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, + [80833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1366), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1576), 14, - anon_sym_DOT, + ACTIONS(3541), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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(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(3543), 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, + [80871] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6406), 1, + anon_sym_class, + ACTIONS(6408), 1, + anon_sym_ctypedef, + ACTIONS(6412), 1, + anon_sym_enum, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4785), 1, + sym_maybe_typed_name, 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, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117641] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(6410), 2, + anon_sym_struct, + anon_sym_union, + STATE(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [80941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3899), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117686] = 8, - ACTIONS(4862), 1, - anon_sym_DOT, - ACTIONS(4864), 1, + ACTIONS(3545), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_STAR_STAR, - ACTIONS(4874), 1, - anon_sym_LBRACK, + ACTIONS(3547), 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, + [80979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(4510), 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, - 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, + ACTIONS(2654), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_STAR_STAR, - ACTIONS(4874), 1, - anon_sym_LBRACK, + ACTIONS(2652), 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, + [81017] = 3, 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, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117792] = 3, + ACTIONS(3289), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3291), 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, + [81055] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4720), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 29, - anon_sym_DOT, + ACTIONS(3549), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117835] = 3, + ACTIONS(3551), 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, + [81093] = 19, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_from, + ACTIONS(6416), 1, + anon_sym_COLON, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4713), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4801), 29, - anon_sym_DOT, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1180), 2, + sym_class_definition, + sym_cvar_def, + STATE(3947), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [81163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3553), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117878] = 3, + ACTIONS(3555), 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, + [81201] = 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(4725), 29, - anon_sym_DOT, + ACTIONS(3557), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117921] = 3, + ACTIONS(3559), 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, + [81239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4720), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 29, - anon_sym_DOT, + ACTIONS(3561), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [117964] = 3, + ACTIONS(3563), 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, + [81277] = 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(4725), 29, - anon_sym_DOT, + ACTIONS(3565), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118007] = 3, + ACTIONS(3567), 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, + [81315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4570), 29, - anon_sym_DOT, + ACTIONS(3569), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118050] = 5, - ACTIONS(874), 1, - anon_sym_COLON_EQ, - ACTIONS(2509), 1, - anon_sym_EQ, + ACTIONS(3571), 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, + [81353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(857), 28, - anon_sym_DOT, + ACTIONS(3573), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118097] = 3, + ACTIONS(3575), 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, + [81391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 29, - anon_sym_DOT, + ACTIONS(3533), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118140] = 3, + ACTIONS(3535), 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, + [81429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4078), 29, - anon_sym_DOT, + ACTIONS(3577), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118182] = 3, + ACTIONS(3579), 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, + [81467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4108), 29, - anon_sym_DOT, + ACTIONS(3581), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(3583), 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, + [81505] = 19, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6418), 1, 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, - [118224] = 3, + ACTIONS(6420), 1, + anon_sym_nogil, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4713), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 4, - anon_sym_STAR, - anon_sym_SLASH, - 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_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, - [118266] = 3, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1181), 2, + sym_class_definition, + sym_cvar_def, + STATE(3947), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [81575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 29, - anon_sym_DOT, + ACTIONS(3877), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118308] = 3, + ACTIONS(3875), 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, + [81613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4112), 29, - anon_sym_DOT, + ACTIONS(3585), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118350] = 3, + ACTIONS(3587), 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, + [81651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4771), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 29, - anon_sym_DOT, + ACTIONS(3593), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118392] = 3, + ACTIONS(3595), 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, + [81689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4710), 29, - anon_sym_DOT, + ACTIONS(2658), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118434] = 3, + ACTIONS(2656), 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, + [81727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4093), 29, - anon_sym_DOT, + ACTIONS(3597), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118476] = 3, + ACTIONS(3599), 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, + [81765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3899), 29, - anon_sym_DOT, + ACTIONS(3399), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118518] = 3, + ACTIONS(3401), 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, + [81803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4407), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4393), 29, - anon_sym_DOT, + ACTIONS(3609), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118560] = 3, + ACTIONS(3611), 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, + [81841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4074), 29, - anon_sym_DOT, + ACTIONS(3613), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118602] = 3, + ACTIONS(3615), 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, + [81879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4074), 29, - anon_sym_DOT, + ACTIONS(3617), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118644] = 3, + ACTIONS(3619), 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, + [81917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4610), 29, + ACTIONS(3621), 4, + sym__dedent, sym_string_start, - anon_sym_DOT, + anon_sym_SEMI, 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, - [118686] = 5, + ACTIONS(3623), 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, + [81955] = 3, 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(1576), 14, - anon_sym_DOT, + ACTIONS(3625), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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(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, - [118732] = 3, + ACTIONS(3627), 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, + [81993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4089), 29, - anon_sym_DOT, + ACTIONS(3633), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118774] = 3, + ACTIONS(3635), 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, + [82031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4089), 29, - anon_sym_DOT, + ACTIONS(3637), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118816] = 3, + ACTIONS(3639), 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, + [82069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(857), 29, - anon_sym_DOT, + ACTIONS(3641), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118858] = 3, + ACTIONS(3643), 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, + [82107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4823), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4821), 29, - anon_sym_DOT, + ACTIONS(2670), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118900] = 3, + ACTIONS(2668), 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, + [82145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4809), 29, - anon_sym_DOT, + ACTIONS(3709), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [118942] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + ACTIONS(3711), 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, + [82183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1576), 28, - anon_sym_DOT, + ACTIONS(3645), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118986] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + ACTIONS(3647), 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, + [82221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4064), 28, - anon_sym_DOT, + ACTIONS(3403), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119030] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + ACTIONS(3405), 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, + [82259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(857), 28, - anon_sym_DOT, + ACTIONS(3297), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119074] = 3, + ACTIONS(3299), 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, + [82297] = 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), 29, - anon_sym_DOT, + ACTIONS(2662), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119116] = 3, + ACTIONS(2660), 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, + [82335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4646), 29, + ACTIONS(3649), 4, + sym__dedent, sym_string_start, - anon_sym_DOT, + anon_sym_SEMI, 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, - [119158] = 3, + ACTIONS(3651), 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, + [82373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4761), 29, - anon_sym_DOT, + ACTIONS(3301), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(3303), 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, + [82411] = 21, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6331), 1, anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + ACTIONS(6424), 1, 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, - [119200] = 3, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5476), 1, + sym_c_type, + STATE(6228), 1, + sym_memory_view_index, + STATE(6803), 1, + sym_integer, 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), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119242] = 5, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6335), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [82485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4070), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4064), 14, - anon_sym_DOT, + ACTIONS(3305), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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), 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, - [119288] = 3, + ACTIONS(3307), 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, + [82523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4847), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4845), 29, - anon_sym_DOT, + ACTIONS(3313), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119330] = 3, + ACTIONS(3315), 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, + [82561] = 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(4051), 29, - anon_sym_DOT, + ACTIONS(3957), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119372] = 9, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4538), 1, - anon_sym_is, - STATE(2178), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3959), 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, + [82599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4439), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4540), 2, - anon_sym_LT, - anon_sym_GT, - 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, + ACTIONS(3131), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [119426] = 3, + ACTIONS(3133), 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, + [82637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4775), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4773), 29, - anon_sym_DOT, + ACTIONS(3317), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119468] = 3, + ACTIONS(3319), 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, + [82675] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4801), 29, - anon_sym_DOT, + ACTIONS(3135), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119510] = 3, + ACTIONS(3137), 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, + [82713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4714), 29, - anon_sym_DOT, + ACTIONS(3943), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119552] = 3, + ACTIONS(3945), 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, + [82751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4570), 29, - anon_sym_DOT, + ACTIONS(3953), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119594] = 6, + ACTIONS(3955), 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, + [82789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4070), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4097), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(4062), 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(4064), 12, + ACTIONS(3321), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [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(3323), 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, + [82827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4837), 25, - anon_sym_DOT, + ACTIONS(3325), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119692] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + ACTIONS(3327), 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, + [82865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1576), 28, - anon_sym_DOT, + ACTIONS(3407), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [119736] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + ACTIONS(3409), 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, + [82903] = 21, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6331), 1, + anon_sym_COLON, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + ACTIONS(6426), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5466), 1, + sym_c_type, + STATE(5873), 1, + sym_memory_view_index, + STATE(6859), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [119780] = 6, - ACTIONS(5020), 1, - anon_sym_and, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5024), 1, - anon_sym_as, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6335), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [82977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4746), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4741), 26, - anon_sym_DOT, + ACTIONS(3329), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_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, - [119828] = 5, - ACTIONS(5020), 1, - anon_sym_and, - ACTIONS(5022), 1, - anon_sym_or, + ACTIONS(3331), 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, + [83015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4789), 27, - anon_sym_DOT, + ACTIONS(3333), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119874] = 4, - ACTIONS(874), 1, - anon_sym_COLON_EQ, + ACTIONS(3335), 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, + [83053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1576), 28, - anon_sym_DOT, + ACTIONS(3653), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119918] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + ACTIONS(3655), 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, + [83091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4064), 28, - anon_sym_DOT, + ACTIONS(3657), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119962] = 4, - ACTIONS(5020), 1, - anon_sym_and, + ACTIONS(3659), 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, + [83129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4714), 28, - anon_sym_DOT, + ACTIONS(3411), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [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(3413), 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, + [83167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4793), 25, - anon_sym_DOT, + ACTIONS(3661), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [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(3663), 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, + [83205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4831), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4829), 25, - anon_sym_DOT, + ACTIONS(3665), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [120106] = 4, - ACTIONS(3912), 1, - anon_sym_COLON_EQ, + ACTIONS(3667), 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, + [83243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3899), 28, - anon_sym_DOT, + ACTIONS(3669), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120150] = 3, + ACTIONS(3671), 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, + [83281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4835), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4833), 29, - anon_sym_DOT, + ACTIONS(3673), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120192] = 3, + ACTIONS(3675), 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, + [83319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4787), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4785), 29, - anon_sym_DOT, + ACTIONS(3677), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120234] = 3, + ACTIONS(3679), 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, + [83357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4827), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4825), 29, - anon_sym_DOT, + ACTIONS(3681), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120276] = 3, + ACTIONS(3683), 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, + [83395] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4733), 29, - anon_sym_DOT, + ACTIONS(3685), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120318] = 3, + ACTIONS(3687), 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, + [83433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4817), 29, - anon_sym_DOT, + ACTIONS(3689), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120360] = 3, + ACTIONS(3691), 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, + [83471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4807), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 29, - anon_sym_DOT, + ACTIONS(3337), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120402] = 3, + ACTIONS(3339), 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, + [83509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4650), 29, - anon_sym_DOT, + ACTIONS(3693), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120444] = 3, + ACTIONS(3695), 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, + [83547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4843), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 29, - anon_sym_DOT, + ACTIONS(3697), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120486] = 3, + ACTIONS(3699), 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, + [83585] = 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), 29, - anon_sym_DOT, + ACTIONS(3705), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120528] = 3, + ACTIONS(3707), 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, + [83623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4815), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4813), 29, - anon_sym_DOT, + ACTIONS(3717), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120570] = 3, + ACTIONS(3719), 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, + [83661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4729), 29, - anon_sym_DOT, + ACTIONS(3721), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(3723), 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, + [83699] = 21, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6331), 1, anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + ACTIONS(6428), 1, 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, - [120612] = 3, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5518), 1, + sym_c_type, + STATE(5905), 1, + sym_memory_view_index, + STATE(6769), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4720), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [120654] = 3, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6335), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [83773] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4725), 29, - anon_sym_DOT, + ACTIONS(3725), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120696] = 3, + ACTIONS(3727), 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, + [83811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 29, - anon_sym_DOT, + ACTIONS(3733), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120738] = 3, + ACTIONS(3735), 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, + [83849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4849), 29, - anon_sym_DOT, + ACTIONS(3737), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120780] = 4, + ACTIONS(3739), 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, + [83887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4078), 3, - anon_sym_DOT, + ACTIONS(3741), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4083), 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(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, + ACTIONS(3743), 25, + anon_sym_class, sym_identifier, - ACTIONS(5029), 1, - anon_sym_LPAREN, - ACTIONS(5031), 1, - anon_sym_STAR, - ACTIONS(5033), 1, - anon_sym_COLON, - ACTIONS(5035), 1, - anon_sym_STAR_STAR, - ACTIONS(5037), 1, - anon_sym_SLASH, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5879), 1, - sym_lambda_parameters, + 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, + [83925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3745), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3747), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [83963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3749), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3751), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [120902] = 3, + 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, + [84001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4815), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4813), 28, - anon_sym_DOT, + ACTIONS(3753), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120943] = 3, + ACTIONS(3755), 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, + [84039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4729), 28, - anon_sym_DOT, + ACTIONS(3757), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [120984] = 4, + ACTIONS(3759), 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, + [84077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1576), 3, - anon_sym_DOT, + ACTIONS(3761), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - 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(3763), 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, + [84115] = 3, 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(1361), 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(1576), 14, - anon_sym_DOT, + ACTIONS(3341), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121072] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3343), 25, + anon_sym_class, 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5866), 1, - sym_lambda_parameters, + 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, + [84153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3345), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3347), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [84191] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3317), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3319), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 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, + 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, + [84229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4837), 24, - anon_sym_DOT, + ACTIONS(3349), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [121200] = 6, - ACTIONS(5047), 1, - anon_sym_and, - ACTIONS(5049), 1, - anon_sym_or, - ACTIONS(5051), 1, - anon_sym_as, + ACTIONS(3351), 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, + [84267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4746), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4741), 25, - anon_sym_DOT, + ACTIONS(3353), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [121247] = 5, - ACTIONS(5047), 1, - anon_sym_and, - ACTIONS(5049), 1, - anon_sym_or, + ACTIONS(3355), 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, + [84305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4789), 26, - anon_sym_DOT, + ACTIONS(3325), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [121292] = 4, - ACTIONS(5047), 1, - anon_sym_and, + ACTIONS(3327), 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, + [84343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4714), 27, - anon_sym_DOT, + ACTIONS(3201), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [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(3203), 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, + [84381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4793), 24, - anon_sym_DOT, + ACTIONS(3281), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [121384] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3283), 25, + anon_sym_class, 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5815), 1, - sym_lambda_parameters, + 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, + [84419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3881), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3879), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [84457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3769), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3771), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 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, + 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, + [84495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4831), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4829), 24, - anon_sym_DOT, + ACTIONS(3899), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [121512] = 3, + ACTIONS(3901), 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, + [84533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4801), 28, - anon_sym_DOT, + ACTIONS(3773), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121553] = 3, + ACTIONS(3775), 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, + [84571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4714), 28, - anon_sym_DOT, + ACTIONS(3777), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121594] = 3, + ACTIONS(3779), 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, + [84609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4108), 28, - anon_sym_DOT, + ACTIONS(3961), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121635] = 3, + ACTIONS(3963), 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, + [84647] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4570), 28, - anon_sym_DOT, + ACTIONS(3785), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121676] = 3, + ACTIONS(3787), 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, + [84685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4787), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4785), 28, - anon_sym_DOT, + ACTIONS(3357), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121717] = 4, + ACTIONS(3359), 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, + [84723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4064), 3, - anon_sym_DOT, + ACTIONS(2662), 3, + sym__dedent, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4067), 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(4062), 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, - [121760] = 21, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(5056), 1, + ACTIONS(2660), 26, + anon_sym_case, + anon_sym_class, sym_identifier, - ACTIONS(5058), 1, - anon_sym_LPAREN, - ACTIONS(5060), 1, - anon_sym_STAR, - ACTIONS(5062), 1, - anon_sym_if, - ACTIONS(5064), 1, - anon_sym_COLON, - 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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4679), 1, - sym_case_pattern, - STATE(5800), 1, - sym_if_clause, + 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, + [84761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4761), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5072), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4271), 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(3083), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3081), 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, + [84799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4827), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4825), 28, - anon_sym_DOT, + ACTIONS(3333), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121878] = 3, + ACTIONS(3335), 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, + [84837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 28, - anon_sym_DOT, + ACTIONS(3933), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121919] = 3, + ACTIONS(3935), 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, + [84875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4064), 28, - anon_sym_DOT, + ACTIONS(3121), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [121960] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3119), 25, + anon_sym_class, 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5661), 1, - sym_lambda_parameters, + 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, + [84913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3789), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3791), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [84951] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3885), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3883), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122039] = 3, + 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, + [84989] = 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(4051), 28, - anon_sym_DOT, + ACTIONS(3423), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [122080] = 3, + ACTIONS(3425), 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, + [85027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4849), 28, - anon_sym_DOT, + ACTIONS(3089), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [122121] = 3, + ACTIONS(3091), 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, + [85065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4078), 28, - anon_sym_DOT, + ACTIONS(3889), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [122162] = 3, + ACTIONS(3887), 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, + [85103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4775), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4773), 28, - anon_sym_DOT, + ACTIONS(3361), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [122203] = 3, + ACTIONS(3363), 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, + [85141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4064), 28, - anon_sym_DOT, + ACTIONS(3893), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [122244] = 3, + ACTIONS(3891), 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, + [85179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4064), 28, - anon_sym_DOT, + ACTIONS(3793), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [122285] = 3, + ACTIONS(3795), 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, + [85217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4720), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 28, - anon_sym_DOT, + ACTIONS(3139), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [122326] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3141), 25, + anon_sym_class, 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5781), 1, - sym_lambda_parameters, + 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, + [85255] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3797), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3799), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [85293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3365), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3367), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122405] = 25, - ACTIONS(1422), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(5084), 1, + 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, + [85331] = 18, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(5086), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, - anon_sym_RPAREN, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5098), 1, - anon_sym_operator, - STATE(3243), 1, - sym_int_type, - STATE(3262), 1, + ACTIONS(4618), 1, + anon_sym_pass, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6430), 1, + sym__dedent, + STATE(4071), 1, sym__signedness, - STATE(3479), 1, + STATE(4313), 1, sym__longness, - STATE(3599), 1, - sym_function_pointer_type, - STATE(3723), 1, - sym_operator_name, - STATE(4696), 1, - sym_maybe_typed_name, - STATE(4739), 1, + STATE(4380), 1, sym_c_type, - STATE(5107), 1, - sym_type_index, - STATE(5631), 1, - sym_type_qualifier, - STATE(5837), 1, - sym__typedargslist, + STATE(6948), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(4630), 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, - ACTIONS(5100), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - STATE(5017), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1414), 3, + STATE(3839), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [122490] = 3, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [85399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4733), 28, - anon_sym_DOT, + ACTIONS(3905), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [122531] = 3, + ACTIONS(3903), 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, + [85437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4817), 28, - anon_sym_DOT, + ACTIONS(3097), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [122572] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3099), 25, + anon_sym_class, 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(5102), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5777), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4198), 2, + 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [85475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3909), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3907), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122651] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, 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(5104), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5816), 1, - sym_lambda_parameters, + 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, + [85513] = 4, + ACTIONS(6432), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3805), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(3801), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122730] = 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, + [85553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4725), 28, - anon_sym_DOT, + ACTIONS(3369), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [122771] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3371), 25, + anon_sym_class, 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(5106), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5575), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4198), 2, + 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [85591] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3913), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3911), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122850] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(5027), 1, - sym_identifier, - ACTIONS(5029), 1, + 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, + [85629] = 19, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6149), 1, anon_sym_LPAREN, - ACTIONS(5031), 1, + ACTIONS(6151), 1, anon_sym_STAR, - ACTIONS(5035), 1, + ACTIONS(6155), 1, anon_sym_STAR_STAR, - ACTIONS(5037), 1, + ACTIONS(6157), 1, anon_sym_SLASH, - ACTIONS(5108), 1, - anon_sym_COLON, - STATE(3325), 1, + ACTIONS(6394), 1, + sym_identifier, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(4328), 1, + STATE(5280), 1, sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, + STATE(6205), 1, sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5576), 1, - sym_lambda_parameters, + STATE(6590), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + ACTIONS(6159), 2, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, + STATE(4577), 2, sym_int_type, sym_function_pointer_type, - STATE(5348), 2, + STATE(6503), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4196), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, + STATE(6502), 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(4110), 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(4108), 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, - [122970] = 3, + [85699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 28, - anon_sym_DOT, + ACTIONS(3131), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [123011] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3133), 25, + anon_sym_class, 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5764), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4198), 2, + 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [85737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3215), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3213), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123090] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, 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(5112), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5619), 1, - sym_lambda_parameters, + 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, + [85775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3373), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3375), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123169] = 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, + [85813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 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(4112), 19, - anon_sym_DOT, + ACTIONS(3377), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [123210] = 3, + ACTIONS(3379), 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, + [85851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4835), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4833), 28, - anon_sym_DOT, + ACTIONS(3381), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [123251] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3383), 25, + anon_sym_class, 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5544), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4198), 2, + 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [85889] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3223), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3221), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123330] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, 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(5116), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5586), 1, - sym_lambda_parameters, + 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, + [85927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3227), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3225), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [85965] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3525), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3527), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123409] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, 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(5118), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5597), 1, - sym_lambda_parameters, + 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, + [86003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3155), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3157), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123488] = 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, + [86041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4650), 28, - anon_sym_DOT, + ACTIONS(3237), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [123529] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3235), 25, + anon_sym_class, 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(5120), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5612), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4198), 2, + 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [86079] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3843), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3841), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123608] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5624), 1, - sym_lambda_parameters, + 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, + [86117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3387), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3385), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [86155] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3241), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3239), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123687] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, 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(5124), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5693), 1, - sym_lambda_parameters, + 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, + [86193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3245), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3243), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123766] = 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, + [86231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 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(4093), 19, - anon_sym_DOT, + ACTIONS(3729), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [123807] = 3, + ACTIONS(3731), 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, + [86269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4771), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 28, - anon_sym_DOT, + ACTIONS(3839), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [123848] = 3, + ACTIONS(3837), 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, + [86307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 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(4074), 19, - anon_sym_DOT, + ACTIONS(3589), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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(3591), 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, + [86345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 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(4074), 19, - anon_sym_DOT, + ACTIONS(3167), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, + ACTIONS(3169), 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, - ACTIONS(5027), 1, + 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, + [86383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3601), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3603), 25, + anon_sym_class, sym_identifier, - ACTIONS(5029), 1, + 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, + [86421] = 18, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 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(3325), 1, + ACTIONS(4618), 1, + anon_sym_pass, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6434), 1, + sym__dedent, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(4328), 1, + STATE(4380), 1, sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5857), 1, - sym_lambda_parameters, + STATE(6718), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, + STATE(3806), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, sym_int_type, sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124009] = 3, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [86489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4093), 28, - anon_sym_DOT, + ACTIONS(3269), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124050] = 3, + ACTIONS(3271), 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, + [86527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4074), 28, - anon_sym_DOT, + ACTIONS(3765), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124091] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3767), 25, + anon_sym_class, 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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5536), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4198), 2, + 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [86565] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3605), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3607), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124170] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(5027), 1, + 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, + [86603] = 19, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6298), 1, sym_identifier, - ACTIONS(5029), 1, + ACTIONS(6300), 1, anon_sym_LPAREN, - ACTIONS(5031), 1, + ACTIONS(6304), 1, anon_sym_STAR, - ACTIONS(5035), 1, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(5037), 1, + ACTIONS(6308), 1, anon_sym_SLASH, - ACTIONS(5130), 1, - anon_sym_COLON, - STATE(3325), 1, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(4328), 1, + STATE(5263), 1, sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, + STATE(5998), 1, sym_tuple_pattern, - STATE(5532), 1, - sym_lambda_parameters, - STATE(5534), 1, - sym__parameters, + STATE(6341), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + ACTIONS(6159), 2, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, + STATE(4577), 2, sym_int_type, sym_function_pointer_type, - STATE(5348), 2, + STATE(6113), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4196), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, + STATE(6365), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124249] = 3, + [86673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [124290] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4091), 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(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(4739), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4737), 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, - [124372] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4712), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4710), 28, - anon_sym_DOT, + ACTIONS(3415), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124413] = 3, + ACTIONS(3417), 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, + [86711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3899), 28, - anon_sym_DOT, + ACTIONS(3419), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124454] = 3, + ACTIONS(3421), 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, + [86749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4407), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4393), 28, - anon_sym_DOT, + ACTIONS(3143), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124495] = 7, - ACTIONS(4099), 1, - anon_sym_EQ, + ACTIONS(3145), 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, + [86787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4070), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4097), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4062), 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(4064), 12, + ACTIONS(3825), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124544] = 3, + ACTIONS(3827), 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, + [86825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 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(4089), 19, - anon_sym_DOT, + ACTIONS(3917), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124585] = 4, + ACTIONS(3915), 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, + [86863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 3, - anon_sym_DOT, + ACTIONS(3427), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4106), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3920), 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, - [124628] = 3, + ACTIONS(3429), 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, + [86901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4089), 28, - anon_sym_DOT, + ACTIONS(3921), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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(3919), 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, + [86939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 3, - anon_sym_DOT, + ACTIONS(3431), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3910), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3920), 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, - [124712] = 3, + ACTIONS(3433), 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, + [86977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4089), 28, - anon_sym_DOT, + ACTIONS(3435), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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(3437), 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, + [87015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4051), 3, - anon_sym_DOT, + ACTIONS(3443), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4056), 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(4058), 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, - [124796] = 22, - ACTIONS(4202), 1, + ACTIONS(3445), 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, - ACTIONS(5027), 1, + 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, + [87053] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(5132), 1, + ACTIONS(6436), 1, + anon_sym_from, + ACTIONS(6438), 1, anon_sym_COLON, - STATE(3325), 1, + STATE(4025), 1, sym__signedness, - STATE(3549), 1, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5626), 1, - sym_lambda_parameters, + STATE(4430), 1, + sym_operator_name, + STATE(4744), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, + STATE(3651), 2, + sym_class_definition, + sym_cvar_def, + STATE(3944), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124875] = 3, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [87123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4843), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 28, - anon_sym_DOT, + ACTIONS(3497), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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(3499), 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, + [87161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4807), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 28, - anon_sym_DOT, + ACTIONS(3501), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124957] = 3, + ACTIONS(3503), 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, + [87199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(857), 28, - anon_sym_DOT, + ACTIONS(3813), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [124998] = 5, + ACTIONS(3815), 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, + [87237] = 21, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6331), 1, + anon_sym_COLON, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + ACTIONS(6440), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5389), 1, + sym_c_type, + STATE(6238), 1, + sym_memory_view_index, + STATE(6833), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, - anon_sym_STAR, - anon_sym_SLASH, - 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(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6335), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [87311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(857), 3, - anon_sym_DOT, + ACTIONS(3181), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(859), 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(893), 16, - anon_sym_COMMA, + ACTIONS(3183), 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, + [87349] = 21, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6331), 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, - [125086] = 3, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + ACTIONS(6442), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5302), 1, + sym_c_type, + STATE(5717), 1, + sym_memory_view_index, + STATE(6657), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4823), 4, - anon_sym_STAR, - anon_sym_SLASH, - 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(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6335), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [87423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4809), 28, - anon_sym_DOT, + ACTIONS(3925), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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(3923), 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, + [87461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4847), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4845), 28, - anon_sym_DOT, + ACTIONS(3063), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [125209] = 22, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5027), 1, + ACTIONS(3065), 25, + anon_sym_class, 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(5134), 1, - anon_sym_COLON, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5808), 1, - sym_lambda_parameters, + 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, + [87499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3847), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3845), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [87537] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3075), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [125288] = 22, - ACTIONS(4202), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(5027), 1, + 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, + [87575] = 19, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 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(5136), 1, + ACTIONS(6444), 1, + anon_sym_from, + ACTIONS(6446), 1, anon_sym_COLON, - STATE(3325), 1, + STATE(4025), 1, sym__signedness, - STATE(3549), 1, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5081), 1, - sym_parameter, - STATE(5084), 1, - sym_tuple_pattern, - STATE(5534), 1, - sym__parameters, - STATE(5814), 1, - sym_lambda_parameters, + STATE(4430), 1, + sym_operator_name, + STATE(4718), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, + STATE(1945), 2, + sym_class_definition, + sym_cvar_def, + STATE(3945), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [125367] = 3, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [87645] = 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(1313), 1, + ACTIONS(3139), 4, + sym__dedent, sym_string_start, - ACTIONS(5056), 1, - sym_identifier, - ACTIONS(5058), 1, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5060), 1, - anon_sym_STAR, - ACTIONS(5062), 1, - anon_sym_if, - 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(5138), 1, - anon_sym_COLON, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4679), 1, - sym_case_pattern, - STATE(5524), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4761), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5072), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4271), 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, - [125485] = 3, + ACTIONS(3141), 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, + [87683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4761), 28, - anon_sym_DOT, + ACTIONS(3185), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [125526] = 3, + ACTIONS(3187), 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, + [87721] = 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, + ACTIONS(3511), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [125567] = 3, + ACTIONS(3513), 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, + [87759] = 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, + ACTIONS(3057), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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, - [125608] = 3, + ACTIONS(3055), 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, + [87797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4112), 28, - anon_sym_DOT, + ACTIONS(3189), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, 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(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(3191), 25, + anon_sym_class, sym_identifier, - ACTIONS(4316), 1, + 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, - ACTIONS(4322), 1, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, anon_sym_cppclass, - ACTIONS(5140), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [87835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(3829), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3831), 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3187), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 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, + [87873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3147), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3149), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2834), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(105), 5, - anon_sym_api, + 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, - [125721] = 5, + [87911] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5144), 2, + ACTIONS(3833), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COLON, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5146), 5, + ACTIONS(3835), 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, - ACTIONS(5142), 22, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + [87949] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3079), 25, anon_sym_class, sym_identifier, - anon_sym_await, + anon_sym_api, + 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, @@ -235798,2683 +294003,2496 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, anon_sym_enum, - [125765] = 21, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5149), 1, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [87987] = 18, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(5151), 1, + ACTIONS(4616), 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(3325), 1, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6448), 1, + anon_sym_class, + ACTIONS(6450), 1, + anon_sym_ctypedef, + ACTIONS(6454), 1, + anon_sym_enum, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(4303), 1, + STATE(4355), 1, sym_c_type, - STATE(4792), 1, - sym_tuple_pattern, - STATE(5224), 1, - sym_parameter, - STATE(5672), 1, - sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, + ACTIONS(6452), 2, + anon_sym_struct, + anon_sym_union, + STATE(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, sym_int_type, sym_function_pointer_type, - STATE(5226), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5463), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [125841] = 19, - ACTIONS(5161), 1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [88055] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2658), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2656), 26, + anon_sym_case, + anon_sym_class, sym_identifier, - ACTIONS(5170), 1, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym_operator, - ACTIONS(5179), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(5185), 1, + anon_sym_const, + anon_sym_volatile, anon_sym_ctypedef, - ACTIONS(5188), 1, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, anon_sym_cppclass, - ACTIONS(5191), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [88093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5173), 2, + ACTIONS(3629), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3631), 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(5176), 2, anon_sym_char, anon_sym_short, - ACTIONS(5182), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3187), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5167), 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, + [88131] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3857), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3855), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2834), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(5164), 5, - anon_sym_api, + 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, - [125913] = 19, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + [88169] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3059), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3061), 25, + anon_sym_class, sym_identifier, - ACTIONS(4316), 1, + 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, - ACTIONS(4322), 1, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, anon_sym_cppclass, - ACTIONS(5193), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [88207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(3085), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3087), 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3187), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 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, + [88245] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3123), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3125), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2834), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(105), 5, - anon_sym_api, + 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, - [125985] = 19, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + [88283] = 18, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(5195), 1, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4618), 1, + anon_sym_pass, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6456), 1, sym__dedent, - STATE(3253), 1, + STATE(4071), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + STATE(4380), 1, + sym_c_type, + STATE(6793), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - STATE(3187), 2, + STATE(3886), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2838), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(105), 5, + ACTIONS(4622), 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(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + [88351] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3209), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3211), 25, + anon_sym_class, sym_identifier, - ACTIONS(4316), 1, + 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, - ACTIONS(4322), 1, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, anon_sym_cppclass, - ACTIONS(5197), 1, - sym__dedent, - STATE(3253), 1, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [88389] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6460), 1, + anon_sym_nogil, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3953), 1, + STATE(4783), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(3187), 2, + STATE(3818), 2, + sym_class_definition, + sym_cvar_def, + STATE(3942), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2835), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [126129] = 19, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(5199), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + [88459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(3517), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3519), 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3187), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 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, + [88497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3521), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3523), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2834), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(105), 5, - anon_sym_api, + 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, - [126201] = 19, - ACTIONS(381), 1, + [88535] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(4791), 1, sym_identifier, - ACTIONS(4316), 1, - anon_sym_ctypedef, - ACTIONS(4322), 1, - anon_sym_cppclass, - ACTIONS(5201), 1, - sym__dedent, - STATE(3253), 1, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(6462), 1, + anon_sym_from, + ACTIONS(6464), 1, + anon_sym_COLON, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3953), 1, + STATE(4783), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(3187), 2, + STATE(3836), 2, + sym_class_definition, + sym_cvar_def, + STATE(3942), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2831), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [126273] = 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(5207), 1, - anon_sym_RPAREN, - 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(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4712), 1, - sym_case_pattern, + [88605] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [126344] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + ACTIONS(2654), 3, + sym__dedent, + anon_sym_SEMI, 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(5225), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + ACTIONS(2652), 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, + [88643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [126415] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, + ACTIONS(3713), 4, + sym__dedent, sym_string_start, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(5229), 1, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_STAR, - ACTIONS(5233), 1, - anon_sym_STAR_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACK, - ACTIONS(5237), 1, - anon_sym_RBRACK, - ACTIONS(5239), 1, - anon_sym_DASH, - ACTIONS(5243), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - sym_integer, - ACTIONS(5247), 1, - sym_float, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, + ACTIONS(3715), 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, + [88681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [126486] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3093), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5249), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + ACTIONS(3095), 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, + [88719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [126557] = 20, - ACTIONS(127), 1, + ACTIONS(3163), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3165), 25, anon_sym_class, - ACTIONS(381), 1, + 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, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + 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, + [88757] = 18, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(5251), 1, - anon_sym_COLON, - ACTIONS(5253), 1, - anon_sym_namespace, - ACTIONS(5255), 1, - anon_sym_nogil, - STATE(3253), 1, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4618), 1, + anon_sym_pass, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6466), 1, + sym__dedent, + STATE(4071), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3930), 1, - sym_maybe_typed_name, + STATE(4380), 1, + sym_c_type, + STATE(6619), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - STATE(683), 2, - sym_class_definition, - sym_cvar_def, - STATE(3185), 2, + STATE(3833), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 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(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(5257), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, + [88825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [126701] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3829), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3831), 25, + anon_sym_class, sym_identifier, - ACTIONS(5205), 1, + 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, + [88863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2670), 3, + sym__dedent, + anon_sym_SEMI, 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(5259), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + ACTIONS(2668), 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, + [88901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [126772] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3193), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5261), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + ACTIONS(3195), 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, + [88939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [126843] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3131), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3133), 25, + anon_sym_class, sym_identifier, - ACTIONS(5205), 1, + 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, + [88977] = 21, + ACTIONS(1955), 1, + aux_sym_integer_token4, + ACTIONS(6329), 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, + ACTIONS(6331), 1, + anon_sym_COLON, + ACTIONS(6333), 1, + anon_sym_RBRACK, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + STATE(2459), 1, + aux_sym_integer_repeat4, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5334), 1, + sym_c_type, + STATE(5855), 1, + sym_memory_view_index, + STATE(6983), 1, sym_integer, - ACTIONS(5223), 1, - sym_float, - ACTIONS(5263), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [126914] = 20, - ACTIONS(59), 1, + ACTIONS(1951), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1953), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6335), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [89051] = 19, + ACTIONS(135), 1, anon_sym_class, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(4791), 1, sym_identifier, - ACTIONS(5265), 1, + ACTIONS(6468), 1, anon_sym_COLON, - ACTIONS(5267), 1, - anon_sym_namespace, - ACTIONS(5269), 1, + ACTIONS(6470), 1, anon_sym_nogil, - STATE(3253), 1, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3952), 1, + STATE(4718), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(1186), 2, + STATE(1314), 2, sym_class_definition, sym_cvar_def, - STATE(3183), 2, + STATE(3945), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [126987] = 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_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(5271), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4623), 1, - sym_case_pattern, + [89121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [127058] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, + ACTIONS(3151), 4, + sym__dedent, sym_string_start, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(5229), 1, + anon_sym_SEMI, 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(5273), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [127129] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(5227), 1, + ACTIONS(3153), 25, + anon_sym_class, 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(5275), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4641), 1, - sym_case_pattern, + 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, + [89159] = 4, + ACTIONS(6472), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [127200] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3255), 3, + sym__dedent, 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, - ACTIONS(5277), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4625), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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(1474), 1, - sym_string_start, - ACTIONS(5203), 1, + ACTIONS(3257), 25, + anon_sym_class, 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, - ACTIONS(5279), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + 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, + [89199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [127342] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, + ACTIONS(3197), 4, + sym__dedent, sym_string_start, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(5229), 1, + anon_sym_SEMI, 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(5281), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [127413] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5203), 1, + ACTIONS(3199), 25, + anon_sym_class, 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, - ACTIONS(5283), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + 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, + [89237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [127484] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3829), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5285), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [127555] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5203), 1, + ACTIONS(3831), 25, + anon_sym_class, 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, - ACTIONS(5287), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + 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, + [89275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [127626] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, + ACTIONS(3529), 4, + sym__dedent, sym_string_start, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(5229), 1, + anon_sym_SEMI, 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(5289), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4631), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [127697] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5203), 1, + ACTIONS(3531), 25, + anon_sym_class, 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, - ACTIONS(5291), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + 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, + [89313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [127768] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3273), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5293), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4644), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [127839] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(5227), 1, + ACTIONS(3275), 25, + anon_sym_class, 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(5295), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4637), 1, - sym_case_pattern, + 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, + [89351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [127910] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3101), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5297), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4636), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [127981] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5203), 1, + ACTIONS(3103), 25, + anon_sym_class, 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, - ACTIONS(5299), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + 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, + [89389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [128052] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, + ACTIONS(3107), 4, + sym__dedent, sym_string_start, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(5229), 1, + anon_sym_SEMI, 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(5301), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4639), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [128123] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5203), 1, + ACTIONS(3109), 25, + anon_sym_class, 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, - ACTIONS(5303), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + 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, + [89427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [128194] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3111), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5305), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4664), 1, - sym_case_pattern, + ACTIONS(3113), 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, + [89465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [128265] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3781), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5307), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + ACTIONS(3783), 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, + [89503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [128336] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, + ACTIONS(3205), 4, + sym__dedent, sym_string_start, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(5229), 1, + anon_sym_SEMI, 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(5309), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, + ACTIONS(3207), 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, + [89541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [128407] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + ACTIONS(2664), 3, + sym__dedent, + anon_sym_SEMI, 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(5311), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + ACTIONS(2666), 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, + [89579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [128478] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, + ACTIONS(3115), 4, + sym__dedent, sym_string_start, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(5229), 1, + anon_sym_SEMI, 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(5313), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, + ACTIONS(3117), 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, + [89617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [128549] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3127), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5315), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4698), 1, - sym_case_pattern, + ACTIONS(3129), 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, + [89655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [128620] = 19, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, + ACTIONS(3293), 4, + sym__dedent, sym_string_start, - ACTIONS(5203), 1, - sym_identifier, - ACTIONS(5205), 1, + anon_sym_SEMI, 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(5317), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + ACTIONS(3295), 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, + [89693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [128691] = 19, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, + ACTIONS(3439), 4, + sym__dedent, sym_string_start, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(5229), 1, + anon_sym_SEMI, 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(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, + ACTIONS(3441), 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, + [89731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, + ACTIONS(3737), 3, + sym__dedent, + anon_sym_SEMI, 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(5321), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4661), 1, - sym_case_pattern, + ACTIONS(3739), 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, + [89768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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(2541), 1, + ACTIONS(4101), 3, + sym__dedent, 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(5323), 1, - anon_sym_RBRACK, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, + ACTIONS(4103), 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, + [89805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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, - [128904] = 20, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5029), 1, + ACTIONS(3521), 3, + sym__dedent, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5031), 1, - anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_STAR_STAR, - ACTIONS(5037), 1, - anon_sym_SLASH, - ACTIONS(5325), 1, + ACTIONS(3523), 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, + [89842] = 18, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, sym_identifier, - ACTIONS(5327), 1, + ACTIONS(6474), 1, anon_sym_COLON, - STATE(3325), 1, + STATE(4025), 1, sym__signedness, - STATE(3549), 1, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5148), 1, - sym_tuple_pattern, - STATE(5494), 1, - sym_parameter, + STATE(4430), 1, + sym_operator_name, + STATE(4718), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, + STATE(1839), 2, + sym_class_definition, + sym_cvar_def, + STATE(3945), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [128977] = 20, - ACTIONS(381), 1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [89909] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5174), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(5176), 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, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + 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, + [89946] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3337), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3339), 25, + anon_sym_class, sym_identifier, - ACTIONS(4312), 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, + [89983] = 18, + ACTIONS(135), 1, anon_sym_class, - ACTIONS(5329), 1, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6476), 1, anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_namespace, - ACTIONS(5333), 1, - anon_sym_nogil, - STATE(3253), 1, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3953), 1, + STATE(4718), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(3060), 2, + STATE(1519), 2, sym_class_definition, sym_cvar_def, - STATE(3188), 2, + STATE(3945), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129050] = 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_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(5335), 1, - anon_sym_RPAREN, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, + [90050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, - [129121] = 20, - ACTIONS(4202), 1, + ACTIONS(3131), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3133), 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, - ACTIONS(5029), 1, + 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, + [90087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3637), 3, + sym__dedent, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5031), 1, - anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_STAR_STAR, - ACTIONS(5037), 1, - anon_sym_SLASH, - ACTIONS(5325), 1, + ACTIONS(3639), 25, + anon_sym_class, sym_identifier, - ACTIONS(5337), 1, - anon_sym_COLON, - STATE(3325), 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, + [90124] = 17, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6094), 1, + anon_sym_class, + ACTIONS(6098), 1, + anon_sym_enum, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(4328), 1, + STATE(4354), 1, sym_c_type, - STATE(5148), 1, - sym_tuple_pattern, - STATE(5494), 1, - sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, + ACTIONS(6096), 2, + anon_sym_struct, + anon_sym_union, + STATE(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, sym_int_type, sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [129194] = 20, - ACTIONS(4202), 1, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [90189] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3209), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3211), 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, + [90226] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3557), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3559), 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, + [90263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3561), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3563), 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, + [90300] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3227), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3225), 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, - ACTIONS(5149), 1, + 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, + [90337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3235), 25, + anon_sym_class, sym_identifier, - ACTIONS(5151), 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, + [90374] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3341), 3, + sym__dedent, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5155), 1, - anon_sym_STAR, - ACTIONS(5157), 1, - anon_sym_STAR_STAR, - ACTIONS(5159), 1, - anon_sym_SLASH, - ACTIONS(5327), 1, - anon_sym_RPAREN, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4303), 1, - sym_c_type, - STATE(4792), 1, - sym_tuple_pattern, - STATE(5294), 1, - sym_parameter, + ACTIONS(3343), 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, + [90411] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3345), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3347), 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, + [90448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3317), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3319), 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, + [90485] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3349), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3351), 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, + [90522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3353), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3355), 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, + [90559] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3325), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3327), 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, + [90596] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3357), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3359), 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, + [90633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4139), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(4137), 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, + [90670] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3333), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3335), 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, + [90707] = 4, + ACTIONS(6478), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(2989), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2987), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5226), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5463), 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(5151), 1, - anon_sym_LPAREN, - ACTIONS(5155), 1, - anon_sym_STAR, - ACTIONS(5157), 1, - anon_sym_STAR_STAR, - ACTIONS(5159), 1, - anon_sym_SLASH, - ACTIONS(5337), 1, - anon_sym_RPAREN, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4303), 1, - sym_c_type, - STATE(4792), 1, - sym_tuple_pattern, - STATE(5294), 1, - sym_parameter, + 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, + [90746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3139), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3141), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5226), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [90783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3145), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5463), 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(381), 1, - anon_sym_long, - ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(5339), 1, - anon_sym_COLON, - ACTIONS(5341), 1, - anon_sym_nogil, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3952), 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_long, anon_sym_const, anon_sym_volatile, - STATE(1326), 2, - sym_class_definition, - sym_cvar_def, - STATE(3183), 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_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, - [129410] = 3, + [90820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1482), 3, + ACTIONS(3147), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1480), 26, - anon_sym_case, + ACTIONS(3149), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238500,26 +296518,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129448] = 3, + [90857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3897), 2, + ACTIONS(4169), 3, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(5343), 27, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4171), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + 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, @@ -238531,272 +296546,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129486] = 19, - ACTIONS(4202), 1, - anon_sym_long, - 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(5325), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4328), 1, - sym_c_type, - STATE(5148), 1, - sym_tuple_pattern, - STATE(5494), 1, - sym_parameter, + [90894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4731), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(6480), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5348), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [90931] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3565), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3567), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5317), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [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(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 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_long, anon_sym_const, anon_sym_volatile, - STATE(3135), 2, - sym_class_definition, - sym_cvar_def, - STATE(3188), 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_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, - [129626] = 18, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(5056), 1, - sym_identifier, - 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, - STATE(4030), 1, - sym_string, - STATE(4270), 1, - sym_case_pattern, - STATE(4375), 1, - sym_dotted_name, + [90968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4761), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5072), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4271), 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, - [129694] = 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(5349), 1, + ACTIONS(3569), 3, sym__dedent, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3594), 1, - sym_c_type, - STATE(5819), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4198), 2, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3571), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3099), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3194), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 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_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, - [129762] = 18, - ACTIONS(4188), 1, + [91005] = 17, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_pass, - ACTIONS(4202), 1, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5351), 1, - sym__dedent, - STATE(3325), 1, + ACTIONS(6406), 1, + anon_sym_class, + ACTIONS(6412), 1, + anon_sym_enum, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(3594), 1, + STATE(4388), 1, sym_c_type, - STATE(5842), 1, - sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - STATE(3136), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3194), 2, + ACTIONS(6410), 2, + anon_sym_struct, + anon_sym_union, + STATE(3949), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3812), 2, + STATE(4578), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129830] = 3, + [91070] = 4, + ACTIONS(6482), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1548), 3, + ACTIONS(2851), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1546), 26, - anon_sym_case, + ACTIONS(2849), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238822,16 +296737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129868] = 3, + [91109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1502), 3, + ACTIONS(3573), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1500), 26, - anon_sym_case, + ACTIONS(3575), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238857,67 +296771,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129906] = 19, - ACTIONS(127), 1, - anon_sym_class, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(5353), 1, - anon_sym_from, - ACTIONS(5355), 1, - anon_sym_COLON, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3930), 1, - sym_maybe_typed_name, + [91146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(3533), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3535), 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(672), 2, - sym_class_definition, - sym_cvar_def, - STATE(3185), 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_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, - [129976] = 3, + [91183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1478), 3, + ACTIONS(3155), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1476), 26, - anon_sym_case, + ACTIONS(3157), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238943,269 +296839,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130014] = 18, - ACTIONS(2453), 1, - anon_sym_None, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(5357), 1, - sym_identifier, - 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, - STATE(4242), 1, - sym_string, - STATE(4554), 1, - sym_dotted_name, - STATE(4848), 1, - sym_case_pattern, + [91220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5230), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5369), 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, - [130082] = 19, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5149), 1, - sym_identifier, - ACTIONS(5151), 1, + ACTIONS(3641), 3, + sym__dedent, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5155), 1, - anon_sym_STAR, - ACTIONS(5157), 1, - anon_sym_STAR_STAR, - ACTIONS(5159), 1, - anon_sym_SLASH, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4303), 1, - sym_c_type, - STATE(4792), 1, - sym_tuple_pattern, - STATE(5294), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3643), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5039), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3731), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5226), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4196), 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, + [91257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3645), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3647), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5463), 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(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 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_long, anon_sym_const, anon_sym_volatile, - STATE(3106), 2, - sym_class_definition, - sym_cvar_def, - STATE(3188), 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_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, - [130222] = 18, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(5056), 1, - sym_identifier, - 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, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4679), 1, - sym_case_pattern, + [91294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4761), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5072), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4271), 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(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(5381), 1, + ACTIONS(3933), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3935), 25, anon_sym_class, - ACTIONS(5383), 1, - anon_sym_ctypedef, - ACTIONS(5387), 1, - anon_sym_enum, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3956), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(377), 2, + 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(5385), 2, + anon_sym_ctypedef, 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), 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, - [130360] = 3, + [91331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 3, + ACTIONS(3649), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1496), 26, - anon_sym_case, + ACTIONS(3651), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239231,317 +296975,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130398] = 18, - 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, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, - STATE(4898), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5274), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5241), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4530), 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(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, - STATE(4853), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5250), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4564), 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, + [91368] = 17, + ACTIONS(4614), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4202), 1, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5010), 1, + ACTIONS(6448), 1, anon_sym_class, - ACTIONS(5014), 1, + ACTIONS(6454), 1, anon_sym_enum, - ACTIONS(5389), 1, - anon_sym_ctypedef, - STATE(3325), 1, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(3591), 1, + STATE(4355), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + ACTIONS(4634), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(5012), 2, + ACTIONS(6452), 2, anon_sym_struct, anon_sym_union, - STATE(2832), 2, + STATE(3949), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3812), 2, + STATE(4578), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130602] = 19, - ACTIONS(127), 1, - anon_sym_class, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(5391), 1, - anon_sym_COLON, - ACTIONS(5393), 1, - anon_sym_nogil, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3930), 1, - sym_maybe_typed_name, + [91433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(3529), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3531), 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(705), 2, - sym_class_definition, - sym_cvar_def, - STATE(3185), 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_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, - [130672] = 19, + [91470] = 18, ACTIONS(59), 1, anon_sym_class, - ACTIONS(381), 1, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(4791), 1, sym_identifier, - ACTIONS(5395), 1, - anon_sym_from, - ACTIONS(5397), 1, + ACTIONS(6484), 1, anon_sym_COLON, - STATE(3253), 1, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3952), 1, + STATE(4713), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(1273), 2, + STATE(1821), 2, sym_class_definition, sym_cvar_def, - STATE(3183), 2, + STATE(3947), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130742] = 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(5399), 1, - sym__dedent, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3594), 1, - sym_c_type, - STATE(5730), 1, - sym_pass_statement, + [91537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3151), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3153), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3142), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3194), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 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_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, - [130810] = 3, + [91574] = 4, + ACTIONS(6486), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2053), 3, + ACTIONS(3039), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2051), 25, + ACTIONS(3041), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239567,370 +297175,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130847] = 17, - ACTIONS(4188), 1, - sym_identifier, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(4974), 1, - anon_sym_class, - ACTIONS(4980), 1, - anon_sym_enum, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3568), 1, - sym_c_type, + [91613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3965), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(3967), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(4978), 2, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 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_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130912] = 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(5405), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4481), 1, - sym_splat_pattern, - STATE(4895), 1, - sym__key_value_pattern, + [91650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, - [130981] = 19, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1313), 1, + ACTIONS(3255), 3, + sym__dedent, 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, + ACTIONS(3257), 25, + anon_sym_class, sym_identifier, - ACTIONS(5407), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + 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, + [91687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, + ACTIONS(4173), 3, + sym__dedent, 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, + ACTIONS(4175), 25, + anon_sym_class, sym_identifier, - ACTIONS(5409), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + 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, + [91724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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(1313), 1, - sym_string_start, - ACTIONS(5058), 1, + ACTIONS(3653), 3, + sym__dedent, + anon_sym_SEMI, 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, + ACTIONS(3655), 25, + anon_sym_class, sym_identifier, - ACTIONS(5411), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 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, + [91761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, + ACTIONS(3657), 3, + sym__dedent, + anon_sym_SEMI, 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(5413), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, - [131257] = 18, - ACTIONS(127), 1, + ACTIONS(3659), 25, anon_sym_class, - ACTIONS(381), 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, + [91798] = 18, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(4791), 1, sym_identifier, - ACTIONS(5415), 1, + ACTIONS(6488), 1, anon_sym_COLON, - STATE(3253), 1, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3930), 1, + STATE(4744), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(693), 2, + STATE(3513), 2, sym_class_definition, sym_cvar_def, - STATE(3185), 2, + STATE(3944), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131324] = 3, + [91865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4646), 3, + ACTIONS(3843), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4648), 25, + ACTIONS(3841), 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, @@ -239948,15 +297428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131361] = 3, + [91902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 3, + ACTIONS(3111), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1807), 25, + ACTIONS(3113), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239982,15 +297462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131398] = 3, + [91939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2201), 3, + ACTIONS(3139), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2199), 25, + ACTIONS(3141), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240016,15 +297496,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131435] = 3, + [91976] = 18, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(6490), 1, + anon_sym_COLON, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4783), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3805), 2, + sym_class_definition, + sym_cvar_def, + STATE(3942), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 3, + ACTIONS(3533), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1811), 25, + ACTIONS(3535), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240050,64 +297579,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131472] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(381), 1, + [92080] = 18, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, + ACTIONS(4620), 1, + anon_sym_class, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(4791), 1, sym_identifier, - ACTIONS(5417), 1, + ACTIONS(6492), 1, anon_sym_COLON, - STATE(3253), 1, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3952), 1, + STATE(4744), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(1353), 2, + STATE(3469), 2, sym_class_definition, sym_cvar_def, - STATE(3183), 2, + STATE(3944), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131539] = 3, + [92147] = 4, + ACTIONS(6494), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 3, + ACTIONS(2857), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1871), 25, + ACTIONS(2855), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240133,15 +297663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131576] = 3, + [92186] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 3, + ACTIONS(3163), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1875), 25, + ACTIONS(3165), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240167,15 +297697,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131613] = 3, + [92223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1881), 3, + ACTIONS(4069), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(4071), 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, + [92260] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3661), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1879), 25, + ACTIONS(3663), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240201,15 +297765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131650] = 3, + [92297] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1885), 3, + ACTIONS(3537), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1883), 25, + ACTIONS(3539), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240235,15 +297799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131687] = 3, + [92334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 3, + ACTIONS(3115), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1887), 25, + ACTIONS(3117), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240269,15 +297833,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131724] = 3, + [92371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2153), 3, + ACTIONS(4269), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(4271), 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, + [92408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3541), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2151), 25, + ACTIONS(3543), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240303,15 +297901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131761] = 3, + [92445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1893), 3, + ACTIONS(3665), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1891), 25, + ACTIONS(3667), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240337,15 +297935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131798] = 3, + [92482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1897), 3, + ACTIONS(3669), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1895), 25, + ACTIONS(3671), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240371,15 +297969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131835] = 3, + [92519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1901), 3, + ACTIONS(3601), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1899), 25, + ACTIONS(3603), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240405,15 +298003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131872] = 3, + [92556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 3, + ACTIONS(3605), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1871), 25, + ACTIONS(3607), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240439,15 +298037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131909] = 3, + [92593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(3629), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1903), 25, + ACTIONS(3631), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240473,15 +298071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131946] = 3, + [92630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 3, + ACTIONS(3673), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2115), 25, + ACTIONS(3675), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240507,15 +298105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131983] = 3, + [92667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 3, + ACTIONS(3387), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1791), 25, + ACTIONS(3385), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240541,15 +298139,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132020] = 3, + [92704] = 17, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6001), 1, + anon_sym_class, + ACTIONS(6007), 1, + anon_sym_enum, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4330), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(6005), 2, + anon_sym_struct, + anon_sym_union, + STATE(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 3, + ACTIONS(3677), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1907), 25, + ACTIONS(3679), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240575,15 +298221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132057] = 3, + [92806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1881), 3, + ACTIONS(3545), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1879), 25, + ACTIONS(3547), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240609,15 +298255,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132094] = 3, + [92843] = 4, + ACTIONS(6496), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 3, + ACTIONS(2893), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2363), 25, + ACTIONS(2891), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240643,16 +298290,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132131] = 4, - ACTIONS(5419), 1, + [92882] = 4, + ACTIONS(6498), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 2, + ACTIONS(2915), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1593), 25, + ACTIONS(2913), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240678,15 +298325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132170] = 3, + [92921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1913), 3, + ACTIONS(3733), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1911), 25, + ACTIONS(3735), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240712,15 +298359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132207] = 3, + [92958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2121), 3, + ACTIONS(3131), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2119), 25, + ACTIONS(3133), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240746,65 +298393,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132244] = 19, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(5058), 1, + [92995] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2921), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(2919), 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, + [93032] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3741), 3, + sym__dedent, + anon_sym_SEMI, 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, + ACTIONS(3743), 25, + anon_sym_class, sym_identifier, - ACTIONS(5421), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4540), 1, - sym_splat_pattern, - STATE(4766), 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, + [93069] = 3, + ACTIONS(4377), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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(6500), 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, + [93106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2369), 3, + ACTIONS(3745), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2367), 25, + ACTIONS(3747), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240830,64 +298529,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132350] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(381), 1, + [93143] = 18, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(4791), 1, sym_identifier, - ACTIONS(5423), 1, + ACTIONS(4793), 1, + anon_sym_class, + ACTIONS(6502), 1, anon_sym_COLON, - STATE(3253), 1, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3952), 1, + STATE(4783), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(1292), 2, + STATE(3831), 2, sym_class_definition, sym_cvar_def, - STATE(3183), 2, + STATE(3942), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132417] = 3, + [93210] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2125), 3, + ACTIONS(3589), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2123), 25, + ACTIONS(3591), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240913,23 +298612,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132454] = 3, + [93247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 3, + ACTIONS(4273), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1641), 25, + ACTIONS(4275), 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, @@ -240947,15 +298646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132491] = 3, + [93284] = 4, + ACTIONS(6504), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 3, + ACTIONS(2955), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1795), 25, + ACTIONS(2953), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240981,15 +298681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132528] = 3, + [93323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 3, + ACTIONS(3729), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1887), 25, + ACTIONS(3731), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241015,15 +298715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132565] = 3, + [93360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2129), 3, + ACTIONS(3765), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2127), 25, + ACTIONS(3767), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241049,16 +298749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132602] = 4, - ACTIONS(5425), 1, - anon_sym_COLON, + [93397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 2, + ACTIONS(3825), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1599), 25, + anon_sym_LPAREN, + ACTIONS(3827), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241084,16 +298783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132641] = 4, - ACTIONS(5427), 1, - anon_sym_COLON, + [93434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1572), 2, + ACTIONS(3829), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1570), 25, + anon_sym_LPAREN, + ACTIONS(3831), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241119,15 +298817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132680] = 3, + [93471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2133), 3, + ACTIONS(3833), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2131), 25, + ACTIONS(3835), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241153,64 +298851,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3930), 1, - sym_maybe_typed_name, + [93508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(3829), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3831), 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(714), 2, - sym_class_definition, - sym_cvar_def, - STATE(3185), 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_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, - [132784] = 3, + [93545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 3, + ACTIONS(3829), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1659), 25, + ACTIONS(3831), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241236,16 +298919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132821] = 4, - ACTIONS(5431), 1, - anon_sym_COLON, + [93582] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 2, + ACTIONS(3749), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1587), 25, + anon_sym_LPAREN, + ACTIONS(3751), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241271,15 +298953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132860] = 3, + [93619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 3, + ACTIONS(3549), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1791), 25, + ACTIONS(3551), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241305,16 +298987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132897] = 4, - ACTIONS(5433), 1, - anon_sym_COLON, + [93656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 2, + ACTIONS(3135), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1605), 25, + anon_sym_LPAREN, + ACTIONS(3137), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241340,15 +299021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132936] = 3, + [93693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2381), 3, + ACTIONS(3301), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2379), 25, + ACTIONS(3303), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241374,115 +299055,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + [93730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, + ACTIONS(3131), 3, + sym__dedent, + anon_sym_SEMI, 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, + ACTIONS(3133), 25, + anon_sym_class, sym_identifier, - ACTIONS(5437), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, + 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, + [93767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2049), 3, + ACTIONS(3305), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2047), 25, + ACTIONS(3307), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241508,72 +299123,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133148] = 18, - ACTIONS(381), 1, + [93804] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(4791), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_class, - ACTIONS(5439), 1, + ACTIONS(6506), 1, anon_sym_COLON, - STATE(3253), 1, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, + STATE(4038), 1, sym_int_type, - STATE(3480), 1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, + STATE(4430), 1, sym_operator_name, - STATE(3953), 1, + STATE(4713), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(4660), 2, anon_sym_const, anon_sym_volatile, - STATE(3083), 2, + STATE(1268), 2, sym_class_definition, sym_cvar_def, - STATE(3188), 2, + STATE(3947), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 5, + ACTIONS(4622), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133215] = 3, + [93871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 3, + ACTIONS(4277), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1683), 25, + ACTIONS(4279), 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, @@ -241591,15 +299206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133252] = 3, + [93908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 3, + ACTIONS(3317), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1687), 25, + ACTIONS(3319), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241625,15 +299240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133289] = 3, + [93945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1693), 3, + ACTIONS(2961), 3, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1691), 25, + anon_sym_COLON, + ACTIONS(2959), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241659,15 +299274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133326] = 3, + [93982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 3, + ACTIONS(3517), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1815), 25, + ACTIONS(3519), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241693,173 +299308,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, + [94019] = 4, + ACTIONS(6508), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4610), 3, + ACTIONS(2949), 2, sym__dedent, - sym_string_start, - anon_sym_LPAREN, - ACTIONS(4612), 25, + anon_sym_SEMI, + ACTIONS(2947), 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, @@ -241877,16 +299343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133607] = 4, - ACTIONS(5447), 1, - anon_sym_COLON, + [94058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 2, + ACTIONS(3553), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1611), 25, + anon_sym_LPAREN, + ACTIONS(3555), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241912,15 +299377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133646] = 3, + [94095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2057), 3, + ACTIONS(3321), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2055), 25, + ACTIONS(3323), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241946,64 +299411,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133683] = 17, - ACTIONS(4188), 1, - sym_identifier, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5010), 1, - anon_sym_class, - ACTIONS(5014), 1, - anon_sym_enum, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3591), 1, - sym_c_type, + [94132] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3785), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3787), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(5012), 2, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 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_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133748] = 4, - ACTIONS(5449), 1, - anon_sym_COLON, + [94169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, + ACTIONS(3325), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1617), 25, + anon_sym_LPAREN, + ACTIONS(3327), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242029,15 +299479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133787] = 3, + [94206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2237), 3, + ACTIONS(3329), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2235), 25, + ACTIONS(3331), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242063,15 +299513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133824] = 3, + [94243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2241), 3, + ACTIONS(3333), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2239), 25, + ACTIONS(3335), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242097,23 +299547,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133861] = 3, + [94280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 3, + ACTIONS(5251), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1799), 25, + ACTIONS(5253), 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, @@ -242131,15 +299581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133898] = 3, + [94317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 3, + ACTIONS(3197), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1819), 25, + ACTIONS(3199), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242165,115 +299614,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133935] = 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(5451), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + [94353] = 3, + ACTIONS(4377), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, - [134004] = 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, + ACTIONS(6500), 26, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_class, sym_identifier, - ACTIONS(5453), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + anon_sym_await, + anon_sym_api, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [94389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, - [134073] = 3, + ACTIONS(3435), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3437), 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, + [94425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 3, + ACTIONS(3443), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1791), 25, + ACTIONS(3445), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242299,15 +299713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134110] = 3, + [94461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2061), 3, + ACTIONS(3957), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2059), 25, + ACTIONS(3959), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242333,15 +299746,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134147] = 3, + [94497] = 16, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6510), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4380), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1965), 3, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3848), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [94559] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3961), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1963), 25, + ACTIONS(3963), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242367,15 +299825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134184] = 3, + [94595] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1969), 3, + ACTIONS(3083), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1967), 25, + ACTIONS(3081), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242401,15 +299858,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134221] = 3, + [94631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(3121), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1971), 25, + ACTIONS(3119), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242435,15 +299891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134258] = 3, + [94667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2341), 3, + ACTIONS(3089), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2339), 25, + ACTIONS(3091), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242469,15 +299924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134295] = 3, + [94703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2065), 3, + ACTIONS(3097), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2063), 25, + ACTIONS(3099), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242503,63 +299957,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134332] = 17, - ACTIONS(4188), 1, + [94739] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3215), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3213), 25, + anon_sym_class, sym_identifier, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4202), 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(5381), 1, - anon_sym_class, - ACTIONS(5387), 1, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, anon_sym_enum, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3585), 1, - sym_c_type, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [94775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(3223), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3221), 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(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(5385), 2, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [94811] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3241), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3239), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 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, - [134397] = 3, + [94847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1977), 3, + ACTIONS(3245), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1975), 25, + ACTIONS(3243), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242585,15 +300089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134434] = 3, + [94883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 3, + ACTIONS(3167), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2343), 25, + ACTIONS(3169), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242619,64 +300122,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134471] = 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(5455), 1, - anon_sym_COLON, - STATE(3253), 1, - sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3953), 1, - sym_maybe_typed_name, + [94919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(3181), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3183), 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(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3107), 2, - sym_class_definition, - sym_cvar_def, - STATE(3188), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 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, + [94955] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3063), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3065), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(105), 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, - [134538] = 3, + [94991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2069), 3, + ACTIONS(3073), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2067), 25, + ACTIONS(3075), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242702,15 +300221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134575] = 3, + [95027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 3, + ACTIONS(3077), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1799), 25, + ACTIONS(3079), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242736,15 +300254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134612] = 3, + [95063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 3, + ACTIONS(3093), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1803), 25, + ACTIONS(3095), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242770,15 +300287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134649] = 3, + [95099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1981), 3, + ACTIONS(3101), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1979), 25, + ACTIONS(3103), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242804,65 +300320,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + [95135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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(3185), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3187), 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, + [95171] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 3, + ACTIONS(3107), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1623), 25, + ACTIONS(3109), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242888,15 +300386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134792] = 3, + [95207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 3, + ACTIONS(3189), 2, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1579), 25, + ACTIONS(3191), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242922,15 +300419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134829] = 3, + [95243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2317), 3, + ACTIONS(3193), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2315), 25, + ACTIONS(3195), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242956,15 +300452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134866] = 3, + [95279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2321), 3, + ACTIONS(3205), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2319), 25, + ACTIONS(3207), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242990,15 +300485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134903] = 3, + [95315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 3, + ACTIONS(3127), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1731), 25, + ACTIONS(3129), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243024,65 +300518,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134940] = 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(5459), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4498), 1, - sym_splat_pattern, - STATE(4802), 1, - sym__key_value_pattern, + [95351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, - [135009] = 3, + ACTIONS(3247), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3249), 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, + [95387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 3, + ACTIONS(3577), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1735), 25, + ACTIONS(3579), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243108,15 +300584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135046] = 3, + [95423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 3, + ACTIONS(3285), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1739), 25, + ACTIONS(3287), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243142,15 +300617,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135083] = 3, + [95459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 3, + ACTIONS(3289), 2, sym__dedent, anon_sym_SEMI, + ACTIONS(3291), 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, + [95495] = 16, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(1743), 25, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6512), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4380), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3848), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [95557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3299), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243176,15 +300729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135120] = 3, + [95593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1749), 3, + ACTIONS(3313), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1747), 25, + ACTIONS(3315), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243210,15 +300762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135157] = 3, + [95629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 3, + ACTIONS(3059), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1743), 25, + ACTIONS(3061), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243244,15 +300795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135194] = 3, + [95665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 3, + ACTIONS(3085), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1743), 25, + ACTIONS(3087), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243278,15 +300828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135231] = 3, + [95701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2277), 3, + ACTIONS(3123), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2275), 25, + ACTIONS(3125), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243312,15 +300861,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135268] = 3, + [95737] = 16, + ACTIONS(4614), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6514), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4380), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4634), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3848), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [95799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2281), 3, + ACTIONS(3581), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2279), 25, + ACTIONS(3583), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243346,15 +300940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135305] = 3, + [95835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2397), 3, + ACTIONS(3585), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2395), 25, + ACTIONS(3587), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243380,23 +300973,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135342] = 3, + [95871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4299), 3, + ACTIONS(3593), 2, sym__dedent, - sym_string_start, - anon_sym_LPAREN, - ACTIONS(5461), 25, + anon_sym_SEMI, + ACTIONS(3595), 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, @@ -243414,15 +301006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135379] = 3, + [95907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 3, + ACTIONS(3597), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1987), 25, + ACTIONS(3599), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243448,15 +301039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135416] = 3, + [95943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1993), 3, + ACTIONS(3609), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1991), 25, + ACTIONS(3611), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243482,16 +301072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135453] = 4, - ACTIONS(5463), 1, - anon_sym_COLON, + [95979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1566), 2, + ACTIONS(3497), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1564), 25, + ACTIONS(3499), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243517,65 +301105,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4469), 1, - sym_splat_pattern, - STATE(5007), 1, - sym__key_value_pattern, + [96015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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(3501), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3503), 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, + [96051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 3, + ACTIONS(3511), 2, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1583), 25, + ACTIONS(3513), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243601,15 +301171,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135598] = 3, + [96087] = 16, + ACTIONS(6516), 1, + sym_identifier, + ACTIONS(6519), 1, + anon_sym_LPAREN, + ACTIONS(6534), 1, + anon_sym_long, + ACTIONS(6540), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4380), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1997), 3, + ACTIONS(6528), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6531), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6537), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3848), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6525), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(6522), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [96149] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3625), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1995), 25, + ACTIONS(3627), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243635,15 +301250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135635] = 3, + [96185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2001), 3, + ACTIONS(3633), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1999), 25, + ACTIONS(3635), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243669,15 +301283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135672] = 3, + [96221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2005), 3, + ACTIONS(3613), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2003), 25, + ACTIONS(3615), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243703,115 +301316,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + [96257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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(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, + ACTIONS(3617), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3619), 25, + anon_sym_class, sym_identifier, - ACTIONS(5469), 1, - anon_sym_RBRACE, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 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, + [96293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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(3721), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3723), 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, + [96329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2077), 3, + ACTIONS(3725), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2075), 25, + ACTIONS(3727), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243837,15 +301415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135884] = 3, + [96365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2081), 3, + ACTIONS(3773), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2079), 25, + ACTIONS(3775), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243871,15 +301448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135921] = 3, + [96401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2009), 3, + ACTIONS(3777), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2007), 25, + ACTIONS(3779), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243905,15 +301481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135958] = 3, + [96437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2085), 3, + ACTIONS(3793), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2083), 25, + ACTIONS(3795), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243939,65 +301514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + [96473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, + ACTIONS(3797), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1967), 25, + ACTIONS(3799), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244023,64 +301547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, + [96509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, + ACTIONS(3621), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1719), 25, + ACTIONS(3623), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244106,14 +301580,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136206] = 3, + [96545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2021), 2, + ACTIONS(3701), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2019), 25, + ACTIONS(3703), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244139,14 +301613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136242] = 3, + [96581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 2, + ACTIONS(3925), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1831), 25, + ACTIONS(3923), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244172,14 +301646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136278] = 3, + [96617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2017), 2, + ACTIONS(3943), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2015), 25, + ACTIONS(3945), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244205,14 +301679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136314] = 3, + [96653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1941), 2, + ACTIONS(3953), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1939), 25, + ACTIONS(3955), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244238,14 +301712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136350] = 3, + [96689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 2, + ACTIONS(3201), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1663), 25, + ACTIONS(3203), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244271,14 +301745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136386] = 3, + [96725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2157), 2, + ACTIONS(3281), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2155), 25, + ACTIONS(3283), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244304,14 +301778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136422] = 3, + [96761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1945), 2, + ACTIONS(3899), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1943), 25, + ACTIONS(3901), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244337,14 +301811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136458] = 3, + [96797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2301), 2, + ACTIONS(3251), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2299), 25, + ACTIONS(3253), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244370,47 +301844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136494] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1669), 2, + [96833] = 4, + ACTIONS(3805), 1, sym__dedent, + ACTIONS(6542), 1, anon_sym_SEMI, - ACTIONS(1667), 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, - [136530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1671), 25, + ACTIONS(3801), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244436,14 +301878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136566] = 3, + [96871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 2, + ACTIONS(3261), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1675), 25, + ACTIONS(3263), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244469,14 +301911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136602] = 3, + [96907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 2, + ACTIONS(3265), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1679), 25, + ACTIONS(3267), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244502,14 +301944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136638] = 3, + [96943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1949), 2, + ACTIONS(3277), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1947), 25, + ACTIONS(3279), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244535,14 +301977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136674] = 3, + [96979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 2, + ACTIONS(3361), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2371), 25, + ACTIONS(3363), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244568,14 +302010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136710] = 3, + [97015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2377), 2, + ACTIONS(3365), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2375), 25, + ACTIONS(3367), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244601,14 +302043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136746] = 3, + [97051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2029), 2, + ACTIONS(3369), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2027), 25, + ACTIONS(3371), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244634,14 +302076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136782] = 3, + [97087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 2, + ACTIONS(3373), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1827), 25, + ACTIONS(3375), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244667,14 +302109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136818] = 3, + [97123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2013), 2, + ACTIONS(3377), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2011), 25, + ACTIONS(3379), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244700,14 +302142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136854] = 3, + [97159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1953), 2, + ACTIONS(3681), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1951), 25, + ACTIONS(3683), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244733,13 +302175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136890] = 3, - ACTIONS(3897), 1, + [97195] = 3, + ACTIONS(4377), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5343), 26, + ACTIONS(6500), 26, anon_sym_print, anon_sym_match, anon_sym_async, @@ -244766,14 +302208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136926] = 3, + [97231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2189), 2, + ACTIONS(3685), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2187), 25, + ACTIONS(3687), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244799,14 +302241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136962] = 3, + [97267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1957), 2, + ACTIONS(3689), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1955), 25, + ACTIONS(3691), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244832,14 +302274,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136998] = 3, + [97303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1961), 2, + ACTIONS(3693), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1959), 25, + ACTIONS(3695), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244865,14 +302307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137034] = 3, + [97339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2097), 2, + ACTIONS(3697), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2095), 25, + ACTIONS(3699), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244898,14 +302340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137070] = 3, + [97375] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 2, + ACTIONS(3705), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1843), 25, + ACTIONS(3707), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244931,14 +302373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137106] = 3, + [97411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 2, + ACTIONS(3717), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1847), 25, + ACTIONS(3719), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244964,14 +302406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137142] = 3, + [97447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2177), 2, + ACTIONS(3057), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2175), 25, + ACTIONS(3055), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244997,152 +302439,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137178] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2101), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2099), 25, - anon_sym_class, + [97483] = 16, + ACTIONS(4614), 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, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 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, - [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(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(6544), 1, + sym__dedent, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4380), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2353), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2351), 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(4628), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4634), 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, - [137298] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2357), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2355), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + STATE(3848), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3958), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 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(4622), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137334] = 3, + [97545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 2, + ACTIONS(3381), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1863), 25, + ACTIONS(3383), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245168,14 +302518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137370] = 3, + [97581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2205), 2, + ACTIONS(3415), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2203), 25, + ACTIONS(3417), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245201,14 +302551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137406] = 3, + [97617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2209), 2, + ACTIONS(3419), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2207), 25, + ACTIONS(3421), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245234,14 +302584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137442] = 3, + [97653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(3753), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2359), 25, + ACTIONS(3755), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245267,14 +302617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137478] = 3, + [97689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2213), 2, + ACTIONS(3757), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2211), 25, + ACTIONS(3759), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245300,47 +302650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137514] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2217), 2, + [97725] = 4, + ACTIONS(3255), 1, sym__dedent, + ACTIONS(6546), 1, anon_sym_SEMI, - ACTIONS(2215), 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, - [137550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1839), 25, + ACTIONS(3257), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245366,14 +302684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137586] = 3, + [97763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2221), 2, + ACTIONS(3395), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2219), 25, + ACTIONS(3397), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245399,14 +302717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137622] = 3, + [97799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2225), 2, + ACTIONS(3761), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2223), 25, + ACTIONS(3763), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245432,14 +302750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137658] = 3, + [97835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2229), 2, + ACTIONS(3813), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2227), 25, + ACTIONS(3815), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245465,14 +302783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137694] = 3, + [97871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 2, + ACTIONS(3839), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1695), 25, + ACTIONS(3837), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245498,14 +302816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137730] = 3, + [97907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 2, + ACTIONS(3769), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1699), 25, + ACTIONS(3771), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245531,14 +302849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137766] = 3, + [97943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 2, + ACTIONS(3399), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1867), 25, + ACTIONS(3401), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245564,14 +302882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137802] = 3, + [97979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, + ACTIONS(3403), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1637), 25, + ACTIONS(3405), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245597,14 +302915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137838] = 3, + [98015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 2, + ACTIONS(3407), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1703), 25, + ACTIONS(3409), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245630,14 +302948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137874] = 3, + [98051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 2, + ACTIONS(3411), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1835), 25, + ACTIONS(3413), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245663,14 +302981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137910] = 3, + [98087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2233), 2, + ACTIONS(3423), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2231), 25, + ACTIONS(3425), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245696,14 +303014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137946] = 3, + [98123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2305), 2, + ACTIONS(3439), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2303), 25, + ACTIONS(3441), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245729,14 +303047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137982] = 3, + [98159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1709), 2, + ACTIONS(3427), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1707), 25, + ACTIONS(3429), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245762,14 +303080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138018] = 3, + [98195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 2, + ACTIONS(3847), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1711), 25, + ACTIONS(3845), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245795,14 +303113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138054] = 3, + [98231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 2, + ACTIONS(3269), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1715), 25, + ACTIONS(3271), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245828,14 +303146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138090] = 3, + [98267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2113), 2, + ACTIONS(3273), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2111), 25, + ACTIONS(3275), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245861,14 +303179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138126] = 3, + [98303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2033), 2, + ACTIONS(3293), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2031), 25, + ACTIONS(3295), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245894,14 +303212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138162] = 3, + [98339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 2, + ACTIONS(3309), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1723), 25, + ACTIONS(3311), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245927,14 +303245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138198] = 3, + [98375] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2329), 2, + ACTIONS(3431), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2327), 25, + ACTIONS(3433), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245960,14 +303278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138234] = 3, + [98411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2385), 2, + ACTIONS(3789), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2383), 25, + ACTIONS(3791), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -245993,14 +303311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138270] = 3, + [98447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2309), 2, + ACTIONS(3525), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2307), 25, + ACTIONS(3527), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246026,14 +303344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138306] = 3, + [98483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2141), 2, + ACTIONS(3713), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2139), 25, + ACTIONS(3715), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246059,14 +303377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138342] = 3, + [98519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2045), 2, + ACTIONS(3781), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2043), 25, + ACTIONS(3783), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246092,14 +303410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138378] = 3, + [98555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 2, + ACTIONS(3857), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2183), 25, + ACTIONS(3855), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246125,14 +303443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138414] = 3, + [98591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(3861), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2387), 25, + ACTIONS(3859), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246158,14 +303476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138450] = 3, + [98627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2333), 2, + ACTIONS(3865), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2331), 25, + ACTIONS(3863), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246191,14 +303509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138486] = 3, + [98663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(3869), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2335), 25, + ACTIONS(3867), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246224,14 +303542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138522] = 3, + [98699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2313), 2, + ACTIONS(3873), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2311), 25, + ACTIONS(3871), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246257,21 +303575,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138558] = 3, - ACTIONS(3897), 1, - anon_sym_COLON, + [98735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5343), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(3877), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3875), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -246283,21 +303598,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, - [138594] = 3, + [98771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2393), 2, + ACTIONS(3709), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2391), 25, + ACTIONS(3711), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246323,14 +303641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138630] = 3, + [98807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 2, + ACTIONS(3881), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1727), 25, + ACTIONS(3879), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246356,14 +303674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138666] = 3, + [98843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 2, + ACTIONS(3885), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1627), 25, + ACTIONS(3883), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246389,14 +303707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138702] = 3, + [98879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2073), 2, + ACTIONS(3889), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2071), 25, + ACTIONS(3887), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246422,14 +303740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138738] = 3, + [98915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1985), 2, + ACTIONS(3893), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1983), 25, + ACTIONS(3891), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246455,60 +303773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3594), 1, - sym_c_type, + [98951] = 3, 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(3194), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 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, + ACTIONS(3905), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2347), 25, + ACTIONS(3903), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246534,14 +303806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138872] = 3, + [98987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2145), 2, + ACTIONS(3909), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2143), 25, + ACTIONS(3907), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246567,60 +303839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3594), 1, - sym_c_type, + [99023] = 3, 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(3194), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 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(2181), 2, + ACTIONS(3913), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2179), 25, + ACTIONS(3911), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246646,15 +303872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139006] = 4, - ACTIONS(1649), 1, - sym__dedent, - ACTIONS(5503), 1, - anon_sym_SEMI, + [99059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 25, + ACTIONS(3917), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3915), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246680,14 +303905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139044] = 3, + [99095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2025), 2, + ACTIONS(3921), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2023), 25, + ACTIONS(3919), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246713,14 +303938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139080] = 3, + [99131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2161), 2, + ACTIONS(3851), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2159), 25, + ACTIONS(3853), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246746,14 +303971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139116] = 3, + [99167] = 3, + ACTIONS(4173), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2245), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2243), 25, + ACTIONS(4175), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246779,14 +304003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139152] = 3, + [99202] = 3, + ACTIONS(3965), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2165), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2163), 25, + ACTIONS(3967), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246812,14 +304035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139188] = 3, + [99237] = 3, + ACTIONS(4139), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2249), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2247), 25, + ACTIONS(4137), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246845,14 +304067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139224] = 3, + [99272] = 3, + ACTIONS(4169), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2167), 25, + ACTIONS(4171), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246878,62 +304099,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(4651), 1, - sym_splat_pattern, - STATE(5475), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5403), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5006), 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, + [99307] = 3, + ACTIONS(4269), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2193), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2191), 25, + ACTIONS(4271), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246959,14 +304131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139362] = 3, + [99342] = 3, + ACTIONS(4273), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1917), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1915), 25, + ACTIONS(4275), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -246992,14 +304163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139398] = 3, + [99377] = 3, + ACTIONS(4069), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2253), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2251), 25, + ACTIONS(4071), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -247025,14 +304195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139434] = 3, + [99412] = 3, + ACTIONS(3255), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2257), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2255), 25, + ACTIONS(3257), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -247058,14 +304227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139470] = 3, + [99447] = 3, + ACTIONS(4101), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2259), 25, + ACTIONS(4103), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -247091,14 +304259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139506] = 3, + [99482] = 3, + ACTIONS(4277), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2263), 25, + ACTIONS(4279), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -247124,51 +304291,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139542] = 3, + [99517] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6406), 1, + anon_sym_class, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4785), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1651), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [99577] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(6548), 1, + aux_sym_integer_token1, + STATE(2964), 1, + sym_c_integer_type, + STATE(3957), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4839), 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_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, + [99621] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6448), 1, + anon_sym_class, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4747), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [99681] = 16, + ACTIONS(413), 1, anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6094), 1, + anon_sym_class, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4721), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 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(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139578] = 3, + [99741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2269), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2267), 25, + ACTIONS(4974), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4964), 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, + [99775] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6001), 1, anon_sym_class, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4762), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4660), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [99835] = 20, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6177), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6550), 1, sym_identifier, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6554), 1, + anon_sym_RPAREN, + STATE(4003), 1, + sym__signedness, + STATE(4004), 1, + sym_int_type, + STATE(4252), 1, + sym__longness, + STATE(4312), 1, + sym_function_pointer_type, + STATE(4449), 1, + sym_operator_name, + STATE(5624), 1, + sym_maybe_typed_name, + STATE(6620), 1, + sym__typedargslist, + STATE(6687), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6556), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5872), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [99903] = 5, + ACTIONS(6377), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6558), 5, anon_sym_api, - anon_sym_extern, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(6375), 17, + anon_sym_class, + sym_identifier, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -247184,189 +304615,482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [139614] = 3, + [99941] = 20, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6550), 1, + sym_identifier, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6561), 1, + anon_sym_RPAREN, + ACTIONS(6563), 1, + anon_sym_DOT_DOT_DOT, + STATE(4003), 1, + sym__signedness, + STATE(4004), 1, + sym_int_type, + STATE(4252), 1, + sym__longness, + STATE(4312), 1, + sym_function_pointer_type, + STATE(4449), 1, + sym_operator_name, + STATE(5624), 1, + sym_maybe_typed_name, + STATE(6687), 1, + sym_c_type, + STATE(6838), 1, + sym__typedargslist, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1655), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6556), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5872), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, + [100009] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5580), 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, + [100043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5610), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5608), 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, + [100077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5598), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5596), 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, + [100111] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4658), 1, anon_sym_operator, + ACTIONS(4791), 1, + sym_identifier, + ACTIONS(6408), 1, + anon_sym_ctypedef, + STATE(4025), 1, + sym__signedness, + STATE(4038), 1, + sym_int_type, + STATE(4241), 1, + sym__longness, + STATE(4430), 1, + sym_operator_name, + STATE(4785), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4660), 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(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139650] = 3, + [100171] = 19, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6550), 1, + sym_identifier, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, + anon_sym_RPAREN, + ACTIONS(6567), 1, + anon_sym_DOT_DOT_DOT, + STATE(4003), 1, + sym__signedness, + STATE(4004), 1, + sym_int_type, + STATE(4252), 1, + sym__longness, + STATE(4312), 1, + sym_function_pointer_type, + STATE(4449), 1, + sym_operator_name, + STATE(5624), 1, + sym_maybe_typed_name, + STATE(6687), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2273), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2271), 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(1664), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(6556), 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, - [139686] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2037), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2035), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + STATE(6329), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, + [100236] = 19, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6179), 1, anon_sym_operator, + ACTIONS(6550), 1, + sym_identifier, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6569), 1, + anon_sym_RPAREN, + ACTIONS(6571), 1, + anon_sym_DOT_DOT_DOT, + STATE(4003), 1, + sym__signedness, + STATE(4004), 1, + sym_int_type, + STATE(4252), 1, + sym__longness, + STATE(4312), 1, + sym_function_pointer_type, + STATE(4449), 1, + sym_operator_name, + STATE(5624), 1, + sym_maybe_typed_name, + STATE(6687), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(6556), 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, - [139722] = 3, + STATE(6329), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [100301] = 5, + ACTIONS(6573), 1, + aux_sym_integer_token1, + STATE(3957), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1921), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1919), 25, - anon_sym_class, + ACTIONS(4865), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4863), 20, + 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_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [100338] = 14, + ACTIONS(4614), 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, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4632), 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, - [139758] = 3, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(4388), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2285), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2283), 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(4628), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4634), 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(3949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4578), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4622), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139794] = 3, + [100393] = 9, + ACTIONS(5394), 1, + anon_sym_EQ, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5615), 1, + anon_sym_is, + STATE(3959), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2289), 2, - sym__dedent, + ACTIONS(5618), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2265), 2, + sym__not_in, + sym__is_not, + ACTIONS(5612), 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(5392), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [100438] = 9, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5057), 1, + anon_sym_is, + ACTIONS(5326), 1, + anon_sym_EQ, + STATE(3959), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5059), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2265), 2, + sym__not_in, + sym__is_not, + ACTIONS(5041), 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(5324), 10, + sym__newline, anon_sym_SEMI, - ACTIONS(2287), 25, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [100483] = 13, + ACTIONS(4496), 1, + anon_sym_SLASH, + ACTIONS(4506), 1, + anon_sym_COMMA, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_complex, + STATE(4265), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4489), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(4477), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4485), 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, + [100536] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5174), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + ACTIONS(5176), 20, anon_sym_class, sym_identifier, anon_sym_api, - anon_sym_extern, + anon_sym_namespace, + anon_sym_nogil, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -247378,28 +305102,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, - [139830] = 3, + [100568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1753), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1751), 25, + ACTIONS(5251), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + ACTIONS(5253), 20, anon_sym_class, sym_identifier, anon_sym_api, - anon_sym_extern, + anon_sym_namespace, + anon_sym_nogil, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -247411,28 +305131,20 @@ 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, - [139866] = 3, + [100600] = 3, + ACTIONS(4377), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2197), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2195), 25, + ACTIONS(6500), 22, anon_sym_class, sym_identifier, anon_sym_api, - anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -247448,2844 +305160,3555 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139902] = 3, + [100632] = 17, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6550), 1, + sym_identifier, + ACTIONS(6552), 1, + anon_sym_LPAREN, + STATE(4003), 1, + sym__signedness, + STATE(4004), 1, + sym_int_type, + STATE(4252), 1, + sym__longness, + STATE(4312), 1, + sym_function_pointer_type, + STATE(4449), 1, + sym_operator_name, + STATE(5624), 1, + sym_maybe_typed_name, + STATE(6687), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1755), 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(1664), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(6556), 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, - [139938] = 3, + STATE(6329), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [100691] = 8, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5352), 1, + anon_sym_is, + STATE(3970), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5354), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2253), 2, + sym__not_in, + sym__is_not, + ACTIONS(5336), 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(5324), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [100732] = 9, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5326), 1, + anon_sym_EQ, + ACTIONS(5549), 1, + anon_sym_is, + STATE(3968), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5551), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2322), 2, + sym__not_in, + sym__is_not, + ACTIONS(5535), 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(5324), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [100775] = 9, + ACTIONS(5394), 1, + anon_sym_EQ, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5905), 1, + anon_sym_is, + STATE(3968), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5908), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2322), 2, + sym__not_in, + sym__is_not, + ACTIONS(5902), 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(5392), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [100818] = 9, + ACTIONS(5394), 1, + anon_sym_EQ, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5467), 1, + anon_sym_is, + STATE(3969), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5470), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2379), 2, + sym__not_in, + sym__is_not, + ACTIONS(5464), 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(5392), 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, + [100861] = 8, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5837), 1, + anon_sym_is, + STATE(3970), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5840), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2253), 2, + sym__not_in, + sym__is_not, + ACTIONS(5834), 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(5392), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [100902] = 9, + ACTIONS(5394), 1, + anon_sym_as, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5402), 1, + anon_sym_is, + STATE(3971), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5405), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2368), 2, + sym__not_in, + sym__is_not, + ACTIONS(5396), 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(5392), 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, + [100945] = 9, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5029), 1, + anon_sym_is, + ACTIONS(5326), 1, + anon_sym_as, + STATE(3971), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5031), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2368), 2, + sym__not_in, + sym__is_not, + ACTIONS(5013), 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(5324), 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, + [100988] = 9, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(4990), 1, + anon_sym_is, + ACTIONS(5326), 1, + anon_sym_EQ, + STATE(3969), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4992), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2379), 2, + sym__not_in, + sym__is_not, + ACTIONS(4970), 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(5324), 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, + [101031] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4577), 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, + [101061] = 9, + ACTIONS(5394), 1, + anon_sym_as, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5772), 1, + anon_sym_is, + STATE(3975), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5775), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2331), 2, + sym__not_in, + sym__is_not, + ACTIONS(5769), 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(5392), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [101103] = 4, + ACTIONS(6576), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5079), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5069), 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, + [101135] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4612), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4610), 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, + [101165] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4571), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4506), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4566), 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, + [101197] = 9, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5232), 1, + anon_sym_is, + ACTIONS(5326), 1, + anon_sym_as, + STATE(3975), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5234), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2331), 2, + sym__not_in, + sym__is_not, + ACTIONS(5216), 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(5324), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [101239] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4496), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4506), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4485), 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, + [101271] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4604), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4606), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4599), 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, + [101303] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4551), 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, + [101333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4575), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4573), 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, + [101363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4583), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4581), 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, + [101393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4583), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4581), 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, + [101423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4577), 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, + [101453] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1597), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(981), 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, + [101485] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4560), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4562), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4555), 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, + [101517] = 8, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5148), 1, + anon_sym_is, + STATE(3994), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5150), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2337), 2, + sym__not_in, + sym__is_not, + ACTIONS(5134), 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(5324), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [101557] = 8, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5196), 1, + anon_sym_is, + STATE(3991), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5198), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2234), 2, + sym__not_in, + sym__is_not, + ACTIONS(5182), 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(5324), 8, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [101597] = 8, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5763), 1, + anon_sym_is, + STATE(3991), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5766), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2234), 2, + sym__not_in, + sym__is_not, + ACTIONS(5760), 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(5392), 8, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [101637] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1597), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1844), 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, + [101669] = 9, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5123), 1, + anon_sym_is, + ACTIONS(5326), 1, + anon_sym_as, + STATE(3997), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1759), 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, - [139974] = 3, + ACTIONS(5125), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2278), 2, + sym__not_in, + sym__is_not, + ACTIONS(5107), 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(5324), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [101711] = 8, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5679), 1, + anon_sym_is, + STATE(3994), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 2, - sym__dedent, + ACTIONS(5682), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2337), 2, + sym__not_in, + sym__is_not, + ACTIONS(5676), 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(5392), 8, + sym__newline, anon_sym_SEMI, - ACTIONS(1763), 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, - [140010] = 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [101751] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1767), 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, - [140046] = 3, + ACTIONS(983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2885), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(981), 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, + [101783] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1853), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1851), 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, - [140082] = 3, + ACTIONS(4496), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6578), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(4485), 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, + [101815] = 9, + ACTIONS(5394), 1, + anon_sym_as, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5667), 1, + anon_sym_is, + STATE(3997), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1771), 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, - [140118] = 3, + ACTIONS(5670), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2278), 2, + sym__not_in, + sym__is_not, + ACTIONS(5664), 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(5392), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [101857] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1775), 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, - [140154] = 3, + ACTIONS(4496), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4585), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(4485), 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, + [101889] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2293), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2291), 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, - [140190] = 16, - ACTIONS(4188), 1, - sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4590), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4585), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4587), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5505), 1, - sym__dedent, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3594), 1, - sym_c_type, + 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, + [101921] = 4, 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(3194), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 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(983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1014), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(981), 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, + [101953] = 6, + ACTIONS(6580), 1, + anon_sym_as, + ACTIONS(6583), 1, + anon_sym_and, + ACTIONS(6585), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1823), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + ACTIONS(5987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5982), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [101988] = 15, + ACTIONS(4658), 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, - [140288] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1781), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1779), 25, - anon_sym_class, + ACTIONS(5999), 1, + anon_sym_COLON, + ACTIONS(6587), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6598), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, 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, - [140324] = 3, + STATE(4036), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1925), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1923), 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, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4234), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4426), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6595), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [102041] = 7, + ACTIONS(1668), 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, - [140360] = 3, + STATE(4233), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1783), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + ACTIONS(6608), 2, anon_sym_int, anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, + ACTIONS(6610), 2, 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, - [140396] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1787), 25, - anon_sym_class, + ACTIONS(6604), 5, + anon_sym_STAR, 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, - [140432] = 16, - ACTIONS(4188), 1, + anon_sym___stdcall, + ACTIONS(6606), 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, + [102078] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6612), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(6614), 1, anon_sym_LPAREN, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5507), 1, - sym__dedent, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(3594), 1, - sym_c_type, + ACTIONS(6618), 1, + anon_sym_complex, + STATE(4030), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, 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(3194), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4196), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4499), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6616), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [102129] = 14, + ACTIONS(4489), 1, + anon_sym_LPAREN, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6612), 1, + sym_identifier, + ACTIONS(6620), 1, anon_sym_complex, - ACTIONS(105), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [140494] = 3, + STATE(4015), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2105), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2103), 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, - [140530] = 3, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4126), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4499), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6595), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [102180] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2149), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2147), 25, - anon_sym_class, + ACTIONS(983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1597), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(981), 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, + [102211] = 15, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6587), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6598), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, 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, - [140566] = 3, + ACTIONS(6622), 1, + anon_sym_COLON, + STATE(4036), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1929), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1927), 25, - anon_sym_class, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4234), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4426), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6595), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [102264] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6612), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6624), 1, 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, - [140602] = 3, + STATE(4027), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2137), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2135), 25, - anon_sym_class, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6595), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4158), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4499), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(4489), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [102315] = 15, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, 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, - [140638] = 3, + STATE(4273), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1933), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1931), 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, - [140674] = 9, - ACTIONS(4447), 1, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6631), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(6633), 2, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(4452), 1, + STATE(4154), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + [102368] = 8, + ACTIONS(4984), 1, anon_sym_not, - ACTIONS(4455), 1, + ACTIONS(5317), 1, anon_sym_is, - STATE(3148), 1, + STATE(4016), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4458), 2, + ACTIONS(5319), 2, anon_sym_LT, anon_sym_GT, - STATE(2031), 2, + STATE(2237), 2, sym__not_in, sym__is_not, - ACTIONS(4449), 6, + ACTIONS(5301), 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), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(5324), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, + anon_sym_by, anon_sym_and, anon_sym_or, - anon_sym_nogil, - [140722] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1857), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1855), 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, - [140758] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1937), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1935), 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, - [140794] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2173), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2171), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [140830] = 4, - ACTIONS(1635), 1, - sym__dedent, - ACTIONS(5509), 1, - anon_sym_SEMI, + [102407] = 7, + ACTIONS(6583), 1, + anon_sym_and, + ACTIONS(6585), 1, + anon_sym_or, + ACTIONS(6637), 1, + anon_sym_as, + ACTIONS(6639), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 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, - [140868] = 3, + ACTIONS(5971), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5967), 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, + [102444] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, + sym_identifier, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(6641), 1, + anon_sym_complex, + STATE(4273), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2089), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2087), 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, - [140904] = 3, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4211), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6633), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [102495] = 5, + ACTIONS(6583), 1, + anon_sym_and, + ACTIONS(6585), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2109), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2107), 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, - [140940] = 3, + ACTIONS(5917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5915), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [102528] = 4, + ACTIONS(6583), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2041), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2039), 25, - anon_sym_class, + ACTIONS(5610), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5608), 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, + [102559] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6643), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6645), 1, + anon_sym_LPAREN, + ACTIONS(6649), 1, 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, - [140976] = 3, + STATE(4273), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2093), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2091), 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, - [141012] = 3, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4505), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6647), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [102610] = 8, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5894), 1, + anon_sym_is, + STATE(4016), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2323), 25, - anon_sym_class, + ACTIONS(5897), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2237), 2, + sym__not_in, + sym__is_not, + ACTIONS(5891), 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(5392), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_by, + anon_sym_and, + anon_sym_or, + [102649] = 15, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6587), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6598), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, 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, - [141048] = 3, + ACTIONS(6651), 1, + anon_sym_COLON, + STATE(4036), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2297), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2295), 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, - [141084] = 3, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4234), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4426), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6595), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [102702] = 7, + ACTIONS(6583), 1, + anon_sym_and, + ACTIONS(6585), 1, + anon_sym_or, + ACTIONS(6637), 1, + anon_sym_as, + ACTIONS(6639), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1859), 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, - [141120] = 16, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(5229), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, + ACTIONS(5949), 2, anon_sym_STAR, - ACTIONS(5233), 1, + anon_sym_SLASH, + ACTIONS(5947), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5239), 1, + anon_sym_AT, anon_sym_DASH, - ACTIONS(5243), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - sym_integer, - ACTIONS(5247), 1, - sym_float, - ACTIONS(5511), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [102739] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6653), 1, sym_identifier, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, + ACTIONS(6655), 1, + anon_sym_LPAREN, + ACTIONS(6661), 1, + anon_sym_complex, + STATE(4012), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5513), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4471), 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, - [141181] = 3, - ACTIONS(2421), 1, - sym__dedent, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4130), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4468), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6658), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [102790] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 25, - anon_sym_class, + ACTIONS(983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2885), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(981), 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, + [102821] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6663), 1, + anon_sym_LPAREN, + ACTIONS(6665), 1, 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, - [141216] = 3, - ACTIONS(2469), 1, - sym__dedent, + STATE(4273), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 25, - anon_sym_class, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4131), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6633), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [102872] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6612), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6667), 1, 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, - [141251] = 3, - ACTIONS(2417), 1, - sym__dedent, + STATE(4030), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 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, - [141286] = 3, - ACTIONS(2409), 1, - sym__dedent, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6616), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4162), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4499), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6614), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [102923] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 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, - [141321] = 3, - ACTIONS(2413), 1, - sym__dedent, + ACTIONS(4496), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6578), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(4485), 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, + [102954] = 7, + ACTIONS(6583), 1, + anon_sym_and, + ACTIONS(6585), 1, + anon_sym_or, + ACTIONS(6637), 1, + anon_sym_as, + ACTIONS(6639), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 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, + ACTIONS(5482), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5480), 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, + [102991] = 7, + ACTIONS(413), 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, - [141356] = 3, - ACTIONS(1649), 1, - sym__dedent, + STATE(4245), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + ACTIONS(6669), 2, anon_sym_int, anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, + ACTIONS(6671), 2, 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, - [141391] = 16, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(5058), 1, - anon_sym_LPAREN, - ACTIONS(5060), 1, + ACTIONS(6604), 5, anon_sym_STAR, - ACTIONS(5066), 1, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6606), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - ACTIONS(5068), 1, + anon_sym_EQ, 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, + anon_sym_AMP, + [103028] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6653), 1, sym_identifier, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, + ACTIONS(6673), 1, + anon_sym_LPAREN, + ACTIONS(6678), 1, + anon_sym_complex, + STATE(4021), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5515), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4333), 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(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4229), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4468), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6676), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [103079] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6643), 1, + sym_identifier, + ACTIONS(6680), 1, + anon_sym_complex, + STATE(4273), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 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, - [141487] = 16, - ACTIONS(2533), 1, - anon_sym_None, - ACTIONS(2541), 1, - sym_string_start, - ACTIONS(5229), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, + ACTIONS(4879), 2, anon_sym_STAR, - ACTIONS(5233), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(6647), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4144), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4505), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6645), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [103130] = 15, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 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(5511), 1, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6653), 1, sym_identifier, - STATE(4209), 1, - sym_string, - STATE(4510), 1, - sym_dotted_name, + ACTIONS(6655), 1, + anon_sym_LPAREN, + ACTIONS(6684), 1, + anon_sym_complex, + STATE(4009), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4484), 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, - [141548] = 16, - ACTIONS(1301), 1, - anon_sym_None, - ACTIONS(1313), 1, - sym_string_start, - ACTIONS(5058), 1, - anon_sym_LPAREN, - ACTIONS(5060), 1, + ACTIONS(4879), 2, anon_sym_STAR, - ACTIONS(5066), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5068), 1, + anon_sym_AMP, + ACTIONS(6658), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(6682), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4191), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4468), 2, + sym_operator_name, + sym_c_function_pointer_name, + [103183] = 15, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 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, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6653), 1, sym_identifier, - STATE(4030), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, + ACTIONS(6673), 1, + anon_sym_LPAREN, + ACTIONS(6688), 1, + anon_sym_complex, + STATE(4021), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5519), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4302), 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, - [141609] = 16, - ACTIONS(2453), 1, - anon_sym_None, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(4879), 2, anon_sym_STAR, - ACTIONS(5363), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5365), 1, + anon_sym_AMP, + ACTIONS(6676), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(6686), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4122), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4468), 2, + sym_operator_name, + sym_c_function_pointer_name, + [103236] = 14, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4883), 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, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6643), 1, sym_identifier, - STATE(4242), 1, - sym_string, - STATE(4554), 1, - sym_dotted_name, + ACTIONS(6663), 1, + anon_sym_LPAREN, + ACTIONS(6690), 1, + anon_sym_complex, + STATE(4273), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5523), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4580), 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, - [141670] = 3, - ACTIONS(2405), 1, - sym__dedent, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4183), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4505), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6647), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [103287] = 7, + ACTIONS(6583), 1, + anon_sym_and, + ACTIONS(6585), 1, + anon_sym_or, + ACTIONS(6637), 1, + anon_sym_as, + ACTIONS(6639), 1, + anon_sym_if, 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] = 3, - ACTIONS(2401), 1, - sym__dedent, + ACTIONS(5592), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5590), 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, + [103324] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 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, - [141740] = 16, - ACTIONS(2453), 1, - anon_sym_None, - ACTIONS(2461), 1, - sym_string_start, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(4496), 2, anon_sym_STAR, - ACTIONS(5363), 1, + anon_sym_SLASH, + ACTIONS(4585), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(4485), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(5365), 1, anon_sym_LBRACK, - ACTIONS(5367), 1, + anon_sym_AT, anon_sym_DASH, - ACTIONS(5371), 1, - anon_sym_LBRACE, - ACTIONS(5373), 1, - sym_integer, - ACTIONS(5375), 1, - sym_float, - ACTIONS(5521), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [103355] = 15, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6092), 1, + anon_sym_COLON, + ACTIONS(6587), 1, sym_identifier, - STATE(4242), 1, - sym_string, - STATE(4554), 1, - sym_dotted_name, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6598), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, + anon_sym_complex, + STATE(4036), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5525), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4581), 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, - [141801] = 16, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5205), 1, - anon_sym_LPAREN, - ACTIONS(5209), 1, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4234), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4426), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6595), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [103408] = 7, + ACTIONS(6583), 1, + anon_sym_and, + ACTIONS(6585), 1, + anon_sym_or, + ACTIONS(6637), 1, + anon_sym_as, + ACTIONS(6639), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5931), 2, anon_sym_STAR, - ACTIONS(5211), 1, + anon_sym_SLASH, + ACTIONS(5927), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5215), 1, + anon_sym_AT, anon_sym_DASH, - ACTIONS(5219), 1, - anon_sym_LBRACE, - ACTIONS(5221), 1, - sym_integer, - ACTIONS(5223), 1, - sym_float, - ACTIONS(5527), 1, - sym_identifier, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [103445] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4422), 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, - [141862] = 16, - ACTIONS(1462), 1, - anon_sym_None, - ACTIONS(1474), 1, - sym_string_start, - ACTIONS(5205), 1, - anon_sym_LPAREN, - ACTIONS(5209), 1, + ACTIONS(983), 2, anon_sym_STAR, - ACTIONS(5211), 1, + anon_sym_SLASH, + ACTIONS(1014), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(981), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5215), 1, + anon_sym_AT, anon_sym_DASH, - ACTIONS(5219), 1, - anon_sym_LBRACE, - ACTIONS(5221), 1, - sym_integer, - ACTIONS(5223), 1, - sym_float, - ACTIONS(5527), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [103475] = 14, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6692), 1, sym_identifier, - STATE(4187), 1, - sym_string, - STATE(4559), 1, - sym_dotted_name, + ACTIONS(6694), 1, + anon_sym_LPAREN, + ACTIONS(6697), 1, + anon_sym_LBRACK, + ACTIONS(6700), 1, + anon_sym_complex, + STATE(4299), 1, + sym_type_index, + STATE(4308), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5531), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4415), 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, - [141923] = 3, - ACTIONS(2465), 1, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4235), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4481), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6647), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [103525] = 14, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(6702), 1, + sym_identifier, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6706), 1, sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4049), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, + sym__longness, + STATE(6358), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(415), 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, - [141958] = 20, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5098), 1, + STATE(4419), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [103575] = 14, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5533), 1, + ACTIONS(6587), 1, sym_identifier, - ACTIONS(5535), 1, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6602), 1, + anon_sym_complex, + ACTIONS(6708), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(6711), 1, + anon_sym_LBRACK, + STATE(4036), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4251), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4426), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6616), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [103625] = 8, + ACTIONS(5399), 1, + anon_sym_not, + ACTIONS(5956), 1, + anon_sym_is, + STATE(4039), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5959), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2240), 2, + sym__not_in, + sym__is_not, + ACTIONS(5392), 6, anon_sym_RPAREN, - ACTIONS(5539), 1, - anon_sym_DOT_DOT_DOT, - STATE(3261), 1, - sym_int_type, - STATE(3262), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5953), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [103663] = 4, + ACTIONS(6714), 1, + anon_sym_COMMA, + STATE(4050), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2207), 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, + [103693] = 14, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + ACTIONS(6718), 1, + sym_string_start, + STATE(4003), 1, sym__signedness, - STATE(3479), 1, + STATE(4252), 1, sym__longness, - STATE(3546), 1, - sym_function_pointer_type, - STATE(3723), 1, - sym_operator_name, - STATE(4696), 1, - sym_maybe_typed_name, - STATE(5668), 1, - sym__typedargslist, - STATE(5729), 1, + STATE(5728), 1, sym_c_type, + STATE(6544), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5541), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(5017), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1414), 3, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142026] = 3, + [103743] = 14, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6598), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, + anon_sym_complex, + STATE(4036), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4234), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4426), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6595), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [103793] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4803), 2, + ACTIONS(4496), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4801), 23, + ACTIONS(4506), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4485), 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, + [103823] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4604), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4606), 3, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, + anon_sym_in, + ACTIONS(4599), 14, + anon_sym_DOT, + anon_sym_LPAREN, 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, - [142060] = 20, - ACTIONS(1422), 1, + [103853] = 14, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(5096), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5533), 1, + ACTIONS(6702), 1, sym_identifier, - ACTIONS(5535), 1, + ACTIONS(6704), 1, anon_sym_LPAREN, - ACTIONS(5543), 1, - anon_sym_RPAREN, - STATE(3261), 1, - sym_int_type, - STATE(3262), 1, + ACTIONS(6720), 1, + sym__dedent, + STATE(4025), 1, sym__signedness, - STATE(3479), 1, + STATE(4048), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, sym__longness, - STATE(3546), 1, - sym_function_pointer_type, - STATE(3723), 1, - sym_operator_name, - STATE(4696), 1, - sym_maybe_typed_name, - STATE(5729), 1, + STATE(6358), 1, sym_c_type, - STATE(5837), 1, - sym__typedargslist, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(5541), 2, + ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(5017), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1414), 3, + STATE(4419), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142128] = 3, + [103903] = 8, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5730), 1, + anon_sym_is, + STATE(4039), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4811), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4809), 23, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5732), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2240), 2, + sym__not_in, + sym__is_not, + ACTIONS(5324), 6, + anon_sym_RPAREN, 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, - [142162] = 3, + ACTIONS(5714), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [103941] = 14, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(6702), 1, + sym_identifier, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6722), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4058), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, + sym__longness, + STATE(6358), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4610), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(415), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4419), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - anon_sym_operator, + [103991] = 14, + ACTIONS(6724), 1, + sym_identifier, + ACTIONS(6727), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_long, + ACTIONS(6745), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4048), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, + sym__longness, + STATE(6358), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6733), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(6736), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(6742), 2, anon_sym_const, anon_sym_volatile, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [142196] = 16, - ACTIONS(381), 1, + STATE(4419), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6730), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [104041] = 14, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(6702), 1, sym_identifier, - ACTIONS(4974), 1, - anon_sym_class, - STATE(3253), 1, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6747), 1, + sym__dedent, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4048), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3921), 1, - sym_maybe_typed_name, + STATE(6358), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + STATE(4419), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 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, - [142256] = 3, + [104091] = 4, + ACTIONS(6751), 1, + anon_sym_COMMA, + STATE(4050), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4714), 23, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(6749), 17, + sym__newline, + anon_sym_SEMI, 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, - [142290] = 16, - ACTIONS(381), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [104121] = 14, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, sym_identifier, - ACTIONS(5010), 1, - anon_sym_class, - STATE(3253), 1, + ACTIONS(6754), 1, + anon_sym_RPAREN, + ACTIONS(6756), 1, + anon_sym_STAR, + STATE(4003), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4252), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3936), 1, - sym_maybe_typed_name, + STATE(5633), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 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, - [142350] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4407), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4393), 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, - [142384] = 16, - ACTIONS(381), 1, + [104171] = 14, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(6702), 1, sym_identifier, - ACTIONS(5383), 1, - anon_sym_ctypedef, - STATE(3253), 1, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6758), 1, + sym__dedent, + STATE(4025), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4054), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3956), 1, - sym_maybe_typed_name, + STATE(6358), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + STATE(4419), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 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, - [142444] = 16, - ACTIONS(381), 1, + [104221] = 14, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(4310), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, sym_identifier, - ACTIONS(5381), 1, - anon_sym_class, - STATE(3253), 1, + ACTIONS(6756), 1, + anon_sym_STAR, + ACTIONS(6760), 1, + anon_sym_RPAREN, + STATE(4003), 1, sym__signedness, - STATE(3271), 1, - sym_int_type, - STATE(3480), 1, + STATE(4252), 1, sym__longness, - STATE(3695), 1, - sym_operator_name, - STATE(3956), 1, - sym_maybe_typed_name, + STATE(5548), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(4140), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(375), 3, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 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, - [142504] = 3, + [104271] = 14, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(6702), 1, + sym_identifier, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6762), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4048), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, + sym__longness, + STATE(6358), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4646), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(4648), 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(409), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [142538] = 13, - ACTIONS(3910), 1, - anon_sym_SLASH, - ACTIONS(3920), 1, - anon_sym_COMMA, - ACTIONS(4427), 1, + STATE(4419), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [104321] = 14, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6589), 1, anon_sym_DOT, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6766), 1, + anon_sym_LPAREN, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(4435), 1, + ACTIONS(6772), 1, anon_sym_complex, - STATE(3483), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4299), 1, sym_type_index, + STATE(4308), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3665), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3899), 9, + STATE(4253), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4413), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6633), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [104371] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4560), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4562), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4555), 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, - [142591] = 9, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4697), 1, - anon_sym_is, - STATE(3191), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4700), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2047), 2, - sym__not_in, - sym__is_not, - 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(4445), 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, - [142636] = 9, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4439), 1, - anon_sym_EQ, - ACTIONS(4538), 1, - anon_sym_is, - STATE(3191), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4540), 2, - anon_sym_LT, - anon_sym_GT, - 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), 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, - [142681] = 19, - ACTIONS(1422), 1, + [104401] = 15, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5533), 1, + ACTIONS(6774), 1, sym_identifier, - ACTIONS(5535), 1, + ACTIONS(6776), 1, anon_sym_LPAREN, - ACTIONS(5545), 1, - anon_sym_RPAREN, - ACTIONS(5547), 1, - anon_sym_DOT_DOT_DOT, - STATE(3261), 1, - sym_int_type, - STATE(3262), 1, + STATE(4003), 1, sym__signedness, - STATE(3479), 1, + STATE(4026), 1, + sym_int_type, + STATE(4252), 1, sym__longness, - STATE(3546), 1, + STATE(4294), 1, sym_function_pointer_type, - STATE(3723), 1, + STATE(4501), 1, sym_operator_name, - STATE(4696), 1, - sym_maybe_typed_name, - STATE(5729), 1, + STATE(6936), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5541), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(5309), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1414), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142746] = 14, - ACTIONS(4188), 1, + [104453] = 14, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(6702), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(6704), 1, anon_sym_LPAREN, - ACTIONS(4202), 1, - anon_sym_long, - STATE(3325), 1, + ACTIONS(6780), 1, + sym__dedent, + STATE(4025), 1, sym__signedness, - STATE(3549), 1, + STATE(4048), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, sym__longness, - STATE(3585), 1, + STATE(6358), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4204), 2, + ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(2832), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3812), 2, + STATE(4419), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(407), 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, - [142801] = 19, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5098), 1, + [104503] = 14, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5533), 1, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6782), 1, sym_identifier, - ACTIONS(5535), 1, + ACTIONS(6784), 1, anon_sym_LPAREN, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(5551), 1, - anon_sym_DOT_DOT_DOT, - STATE(3261), 1, - sym_int_type, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(3546), 1, - sym_function_pointer_type, - STATE(3723), 1, - sym_operator_name, - STATE(4696), 1, - sym_maybe_typed_name, - STATE(5729), 1, - sym_c_type, + ACTIONS(6788), 1, + anon_sym_LBRACK, + ACTIONS(6792), 1, + anon_sym_complex, + STATE(4055), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, 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(5309), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4254), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4471), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6658), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [104553] = 14, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6782), 1, + sym_identifier, + ACTIONS(6792), 1, anon_sym_complex, - [142866] = 3, + ACTIONS(6794), 1, + anon_sym_LPAREN, + ACTIONS(6797), 1, + anon_sym_LBRACK, + STATE(4055), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5553), 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(5555), 12, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(4494), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - [142899] = 3, + STATE(4250), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4471), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6676), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [104603] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5557), 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(5559), 12, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(4571), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4506), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4566), 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_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - [142932] = 17, - ACTIONS(1422), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [104633] = 14, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5533), 1, + ACTIONS(6702), 1, sym_identifier, - ACTIONS(5535), 1, + ACTIONS(6704), 1, anon_sym_LPAREN, - STATE(3261), 1, + ACTIONS(6800), 1, + sym__dedent, + STATE(4025), 1, + sym__signedness, + STATE(4045), 1, + aux_sym_fused_repeat1, + STATE(4241), 1, + sym__longness, + STATE(6358), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(415), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4419), 2, sym_int_type, - STATE(3262), 1, + sym_function_pointer_type, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [104683] = 15, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6802), 1, + sym_identifier, + ACTIONS(6804), 1, + anon_sym_LPAREN, + STATE(4003), 1, sym__signedness, - STATE(3479), 1, + STATE(4029), 1, + sym_int_type, + STATE(4252), 1, sym__longness, - STATE(3546), 1, + STATE(4365), 1, sym_function_pointer_type, - STATE(3723), 1, + STATE(4501), 1, sym_operator_name, - STATE(4696), 1, - sym_maybe_typed_name, - STATE(5729), 1, + STATE(6778), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5541), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(5309), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1414), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142991] = 9, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4439), 1, - anon_sym_as, - ACTIONS(4498), 1, - anon_sym_is, - STATE(3205), 1, - aux_sym_comparison_operator_repeat1, + [104735] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4500), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2009), 2, - sym__not_in, - sym__is_not, - ACTIONS(4482), 6, + ACTIONS(6749), 18, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, 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), 8, + 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, + [104760] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6749), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [143034] = 9, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4566), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [104785] = 8, + ACTIONS(4984), 1, + anon_sym_not, + ACTIONS(5826), 1, anon_sym_is, - STATE(3204), 1, + STATE(4069), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, + ACTIONS(5828), 2, anon_sym_LT, anon_sym_GT, - STATE(2025), 2, + STATE(2279), 2, sym__not_in, sym__is_not, - ACTIONS(4550), 6, + ACTIONS(5324), 5, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(5812), 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), 8, + [104822] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1014), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [143077] = 17, - ACTIONS(5561), 1, - sym_identifier, - ACTIONS(5563), 1, + ACTIONS(981), 14, + anon_sym_DOT, 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_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, + [104851] = 13, + ACTIONS(1668), 1, anon_sym_long, - STATE(3463), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + ACTIONS(6806), 1, + anon_sym_RPAREN, + STATE(4003), 1, sym__signedness, - STATE(3649), 1, + STATE(4252), 1, sym__longness, - STATE(4536), 1, + STATE(5566), 1, sym_c_type, - STATE(5085), 1, - sym_template_param, - STATE(5204), 1, - sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5575), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5579), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(3595), 2, + STATE(4328), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5571), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [143136] = 8, - ACTIONS(4452), 1, + [104898] = 8, + ACTIONS(5399), 1, anon_sym_not, - ACTIONS(4910), 1, + ACTIONS(6074), 1, anon_sym_is, - STATE(3202), 1, + STATE(4069), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4913), 2, + ACTIONS(6077), 2, anon_sym_LT, anon_sym_GT, - STATE(2099), 2, + STATE(2279), 2, sym__not_in, sym__is_not, - ACTIONS(4907), 6, + ACTIONS(5392), 5, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(6071), 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), 9, + [104935] = 13, + ACTIONS(5208), 1, anon_sym_DOT, + ACTIONS(5220), 1, + anon_sym_LBRACK, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [104982] = 7, + ACTIONS(4632), 1, + anon_sym_long, + STATE(4322), 1, + sym__longness, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6824), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6826), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6604), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6606), 8, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [105017] = 13, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [143177] = 8, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4678), 1, - anon_sym_is, - STATE(3202), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4680), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2099), 2, - sym__not_in, - sym__is_not, - 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(4437), 9, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105064] = 4, + ACTIONS(6576), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5079), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5069), 11, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_by, + anon_sym_EQ, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [143218] = 9, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4688), 1, - anon_sym_is, - STATE(3204), 1, - aux_sym_comparison_operator_repeat1, + [105093] = 2, 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(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), 8, + ACTIONS(6828), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [143261] = 9, - ACTIONS(4447), 1, - anon_sym_as, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4755), 1, - anon_sym_is, - STATE(3205), 1, - aux_sym_comparison_operator_repeat1, + 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, + [105118] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4758), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2009), 2, - sym__not_in, - sym__is_not, - 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), 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, - [143304] = 4, + ACTIONS(5687), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5685), 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, + [105155] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, + ACTIONS(4560), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3467), 5, + ACTIONS(4562), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(857), 14, + ACTIONS(4555), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -250300,215 +308723,604 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143336] = 16, - ACTIONS(5563), 1, - anon_sym_LPAREN, - ACTIONS(5565), 1, - anon_sym_COLON, - ACTIONS(5577), 1, + [105184] = 13, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(5581), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, sym_identifier, - ACTIONS(5583), 1, - anon_sym_RBRACK, - ACTIONS(5585), 1, - sym_integer, - STATE(3463), 1, + ACTIONS(6760), 1, + anon_sym_RPAREN, + STATE(4003), 1, sym__signedness, - STATE(3649), 1, + STATE(4252), 1, sym__longness, - STATE(4508), 1, + STATE(5548), 1, sym_c_type, - STATE(5178), 1, - sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5575), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5579), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(3595), 2, + STATE(4328), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5571), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [143392] = 3, + [105231] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 2, + ACTIONS(5662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4074), 19, - anon_sym_DOT, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5660), 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, + [105268] = 13, + ACTIONS(5295), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(6830), 1, + anon_sym_DOT, + ACTIONS(6832), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105315] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4506), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [105340] = 13, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4976), 1, anon_sym_LBRACK, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105387] = 13, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5706), 1, + anon_sym_DOT, + ACTIONS(5718), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105434] = 13, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5340), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, anon_sym_PIPE, - anon_sym_RBRACE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [105481] = 13, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5111), 1, + anon_sym_LBRACK, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, anon_sym_AMP, + ACTIONS(6822), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - sym_type_conversion, - [143422] = 3, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105528] = 10, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 2, + ACTIONS(6808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4089), 19, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 5, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [105569] = 13, + ACTIONS(5005), 1, anon_sym_DOT, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105616] = 13, + ACTIONS(5295), 1, anon_sym_LPAREN, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105663] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4604), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4606), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(4599), 14, + anon_sym_DOT, + anon_sym_LPAREN, 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, - [143452] = 16, - ACTIONS(5563), 1, + [105692] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6838), 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, + [105717] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(5565), 1, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5662), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5660), 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, + [105754] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6838), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(5577), 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, + [105779] = 13, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(5581), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, sym_identifier, - ACTIONS(5587), 1, - anon_sym_RBRACK, - ACTIONS(5589), 1, - sym_integer, - STATE(3463), 1, + ACTIONS(6754), 1, + anon_sym_RPAREN, + STATE(4003), 1, sym__signedness, - STATE(3649), 1, + STATE(4252), 1, sym__longness, - STATE(4494), 1, + STATE(5633), 1, sym_c_type, - STATE(5072), 1, - sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5575), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5579), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(3595), 2, + STATE(4328), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5571), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [143508] = 4, + [105826] = 13, + ACTIONS(5160), 1, + anon_sym_DOT, + ACTIONS(5162), 1, + anon_sym_LBRACK, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, + ACTIONS(6808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(893), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(857), 14, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105873] = 9, + ACTIONS(5293), 1, anon_sym_DOT, + ACTIONS(5295), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(5305), 1, anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 7, + anon_sym_GT_GT, 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, - [143540] = 9, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4439), 1, - anon_sym_as, - ACTIONS(4638), 1, - anon_sym_is, - STATE(3216), 1, - aux_sym_comparison_operator_repeat1, + [105912] = 13, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4640), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2110), 2, - sym__not_in, - sym__is_not, - 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(4437), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [143582] = 4, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [105959] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 2, + ACTIONS(4506), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3920), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(4101), 14, + ACTIONS(4566), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -250523,47 +309335,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143614] = 3, + [105988] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4076), 2, + ACTIONS(4496), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4074), 19, + ACTIONS(4506), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4485), 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, - [143644] = 4, + [106017] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4067), 2, + ACTIONS(4604), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4062), 5, + ACTIONS(4606), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(4064), 14, + anon_sym_RBRACK, + ACTIONS(4599), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -250578,81 +309385,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143676] = 9, - ACTIONS(4447), 1, - anon_sym_as, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4856), 1, - anon_sym_is, - STATE(3216), 1, - aux_sym_comparison_operator_repeat1, + [106046] = 12, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6822), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4859), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2110), 2, - sym__not_in, - sym__is_not, - 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), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [143718] = 4, - ACTIONS(5591), 1, + ACTIONS(5660), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [106091] = 11, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5660), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [106134] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 6, + ACTIONS(4506), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4571), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4566), 14, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(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_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [143750] = 4, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [106163] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, + ACTIONS(4496), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1361), 5, + ACTIONS(4506), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(857), 14, + ACTIONS(4485), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -250667,25 +309500,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143782] = 4, + [106192] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, + ACTIONS(983), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4062), 5, + ACTIONS(1014), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(981), 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, + [106221] = 13, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + ACTIONS(6840), 1, anon_sym_RPAREN, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(5700), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [106268] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6828), 18, + anon_sym_from, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3899), 14, + 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, + [106293] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4506), 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, + [106318] = 10, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(6842), 1, + anon_sym_async, + ACTIONS(6844), 1, + anon_sym_def, + ACTIONS(6846), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6850), 2, + anon_sym_cdef, + anon_sym_cpdef, + STATE(4373), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(4891), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(2056), 3, + sym_function_definition, + sym_class_definition, + sym_cdef_statement, + ACTIONS(6848), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [106359] = 13, + ACTIONS(5033), 1, anon_sym_DOT, + ACTIONS(5045), 1, + anon_sym_LBRACK, + ACTIONS(5295), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(6812), 1, anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [106406] = 8, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5691), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5689), 10, + anon_sym_GT_GT, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -250695,20 +309699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143814] = 4, + [106443] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1363), 2, + ACTIONS(4560), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1361), 5, + ACTIONS(4562), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1576), 14, + anon_sym_RBRACK, + ACTIONS(4555), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -250723,3746 +309724,3304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143846] = 16, - ACTIONS(5563), 1, + [106472] = 10, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(6852), 1, + anon_sym_async, + ACTIONS(6854), 1, + anon_sym_def, + ACTIONS(6856), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6858), 2, + anon_sym_cdef, + anon_sym_cpdef, + STATE(4373), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(4830), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(2133), 3, + sym_function_definition, + sym_class_definition, + sym_cdef_statement, + ACTIONS(6848), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [106513] = 13, + ACTIONS(5295), 1, + anon_sym_LPAREN, + ACTIONS(6812), 1, + anon_sym_STAR_STAR, + ACTIONS(6818), 1, + anon_sym_PIPE, + ACTIONS(6820), 1, + anon_sym_AMP, + ACTIONS(6822), 1, + anon_sym_CARET, + ACTIONS(6860), 1, + anon_sym_DOT, + ACTIONS(6862), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6816), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2926), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6814), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [106560] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6864), 1, + sym_identifier, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6868), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4275), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4416), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6866), 3, anon_sym_LPAREN, - ACTIONS(5565), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + [106602] = 5, + ACTIONS(6872), 1, anon_sym_COLON, - ACTIONS(5567), 1, - anon_sym_RBRACK, - ACTIONS(5569), 1, - sym_integer, - ACTIONS(5577), 1, + ACTIONS(6874), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6870), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6876), 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, + [106632] = 12, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5642), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [106676] = 4, + ACTIONS(6878), 1, + anon_sym_COMMA, + STATE(4124), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2207), 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, + [106704] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6152), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [106748] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6456), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [106792] = 12, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(5581), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, sym_identifier, - STATE(3463), 1, + STATE(4003), 1, sym__signedness, - STATE(3649), 1, + STATE(4252), 1, sym__longness, - STATE(4536), 1, + STATE(6479), 1, sym_c_type, - STATE(5204), 1, - sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5575), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5579), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(3595), 2, + STATE(4328), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5571), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [143902] = 4, + [106836] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6882), 1, + sym_identifier, + ACTIONS(6884), 1, + anon_sym_LPAREN, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6936), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3920), 5, - anon_sym_COMMA, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [106880] = 6, + ACTIONS(6872), 1, anon_sym_COLON, + ACTIONS(6874), 1, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - 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, - [143934] = 4, + ACTIONS(6886), 1, + anon_sym_COMMA, + STATE(4116), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4058), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(4051), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(6876), 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, + [106912] = 12, + ACTIONS(4883), 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, - [143966] = 3, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, + sym_identifier, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4108), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym___stdcall, + ACTIONS(4881), 2, 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, - [143996] = 16, - ACTIONS(5563), 1, - anon_sym_LPAREN, - ACTIONS(5565), 1, + ACTIONS(6633), 2, anon_sym_COLON, - ACTIONS(5577), 1, + anon_sym_EQ, + ACTIONS(6866), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4276), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + [106956] = 12, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(5581), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, sym_identifier, - ACTIONS(5593), 1, - anon_sym_RBRACK, - ACTIONS(5595), 1, - sym_integer, - STATE(3463), 1, + STATE(4003), 1, sym__signedness, - STATE(3649), 1, + STATE(4252), 1, sym__longness, - STATE(4402), 1, + STATE(6507), 1, sym_c_type, - STATE(4878), 1, - sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5575), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5579), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(3595), 2, + STATE(4328), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5571), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144052] = 3, + [107000] = 4, + ACTIONS(6891), 1, + anon_sym_COMMA, + STATE(4124), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4089), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(6749), 15, 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, - [144082] = 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, - [144124] = 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [107028] = 12, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5682), 1, + sym_c_type, 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, - [144166] = 4, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107072] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6643), 1, + sym_identifier, + ACTIONS(6645), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - 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_GT_GT, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [144198] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4083), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4085), 5, + STATE(4268), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4505), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6894), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - 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, - [144230] = 3, + [107114] = 4, + ACTIONS(6901), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 2, + ACTIONS(6897), 7, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4093), 19, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6899), 9, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, 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, - [144260] = 3, + [107142] = 12, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(6903), 1, + sym_identifier, + ACTIONS(6905), 1, + anon_sym_LPAREN, + STATE(4025), 1, + sym__signedness, + STATE(4241), 1, + sym__longness, + STATE(6697), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4112), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4493), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107186] = 11, + ACTIONS(4883), 1, 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, - [144290] = 15, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5599), 1, - sym_identifier, - ACTIONS(5601), 1, + ACTIONS(6663), 1, anon_sym_LPAREN, - ACTIONS(5608), 1, - anon_sym_COLON, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5614), 1, - anon_sym_complex, - STATE(3290), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + ACTIONS(6907), 1, + sym_identifier, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3468), 2, + STATE(4272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(4402), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5605), 3, - sym__newline, + ACTIONS(6909), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [144343] = 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, + [107228] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, + sym_identifier, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4767), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4765), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [144380] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + STATE(4276), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6911), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [107270] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5624), 1, - sym_identifier, - ACTIONS(5626), 1, + ACTIONS(6663), 1, anon_sym_LPAREN, - ACTIONS(5632), 1, - anon_sym_complex, - STATE(3254), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + ACTIONS(6914), 1, + sym_identifier, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3365), 2, + STATE(4263), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3680), 2, + STATE(4467), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5629), 4, + ACTIONS(6916), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [144431] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + [107312] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - ACTIONS(5636), 1, + ACTIONS(6663), 1, anon_sym_LPAREN, - ACTIONS(5640), 1, - anon_sym_complex, - STATE(3363), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + ACTIONS(6914), 1, + sym_identifier, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3420), 2, + STATE(4179), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3670), 2, + STATE(4467), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5638), 4, + ACTIONS(6916), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [144482] = 4, + [107354] = 12, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6918), 1, + sym_identifier, + ACTIONS(6920), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(6622), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4062), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3899), 14, - anon_sym_DOT, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4326), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107398] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, 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, - [144513] = 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(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6176), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4797), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4793), 14, - anon_sym_DOT, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107442] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, 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, - [144550] = 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(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6492), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4771), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4769), 14, - anon_sym_DOT, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107486] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, 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, - [144587] = 4, - ACTIONS(5620), 1, - anon_sym_and, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6319), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4716), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4714), 17, - anon_sym_DOT, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107530] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, 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, - [144618] = 15, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5624), 1, + ACTIONS(6716), 1, sym_identifier, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(5649), 1, - anon_sym_complex, - STATE(3255), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6512), 1, + sym_c_type, 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(5645), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5647), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3359), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3680), 2, - sym_operator_name, - sym_c_function_pointer_name, - [144671] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5651), 1, - sym_identifier, - ACTIONS(5653), 1, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - STATE(3256), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, + [107574] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6922), 1, + sym_identifier, + ACTIONS(6924), 1, + anon_sym_LPAREN, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6936), 1, + sym_c_type, 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(5605), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3384), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3705), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(3903), 3, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4589), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107618] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6804), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [144722] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5651), 1, + ACTIONS(6926), 1, sym_identifier, - ACTIONS(5659), 1, - anon_sym_complex, - STATE(3236), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6778), 1, + sym_c_type, 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(5657), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3407), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3705), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5655), 3, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4365), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107662] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [144773] = 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(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6338), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 14, - anon_sym_DOT, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107706] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, 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, - [144810] = 15, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5624), 1, + ACTIONS(6880), 1, sym_identifier, - ACTIONS(5626), 1, - anon_sym_LPAREN, - ACTIONS(5663), 1, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6045), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - STATE(3246), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, - sym_type_index, + [107750] = 12, + ACTIONS(6329), 1, + anon_sym_LPAREN, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5641), 1, + sym_c_type, 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(5629), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5661), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3357), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3680), 2, - sym_operator_name, - sym_c_function_pointer_name, - [144863] = 15, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107794] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5665), 1, + ACTIONS(6864), 1, sym_identifier, - ACTIONS(5667), 1, + ACTIONS(6866), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, - anon_sym_complex, - STATE(3363), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5670), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5672), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3377), 2, + STATE(4275), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, + STATE(4416), 2, sym_operator_name, sym_c_function_pointer_name, - [144916] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(6868), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [107836] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5634), 1, + ACTIONS(6864), 1, sym_identifier, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(5678), 1, - anon_sym_complex, - STATE(3363), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3356), 2, + ACTIONS(6868), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4275), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3670), 2, + STATE(4416), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5638), 4, + ACTIONS(6928), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [144967] = 15, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, + [107878] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(4972), 1, - anon_sym_COLON, - ACTIONS(5599), 1, + ACTIONS(6907), 1, sym_identifier, - ACTIONS(5601), 1, - anon_sym_LPAREN, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5614), 1, - anon_sym_complex, - STATE(3290), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3468), 2, + ACTIONS(6909), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(4402), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5605), 3, - sym__newline, + ACTIONS(6930), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [145020] = 4, + [107920] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6169), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1361), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(857), 14, - anon_sym_DOT, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [107964] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, 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, - [145051] = 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(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6433), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4831), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4829), 14, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [108008] = 5, + ACTIONS(6934), 1, 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, - [145088] = 4, + STATE(4148), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, + ACTIONS(6932), 6, + anon_sym_import, + anon_sym_cimport, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3467), 4, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6937), 9, + anon_sym_LPAREN, 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, 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, - [145119] = 15, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5008), 1, - anon_sym_COLON, - ACTIONS(5599), 1, - sym_identifier, - ACTIONS(5601), 1, + anon_sym_GT, + anon_sym_QMARK, + [108038] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, anon_sym_LPAREN, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5614), 1, - anon_sym_complex, - STATE(3290), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, - sym_type_index, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6489), 1, + sym_c_type, 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(3468), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3654), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5605), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [145172] = 7, - ACTIONS(381), 1, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [108082] = 12, + ACTIONS(1668), 1, anon_sym_long, - STATE(3456), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, sym__longness, + STATE(6356), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5684), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5686), 2, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5680), 5, - anon_sym_STAR, - sym_identifier, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5682), 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, - [145209] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + [108126] = 12, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5665), 1, + ACTIONS(6939), 1, sym_identifier, - ACTIONS(5667), 1, + ACTIONS(6941), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, - anon_sym_complex, - STATE(3363), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3397), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3631), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5672), 4, + ACTIONS(6944), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(6946), 2, anon_sym_COLON, anon_sym_EQ, - [145260] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5636), 1, + STATE(4261), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4429), 2, + sym_operator_name, + sym_c_function_pointer_name, + [108170] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6525), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [108214] = 12, + ACTIONS(6329), 1, anon_sym_LPAREN, - ACTIONS(5665), 1, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, sym_identifier, - ACTIONS(5690), 1, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5576), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - STATE(3363), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + [108258] = 12, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6914), 1, + sym_identifier, + ACTIONS(6948), 1, + anon_sym_LPAREN, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3388), 2, + ACTIONS(6916), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(6951), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4263), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, + STATE(4467), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5672), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [145311] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + [108302] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5634), 1, + ACTIONS(6643), 1, sym_identifier, - ACTIONS(5692), 1, - anon_sym_complex, - STATE(3363), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5638), 2, + ACTIONS(6647), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3350), 2, + STATE(4144), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3670), 2, + STATE(4505), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5676), 3, + ACTIONS(6645), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [145362] = 5, - ACTIONS(5620), 1, - anon_sym_and, - ACTIONS(5622), 1, - anon_sym_or, + [108344] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6564), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4791), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4789), 16, - anon_sym_DOT, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [108388] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_STAR_STAR, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6473), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [108432] = 11, + ACTIONS(4883), 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, - [145395] = 15, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5599), 1, + ACTIONS(6643), 1, sym_identifier, - 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(3290), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3468), 2, + ACTIONS(6894), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4268), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(4505), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5605), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [145448] = 14, - ACTIONS(3903), 1, + ACTIONS(6645), 3, anon_sym_LPAREN, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + [108474] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5651), 1, + ACTIONS(6643), 1, sym_identifier, - ACTIONS(5696), 1, - anon_sym_complex, - STATE(3247), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3402), 2, + ACTIONS(6647), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4113), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3705), 2, + STATE(4505), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5605), 4, + ACTIONS(6686), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [145499] = 6, - ACTIONS(5620), 1, - anon_sym_and, - ACTIONS(5622), 1, - anon_sym_or, - ACTIONS(5698), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4746), 2, - anon_sym_STAR, - anon_sym_SLASH, - 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, - 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, - [145534] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + [108516] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5651), 1, + ACTIONS(6643), 1, sym_identifier, - ACTIONS(5655), 1, + ACTIONS(6686), 1, anon_sym_LPAREN, - ACTIONS(5701), 1, - anon_sym_complex, - STATE(3236), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3404), 2, + STATE(4143), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3705), 2, + STATE(4505), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5657), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [145585] = 7, - ACTIONS(1422), 1, - anon_sym_long, - STATE(3453), 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, - anon_sym___stdcall, - ACTIONS(5682), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(6647), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [108558] = 12, + ACTIONS(4883), 1, anon_sym_LBRACK, - anon_sym_AMP, - [145622] = 14, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5624), 1, + ACTIONS(6914), 1, sym_identifier, - ACTIONS(5642), 1, + ACTIONS(6948), 1, anon_sym_LPAREN, - ACTIONS(5707), 1, - anon_sym_complex, - STATE(3255), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3369), 2, + ACTIONS(6916), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(6951), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4151), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3680), 2, + STATE(4467), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5647), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [145673] = 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, + [108602] = 11, + ACTIONS(4883), 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, - [145704] = 14, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5709), 1, + ACTIONS(6643), 1, sym_identifier, - ACTIONS(5711), 1, - anon_sym_LPAREN, - ACTIONS(5714), 1, - anon_sym_LBRACK, - ACTIONS(5717), 1, - anon_sym_complex, - STATE(3283), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3478), 2, + ACTIONS(6647), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4268), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3664), 2, + STATE(4505), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5647), 3, - sym__newline, + ACTIONS(6686), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [145754] = 14, - ACTIONS(381), 1, + [108644] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5719), 1, - sym_identifier, - ACTIONS(5721), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5723), 1, - sym__dedent, - STATE(3253), 1, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, sym__signedness, - STATE(3278), 1, - aux_sym_fused_repeat1, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(5446), 1, + STATE(5862), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(383), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3648), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(375), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145804] = 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, - [145834] = 14, - ACTIONS(1422), 1, + [108688] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6880), 1, sym_identifier, - ACTIONS(5732), 1, - sym_string_start, - STATE(3262), 1, + STATE(4071), 1, sym__signedness, - STATE(3479), 1, + STATE(4313), 1, sym__longness, - STATE(5032), 1, + STATE(6468), 1, sym_c_type, - STATE(5459), 1, - sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(1424), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3599), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145884] = 5, - ACTIONS(5736), 1, - anon_sym_DOT, - STATE(3269), 1, - aux_sym_class_definition_repeat2, + [108732] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6864), 1, + sym_identifier, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5734), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_as, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_if, - sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5739), 9, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [145916] = 14, - ACTIONS(1422), 1, + ACTIONS(6868), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4145), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4416), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6928), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [108774] = 12, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6167), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6716), 1, sym_identifier, - ACTIONS(5741), 1, - anon_sym_RPAREN, - ACTIONS(5743), 1, - anon_sym_STAR, - STATE(3262), 1, + STATE(4003), 1, sym__signedness, - STATE(3479), 1, + STATE(4252), 1, sym__longness, - STATE(4672), 1, + STATE(5653), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(1424), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(3599), 2, + STATE(4328), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145966] = 14, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5599), 1, - sym_identifier, - ACTIONS(5614), 1, - anon_sym_complex, - ACTIONS(5745), 1, + [108818] = 14, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(4500), 1, + sym_identifier, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3290), 1, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(6957), 1, + anon_sym_COLON, + ACTIONS(6959), 1, + anon_sym_EQ, + ACTIONS(6961), 1, + anon_sym_complex, + STATE(4335), 1, aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3482), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3654), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5657), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [146016] = 8, - ACTIONS(4417), 1, - anon_sym_not, - ACTIONS(4886), 1, - anon_sym_is, - STATE(3273), 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, - [146054] = 8, - ACTIONS(4452), 1, - anon_sym_not, - ACTIONS(4954), 1, - anon_sym_is, - STATE(3273), 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, + ACTIONS(6955), 2, 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, - [146092] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4106), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3920), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4101), 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, - [146122] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3910), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3920), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - 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, - [146152] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4056), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4058), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - 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_CARET, - anon_sym_LT_LT, - [146182] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4083), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4085), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4078), 14, - anon_sym_DOT, + STATE(4633), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [108866] = 12, + ACTIONS(6329), 1, 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, - [146212] = 14, - ACTIONS(381), 1, + ACTIONS(6343), 1, anon_sym_long, - ACTIONS(5719), 1, + ACTIONS(6422), 1, sym_identifier, - ACTIONS(5721), 1, - anon_sym_LPAREN, - ACTIONS(5751), 1, - sym__dedent, - STATE(3253), 1, + STATE(4242), 1, sym__signedness, - STATE(3282), 1, - aux_sym_fused_repeat1, - STATE(3480), 1, + STATE(4451), 1, sym__longness, - STATE(5446), 1, + STATE(5586), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(6339), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(6341), 2, anon_sym_char, anon_sym_short, - ACTIONS(383), 2, + ACTIONS(6345), 2, anon_sym_const, anon_sym_volatile, - STATE(3648), 2, + STATE(4375), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(375), 3, + ACTIONS(6337), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146262] = 15, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5753), 1, - sym_identifier, - ACTIONS(5755), 1, + [108910] = 12, + ACTIONS(6329), 1, anon_sym_LPAREN, - STATE(3241), 1, - sym_int_type, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(3615), 1, - sym_function_pointer_type, - STATE(3625), 1, - sym_operator_name, - STATE(5744), 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [146314] = 14, - ACTIONS(381), 1, + ACTIONS(6343), 1, anon_sym_long, - ACTIONS(5719), 1, + ACTIONS(6422), 1, sym_identifier, - ACTIONS(5721), 1, - anon_sym_LPAREN, - ACTIONS(5759), 1, - sym__dedent, - STATE(3253), 1, + STATE(4242), 1, sym__signedness, - STATE(3281), 1, - aux_sym_fused_repeat1, - STATE(3480), 1, + STATE(4451), 1, sym__longness, - STATE(5446), 1, + STATE(6129), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(6339), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(6341), 2, anon_sym_char, anon_sym_short, - ACTIONS(383), 2, + ACTIONS(6345), 2, anon_sym_const, anon_sym_volatile, - STATE(3648), 2, + STATE(4375), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(375), 3, + ACTIONS(6337), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146364] = 14, - ACTIONS(381), 1, + [108954] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5719), 1, - sym_identifier, - ACTIONS(5721), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5761), 1, - sym__dedent, - STATE(3253), 1, - sym__signedness, - STATE(3282), 1, - aux_sym_fused_repeat1, - STATE(3480), 1, - sym__longness, - STATE(5446), 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(3648), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [146414] = 14, - ACTIONS(5763), 1, + ACTIONS(6880), 1, sym_identifier, - ACTIONS(5766), 1, - anon_sym_LPAREN, - ACTIONS(5778), 1, - anon_sym_long, - ACTIONS(5784), 1, - sym__dedent, - STATE(3253), 1, + STATE(4071), 1, sym__signedness, - STATE(3282), 1, - aux_sym_fused_repeat1, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(5446), 1, + STATE(5896), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5772), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5775), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(5781), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3648), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5769), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146464] = 14, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, + [108998] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5786), 1, + ACTIONS(6914), 1, sym_identifier, - ACTIONS(5788), 1, + ACTIONS(6963), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_LBRACK, - ACTIONS(5794), 1, - anon_sym_complex, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3466), 2, + STATE(4263), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3659), 2, + STATE(4467), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5672), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [146514] = 4, - ACTIONS(5796), 1, + ACTIONS(6916), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3267), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2799), 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, - [146544] = 15, - ACTIONS(1422), 1, + [109040] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5798), 1, - sym_identifier, - ACTIONS(5800), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - STATE(3262), 1, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, sym__signedness, - STATE(3263), 1, - sym_int_type, - STATE(3479), 1, + STATE(4313), 1, sym__longness, - STATE(3543), 1, - sym_function_pointer_type, - STATE(3625), 1, - sym_operator_name, - STATE(5621), 1, + STATE(5927), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(5757), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1414), 3, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146596] = 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, - [146626] = 14, - ACTIONS(381), 1, + [109084] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5719), 1, - sym_identifier, - ACTIONS(5721), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, - sym__dedent, - STATE(3253), 1, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, sym__signedness, - STATE(3289), 1, - aux_sym_fused_repeat1, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(5446), 1, + STATE(6323), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(383), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3648), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(375), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146676] = 14, - ACTIONS(1422), 1, + [109128] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6880), 1, sym_identifier, - ACTIONS(5743), 1, - anon_sym_STAR, - ACTIONS(5804), 1, - anon_sym_RPAREN, - STATE(3262), 1, + STATE(4071), 1, sym__signedness, - STATE(3479), 1, + STATE(4313), 1, sym__longness, - STATE(4699), 1, + STATE(5963), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(1424), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3599), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146726] = 14, - ACTIONS(381), 1, + [109172] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5719), 1, - sym_identifier, - ACTIONS(5721), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5806), 1, - sym__dedent, - STATE(3253), 1, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, sym__signedness, - STATE(3282), 1, - aux_sym_fused_repeat1, - STATE(3480), 1, + STATE(4313), 1, sym__longness, - STATE(5446), 1, + STATE(6386), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(377), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(379), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(383), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3648), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(375), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146776] = 14, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, + [109216] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5808), 1, + ACTIONS(6907), 1, sym_identifier, - ACTIONS(5810), 1, + ACTIONS(6930), 1, anon_sym_LPAREN, - ACTIONS(5813), 1, - anon_sym_LBRACK, - ACTIONS(5816), 1, - anon_sym_complex, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3473), 2, + STATE(4272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3662), 2, + STATE(4402), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5638), 3, - sym__newline, + ACTIONS(6909), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [146826] = 14, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5599), 1, + [109258] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, sym_identifier, - ACTIONS(5601), 1, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(5995), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [109302] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5614), 1, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6477), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - STATE(3290), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + [109346] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6663), 1, + anon_sym_LPAREN, + ACTIONS(6939), 1, + sym_identifier, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3468), 2, + STATE(4261), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(4429), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5605), 3, - sym__newline, + ACTIONS(6946), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [146876] = 14, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(4138), 1, + [109388] = 12, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5709), 1, + ACTIONS(6914), 1, sym_identifier, - ACTIONS(5717), 1, - anon_sym_complex, - ACTIONS(5818), 1, + ACTIONS(6963), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, - anon_sym_LBRACK, - STATE(3283), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3477), 2, + ACTIONS(6916), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(6966), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4263), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3664), 2, + STATE(4467), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5629), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [146926] = 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, - [146951] = 13, - ACTIONS(4516), 1, + [109432] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, - anon_sym_DOT, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, - ACTIONS(5834), 1, - anon_sym_LBRACK, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146998] = 4, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6019), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3920), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4106), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4101), 14, - anon_sym_DOT, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [109476] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, 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, - [147027] = 4, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6436), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3920), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3899), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [109520] = 11, + ACTIONS(4883), 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, - [147056] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4056), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4058), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4051), 14, - anon_sym_DOT, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6663), 1, 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, - [147085] = 4, + ACTIONS(6864), 1, + sym_identifier, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 2, + ACTIONS(4879), 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, - [147114] = 13, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(4642), 1, - anon_sym_DOT, - ACTIONS(4644), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [147161] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3920), 18, - anon_sym_from, + STATE(4275), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4416), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6868), 4, + anon_sym_RPAREN, 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, - [147186] = 10, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(5846), 1, - anon_sym_async, - ACTIONS(5848), 1, - anon_sym_def, - ACTIONS(5850), 1, - anon_sym_class, + [109562] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6585), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5854), 2, - anon_sym_cdef, - anon_sym_cpdef, - STATE(3603), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(3981), 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, - [147227] = 13, - ACTIONS(1422), 1, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [109606] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6880), 1, sym_identifier, - ACTIONS(5804), 1, - anon_sym_RPAREN, - STATE(3262), 1, + STATE(4071), 1, sym__signedness, - STATE(3479), 1, + STATE(4313), 1, sym__longness, - STATE(4699), 1, + STATE(6038), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(1424), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3599), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147274] = 2, + [109650] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6531), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5725), 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, - [147299] = 2, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [109694] = 12, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, + sym_identifier, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5856), 18, - anon_sym_from, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6631), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(6633), 2, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [147324] = 4, + STATE(4154), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + [109738] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6060), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3920), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4106), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4101), 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, - [147353] = 8, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [109782] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6432), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4512), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - 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, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147390] = 8, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(4526), 1, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [109826] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6663), 1, + anon_sym_LPAREN, + ACTIONS(6864), 1, + sym_identifier, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4504), 2, + ACTIONS(4879), 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___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147427] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3910), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3920), 2, + STATE(4129), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4416), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6868), 4, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3899), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_EQ, + [109868] = 12, + ACTIONS(4883), 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, - [147456] = 4, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, + sym_identifier, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4058), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4051), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147485] = 8, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, + ACTIONS(6631), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(6911), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4276), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + [109912] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6073), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147522] = 10, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [109956] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6464), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 5, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147563] = 8, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110000] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6557), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147600] = 9, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110044] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6434), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - 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, - [147639] = 13, - ACTIONS(4468), 1, - anon_sym_PIPE, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(4526), 1, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110088] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, - ACTIONS(5842), 1, - anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6643), 1, + sym_identifier, + ACTIONS(6686), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [147686] = 12, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(4526), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5844), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4468), 2, - anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [147731] = 11, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, + STATE(4268), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4505), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6647), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [110130] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6435), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4468), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [147774] = 13, - ACTIONS(1422), 1, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110174] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6880), 1, sym_identifier, - ACTIONS(5858), 1, - anon_sym_RPAREN, - STATE(3262), 1, + STATE(4071), 1, sym__signedness, - STATE(3479), 1, + STATE(4313), 1, sym__longness, - STATE(4599), 1, + STATE(6317), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(1424), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3599), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147821] = 4, - ACTIONS(5591), 1, - anon_sym_STAR, + [110218] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6437), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, 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, - [147850] = 4, + [110262] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, + sym_identifier, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6438), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4083), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4085), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - [147879] = 3, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110306] = 4, + ACTIONS(6968), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5734), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_as, + ACTIONS(6897), 7, anon_sym_STAR, - anon_sym_if, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5739), 10, + ACTIONS(6899), 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_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [147906] = 10, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(5860), 1, - anon_sym_async, - ACTIONS(5862), 1, - anon_sym_def, - ACTIONS(5864), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5866), 2, - anon_sym_cdef, - anon_sym_cpdef, - STATE(3603), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(4044), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(1459), 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, - [147947] = 13, - ACTIONS(1422), 1, + [110334] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6776), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6970), 1, sym_identifier, - ACTIONS(5868), 1, - anon_sym_RPAREN, - STATE(3262), 1, + STATE(4071), 1, sym__signedness, - STATE(3479), 1, + STATE(4313), 1, sym__longness, - STATE(4711), 1, + STATE(6936), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(1424), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3599), 2, + STATE(4294), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147994] = 2, + [110378] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, + sym_identifier, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5870), 18, - anon_sym_from, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4171), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6633), 4, + anon_sym_RPAREN, 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, - [148019] = 13, - ACTIONS(1422), 1, + [110420] = 12, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6167), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6716), 1, sym_identifier, - ACTIONS(5741), 1, - anon_sym_RPAREN, - STATE(3262), 1, + STATE(4003), 1, sym__signedness, - STATE(3479), 1, + STATE(4252), 1, sym__longness, - STATE(4672), 1, + STATE(6441), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(1424), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(3599), 2, + STATE(4328), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148066] = 7, - ACTIONS(4202), 1, + [110464] = 12, + ACTIONS(1668), 1, anon_sym_long, - STATE(3544), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, sym__longness, + STATE(6110), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5872), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5874), 2, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5680), 4, - anon_sym_STAR, - sym_identifier, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5682), 8, + [110508] = 12, + ACTIONS(6329), 1, 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, - [148101] = 4, + ACTIONS(6343), 1, + anon_sym_long, + ACTIONS(6422), 1, + sym_identifier, + STATE(4242), 1, + sym__signedness, + STATE(4451), 1, + sym__longness, + STATE(5555), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(893), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - [148130] = 13, - ACTIONS(4514), 1, - anon_sym_DOT, - ACTIONS(4516), 1, + ACTIONS(6339), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6341), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6345), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4375), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6337), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110552] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148177] = 2, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6398), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5870), 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, - [148202] = 4, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110596] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6411), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(859), 2, - anon_sym_STAR, - anon_sym_SLASH, - 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, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [148231] = 13, - ACTIONS(4395), 1, - anon_sym_DOT, - ACTIONS(4409), 1, - anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110640] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, anon_sym_LPAREN, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6421), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148278] = 2, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110684] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6426), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - [148303] = 13, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(4614), 1, - anon_sym_DOT, - ACTIONS(4626), 1, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [110728] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6914), 1, + sym_identifier, + ACTIONS(6948), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148350] = 13, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(5832), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, - ACTIONS(5876), 1, - anon_sym_DOT, - ACTIONS(5878), 1, + STATE(4263), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4467), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6916), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [110770] = 12, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148397] = 13, - ACTIONS(4516), 1, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6626), 1, + sym_identifier, + ACTIONS(6888), 1, anon_sym_LPAREN, - ACTIONS(4542), 1, - anon_sym_DOT, - ACTIONS(4554), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148444] = 13, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(4862), 1, - anon_sym_DOT, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148491] = 13, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(4654), 1, - anon_sym_DOT, - ACTIONS(4666), 1, + ACTIONS(6633), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(6866), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4180), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4423), 2, + sym_operator_name, + sym_c_function_pointer_name, + [110814] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148538] = 13, - ACTIONS(4516), 1, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6643), 1, + sym_identifier, + ACTIONS(6645), 1, anon_sym_LPAREN, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(4594), 1, - anon_sym_LBRACK, - ACTIONS(5832), 1, - anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148585] = 13, - ACTIONS(4474), 1, - anon_sym_DOT, - ACTIONS(4486), 1, - anon_sym_LBRACK, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(5832), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, + STATE(4214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4505), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6647), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [110856] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6864), 1, + sym_identifier, + ACTIONS(6928), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148632] = 13, - ACTIONS(4516), 1, - anon_sym_LPAREN, - ACTIONS(5832), 1, + anon_sym___stdcall, + ACTIONS(4881), 2, anon_sym_STAR_STAR, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_CARET, - ACTIONS(5880), 1, - anon_sym_DOT, - ACTIONS(5882), 1, + STATE(4275), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4416), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6868), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [110898] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6864), 1, + sym_identifier, + ACTIONS(6928), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5828), 2, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5830), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2446), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5836), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [148679] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5856), 18, - sym__newline, - anon_sym_SEMI, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4176), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4416), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6868), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + [110940] = 6, + ACTIONS(6872), 1, + anon_sym_COLON, + ACTIONS(6874), 1, + anon_sym_EQ, + ACTIONS(6972), 1, + anon_sym_COMMA, + STATE(4040), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6876), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -254476,202 +313035,517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148704] = 12, - ACTIONS(4202), 1, + [110972] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6447), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [111016] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6451), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [111060] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6455), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [111104] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6459), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [111148] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6914), 1, + sym_identifier, + ACTIONS(6948), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4227), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4467), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6916), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [111190] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6475), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [111234] = 12, + ACTIONS(1668), 1, anon_sym_long, - ACTIONS(5884), 1, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6478), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [111278] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, + sym__signedness, + STATE(4252), 1, + sym__longness, + STATE(6481), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1666), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1670), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4328), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1660), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [111322] = 12, + ACTIONS(4632), 1, + anon_sym_long, + ACTIONS(6552), 1, + anon_sym_LPAREN, + ACTIONS(6880), 1, sym_identifier, - ACTIONS(5886), 1, + STATE(4071), 1, + sym__signedness, + STATE(4313), 1, + sym__longness, + STATE(6522), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4628), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4630), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4312), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4626), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [111366] = 12, + ACTIONS(1668), 1, + anon_sym_long, + ACTIONS(6167), 1, anon_sym_LPAREN, - STATE(3325), 1, + ACTIONS(6716), 1, + sym_identifier, + STATE(4003), 1, sym__signedness, - STATE(3549), 1, + STATE(4252), 1, sym__longness, - STATE(5621), 1, + STATE(6563), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(1664), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(1666), 2, anon_sym_char, anon_sym_short, - ACTIONS(5757), 2, + ACTIONS(1670), 2, anon_sym_const, anon_sym_volatile, - STATE(3817), 2, + STATE(4328), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(1660), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148748] = 11, - ACTIONS(4433), 1, + [111410] = 11, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_operator, + ACTIONS(6939), 1, + sym_identifier, + ACTIONS(6941), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4881), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4261), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4429), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6946), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [111452] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5888), 1, + ACTIONS(6626), 1, sym_identifier, - ACTIONS(5890), 1, + ACTIONS(6628), 1, anon_sym_LPAREN, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3368), 2, + STATE(4211), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3679), 2, + STATE(4423), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5893), 4, + ACTIONS(6633), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [148790] = 11, - ACTIONS(4433), 1, + [111494] = 11, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6179), 1, anon_sym_operator, - ACTIONS(5888), 1, + ACTIONS(6626), 1, sym_identifier, - ACTIONS(5895), 1, + ACTIONS(6888), 1, anon_sym_LPAREN, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4881), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3507), 2, + STATE(4276), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3679), 2, + STATE(4423), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5893), 4, + ACTIONS(6633), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [148832] = 12, - ACTIONS(4202), 1, + [111536] = 12, + ACTIONS(4632), 1, anon_sym_long, - ACTIONS(5535), 1, + ACTIONS(6552), 1, anon_sym_LPAREN, - ACTIONS(5898), 1, + ACTIONS(6880), 1, sym_identifier, - STATE(3325), 1, + STATE(4071), 1, sym__signedness, - STATE(3549), 1, + STATE(4313), 1, sym__longness, - STATE(5024), 1, + STATE(6485), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, + ACTIONS(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4200), 2, + ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(5757), 2, + ACTIONS(6778), 2, anon_sym_const, anon_sym_volatile, - STATE(3546), 2, + STATE(4312), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(4626), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148876] = 4, - ACTIONS(5900), 1, - anon_sym_COMMA, - STATE(3428), 1, - aux_sym__patterns_repeat1, + [111580] = 4, + ACTIONS(6576), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 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, - [148904] = 11, - ACTIONS(4433), 1, + ACTIONS(5079), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5098), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5069), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [111607] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5636), 1, - anon_sym_LPAREN, - ACTIONS(5902), 1, + ACTIONS(6974), 1, sym_identifier, - STATE(3547), 1, + ACTIONS(6976), 1, + anon_sym_LPAREN, + ACTIONS(6979), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3509), 2, + STATE(4317), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3712), 2, + STATE(4485), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5904), 4, - anon_sym_RPAREN, + ACTIONS(6909), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [148946] = 4, - ACTIONS(5910), 1, - anon_sym_long, + [111648] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5906), 7, - anon_sym_STAR, - sym_identifier, + ACTIONS(6986), 2, anon_sym_int, anon_sym_double, + ACTIONS(6982), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5908), 9, + ACTIONS(6984), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -254681,207 +313555,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [148974] = 12, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(5912), 1, + [111675] = 11, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6692), 1, sym_identifier, - ACTIONS(5914), 1, + ACTIONS(6988), 1, anon_sym_LPAREN, - STATE(3253), 1, - sym__signedness, - STATE(3480), 1, - sym__longness, - STATE(5656), 1, - sym_c_type, + ACTIONS(6992), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3667), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(375), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149018] = 5, - ACTIONS(5918), 1, - anon_sym_COLON, - ACTIONS(5920), 1, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4309), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4481), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6894), 3, + sym__newline, + anon_sym_COMMA, anon_sym_EQ, + [111716] = 11, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(6996), 1, + sym_identifier, + ACTIONS(6998), 1, + anon_sym_LPAREN, + ACTIONS(7001), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5916), 2, + ACTIONS(4494), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4510), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4319), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4427), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6868), 3, sym__newline, - anon_sym_SEMI, - ACTIONS(5922), 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, - [149048] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, + anon_sym_COMMA, + anon_sym_EQ, + [111757] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5924), 1, + ACTIONS(6996), 1, sym_identifier, - STATE(3547), 1, + ACTIONS(6998), 1, + anon_sym_LPAREN, + ACTIONS(7001), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5928), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3496), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(4427), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5926), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(6868), 3, + sym__newline, anon_sym_COMMA, - [149090] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + anon_sym_EQ, + [111798] = 13, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(4500), 1, sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5368), 1, - sym_c_type, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(6961), 1, + anon_sym_complex, + ACTIONS(7004), 1, + anon_sym_EQ, + STATE(4335), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, + sym_type_index, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6955), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4633), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [111843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7006), 7, + anon_sym_STAR, + sym_identifier, anon_sym_int, anon_sym_double, anon_sym_complex, - [149134] = 12, - ACTIONS(5577), 1, - anon_sym_long, - ACTIONS(5930), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7008), 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, + [111868] = 10, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7010), 1, + anon_sym_complex, + STATE(4246), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4323), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4489), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [111907] = 14, + ACTIONS(4489), 1, + anon_sym_LPAREN, + ACTIONS(4500), 1, + sym_identifier, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(6955), 1, + anon_sym_COMMA, + ACTIONS(6961), 1, + anon_sym_complex, + ACTIONS(7004), 1, + anon_sym_EQ, + ACTIONS(7012), 1, + anon_sym_COLON, + STATE(4335), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4633), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [111954] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6669), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6604), 5, + anon_sym_STAR, sym_identifier, - ACTIONS(5932), 1, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6606), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - STATE(3463), 1, - sym__signedness, - STATE(3649), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [111981] = 7, + ACTIONS(6604), 1, + anon_sym_STAR, + ACTIONS(7018), 1, + anon_sym_long, + STATE(4459), 1, sym__longness, - STATE(5588), 1, - sym_c_type, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3609), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5571), 3, + ACTIONS(7014), 2, anon_sym_int, anon_sym_double, + ACTIONS(7016), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6606), 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, - [149178] = 11, - ACTIONS(4433), 1, + anon_sym___stdcall, + [112014] = 4, + ACTIONS(6576), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5079), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5098), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5069), 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, + [112041] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5924), 1, + ACTIONS(6764), 1, sym_identifier, - STATE(3547), 1, + ACTIONS(6766), 1, + anon_sym_LPAREN, + ACTIONS(6769), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5928), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3376), 2, + STATE(4253), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(4413), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5926), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(6633), 3, + sym__newline, anon_sym_COMMA, - [149220] = 5, - ACTIONS(5934), 1, - anon_sym_DOT, - STATE(3354), 1, - aux_sym_class_definition_repeat2, + anon_sym_EQ, + [112082] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5734), 6, - anon_sym_as, + ACTIONS(7020), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6982), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5739), 9, + ACTIONS(6984), 9, sym__newline, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -254889,2468 +313886,2125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [149250] = 12, - ACTIONS(4433), 1, + [112109] = 10, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7022), 1, + anon_sym_complex, + STATE(4148), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4349), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6645), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [112148] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5665), 1, + ACTIONS(7024), 1, sym_identifier, - ACTIONS(5667), 1, + ACTIONS(7026), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7029), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5670), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5672), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3377), 2, + STATE(4321), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, + STATE(4404), 2, sym_operator_name, sym_c_function_pointer_name, - [149294] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6946), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [112189] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5924), 1, + ACTIONS(7032), 1, sym_identifier, - ACTIONS(5926), 1, + ACTIONS(7034), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7037), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3496), 2, + STATE(4247), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(4408), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5928), 4, - anon_sym_RPAREN, + ACTIONS(6916), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [149336] = 12, - ACTIONS(4433), 1, + [112230] = 5, + ACTIONS(5077), 1, + anon_sym_as, + ACTIONS(6576), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5079), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5098), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5069), 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, + [112259] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5665), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(5667), 1, + ACTIONS(6766), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(6769), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5670), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5937), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3494), 2, + STATE(4298), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, + STATE(4413), 2, sym_operator_name, sym_c_function_pointer_name, - [149380] = 12, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6633), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [112300] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5665), 1, + ACTIONS(6692), 1, sym_identifier, - ACTIONS(5940), 1, + ACTIONS(6694), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(6697), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5672), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5943), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3383), 2, + STATE(4309), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, + STATE(4481), 2, sym_operator_name, sym_c_function_pointer_name, - [149424] = 12, - ACTIONS(4433), 1, + ACTIONS(6647), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [112341] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6608), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6604), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6606), 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(5098), 1, + anon_sym_AMP, + [112368] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5665), 1, + ACTIONS(7032), 1, sym_identifier, - ACTIONS(5940), 1, + ACTIONS(7034), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7037), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5672), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5943), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3494), 2, + STATE(4287), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, + STATE(4408), 2, sym_operator_name, sym_c_function_pointer_name, - [149468] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, + ACTIONS(6916), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [112409] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5924), 1, + ACTIONS(6764), 1, sym_identifier, - STATE(3547), 1, + ACTIONS(7040), 1, + anon_sym_LPAREN, + ACTIONS(7044), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5928), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3496), 2, + STATE(4298), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(4413), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5943), 3, + ACTIONS(6911), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [112450] = 11, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7048), 1, + anon_sym_complex, + STATE(4148), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4327), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6631), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [112491] = 11, + ACTIONS(7050), 1, + anon_sym_DOT, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + ACTIONS(7058), 1, + anon_sym_complex, + STATE(4281), 1, + aux_sym_class_definition_repeat2, + STATE(4552), 1, + sym_type_index, + STATE(6561), 1, + sym_template_default, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4484), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4489), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [112532] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7006), 7, + anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7008), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [149510] = 11, - ACTIONS(4433), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(5098), 1, + anon_sym_AMP, + [112557] = 11, + ACTIONS(4658), 1, anon_sym_operator, - ACTIONS(5924), 1, + ACTIONS(6692), 1, sym_identifier, - ACTIONS(5926), 1, + ACTIONS(6694), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(6697), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(4494), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(4510), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3432), 2, + STATE(4235), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(4481), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5928), 4, + ACTIONS(6647), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [112598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6932), 6, + anon_sym_import, + anon_sym_cimport, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6937), 10, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [112623] = 11, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6655), 1, + anon_sym_LPAREN, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7060), 1, + anon_sym_complex, + STATE(4255), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4357), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6682), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [112664] = 9, + ACTIONS(7064), 1, + anon_sym_LPAREN, + ACTIONS(7075), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7069), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(7072), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7066), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149552] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + [112700] = 4, + ACTIONS(6872), 1, + anon_sym_COLON, + ACTIONS(6874), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6876), 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, + [112726] = 9, + ACTIONS(7064), 1, anon_sym_LPAREN, - ACTIONS(5898), 1, + ACTIONS(7075), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7062), 2, sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5458), 1, - sym_c_type, + anon_sym_operator, + ACTIONS(7069), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(7072), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7078), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [112762] = 10, + ACTIONS(7050), 1, + anon_sym_DOT, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + ACTIONS(7058), 1, + anon_sym_complex, + STATE(4281), 1, + aux_sym_class_definition_repeat2, + STATE(4552), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + STATE(4484), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4489), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [112800] = 10, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(7081), 1, anon_sym_complex, - [149596] = 5, - ACTIONS(5945), 1, + STATE(4273), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4409), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6645), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [112838] = 11, + ACTIONS(6655), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(3363), 1, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + ACTIONS(7083), 1, + anon_sym_complex, + STATE(4274), 1, aux_sym_class_definition_repeat2, + STATE(4552), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4492), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6682), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [112878] = 4, + ACTIONS(7085), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5734), 6, - anon_sym_as, + ACTIONS(6897), 6, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5739), 9, + ACTIONS(6899), 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_PIPE, anon_sym_AMP, - [149626] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5667), 1, + anon_sym_GT, + anon_sym_QMARK, + [112904] = 9, + ACTIONS(7064), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7075), 1, + anon_sym_LBRACK, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7069), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7072), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3397), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5672), 4, + ACTIONS(7087), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149668] = 11, - ACTIONS(4433), 1, + [112940] = 8, + ACTIONS(7096), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5667), 1, - anon_sym_LPAREN, - STATE(3547), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7093), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3494), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5937), 4, - anon_sym_RPAREN, + ACTIONS(7064), 5, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149710] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5636), 1, + [112974] = 5, + ACTIONS(5077), 1, + anon_sym_as, + ACTIONS(6576), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5079), 6, anon_sym_LPAREN, - ACTIONS(5948), 1, - sym_identifier, - STATE(3547), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5069), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [113002] = 8, + ACTIONS(7075), 1, + anon_sym_LBRACK, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7069), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7072), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3505), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3675), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5950), 4, + ACTIONS(7064), 5, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149752] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5940), 1, + [113036] = 9, + ACTIONS(7064), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7075), 1, + anon_sym_LBRACK, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7069), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7072), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3343), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5672), 4, + ACTIONS(7099), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149794] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5902), 1, - sym_identifier, - ACTIONS(5952), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + [113072] = 5, + ACTIONS(7102), 1, + anon_sym_DOT, + STATE(4273), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(6932), 5, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(6937), 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, - STATE(3509), 2, + [113100] = 11, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_DOT, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, + anon_sym_complex, + STATE(4286), 1, + aux_sym_class_definition_repeat2, + STATE(4552), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4458), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3712), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5904), 4, - anon_sym_RPAREN, + ACTIONS(6631), 3, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [149836] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5940), 1, + anon_sym_RBRACK, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [113140] = 9, + ACTIONS(7064), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7075), 1, + anon_sym_LBRACK, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7069), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7072), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3494), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3631), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5672), 4, + ACTIONS(7107), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149878] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5924), 1, - sym_identifier, - ACTIONS(5943), 1, + [113176] = 9, + ACTIONS(7064), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7075), 1, + anon_sym_LBRACK, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7069), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7072), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3496), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5928), 4, + ACTIONS(7110), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149920] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + [113212] = 11, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6628), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5340), 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(7113), 1, anon_sym_complex, - [149964] = 6, - ACTIONS(5918), 1, - anon_sym_COLON, - ACTIONS(5920), 1, - anon_sym_EQ, - ACTIONS(5955), 1, - anon_sym_COMMA, - STATE(3345), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5922), 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, - [149996] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5320), 1, - sym_c_type, + STATE(4273), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, + sym_type_index, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150040] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5800), 1, - anon_sym_LPAREN, - ACTIONS(5957), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5621), 1, - sym_c_type, + STATE(4400), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6631), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [113252] = 5, + ACTIONS(5077), 1, + anon_sym_as, + ACTIONS(6576), 1, + anon_sym_STAR, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3543), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150084] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(5079), 6, anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5468), 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_complex, - [150128] = 11, - ACTIONS(4433), 1, + anon_sym___stdcall, + ACTIONS(5069), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [113280] = 10, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5948), 1, - sym_identifier, - STATE(3547), 1, + ACTIONS(4885), 1, + anon_sym_complex, + STATE(4265), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 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(5950), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3505), 2, + STATE(4477), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3675), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5959), 3, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4489), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [150170] = 12, - ACTIONS(4433), 1, + anon_sym_EQ, + [113318] = 11, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5888), 1, - sym_identifier, - ACTIONS(5890), 1, + ACTIONS(6655), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7115), 1, + anon_sym_complex, + STATE(4277), 1, + aux_sym_class_definition_repeat2, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4431), 2, + STATE(4428), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5893), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5961), 2, + anon_sym___stdcall, + ACTIONS(6682), 3, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3507), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3679), 2, - sym_operator_name, - sym_c_function_pointer_name, - [150214] = 12, - ACTIONS(4433), 1, + anon_sym_EQ, + [113358] = 10, + ACTIONS(7050), 1, + anon_sym_DOT, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5888), 1, - sym_identifier, - ACTIONS(5890), 1, - anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7117), 1, + anon_sym_complex, + STATE(4286), 1, + aux_sym_class_definition_repeat2, + STATE(4552), 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(5893), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5961), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3414), 2, + STATE(4489), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3679), 2, - sym_operator_name, - sym_c_function_pointer_name, - [150258] = 12, - ACTIONS(5563), 1, - anon_sym_LPAREN, - ACTIONS(5577), 1, - anon_sym_long, - ACTIONS(5581), 1, - sym_identifier, - STATE(3463), 1, - sym__signedness, - STATE(3649), 1, - sym__longness, - STATE(4751), 1, - sym_c_type, - 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(3595), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5571), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150302] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5200), 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150346] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4841), 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150390] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6645), 4, anon_sym_LPAREN, - ACTIONS(5898), 1, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [113396] = 8, + ACTIONS(7062), 1, sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5298), 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150434] = 12, - ACTIONS(4433), 1, + ACTIONS(7125), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5888), 1, - sym_identifier, - ACTIONS(5895), 1, - anon_sym_LPAREN, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7119), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7122), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5893), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5963), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3507), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3679), 2, - sym_operator_name, - sym_c_function_pointer_name, - [150478] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - STATE(3547), 1, - sym_type_index, + ACTIONS(7064), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [113429] = 5, + ACTIONS(7130), 1, + anon_sym_DOT, + STATE(4283), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7128), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4431), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5965), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3501), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3670), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5676), 3, + ACTIONS(7133), 8, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - [150520] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5323), 1, - sym_c_type, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [113456] = 5, + ACTIONS(6932), 1, + anon_sym_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + STATE(4284), 1, + aux_sym_class_definition_repeat2, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150564] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5968), 1, - sym_identifier, - ACTIONS(5970), 1, + ACTIONS(6937), 11, + sym__newline, + anon_sym_SEMI, anon_sym_LPAREN, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5621), 1, - sym_c_type, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [113483] = 2, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3737), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150608] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5307), 1, - sym_c_type, + ACTIONS(4964), 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, + [113504] = 5, + ACTIONS(6932), 1, + anon_sym_STAR, + ACTIONS(7138), 1, + anon_sym_DOT, + STATE(4286), 1, + aux_sym_class_definition_repeat2, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(6937), 11, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_complex, - [150652] = 11, - ACTIONS(4433), 1, + anon_sym___stdcall, + [113531] = 8, + ACTIONS(7141), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5636), 1, - anon_sym_LPAREN, - ACTIONS(5888), 1, - sym_identifier, - STATE(3547), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7093), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3507), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3679), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5893), 4, - anon_sym_RPAREN, + ACTIONS(7078), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [150694] = 12, - ACTIONS(5563), 1, - anon_sym_LPAREN, - ACTIONS(5577), 1, - anon_sym_long, - ACTIONS(5581), 1, - sym_identifier, - STATE(3463), 1, - sym__signedness, - STATE(3649), 1, - sym__longness, - STATE(4618), 1, - sym_c_type, + [113564] = 3, 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(3595), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5571), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150738] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6604), 5, + anon_sym_STAR, sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5330), 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, anon_sym_complex, - [150782] = 14, - ACTIONS(3903), 1, - anon_sym_LPAREN, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6606), 9, + sym__newline, anon_sym_DOT, - ACTIONS(5976), 1, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(5978), 1, + anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(5980), 1, - anon_sym_complex, - STATE(3575), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [113587] = 5, + ACTIONS(7145), 1, + anon_sym_LBRACK, + STATE(4385), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(7128), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(7133), 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, - ACTIONS(5974), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3871), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [150830] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5115), 1, - sym_c_type, + [113614] = 5, + ACTIONS(7150), 1, + anon_sym_DOT, + STATE(4292), 1, + aux_sym_type_qualifier_repeat1, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150874] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, + ACTIONS(7148), 4, + anon_sym_STAR, sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5363), 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150918] = 6, - ACTIONS(5918), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7152), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(5920), 1, + anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(5982), 1, - anon_sym_COMMA, - STATE(3284), 1, - aux_sym__patterns_repeat1, + anon_sym_LBRACK, + anon_sym_AMP, + [113641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5922), 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, - [150950] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6982), 5, + anon_sym_STAR, sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5377), 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, anon_sym_complex, - [150994] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - STATE(3547), 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, - STATE(3350), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3670), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5676), 3, + ACTIONS(6984), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - [151036] = 11, - ACTIONS(4433), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5888), 1, - sym_identifier, - ACTIONS(5890), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + anon_sym_AMP, + [113664] = 5, + ACTIONS(7154), 1, + anon_sym_DOT, + STATE(4292), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7128), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4431), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3507), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3679), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5893), 4, + ACTIONS(7133), 8, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [151078] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5425), 1, - sym_c_type, + anon_sym_LBRACK, + anon_sym_AMP, + [113691] = 5, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151122] = 12, - ACTIONS(5563), 1, + ACTIONS(7157), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(5079), 4, anon_sym_LPAREN, - ACTIONS(5577), 1, - anon_sym_long, - ACTIONS(5581), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(6576), 4, + anon_sym_STAR, sym_identifier, - STATE(3463), 1, - sym__signedness, - STATE(3649), 1, - sym__longness, - STATE(4620), 1, - sym_c_type, - 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(3595), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5571), 3, - anon_sym_int, - anon_sym_double, anon_sym_complex, - [151166] = 11, - ACTIONS(4433), 1, + anon_sym___stdcall, + ACTIONS(7159), 4, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [113718] = 9, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - STATE(3547), 1, + ACTIONS(6673), 1, + anon_sym_LPAREN, + ACTIONS(7161), 1, + anon_sym_complex, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4431), 2, + STATE(4360), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5638), 2, + anon_sym___stdcall, + ACTIONS(6686), 4, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - STATE(3360), 2, + anon_sym_GT, + anon_sym_QMARK, + [113753] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7163), 1, + anon_sym_complex, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4367), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3670), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5645), 3, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6866), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - [151208] = 11, - ACTIONS(4433), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [113786] = 9, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - ACTIONS(5676), 1, + ACTIONS(6963), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7165), 1, + anon_sym_complex, + STATE(4379), 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(3356), 2, + STATE(4341), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3670), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5638), 4, - anon_sym_RPAREN, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6966), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [151250] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - ACTIONS(5676), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + anon_sym_GT, + anon_sym_QMARK, + [113821] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(6982), 5, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4431), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3501), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3670), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5965), 4, + ACTIONS(6984), 9, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [151292] = 11, - ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(3547), 1, + anon_sym_AMP, + [113844] = 8, + ACTIONS(7167), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7093), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3370), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3670), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5638), 4, - anon_sym_RPAREN, + ACTIONS(7110), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [151334] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + [113877] = 5, + ACTIONS(7173), 1, + anon_sym_DOT, + STATE(4315), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7171), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4431), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3501), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3670), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5638), 4, - anon_sym_RPAREN, + ACTIONS(7175), 8, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [151376] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4863), 1, - sym_c_type, + anon_sym_LBRACK, + anon_sym_AMP, + [113904] = 3, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(7177), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - [151420] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7179), 9, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5381), 1, - sym_c_type, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [113927] = 3, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(7006), 6, + anon_sym_STAR, + sym_identifier, anon_sym_int, anon_sym_double, anon_sym_complex, - [151464] = 11, - ACTIONS(4433), 1, + anon_sym___stdcall, + ACTIONS(7008), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5634), 1, - sym_identifier, - STATE(3547), 1, - sym_type_index, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [113950] = 2, 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, + ACTIONS(5608), 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, - STATE(3501), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3670), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5645), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [113971] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5596), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - [151506] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5345), 1, - sym_c_type, + 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, + [113992] = 2, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151550] = 12, - ACTIONS(1422), 1, + ACTIONS(5580), 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, + [114013] = 11, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(4658), 1, + anon_sym_operator, + ACTIONS(7181), 1, sym_identifier, - STATE(3262), 1, + STATE(4025), 1, sym__signedness, - STATE(3479), 1, + STATE(4060), 1, + sym_int_type, + STATE(4241), 1, sym__longness, - STATE(4755), 1, - sym_c_type, + STATE(4470), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1420), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(1424), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151594] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + [114052] = 11, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(6628), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5402), 1, - sym_c_type, + ACTIONS(7183), 1, + anon_sym_complex, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151638] = 12, - ACTIONS(5563), 1, - anon_sym_LPAREN, - ACTIONS(5577), 1, - anon_sym_long, - ACTIONS(5581), 1, - sym_identifier, - STATE(3463), 1, - sym__signedness, - STATE(3649), 1, - sym__longness, - STATE(4689), 1, - sym_c_type, + ACTIONS(6631), 2, + sym__newline, + anon_sym_COLON, + STATE(4558), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [114091] = 3, 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(3595), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5571), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(7177), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - [151682] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7179), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4920), 1, - sym_c_type, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [114114] = 5, + ACTIONS(7185), 1, + anon_sym_DOT, + STATE(4308), 1, + aux_sym_class_definition_repeat2, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(6932), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - [151726] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6937), 7, + sym__newline, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5333), 1, - sym_c_type, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [114141] = 8, + ACTIONS(7188), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151770] = 12, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5902), 1, + ACTIONS(7062), 2, sym_identifier, - ACTIONS(5952), 1, + anon_sym_operator, + ACTIONS(7090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(7093), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7087), 4, + sym__newline, anon_sym_LPAREN, - STATE(3547), 1, + anon_sym_COMMA, + anon_sym_EQ, + [114174] = 5, + ACTIONS(7192), 1, + anon_sym_LBRACK, + STATE(4377), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7128), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7133), 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_AMP, - ACTIONS(5904), 2, + [114201] = 11, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(6655), 1, + anon_sym_LPAREN, + ACTIONS(7195), 1, + anon_sym_complex, + STATE(4299), 1, + sym_type_index, + STATE(4306), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6682), 2, + sym__newline, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5984), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3509), 2, + STATE(4546), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3712), 2, - sym_operator_name, - sym_c_function_pointer_name, - [151814] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4953), 1, - sym_c_type, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [114240] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7197), 1, + anon_sym_complex, + STATE(4379), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151858] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + STATE(4371), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6614), 5, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5293), 1, - sym_c_type, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [114273] = 4, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(6824), 2, anon_sym_int, anon_sym_double, + ACTIONS(6604), 4, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - [151902] = 12, - ACTIONS(5563), 1, + anon_sym___stdcall, + ACTIONS(6606), 8, anon_sym_LPAREN, - ACTIONS(5577), 1, - anon_sym_long, - ACTIONS(5581), 1, - sym_identifier, - STATE(3463), 1, - sym__signedness, - STATE(3649), 1, - sym__longness, - STATE(4684), 1, - sym_c_type, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [114298] = 5, + ACTIONS(7150), 1, + anon_sym_DOT, + STATE(4290), 1, + aux_sym_type_qualifier_repeat1, 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(3595), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5571), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151946] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, + ACTIONS(7171), 4, + anon_sym_STAR, sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(4988), 1, - sym_c_type, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7175), 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, + [114325] = 5, + ACTIONS(7173), 1, + anon_sym_DOT, + STATE(4283), 1, + aux_sym_type_qualifier_repeat1, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151990] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, + ACTIONS(7148), 4, + anon_sym_STAR, sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5358), 1, - sym_c_type, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7152), 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, + [114352] = 3, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(6932), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - [152034] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5636), 1, + anon_sym___stdcall, + ACTIONS(6937), 9, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5924), 1, - sym_identifier, - STATE(3547), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [114375] = 8, + ACTIONS(7199), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7093), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3496), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5928), 4, - anon_sym_RPAREN, + ACTIONS(7099), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [152076] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5013), 1, - sym_c_type, + [114408] = 10, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7203), 1, + anon_sym_complex, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(4299), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152120] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + STATE(4544), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6645), 3, + sym__newline, anon_sym_LPAREN, - ACTIONS(5898), 1, + anon_sym_COLON, + [114445] = 8, + ACTIONS(7205), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7062), 2, sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5424), 1, - sym_c_type, + anon_sym_operator, + ACTIONS(7090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(7093), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7107), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [114478] = 3, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(6604), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - [152164] = 11, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5636), 1, + anon_sym___stdcall, + ACTIONS(6606), 9, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5924), 1, - sym_identifier, - STATE(3547), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [114501] = 8, + ACTIONS(7209), 1, + anon_sym_LBRACK, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(7062), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(7093), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3366), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5928), 4, - anon_sym_RPAREN, + ACTIONS(7066), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [152206] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5037), 1, - sym_c_type, + [114534] = 4, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, + ACTIONS(7213), 2, anon_sym_int, anon_sym_double, + ACTIONS(6982), 4, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - [152250] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + anon_sym___stdcall, + ACTIONS(6984), 8, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5480), 1, - sym_c_type, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [114559] = 7, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + STATE(4379), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152294] = 12, - ACTIONS(5563), 1, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6645), 5, anon_sym_LPAREN, - ACTIONS(5577), 1, - anon_sym_long, - ACTIONS(5581), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [114589] = 12, + ACTIONS(7215), 1, sym_identifier, - STATE(3463), 1, - sym__signedness, - STATE(3649), 1, - sym__longness, - STATE(5172), 1, - sym_c_type, + ACTIONS(7217), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + anon_sym_LBRACK, + STATE(1233), 1, + sym_c_function_definition, + STATE(4833), 1, + sym_c_parameters, + STATE(4838), 1, + sym_c_name, + STATE(6121), 1, + sym_type_index, + STATE(6318), 1, + sym_template_params, + STATE(6623), 1, + sym_type_qualifier, 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(3595), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5571), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152338] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [114629] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7221), 1, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5384), 1, - sym_c_type, + STATE(4379), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152382] = 4, - ACTIONS(5986), 1, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7224), 4, anon_sym_COMMA, - STATE(3428), 1, - aux_sym__patterns_repeat1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [114661] = 9, + ACTIONS(6673), 1, + anon_sym_LPAREN, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + ACTIONS(7226), 1, + anon_sym_complex, + STATE(4552), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5725), 15, - anon_sym_COLON, + STATE(4441), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6686), 3, + anon_sym_COMMA, 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, - [152410] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + anon_sym_RBRACK, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [114695] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5285), 1, - sym_c_type, + STATE(4379), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6951), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [114727] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(7228), 1, anon_sym_complex, - [152454] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5506), 1, - sym_c_type, + STATE(4314), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152498] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + STATE(4417), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6614), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [114759] = 12, + ACTIONS(7217), 1, anon_sym_LPAREN, - ACTIONS(5898), 1, + ACTIONS(7219), 1, + anon_sym_LBRACK, + ACTIONS(7230), 1, sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5380), 1, - sym_c_type, + STATE(1559), 1, + sym_c_function_definition, + STATE(4799), 1, + sym_c_parameters, + STATE(4907), 1, + sym_c_name, + STATE(6121), 1, + sym_type_index, + STATE(6442), 1, + sym_template_params, + STATE(6623), 1, + sym_type_qualifier, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152542] = 11, - ACTIONS(4433), 1, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [114799] = 12, + ACTIONS(7217), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5948), 1, + ACTIONS(7232), 1, sym_identifier, - ACTIONS(5959), 1, - anon_sym_LPAREN, - STATE(3547), 1, + STATE(1744), 1, + sym_c_function_definition, + STATE(4813), 1, + sym_c_name, + STATE(4833), 1, + sym_c_parameters, + STATE(6121), 1, sym_type_index, + STATE(6318), 1, + sym_template_params, + STATE(6623), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4429), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4431), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3505), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3675), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5950), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [152584] = 4, - ACTIONS(5989), 1, - anon_sym_long, + [114839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5906), 7, + ACTIONS(7234), 4, anon_sym_STAR, sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5908), 9, + ACTIONS(7236), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -257360,617 +316014,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [152612] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5417), 1, - sym_c_type, + [114861] = 4, + ACTIONS(6576), 1, + anon_sym_STAR, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152656] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5755), 1, + ACTIONS(5069), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5079), 6, anon_sym_LPAREN, - ACTIONS(5991), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5744), 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3615), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_complex, - [152700] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + anon_sym___stdcall, + [114885] = 9, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6963), 1, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5296), 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(7238), 1, anon_sym_complex, - [152744] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5382), 1, - sym_c_type, + STATE(4314), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152788] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5383), 1, - sym_c_type, + STATE(4420), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6966), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [114919] = 7, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + STATE(4379), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152832] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7240), 5, anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5304), 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152876] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [114949] = 11, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6645), 1, anon_sym_LPAREN, - ACTIONS(5898), 1, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7242), 1, sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5385), 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(7244), 1, anon_sym_complex, - [152920] = 12, - ACTIONS(4202), 1, - anon_sym_long, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5898), 1, - sym_identifier, - STATE(3325), 1, - sym__signedness, - STATE(3549), 1, - sym__longness, - STATE(5386), 1, - sym_c_type, + STATE(4148), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, + sym_type_index, 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(5757), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4196), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [152964] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4648), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [114987] = 11, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6655), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7246), 1, sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5391), 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(7248), 1, anon_sym_complex, - [153008] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5355), 1, - sym_c_type, + STATE(4379), 1, + sym_type_index, + STATE(4381), 1, + aux_sym_class_definition_repeat2, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153052] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5367), 1, - sym_c_type, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4659), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [115025] = 3, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153096] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + ACTIONS(6745), 2, + sym__dedent, anon_sym_LPAREN, - ACTIONS(5730), 1, + ACTIONS(7250), 11, sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5371), 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153140] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5375), 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_long, anon_sym_const, anon_sym_volatile, - STATE(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153184] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + [115047] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5399), 1, - sym_c_type, + STATE(4379), 1, + sym_type_index, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153228] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, - anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5405), 1, - sym_c_type, + STATE(4342), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6951), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115079] = 7, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + STATE(4379), 1, + sym_type_index, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153272] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6930), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115109] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5410), 1, - sym_c_type, + STATE(4379), 1, + sym_type_index, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153316] = 12, - ACTIONS(1422), 1, - anon_sym_long, - ACTIONS(5086), 1, + STATE(4325), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7240), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115141] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, anon_sym_LPAREN, - ACTIONS(5730), 1, - sym_identifier, - STATE(3262), 1, - sym__signedness, - STATE(3479), 1, - sym__longness, - STATE(5413), 1, - sym_c_type, + STATE(4379), 1, + sym_type_index, 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(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1414), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153360] = 11, - ACTIONS(4433), 1, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7240), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115173] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5098), 1, - anon_sym_operator, - ACTIONS(5636), 1, + ACTIONS(6941), 1, anon_sym_LPAREN, - ACTIONS(5888), 1, - sym_identifier, - STATE(3547), 1, + STATE(4379), 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(3346), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3679), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5893), 4, - anon_sym_RPAREN, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6944), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [153402] = 3, + anon_sym_GT, + anon_sym_QMARK, + [115205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5734), 6, - anon_sym_as, + ACTIONS(6932), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5739), 10, + ACTIONS(6937), 8, + 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_PIPE, anon_sym_AMP, - [153427] = 4, + [115227] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6963), 1, + anon_sym_LPAREN, + STATE(4379), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5997), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5993), 5, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6966), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115259] = 3, + ACTIONS(6932), 1, anon_sym_STAR, - sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6937), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [115281] = 8, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + ACTIONS(7255), 1, anon_sym_complex, + STATE(4552), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4437), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6866), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [115313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7257), 4, + anon_sym_STAR, + sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5995), 9, + ACTIONS(7259), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -257980,50 +316379,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153454] = 11, - ACTIONS(5999), 1, - anon_sym_DOT, - ACTIONS(6001), 1, + [115335] = 12, + ACTIONS(7217), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + anon_sym_LBRACK, + ACTIONS(7261), 1, + sym_identifier, + STATE(3655), 1, + sym_c_function_definition, + STATE(4802), 1, + sym_c_parameters, + STATE(4804), 1, + sym_c_name, + STATE(6121), 1, + sym_type_index, + STATE(6469), 1, + sym_template_params, + STATE(6623), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [115375] = 7, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(6007), 1, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6928), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115405] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(7263), 1, anon_sym_complex, - STATE(3508), 1, - aux_sym_class_definition_repeat2, - STATE(3750), 1, + STATE(4314), 1, sym_type_index, - STATE(5478), 1, - sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(4393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3903), 4, + ACTIONS(6866), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [153495] = 3, + [115437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5734), 6, - anon_sym_as, + ACTIONS(7257), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5739), 10, + ACTIONS(7259), 9, sym__newline, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -258032,674 +316473,876 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153520] = 4, + [115459] = 5, + ACTIONS(7265), 1, + anon_sym_DOT, + STATE(4368), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6009), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5993), 5, + ACTIONS(7148), 3, anon_sym_STAR, sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5995), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(7152), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153547] = 10, - ACTIONS(5090), 1, + anon_sym_GT, + anon_sym_QMARK, + [115485] = 7, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6011), 1, - anon_sym_complex, - STATE(3459), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3616), 2, + STATE(4339), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(6173), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3903), 5, + ACTIONS(6928), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [153586] = 13, - ACTIONS(3903), 1, + [115515] = 12, + ACTIONS(7217), 1, anon_sym_LPAREN, - ACTIONS(3914), 1, + ACTIONS(7219), 1, + anon_sym_LBRACK, + ACTIONS(7267), 1, sym_identifier, - ACTIONS(5094), 1, + STATE(1578), 1, + sym_c_function_definition, + STATE(4799), 1, + sym_c_parameters, + STATE(4917), 1, + sym_c_name, + STATE(6121), 1, + sym_type_index, + STATE(6442), 1, + sym_template_params, + STATE(6623), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [115555] = 12, + ACTIONS(7217), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(5980), 1, - anon_sym_complex, - ACTIONS(6013), 1, - anon_sym_EQ, - STATE(3575), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + ACTIONS(7269), 1, + sym_identifier, + STATE(3602), 1, + sym_c_function_definition, + STATE(4802), 1, + sym_c_parameters, + STATE(4812), 1, + sym_c_name, + STATE(6121), 1, sym_type_index, + STATE(6469), 1, + sym_template_params, + STATE(6623), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5974), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3871), 2, + [115595] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4327), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [153631] = 10, - ACTIONS(5090), 1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6631), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115627] = 8, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6015), 1, - anon_sym_complex, - STATE(3269), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3554), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(6173), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5676), 5, - anon_sym_LPAREN, + ACTIONS(6631), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [153670] = 11, - ACTIONS(5090), 1, + [115659] = 8, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5626), 1, + ACTIONS(6888), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6017), 1, - anon_sym_complex, - STATE(3469), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3563), 2, + STATE(4344), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(6173), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5661), 4, + ACTIONS(6866), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [153711] = 3, + [115691] = 7, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + STATE(4379), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6019), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + STATE(4362), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6021), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(6686), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + [115721] = 8, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, anon_sym_LBRACK, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - [153736] = 14, - ACTIONS(3903), 1, + anon_sym___stdcall, + ACTIONS(6866), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115753] = 9, + ACTIONS(6963), 1, anon_sym_LPAREN, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(5094), 1, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(5974), 1, - anon_sym_COMMA, - ACTIONS(5980), 1, + ACTIONS(7271), 1, anon_sym_complex, - ACTIONS(6013), 1, + STATE(4552), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4488), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6966), 3, + anon_sym_COMMA, anon_sym_EQ, - ACTIONS(6023), 1, + anon_sym_RBRACK, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [115787] = 7, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6866), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3575), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + anon_sym_GT, + anon_sym_QMARK, + [115817] = 5, + ACTIONS(7273), 1, + anon_sym_LBRACK, + STATE(4411), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(7128), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(7133), 8, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3871), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [153783] = 7, - ACTIONS(5680), 1, + anon_sym_GT, + anon_sym_QMARK, + [115843] = 3, + ACTIONS(6932), 1, anon_sym_STAR, - ACTIONS(6029), 1, - anon_sym_long, - STATE(3669), 1, - sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6025), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(6027), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5682), 9, + ACTIONS(6937), 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, - [153816] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(6031), 1, - sym_identifier, - ACTIONS(6033), 1, - anon_sym_LPAREN, - ACTIONS(6036), 1, + [115865] = 9, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6673), 1, + anon_sym_LPAREN, + ACTIONS(7276), 1, + anon_sym_complex, + STATE(4314), 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(3532), 2, + STATE(4432), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3642), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5950), 3, - sym__newline, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6686), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [153857] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5808), 1, - sym_identifier, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5813), 1, + [115899] = 7, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(4379), 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(3473), 2, + STATE(4334), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3662), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5638), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [153898] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(6039), 1, - sym_identifier, - ACTIONS(6041), 1, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6966), 5, anon_sym_LPAREN, - ACTIONS(6044), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115929] = 7, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(4379), 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(3534), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3656), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5893), 3, - sym__newline, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6966), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [153939] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(6039), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [115959] = 5, + ACTIONS(7278), 1, + anon_sym_DOT, + STATE(4368), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7128), 3, + anon_sym_STAR, sym_identifier, - ACTIONS(6041), 1, + anon_sym___stdcall, + ACTIONS(7133), 8, anon_sym_LPAREN, - ACTIONS(6044), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [115985] = 11, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7281), 1, + sym_identifier, + ACTIONS(7283), 1, + anon_sym_complex, + STATE(4148), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3472), 2, + STATE(4673), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3656), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5893), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [153980] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5808), 1, - sym_identifier, - ACTIONS(6047), 1, + [116023] = 11, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, + ACTIONS(4500), 1, + sym_identifier, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7285), 1, + anon_sym_complex, + STATE(4379), 1, sym_type_index, + STATE(4382), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3538), 2, + STATE(4617), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3662), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5965), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [154021] = 11, - ACTIONS(5090), 1, + [116061] = 7, + ACTIONS(6171), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6055), 1, - anon_sym_complex, - STATE(3269), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3569), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(6173), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5670), 4, + ACTIONS(6686), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [154062] = 4, - ACTIONS(5591), 1, + [116091] = 10, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(4494), 1, anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_complex, + STATE(4299), 1, + sym_type_index, + STATE(4318), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 6, + ACTIONS(4489), 2, + sym__newline, anon_sym_LPAREN, + STATE(4560), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(4570), 9, + [116127] = 4, + ACTIONS(7289), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4373), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(7287), 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, + [116151] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7292), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7294), 9, + sym__newline, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [154089] = 4, - ACTIONS(5591), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [116173] = 8, + ACTIONS(7052), 1, anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + ACTIONS(7296), 1, + anon_sym_complex, + STATE(4552), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 6, - anon_sym_LPAREN, + STATE(4487), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(4570), 9, + ACTIONS(6614), 4, + 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, - [154116] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(6057), 1, + anon_sym_RBRACK, + [116205] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7298), 4, + anon_sym_STAR, sym_identifier, - ACTIONS(6059), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7300), 9, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(6062), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + anon_sym_AMP, + [116227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(7302), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(7304), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3531), 2, + [116249] = 7, + ACTIONS(6171), 1, + anon_sym_STAR, + ACTIONS(6175), 1, + anon_sym_LBRACK, + STATE(4379), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4349), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3653), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5904), 3, - sym__newline, + ACTIONS(6173), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6645), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [154157] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(6065), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [116279] = 5, + ACTIONS(7265), 1, + anon_sym_DOT, + STATE(4352), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7171), 3, + anon_sym_STAR, sym_identifier, - ACTIONS(6067), 1, + anon_sym___stdcall, + ACTIONS(7175), 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, + [116305] = 12, + ACTIONS(7217), 1, anon_sym_LPAREN, - ACTIONS(6070), 1, + ACTIONS(7219), 1, + anon_sym_LBRACK, + ACTIONS(7306), 1, + sym_identifier, + STATE(3697), 1, + sym_c_function_definition, + STATE(4803), 1, + sym_c_name, + STATE(4905), 1, + sym_c_parameters, + STATE(6121), 1, + sym_type_index, + STATE(6389), 1, + sym_template_params, + STATE(6623), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [116345] = 11, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7281), 1, + sym_identifier, + ACTIONS(7308), 1, + anon_sym_complex, + STATE(4148), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3516), 2, + STATE(4701), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3651), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5928), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [154198] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(6065), 1, - sym_identifier, - ACTIONS(6067), 1, - anon_sym_LPAREN, - ACTIONS(6070), 1, + [116383] = 11, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6645), 1, + anon_sym_LPAREN, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7242), 1, + sym_identifier, + ACTIONS(7310), 1, + anon_sym_complex, + STATE(4148), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3464), 2, + STATE(4694), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3651), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5928), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [154239] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5786), 1, - sym_identifier, - ACTIONS(5788), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, + [116421] = 11, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6655), 1, + anon_sym_LPAREN, + ACTIONS(6953), 1, + anon_sym_DOT, + ACTIONS(7246), 1, + sym_identifier, + ACTIONS(7312), 1, + anon_sym_complex, + STATE(4369), 1, + aux_sym_class_definition_repeat2, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3466), 2, + STATE(4625), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3659), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5672), 3, + [116459] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7298), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7300), 9, sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [154280] = 5, - ACTIONS(4578), 1, - anon_sym_as, - ACTIONS(5591), 1, - anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + [116481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 6, + ACTIONS(7302), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7304), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, + [116503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7314), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4570), 8, + ACTIONS(7316), 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, - [154309] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5786), 1, - sym_identifier, - ACTIONS(6073), 1, - anon_sym_LPAREN, - ACTIONS(6077), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + anon_sym_AMP, + [116525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(7292), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(3924), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3521), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3659), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5937), 3, - sym__newline, + ACTIONS(7294), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [154350] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5786), 1, - sym_identifier, - ACTIONS(5788), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [116547] = 12, + ACTIONS(7217), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, + ACTIONS(7219), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(7318), 1, + sym_identifier, + STATE(3739), 1, + sym_c_function_definition, + STATE(4831), 1, + sym_c_name, + STATE(4905), 1, + sym_c_parameters, + STATE(6121), 1, sym_type_index, + STATE(6389), 1, + sym_template_params, + STATE(6623), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3924), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3521), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3659), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5672), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [154391] = 4, + [116587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5703), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5680), 5, + ACTIONS(7314), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5682), 9, + ACTIONS(7316), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -258709,1550 +317352,2006 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154418] = 4, + [116609] = 4, + ACTIONS(6897), 1, + anon_sym_STAR, + ACTIONS(7320), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5684), 2, + ACTIONS(6899), 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, - ACTIONS(5680), 5, + anon_sym_complex, + anon_sym___stdcall, + [116633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7234), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5682), 9, - sym__newline, + ACTIONS(7236), 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, - [154445] = 3, + [116655] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6019), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6021), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7322), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [116684] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - [154470] = 11, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(5808), 1, - sym_identifier, - ACTIONS(5810), 1, + anon_sym___stdcall, + ACTIONS(6966), 4, anon_sym_LPAREN, - ACTIONS(5813), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [116713] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6948), 1, + anon_sym_LPAREN, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3924), 2, + STATE(4424), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3538), 2, + anon_sym___stdcall, + ACTIONS(6951), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [116744] = 7, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(4552), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3662), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5638), 3, - sym__newline, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6866), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [154511] = 10, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4429), 1, + anon_sym_RBRACK, + [116773] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(6081), 1, - anon_sym_complex, - STATE(3363), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3697), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5676), 4, + ACTIONS(6930), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [154549] = 8, - ACTIONS(6093), 1, + [116802] = 8, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(7324), 1, + anon_sym_complex, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6087), 2, - anon_sym_STAR, + STATE(4554), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6090), 2, + ACTIONS(6866), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [116833] = 9, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(6963), 1, + anon_sym_LPAREN, + ACTIONS(7326), 1, + anon_sym_complex, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6966), 2, + sym__newline, + anon_sym_COLON, + STATE(4575), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3484), 2, + anon_sym___stdcall, + [116866] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6085), 5, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7328), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [154583] = 11, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4429), 1, + [116895] = 8, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, + ACTIONS(6948), 1, anon_sym_LPAREN, - ACTIONS(6096), 1, - anon_sym_complex, - STATE(3363), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3717), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5670), 3, + ACTIONS(6951), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [154623] = 3, + [116926] = 13, + ACTIONS(7330), 1, + anon_sym_COMMA, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7336), 1, + anon_sym_COLON, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(7342), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + STATE(5060), 1, + sym_for_in_clause, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, + STATE(6724), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6098), 5, + [116967] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4412), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6100), 10, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7348), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_EQ, + [116996] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7350), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7322), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, + [117025] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7355), 1, anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4490), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [154647] = 3, + anon_sym___stdcall, + ACTIONS(7353), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [117054] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7360), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6102), 5, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7358), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [117083] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, + ACTIONS(7365), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7363), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [117112] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6963), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6966), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [117143] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7370), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4403), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6104), 10, - anon_sym_DOT, + ACTIONS(7368), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [117172] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [154671] = 4, - ACTIONS(6106), 1, - anon_sym_long, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5906), 6, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5908), 8, + ACTIONS(6928), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [154697] = 3, + anon_sym_EQ, + [117201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6108), 5, + ACTIONS(7298), 3, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, anon_sym___stdcall, - ACTIONS(6110), 10, + ACTIONS(7300), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [154721] = 4, - ACTIONS(5918), 1, - anon_sym_COLON, - ACTIONS(5920), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5922), 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, - [154747] = 3, + [117222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6112), 5, + ACTIONS(7302), 3, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, anon_sym___stdcall, - ACTIONS(6114), 10, + ACTIONS(7304), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [154771] = 3, + [117243] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6116), 6, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym_operator, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6118), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7373), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [117272] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7377), 1, anon_sym_LBRACK, - anon_sym_AMP, - [154795] = 3, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6102), 6, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym_operator, + STATE(4498), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6104), 9, - anon_sym_DOT, + ACTIONS(7375), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [117301] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - anon_sym_AMP, - [154819] = 9, - ACTIONS(6085), 1, - anon_sym_LPAREN, - ACTIONS(6129), 1, - anon_sym_LBRACK, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6123), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6126), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3497), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6120), 4, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7380), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [154855] = 3, + [117330] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(7221), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6116), 5, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6118), 10, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7224), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [117361] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [154879] = 9, - ACTIONS(6085), 1, - anon_sym_LPAREN, - ACTIONS(6129), 1, - anon_sym_LBRACK, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6123), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6126), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3497), 2, + STATE(4399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6132), 4, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7382), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [154915] = 8, - ACTIONS(6129), 1, + [117390] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6123), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6126), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3497), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6085), 5, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6686), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [154949] = 3, + [117419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6098), 6, + ACTIONS(7384), 4, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, - anon_sym_operator, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6100), 9, - anon_sym_DOT, + ACTIONS(7386), 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, - [154973] = 10, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4429), 1, + anon_sym_GT, + anon_sym_QMARK, + [117440] = 8, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4435), 1, + ACTIONS(7388), 1, anon_sym_complex, - STATE(3483), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3665), 2, + STATE(4509), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3903), 4, + ACTIONS(6614), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [117471] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7240), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [155011] = 10, - ACTIONS(5999), 1, - anon_sym_DOT, - ACTIONS(6001), 1, + [117502] = 7, + ACTIONS(7390), 1, anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(7396), 1, anon_sym_LBRACK, - ACTIONS(6007), 1, - anon_sym_complex, - STATE(3508), 1, - aux_sym_class_definition_repeat2, - STATE(3750), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(7393), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3903), 4, + ACTIONS(7064), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [155049] = 9, - ACTIONS(6085), 1, - anon_sym_LPAREN, - ACTIONS(6129), 1, + [117531] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3547), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6123), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6126), 2, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3497), 2, + anon_sym___stdcall, + ACTIONS(7399), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [117560] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4440), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6135), 4, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7375), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [155085] = 5, - ACTIONS(4578), 1, - anon_sym_as, - ACTIONS(5591), 1, + [117589] = 8, + ACTIONS(4879), 1, anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6941), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 6, - anon_sym_LPAREN, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(4570), 7, + ACTIONS(6944), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [117620] = 13, + ACTIONS(7330), 1, anon_sym_COMMA, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, anon_sym_if, + ACTIONS(7336), 1, + anon_sym_COLON, + ACTIONS(7338), 1, anon_sym_async, + ACTIONS(7340), 1, anon_sym_for, - anon_sym_RBRACK, + ACTIONS(7342), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, anon_sym_and, + ACTIONS(7346), 1, anon_sym_or, - [155113] = 3, + STATE(5060), 1, + sym_for_in_clause, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, + STATE(6817), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6108), 6, + [117661] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym_operator, + ACTIONS(7403), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4474), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6110), 9, - anon_sym_DOT, + ACTIONS(7401), 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, - [155137] = 11, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(4429), 1, + [117690] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(7406), 1, anon_sym_LBRACK, - ACTIONS(5626), 1, - anon_sym_LPAREN, - ACTIONS(6138), 1, - anon_sym_complex, - STATE(3485), 1, - aux_sym_class_definition_repeat2, - STATE(3547), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3703), 2, + STATE(4475), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5661), 3, - anon_sym_RPAREN, + ACTIONS(7382), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [155177] = 9, - ACTIONS(6085), 1, - anon_sym_LPAREN, - ACTIONS(6129), 1, + [117719] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6123), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6126), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3497), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6140), 4, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6631), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [155213] = 3, + [117750] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6112), 6, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym_operator, + STATE(4494), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6114), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7353), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [117779] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7411), 1, anon_sym_LBRACK, - anon_sym_AMP, - [155237] = 9, - ACTIONS(6085), 1, - anon_sym_LPAREN, - ACTIONS(6129), 1, - anon_sym_LBRACK, - STATE(3547), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6123), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6126), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3497), 2, + STATE(4406), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6143), 4, - anon_sym_RPAREN, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7409), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [155273] = 10, - ACTIONS(5999), 1, - anon_sym_DOT, - ACTIONS(6001), 1, + [117808] = 7, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(6146), 1, - anon_sym_complex, - STATE(3550), 1, - aux_sym_class_definition_repeat2, - STATE(3750), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3707), 2, + STATE(4456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5676), 4, + ACTIONS(6928), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [155311] = 9, - ACTIONS(6085), 1, - anon_sym_LPAREN, - ACTIONS(6129), 1, + [117837] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6123), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6126), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3497), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6148), 4, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6866), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [155347] = 11, - ACTIONS(5626), 1, + [117868] = 8, + ACTIONS(6628), 1, anon_sym_LPAREN, - ACTIONS(5999), 1, - anon_sym_DOT, - ACTIONS(6001), 1, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(6151), 1, - anon_sym_complex, - STATE(3511), 1, - aux_sym_class_definition_repeat2, - STATE(3750), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3720), 2, + STATE(4458), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5661), 3, + ACTIONS(6631), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(6003), 3, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [155387] = 11, - ACTIONS(5667), 1, + [117899] = 8, + ACTIONS(6888), 1, anon_sym_LPAREN, - ACTIONS(5999), 1, - anon_sym_DOT, - ACTIONS(6001), 1, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(6153), 1, - anon_sym_complex, - STATE(3550), 1, - aux_sym_class_definition_repeat2, - STATE(3750), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3671), 2, + STATE(4465), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5670), 3, + ACTIONS(6866), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(6003), 3, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [155427] = 5, - ACTIONS(4578), 1, - anon_sym_as, - ACTIONS(5591), 1, + [117930] = 7, + ACTIONS(4879), 1, anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 6, - anon_sym_LPAREN, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(4570), 7, + ACTIONS(6866), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [155455] = 5, - ACTIONS(6159), 1, - anon_sym_LBRACK, - STATE(3588), 1, - sym_type_index, + anon_sym_EQ, + [117959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6155), 4, + ACTIONS(6982), 4, anon_sym_STAR, sym_identifier, - anon_sym_operator, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6157), 8, - anon_sym_DOT, + ACTIONS(6984), 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, - [155482] = 9, - ACTIONS(5090), 1, + anon_sym_GT, + anon_sym_QMARK, + [117980] = 7, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(5895), 1, - anon_sym_LPAREN, - ACTIONS(6162), 1, - anon_sym_complex, - STATE(3584), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3553), 2, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5963), 4, + ACTIONS(6966), 4, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [118009] = 13, + ACTIONS(7330), 1, + anon_sym_COMMA, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7336), 1, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155517] = 5, - ACTIONS(6164), 1, - anon_sym_DOT, - STATE(3515), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(7342), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + STATE(5060), 1, + sym_for_in_clause, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, + STATE(6760), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6155), 4, + ACTIONS(7257), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6157), 8, + ACTIONS(7259), 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, - [155544] = 8, - ACTIONS(6167), 1, + anon_sym_GT, + anon_sym_QMARK, + [118071] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6087), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6090), 2, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3484), 2, + anon_sym___stdcall, + ACTIONS(7414), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [118100] = 8, + ACTIONS(6888), 1, + anon_sym_LPAREN, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(4552), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6132), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6866), 3, anon_sym_COMMA, anon_sym_EQ, - [155577] = 5, - ACTIONS(6173), 1, - anon_sym_DOT, - STATE(3515), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_RBRACK, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [118131] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6175), 8, + ACTIONS(6928), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [118160] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - anon_sym_AMP, - [155604] = 5, - ACTIONS(6177), 1, - anon_sym_DOT, - STATE(3537), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(4400), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6175), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6631), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [155631] = 3, + [118191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5993), 5, + ACTIONS(7171), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5995), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(7175), 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, - [155654] = 5, - ACTIONS(6179), 1, + [118212] = 7, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, anon_sym_LBRACK, - STATE(3592), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6155), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(4489), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6157), 8, - sym__newline, - anon_sym_DOT, + ACTIONS(6645), 4, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [118241] = 13, + ACTIONS(7330), 1, + anon_sym_COMMA, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7336), 1, anon_sym_COLON, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(7342), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + STATE(5060), 1, + sym_for_in_clause, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, + STATE(6904), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118282] = 8, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AMP, - [155681] = 8, - ACTIONS(6182), 1, + anon_sym___stdcall, + ACTIONS(6866), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [118313] = 8, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(7221), 1, + anon_sym_LPAREN, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6087), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6090), 2, + STATE(4421), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3484), 2, + anon_sym___stdcall, + ACTIONS(7224), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [118344] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4503), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6120), 4, - sym__newline, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7409), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [118373] = 13, + ACTIONS(7330), 1, + anon_sym_COMMA, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7336), 1, + anon_sym_COLON, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(7342), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + STATE(5060), 1, + sym_for_in_clause, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, + STATE(6781), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118414] = 4, + ACTIONS(6604), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7014), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6606), 9, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [155714] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [118437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6186), 5, + ACTIONS(7171), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6188), 9, - anon_sym_DOT, + ACTIONS(7175), 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, - [155737] = 10, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(3908), 1, + [118458] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(6190), 1, - anon_sym_complex, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3792), 2, + STATE(4409), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5676), 3, - sym__newline, + ACTIONS(6645), 4, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [118487] = 13, + ACTIONS(7330), 1, + anon_sym_COMMA, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7336), 1, anon_sym_COLON, - [155774] = 11, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(3908), 1, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(7342), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + STATE(5060), 1, + sym_for_in_clause, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, + STATE(6893), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118528] = 7, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(5626), 1, - anon_sym_LPAREN, - ACTIONS(6192), 1, - anon_sym_complex, - STATE(3536), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5661), 2, - sym__newline, - anon_sym_COLON, - STATE(3799), 2, + STATE(4482), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [155813] = 2, + ACTIONS(6966), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [118557] = 7, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(4552), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4393), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + STATE(4421), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6930), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [118586] = 13, + ACTIONS(7330), 1, anon_sym_COMMA, + ACTIONS(7332), 1, anon_sym_as, + ACTIONS(7334), 1, anon_sym_if, + ACTIONS(7336), 1, anon_sym_COLON, - anon_sym_with, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(7342), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, anon_sym_and, + ACTIONS(7346), 1, anon_sym_or, - anon_sym_nogil, - [155834] = 8, - ACTIONS(5090), 1, + STATE(5060), 1, + sym_for_in_clause, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, + STATE(6873), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118627] = 8, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(6194), 1, - anon_sym_complex, - STATE(3584), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3613), 2, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(6951), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5943), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155867] = 11, - ACTIONS(381), 1, - anon_sym_long, - ACTIONS(4138), 1, - anon_sym_operator, - ACTIONS(6196), 1, - sym_identifier, - STATE(3253), 1, - sym__signedness, - STATE(3265), 1, - sym_int_type, - STATE(3480), 1, - sym__longness, - STATE(3682), 1, - sym_operator_name, + [118658] = 4, + ACTIONS(6982), 1, + anon_sym_STAR, 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(375), 3, + ACTIONS(7416), 2, anon_sym_int, anon_sym_double, + ACTIONS(6984), 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, - [155906] = 8, - ACTIONS(6083), 1, - sym_identifier, - ACTIONS(6204), 1, + anon_sym___stdcall, + [118681] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6198), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6201), 2, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3528), 2, + anon_sym___stdcall, + ACTIONS(7418), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [118710] = 13, + ACTIONS(7330), 1, + anon_sym_COMMA, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7336), 1, + anon_sym_COLON, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(7342), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + STATE(5060), 1, + sym_for_in_clause, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, + STATE(6752), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118751] = 8, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(4552), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4495), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6085), 5, + ACTIONS(6951), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [118782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7177), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(7179), 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, - [155939] = 3, + [118803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5993), 5, + ACTIONS(6576), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5995), 9, - anon_sym_DOT, + ACTIONS(5079), 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, - [155962] = 5, + anon_sym_GT, + anon_sym_QMARK, + [118824] = 8, + ACTIONS(6963), 1, + anon_sym_LPAREN, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(4552), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6207), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(4580), 4, - anon_sym_LPAREN, + STATE(4421), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6966), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7054), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(5591), 4, + anon_sym___stdcall, + [118855] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7420), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(6209), 4, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [155989] = 8, - ACTIONS(6211), 1, + ACTIONS(7422), 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, + [118876] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6087), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6090), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3484), 2, + STATE(4392), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6148), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7368), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [156022] = 8, - ACTIONS(6215), 1, + [118905] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6087), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6090), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3484), 2, + STATE(4422), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6140), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7424), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [156055] = 2, + [118934] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4809), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7358), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_with, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [156076] = 8, - ACTIONS(6219), 1, + [118963] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7428), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6087), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6090), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3484), 2, + STATE(4405), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6143), 4, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7426), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [156109] = 3, + [118992] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7431), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6186), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, + STATE(4491), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6188), 9, + ACTIONS(7424), 4, sym__newline, - anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [156132] = 11, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(3908), 1, + [119021] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - ACTIONS(6223), 1, - anon_sym_complex, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5670), 2, - sym__newline, - anon_sym_COLON, - STATE(3740), 2, + STATE(4435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [156171] = 5, - ACTIONS(6225), 1, - anon_sym_DOT, - STATE(3537), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(6686), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [119050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6155), 4, + ACTIONS(7314), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6157), 8, - sym__newline, + ACTIONS(7316), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [156198] = 8, - ACTIONS(6228), 1, + anon_sym_GT, + anon_sym_QMARK, + [119071] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7434), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6083), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6087), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6090), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3484), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6135), 4, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7418), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [156231] = 2, + [119100] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7437), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4801), 14, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7328), 4, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [156252] = 3, + [119129] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7440), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6019), 6, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6021), 8, + ACTIONS(7380), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_EQ, + [119158] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [156275] = 3, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5680), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, + STATE(4271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5682), 9, - anon_sym_DOT, + ACTIONS(6645), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [119187] = 7, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, anon_sym_LBRACK, - anon_sym_AMP, - [156298] = 3, + STATE(4552), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5680), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, + STATE(4395), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5682), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(6686), 4, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [156321] = 9, - ACTIONS(5090), 1, + anon_sym_RBRACK, + [119216] = 3, + ACTIONS(7006), 1, anon_sym_STAR, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(6232), 1, - anon_sym_complex, - STATE(3584), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3565), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(7008), 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(5645), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156356] = 4, + [119237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6234), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5993), 4, + ACTIONS(6604), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5995), 8, + ACTIONS(6606), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -260261,107 +319360,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156381] = 2, + [119258] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7445), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 14, + STATE(4476), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7443), 4, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [156402] = 8, - ACTIONS(5090), 1, + [119287] = 7, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(6236), 1, - anon_sym_complex, - STATE(3584), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3597), 2, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5655), 5, + ACTIONS(7240), 4, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156435] = 5, - ACTIONS(6173), 1, - anon_sym_DOT, - STATE(3517), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_EQ, + anon_sym_RBRACK, + [119316] = 8, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_LPAREN, + STATE(4552), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6238), 4, + STATE(4448), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7240), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [119347] = 7, + ACTIONS(7052), 1, anon_sym_STAR, - sym_identifier, - anon_sym_operator, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(4552), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4421), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6240), 8, + ACTIONS(6645), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_RBRACK, + [119376] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(7448), 1, anon_sym_LBRACK, - anon_sym_AMP, - [156462] = 5, - ACTIONS(6177), 1, - anon_sym_DOT, - STATE(3518), 1, - aux_sym_type_qualifier_repeat1, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6238), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(4500), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6240), 8, + ACTIONS(7348), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [156489] = 4, + [119405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5872), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5680), 4, + ACTIONS(7292), 3, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5682), 8, + ACTIONS(7294), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -260370,2705 +319489,3681 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156514] = 5, - ACTIONS(5734), 1, + [119426] = 7, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(6242), 1, - anon_sym_DOT, - STATE(3550), 1, - aux_sym_class_definition_repeat2, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(4552), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5739), 11, + STATE(4421), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6686), 4, 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, - [156541] = 8, - ACTIONS(5090), 1, + [119455] = 8, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(6245), 1, + ACTIONS(7252), 1, anon_sym_LPAREN, - STATE(3584), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6248), 4, + ACTIONS(7240), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156573] = 5, - ACTIONS(6250), 1, - anon_sym_DOT, - STATE(3552), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_EQ, + anon_sym_RBRACK, + [119486] = 7, + ACTIONS(7052), 1, + anon_sym_STAR, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(4552), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6155), 3, - anon_sym_STAR, - sym_identifier, + STATE(4421), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7054), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6157), 8, + ACTIONS(6928), 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, - [156599] = 8, - ACTIONS(5090), 1, + anon_sym_EQ, + anon_sym_RBRACK, + [119515] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7453), 1, anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_LPAREN, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6256), 4, + ACTIONS(7451), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156631] = 7, - ACTIONS(5090), 1, + anon_sym_EQ, + [119544] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7456), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5926), 5, + ACTIONS(7399), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156661] = 8, - ACTIONS(5090), 1, + anon_sym_EQ, + [119573] = 8, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LPAREN, - STATE(3584), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(6631), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5984), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156693] = 5, - ACTIONS(6258), 1, - anon_sym_DOT, - STATE(3552), 1, - aux_sym_type_qualifier_repeat1, + [119604] = 9, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(6673), 1, + anon_sym_LPAREN, + ACTIONS(7459), 1, + anon_sym_complex, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6175), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6686), 2, + sym__newline, anon_sym_COLON, + STATE(4553), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [156719] = 7, - ACTIONS(5090), 1, + anon_sym___stdcall, + [119637] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3558), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5926), 5, - anon_sym_LPAREN, + ACTIONS(7451), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156749] = 7, - ACTIONS(5090), 1, + anon_sym_EQ, + [119666] = 8, + ACTIONS(6941), 1, + anon_sym_LPAREN, + ACTIONS(7052), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7056), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(4552), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4421), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(6944), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7054), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5959), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156779] = 8, - ACTIONS(5090), 1, + [119697] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - STATE(3584), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3569), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5670), 4, + ACTIONS(7240), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156811] = 3, - ACTIONS(5734), 1, + anon_sym_EQ, + [119726] = 7, + ACTIONS(4879), 1, anon_sym_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + STATE(4314), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5739), 12, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + STATE(4496), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 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, - [156833] = 8, - ACTIONS(4429), 1, + ACTIONS(6966), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [119755] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(7461), 1, anon_sym_LBRACK, - ACTIONS(6260), 1, - anon_sym_complex, - STATE(3547), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3714), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5943), 4, + ACTIONS(7414), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [156865] = 7, - ACTIONS(5090), 1, + [119784] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4460), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6256), 5, - anon_sym_LPAREN, + ACTIONS(7401), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156895] = 8, - ACTIONS(5090), 1, + anon_sym_EQ, + [119813] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(7464), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5670), 4, + ACTIONS(7373), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156927] = 8, - ACTIONS(5090), 1, + anon_sym_EQ, + [119842] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5940), 1, - anon_sym_LPAREN, - STATE(3584), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3582), 2, + STATE(4469), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5943), 4, + ACTIONS(7426), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156959] = 8, - ACTIONS(5090), 1, + anon_sym_EQ, + [119871] = 8, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(5940), 1, + ACTIONS(7252), 1, anon_sym_LPAREN, - STATE(3584), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4415), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5943), 4, + ACTIONS(7240), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156991] = 7, - ACTIONS(5090), 1, + anon_sym_EQ, + [119902] = 7, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(4314), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4271), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5943), 5, - anon_sym_LPAREN, + ACTIONS(7363), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157021] = 3, + anon_sym_EQ, + [119931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6108), 4, + ACTIONS(7234), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6110), 9, - sym__newline, + ACTIONS(7236), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [157043] = 12, - ACTIONS(6262), 1, - sym_identifier, - ACTIONS(6264), 1, - anon_sym_LPAREN, - ACTIONS(6266), 1, + anon_sym_GT, + anon_sym_QMARK, + [119952] = 7, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4883), 1, anon_sym_LBRACK, - STATE(1267), 1, - sym_c_function_definition, - STATE(4003), 1, - sym_c_parameters, - STATE(4068), 1, - sym_c_name, - STATE(5107), 1, + STATE(4314), 1, sym_type_index, - STATE(5520), 1, - sym_template_params, - STATE(5582), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4414), 2, sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7443), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [119981] = 10, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7471), 1, + anon_sym_EQ, + ACTIONS(7473), 1, + anon_sym_LBRACK, + ACTIONS(7476), 1, + sym__newline, + ACTIONS(7478), 1, + sym_string_start, + STATE(5146), 1, + sym_string, + STATE(6272), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(5147), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [120015] = 7, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(7481), 1, + aux_sym_integer_token1, + STATE(2845), 1, + sym_c_integer_type, + STATE(4672), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(4839), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + [120043] = 5, + ACTIONS(7128), 1, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(7483), 1, + anon_sym_LBRACK, + STATE(4637), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7133), 8, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_AMP, - [157083] = 8, - ACTIONS(5090), 1, + anon_sym___stdcall, + [120067] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_LPAREN, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5961), 4, + ACTIONS(6686), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [120095] = 10, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7473), 1, + anon_sym_LBRACK, + ACTIONS(7478), 1, + sym_string_start, + ACTIONS(7486), 1, + anon_sym_EQ, + ACTIONS(7488), 1, + sym__newline, + STATE(5128), 1, + sym_string, + STATE(6245), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(5129), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [120129] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4557), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6928), 3, + sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157115] = 11, - ACTIONS(3903), 1, + [120157] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7496), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120187] = 12, + ACTIONS(7498), 1, + anon_sym_RPAREN, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6842), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [120225] = 10, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7473), 1, + anon_sym_LBRACK, + ACTIONS(7478), 1, + sym_string_start, + ACTIONS(7514), 1, + anon_sym_EQ, + ACTIONS(7516), 1, + sym__newline, + STATE(5054), 1, + sym_string, + STATE(6079), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 2, anon_sym_LPAREN, - ACTIONS(3914), 1, sym_identifier, - ACTIONS(5094), 1, + STATE(5063), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [120259] = 12, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7518), 1, + anon_sym_RPAREN, + ACTIONS(7520), 1, + anon_sym_COMMA, + STATE(5072), 1, + sym_for_in_clause, + STATE(6278), 1, + aux_sym_argument_list_repeat1, + STATE(6747), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [120297] = 12, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7522), 1, + anon_sym_RPAREN, + ACTIONS(7524), 1, + anon_sym_COMMA, + STATE(5072), 1, + sym_for_in_clause, + STATE(5907), 1, + aux_sym_argument_list_repeat1, + STATE(6842), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [120335] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7526), 1, + anon_sym_LBRACE, + ACTIONS(7532), 1, + anon_sym_BSLASH, + ACTIONS(7535), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7529), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120365] = 12, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + anon_sym_COMMA, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, + anon_sym_or, + STATE(4979), 1, + sym_for_in_clause, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, + STATE(6777), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [120403] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7551), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4535), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120433] = 9, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6268), 1, + ACTIONS(6963), 1, + anon_sym_LPAREN, + ACTIONS(7553), 1, + sym_identifier, + ACTIONS(7555), 1, anon_sym_complex, - STATE(3574), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3870), 2, + STATE(4689), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157153] = 6, - ACTIONS(6270), 1, + [120465] = 12, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + anon_sym_COMMA, + ACTIONS(7539), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7541), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(7547), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7549), 1, anon_sym_or, + STATE(4979), 1, + sym_for_in_clause, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, + STATE(6853), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [120503] = 8, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 9, + ACTIONS(6631), 2, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_nogil, - [157181] = 3, + STATE(4558), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [120533] = 12, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7557), 1, + anon_sym_RPAREN, + ACTIONS(7559), 1, + anon_sym_COMMA, + STATE(5072), 1, + sym_for_in_clause, + STATE(6251), 1, + aux_sym_argument_list_repeat1, + STATE(6686), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5784), 2, - sym__dedent, + [120571] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7561), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4574), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120601] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7563), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4536), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120631] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7565), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120661] = 12, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + anon_sym_COMMA, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, + anon_sym_or, + STATE(4979), 1, + sym_for_in_clause, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, + STATE(6845), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [120699] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7567), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4598), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120729] = 10, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7473), 1, + anon_sym_LBRACK, + ACTIONS(7478), 1, + sym_string_start, + ACTIONS(7569), 1, + anon_sym_EQ, + ACTIONS(7571), 1, + sym__newline, + STATE(4944), 1, + sym_string, + STATE(5719), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 2, anon_sym_LPAREN, - ACTIONS(6278), 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, - [157203] = 12, - ACTIONS(6264), 1, - anon_sym_LPAREN, - ACTIONS(6266), 1, + STATE(4945), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [120763] = 10, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7473), 1, anon_sym_LBRACK, - ACTIONS(6280), 1, + ACTIONS(7478), 1, + sym_string_start, + ACTIONS(7573), 1, + anon_sym_EQ, + ACTIONS(7575), 1, + sym__newline, + STATE(4976), 1, + sym_string, + STATE(6208), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 2, + anon_sym_LPAREN, sym_identifier, - STATE(534), 1, - sym_c_function_definition, - STATE(4005), 1, - sym_c_parameters, - STATE(4031), 1, - sym_c_name, - STATE(5107), 1, + STATE(5053), 2, sym_type_index, - STATE(5395), 1, - sym_template_params, - STATE(5582), 1, - sym_type_qualifier, + aux_sym_cvar_decl_repeat1, + [120797] = 12, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + anon_sym_COMMA, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, + anon_sym_or, + STATE(4979), 1, + sym_for_in_clause, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, + STATE(6808), 1, + sym__comprehension_clauses, 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, - [157243] = 11, - ACTIONS(5094), 1, + [120835] = 9, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5676), 1, + ACTIONS(6673), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6282), 1, + ACTIONS(7577), 1, sym_identifier, - ACTIONS(6284), 1, + ACTIONS(7579), 1, anon_sym_complex, - STATE(3269), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3853), 2, + STATE(4612), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157281] = 11, - ACTIONS(5094), 1, + [120867] = 12, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + anon_sym_COMMA, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, + anon_sym_or, + STATE(4979), 1, + sym_for_in_clause, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, + STATE(6744), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [120905] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7581), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120935] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7583), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120965] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7585), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [120995] = 12, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7587), 1, + anon_sym_RPAREN, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6837), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [121033] = 12, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7589), 1, + anon_sym_RPAREN, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6776), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [121071] = 12, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7591), 1, + anon_sym_RPAREN, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6747), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [121109] = 9, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5676), 1, + ACTIONS(6963), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6282), 1, + ACTIONS(7553), 1, sym_identifier, - ACTIONS(6286), 1, + ACTIONS(7593), 1, anon_sym_complex, - STATE(3269), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4621), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [121141] = 12, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7595), 1, + anon_sym_RPAREN, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6686), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [121179] = 12, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + anon_sym_COMMA, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, + anon_sym_or, + STATE(4979), 1, + sym_for_in_clause, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, + STATE(6710), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [121217] = 12, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7597), 1, + anon_sym_RPAREN, + ACTIONS(7599), 1, + anon_sym_COMMA, + STATE(5072), 1, + sym_for_in_clause, + STATE(5939), 1, + aux_sym_argument_list_repeat1, + STATE(6837), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [121255] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3859), 2, + anon_sym___stdcall, + ACTIONS(6928), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [121283] = 12, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7601), 1, + anon_sym_RPAREN, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6811), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [121321] = 8, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(6628), 1, + anon_sym_LPAREN, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6631), 2, + sym__newline, + anon_sym_COLON, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157319] = 11, - ACTIONS(5094), 1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [121351] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7603), 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, + [121369] = 8, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(5626), 1, + ACTIONS(6888), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6288), 1, - sym_identifier, - ACTIONS(6290), 1, - anon_sym_complex, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, - STATE(3605), 1, - aux_sym_class_definition_repeat2, 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(3860), 2, + ACTIONS(6866), 2, + sym__newline, + anon_sym_COLON, + STATE(4559), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157357] = 11, - ACTIONS(5094), 1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [121399] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(5626), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6288), 1, - sym_identifier, - ACTIONS(6292), 1, - anon_sym_complex, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, - STATE(3604), 1, - aux_sym_class_definition_repeat2, 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(3867), 2, + STATE(4544), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157395] = 3, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6645), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [121427] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7605), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4561), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [121457] = 10, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7473), 1, + anon_sym_LBRACK, + ACTIONS(7478), 1, + sym_string_start, + ACTIONS(7607), 1, + anon_sym_EQ, + ACTIONS(7609), 1, + sym__newline, + STATE(5002), 1, + sym_string, + STATE(5835), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6098), 4, - anon_sym_STAR, + ACTIONS(7467), 2, + anon_sym_LPAREN, sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6100), 9, - sym__newline, + STATE(5003), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [121491] = 5, + ACTIONS(7171), 1, + anon_sym_STAR, + ACTIONS(7611), 1, anon_sym_DOT, + STATE(4564), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7175), 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, - [157417] = 8, - ACTIONS(5090), 1, + anon_sym___stdcall, + [121515] = 8, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(5890), 1, + ACTIONS(6888), 1, anon_sym_LPAREN, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3555), 2, + ACTIONS(6866), 2, + sym__newline, + anon_sym_COLON, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5961), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157449] = 4, - ACTIONS(5591), 1, + [121545] = 7, + ACTIONS(4494), 1, anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, 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, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6966), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [121573] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7613), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4597), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [121603] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7615), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4569), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [121633] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, anon_sym_LBRACK, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [157473] = 9, - ACTIONS(4429), 1, + ACTIONS(6930), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [121661] = 8, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(5895), 1, + ACTIONS(6948), 1, anon_sym_LPAREN, - ACTIONS(6294), 1, - anon_sym_complex, - STATE(3547), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3721), 2, + ACTIONS(6951), 2, + sym__newline, + anon_sym_COLON, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5963), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [157507] = 8, - ACTIONS(5090), 1, + [121691] = 8, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(5895), 1, + ACTIONS(6963), 1, anon_sym_LPAREN, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + ACTIONS(6966), 2, + sym__newline, + anon_sym_COLON, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5963), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157539] = 7, - ACTIONS(5090), 1, + [121721] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3554), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5676), 5, + ACTIONS(6645), 3, + sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157569] = 5, - ACTIONS(6258), 1, - anon_sym_DOT, - STATE(3556), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, + [121749] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6238), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6240), 8, - anon_sym_LPAREN, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7617), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [121779] = 12, + ACTIONS(7500), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [157595] = 12, - ACTIONS(6264), 1, - anon_sym_LPAREN, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(6296), 1, - sym_identifier, - STATE(2951), 1, - sym_c_function_definition, - STATE(4028), 1, - sym_c_parameters, - STATE(4052), 1, - sym_c_name, - STATE(5107), 1, - sym_type_index, - STATE(5347), 1, - sym_template_params, - STATE(5582), 1, - sym_type_qualifier, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7619), 1, + anon_sym_RPAREN, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6742), 1, + sym__comprehension_clauses, 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, - [157635] = 3, - ACTIONS(3), 2, + [121817] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6102), 4, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7621), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4534), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [121847] = 5, + ACTIONS(7148), 1, anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6104), 9, - sym__newline, + ACTIONS(7611), 1, anon_sym_DOT, + STATE(4567), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7152), 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, - [157657] = 3, + anon_sym___stdcall, + [121871] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7623), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [121901] = 12, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7625), 1, + anon_sym_RPAREN, + ACTIONS(7627), 1, + anon_sym_COMMA, + STATE(5072), 1, + sym_for_in_clause, + STATE(6006), 1, + aux_sym_argument_list_repeat1, + STATE(6742), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6116), 4, + [121939] = 5, + ACTIONS(7128), 1, anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6118), 9, - sym__newline, + ACTIONS(7629), 1, anon_sym_DOT, + STATE(4567), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7133), 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, - [157679] = 3, + anon_sym___stdcall, + [121963] = 8, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_LPAREN, + STATE(4299), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6298), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6300), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7240), 2, + sym__newline, anon_sym_COLON, + STATE(4584), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [157701] = 5, - ACTIONS(6274), 1, + anon_sym___stdcall, + [121993] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7632), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [122023] = 12, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7512), 1, anon_sym_or, - ACTIONS(6302), 1, - anon_sym_as, + ACTIONS(7634), 1, + anon_sym_RPAREN, + ACTIONS(7636), 1, + anon_sym_COMMA, + STATE(5072), 1, + sym_for_in_clause, + STATE(5874), 1, + aux_sym_argument_list_repeat1, + STATE(6776), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [122061] = 12, + ACTIONS(7500), 1, anon_sym_COMMA, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_nogil, - [157727] = 3, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7638), 1, + anon_sym_RPAREN, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6792), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6112), 4, + [122099] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7171), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6114), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(7175), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [157749] = 12, - ACTIONS(6264), 1, - anon_sym_LPAREN, - ACTIONS(6266), 1, + anon_sym_GT, + anon_sym_QMARK, + [122119] = 7, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6305), 1, - sym_identifier, - STATE(538), 1, - sym_c_function_definition, - STATE(4005), 1, - sym_c_parameters, - STATE(4053), 1, - sym_c_name, - STATE(5107), 1, + STATE(4299), 1, sym_type_index, - STATE(5395), 1, - sym_template_params, - STATE(5582), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5092), 2, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, - [157789] = 3, - ACTIONS(3), 2, + anon_sym___stdcall, + ACTIONS(7240), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [122147] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6298), 4, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7640), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [122177] = 8, + ACTIONS(4494), 1, anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6300), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, anon_sym_LPAREN, - anon_sym_COMMA, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7240), 2, + sym__newline, anon_sym_COLON, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [157811] = 12, - ACTIONS(6264), 1, + anon_sym___stdcall, + [122207] = 8, + ACTIONS(4494), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(6941), 1, anon_sym_LPAREN, - ACTIONS(6266), 1, + STATE(4299), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6944), 2, + sym__newline, + anon_sym_COLON, + STATE(4269), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4510), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [122237] = 9, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(6307), 1, + ACTIONS(6614), 1, + anon_sym_LPAREN, + ACTIONS(7642), 1, sym_identifier, - STATE(1268), 1, - sym_c_function_definition, - STATE(4003), 1, - sym_c_parameters, - STATE(4021), 1, - sym_c_name, - STATE(5107), 1, + ACTIONS(7644), 1, + anon_sym_complex, + STATE(4379), 1, sym_type_index, - STATE(5520), 1, - sym_template_params, - STATE(5582), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [157851] = 12, - ACTIONS(6264), 1, - anon_sym_LPAREN, - ACTIONS(6266), 1, + STATE(4647), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [122269] = 9, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(6309), 1, + ACTIONS(6614), 1, + anon_sym_LPAREN, + ACTIONS(7642), 1, sym_identifier, - STATE(2943), 1, - sym_c_function_definition, - STATE(4015), 1, - sym_c_name, - STATE(4028), 1, - sym_c_parameters, - STATE(5107), 1, + ACTIONS(7646), 1, + anon_sym_complex, + STATE(4379), 1, sym_type_index, - STATE(5347), 1, - sym_template_params, - STATE(5582), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [157891] = 8, - ACTIONS(6001), 1, + STATE(4610), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [122301] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7648), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4585), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [122331] = 8, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, - anon_sym_complex, - STATE(3750), 1, + ACTIONS(6948), 1, + anon_sym_LPAREN, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3634), 2, + ACTIONS(6951), 2, + sym__newline, + anon_sym_COLON, + STATE(4576), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5655), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [157923] = 7, - ACTIONS(5090), 1, - anon_sym_STAR, - ACTIONS(5094), 1, + [122361] = 9, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3584), 1, + ACTIONS(6866), 1, + anon_sym_LPAREN, + ACTIONS(7650), 1, + sym_identifier, + ACTIONS(7652), 1, + anon_sym_complex, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, 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, - [157953] = 7, - ACTIONS(5090), 1, + STATE(4667), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [122393] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, + STATE(4600), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5645), 5, + ACTIONS(6686), 3, + sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157983] = 4, - ACTIONS(6274), 1, + [122421] = 12, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + anon_sym_COMMA, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(7547), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7549), 1, anon_sym_or, + STATE(4979), 1, + sym_for_in_clause, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, + STATE(6755), 1, + sym__comprehension_clauses, 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_with, - anon_sym_PIPE, - anon_sym_nogil, - [158007] = 8, - ACTIONS(4429), 1, + [122459] = 8, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6313), 1, - anon_sym_complex, - STATE(3547), 1, + ACTIONS(7221), 1, + anon_sym_LPAREN, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3668), 2, + ACTIONS(7224), 2, + sym__newline, + anon_sym_COLON, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(4510), 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_EQ, - [158039] = 5, - ACTIONS(6315), 1, - anon_sym_LBRACK, - STATE(3639), 1, - sym_type_index, - ACTIONS(3), 2, + [122489] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6155), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6157), 8, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7654), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [122519] = 12, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7638), 1, + anon_sym_RPAREN, + ACTIONS(7656), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [158065] = 10, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - anon_sym_complex, - STATE(3523), 1, - aux_sym_class_definition_repeat2, - STATE(3548), 1, - sym_type_index, + STATE(5072), 1, + sym_for_in_clause, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, + STATE(6792), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 2, - sym__newline, - anon_sym_LPAREN, - STATE(3795), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [158101] = 6, - ACTIONS(6270), 1, + [122557] = 12, + ACTIONS(7502), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7504), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7512), 1, anon_sym_or, + ACTIONS(7659), 1, + anon_sym_RPAREN, + ACTIONS(7661), 1, + anon_sym_COMMA, + STATE(5072), 1, + sym_for_in_clause, + STATE(5762), 1, + aux_sym_argument_list_repeat1, + STATE(6811), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 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, - [158129] = 4, - ACTIONS(6320), 1, - anon_sym_AT, + [122595] = 7, + ACTIONS(5156), 1, + sym_c_integer_signedness, + ACTIONS(5158), 1, + aux_sym_c_integer_type_token1, + ACTIONS(7663), 1, + aux_sym_integer_token1, + STATE(3247), 1, + sym_c_integer_type, + STATE(4640), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3603), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(6318), 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, - [158153] = 11, - ACTIONS(5094), 1, + ACTIONS(4839), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + [122623] = 9, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, + ACTIONS(6673), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6323), 1, + ACTIONS(7577), 1, sym_identifier, - ACTIONS(6325), 1, + ACTIONS(7665), 1, anon_sym_complex, - STATE(3269), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3892), 2, + STATE(4631), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [158191] = 11, - ACTIONS(5094), 1, + [122655] = 12, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + anon_sym_COMMA, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, + anon_sym_or, + STATE(4979), 1, + sym_for_in_clause, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, + STATE(6723), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [122693] = 10, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7473), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, + ACTIONS(7478), 1, + sym_string_start, + ACTIONS(7667), 1, + anon_sym_EQ, + ACTIONS(7669), 1, + sym__newline, + STATE(5124), 1, + sym_string, + STATE(6182), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7467), 2, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6323), 1, sym_identifier, - ACTIONS(6327), 1, + STATE(5126), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [122727] = 9, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6866), 1, + anon_sym_LPAREN, + ACTIONS(7650), 1, + sym_identifier, + ACTIONS(7671), 1, anon_sym_complex, - STATE(3269), 1, - aux_sym_class_definition_repeat2, - STATE(3584), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3887), 2, + STATE(4627), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [158229] = 4, - ACTIONS(5906), 1, - anon_sym_STAR, - ACTIONS(6329), 1, - anon_sym_long, + [122759] = 7, + ACTIONS(5364), 1, + sym_c_integer_signedness, + ACTIONS(5366), 1, + aux_sym_c_integer_type_token1, + ACTIONS(7673), 1, + aux_sym_integer_token1, + STATE(3397), 1, + sym_c_integer_type, + STATE(4696), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5908), 11, - anon_sym_LPAREN, + ACTIONS(4839), 6, + anon_sym_RPAREN, 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, - [158253] = 8, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + anon_sym_as, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + [122787] = 10, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7473), 1, anon_sym_LBRACK, - ACTIONS(6331), 1, - anon_sym_complex, - STATE(3750), 1, - sym_type_index, + ACTIONS(7478), 1, + sym_string_start, + ACTIONS(7675), 1, + anon_sym_EQ, + ACTIONS(7677), 1, + sym__newline, + STATE(4951), 1, + sym_string, + STATE(5746), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3636), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5943), 4, + ACTIONS(7467), 2, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [158285] = 8, - ACTIONS(5090), 1, + sym_identifier, + STATE(4952), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [122821] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7679), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4599), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [122851] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(5094), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_LPAREN, - STATE(3584), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3551), 2, + STATE(4573), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5092), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6256), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [158317] = 9, - ACTIONS(5642), 1, + ACTIONS(6966), 3, + sym__newline, anon_sym_LPAREN, - ACTIONS(6001), 1, + anon_sym_COLON, + [122879] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7681), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [122909] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7683), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [122939] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7685), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4517), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [122969] = 7, + ACTIONS(4494), 1, anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6333), 1, - anon_sym_complex, - STATE(3750), 1, + STATE(4299), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3618), 2, + STATE(4269), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5645), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(6003), 3, + ACTIONS(4510), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158351] = 9, - ACTIONS(5895), 1, + ACTIONS(6866), 3, + sym__newline, anon_sym_LPAREN, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - ACTIONS(6335), 1, - anon_sym_complex, - STATE(3750), 1, - sym_type_index, - ACTIONS(3), 2, + anon_sym_COLON, + [122997] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(3684), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7687), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4512), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [123027] = 9, + ACTIONS(7693), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [158385] = 6, - ACTIONS(6270), 1, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, + STATE(5710), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 9, + ACTIONS(7689), 2, sym__newline, anon_sym_SEMI, + ACTIONS(7691), 3, anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_with, anon_sym_PIPE, - anon_sym_nogil, - [158413] = 7, - ACTIONS(5090), 1, - anon_sym_STAR, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, + [123059] = 12, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(7703), 1, + anon_sym_RPAREN, + ACTIONS(7705), 1, + anon_sym_COMMA, + STATE(5072), 1, + sym_for_in_clause, + STATE(5754), 1, + aux_sym_argument_list_repeat1, + STATE(6792), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3562), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5092), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [158443] = 7, - ACTIONS(5090), 1, - anon_sym_STAR, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, - ACTIONS(3), 2, + [123097] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5092), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [158473] = 3, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(3), 2, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7707), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4565), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [123127] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(4714), 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, - [158495] = 9, - ACTIONS(4429), 1, + ACTIONS(7490), 1, + anon_sym_LBRACE, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7709), 1, + sym_string_end, + STATE(4814), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7492), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4526), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [123157] = 3, + ACTIONS(7292), 1, anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(6337), 1, - anon_sym_complex, - STATE(3547), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3704), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(7294), 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, anon_sym___stdcall, - ACTIONS(5645), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [158529] = 7, - ACTIONS(5090), 1, + [123176] = 3, + ACTIONS(7257), 1, anon_sym_STAR, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5092), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5676), 5, + ACTIONS(7259), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [158559] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6341), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [123195] = 6, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6339), 4, + ACTIONS(5927), 6, sym__newline, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_EQ, - [158588] = 8, - ACTIONS(5940), 1, - anon_sym_LPAREN, - ACTIONS(6001), 1, + anon_sym_COLON, + anon_sym_PIPE, + [123220] = 3, + ACTIONS(6604), 1, anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5943), 3, + ACTIONS(6606), 9, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [158619] = 7, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, + [123239] = 5, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(7577), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5943), 4, + ACTIONS(6686), 4, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [158648] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + anon_sym_STAR_STAR, anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + anon_sym_AMP, + [123262] = 8, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(7711), 1, + sym_float, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5276), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + [123291] = 9, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6344), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158677] = 7, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3677), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(6866), 1, anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 4, + ACTIONS(6888), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [158706] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3672), 2, + ACTIONS(7650), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6346), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158735] = 8, - ACTIONS(5890), 1, - anon_sym_LPAREN, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, + [123322] = 8, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(7713), 1, + sym_float, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5252), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3685), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5961), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + [123351] = 8, + ACTIONS(6171), 1, anon_sym___stdcall, - [158766] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3706), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5645), 4, + ACTIONS(6866), 2, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [158795] = 7, - ACTIONS(4429), 1, + anon_sym_STAR_STAR, + ACTIONS(7650), 2, anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, + sym_identifier, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [123380] = 5, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3681), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(7715), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(7240), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6348), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158824] = 8, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + [123403] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(6253), 1, + ACTIONS(6966), 1, anon_sym_LPAREN, - STATE(3750), 1, + ACTIONS(7553), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3686), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6256), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [158855] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, + STATE(4615), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [123432] = 5, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(7242), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6645), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6350), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158884] = 13, - ACTIONS(6352), 1, - anon_sym_COMMA, - ACTIONS(6354), 1, + [123455] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6358), 1, - anon_sym_COLON, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7701), 1, anon_sym_or, - STATE(4099), 1, - sym_for_in_clause, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, - STATE(5743), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158925] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(5967), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + [123480] = 9, + ACTIONS(6171), 1, + anon_sym___stdcall, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(6941), 1, + anon_sym_LPAREN, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, + ACTIONS(7717), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6370), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158954] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + [123511] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(6645), 1, + anon_sym_LPAREN, + ACTIONS(7242), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6339), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158983] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, + STATE(4648), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [123540] = 6, + ACTIONS(7252), 1, + anon_sym_LPAREN, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3678), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(7240), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6372), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [159012] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5680), 4, + ACTIONS(7715), 3, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5682), 8, + [123565] = 6, + ACTIONS(6941), 1, 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, - [159033] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3715), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6944), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + ACTIONS(7717), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5926), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159062] = 7, - ACTIONS(6001), 1, + [123590] = 8, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(7719), 1, + sym_float, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(5272), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5750), 2, + anon_sym_0x, + anon_sym_0X, + [123619] = 3, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5645), 4, + ACTIONS(7386), 9, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACK, - [159091] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [123638] = 6, + ACTIONS(6628), 1, anon_sym_LPAREN, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3717), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6631), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5670), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159122] = 7, - ACTIONS(6001), 1, + ACTIONS(7281), 3, anon_sym_STAR, - ACTIONS(6005), 1, + sym_identifier, + anon_sym___stdcall, + [123663] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3750), 1, + ACTIONS(7252), 1, + anon_sym_LPAREN, + ACTIONS(7715), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [159151] = 3, + STATE(4683), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [123692] = 5, + STATE(4379), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5993), 4, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7553), 3, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5995), 8, + ACTIONS(6966), 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, - [159172] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5940), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + [123715] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3718), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5943), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5442), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - [159203] = 3, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [123732] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(7721), 1, + sym_identifier, + STATE(4379), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6298), 3, + ACTIONS(6171), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(6300), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(6173), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [159224] = 3, + STATE(4622), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [123761] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6686), 1, + anon_sym_LPAREN, + ACTIONS(7577), 1, + sym_identifier, + STATE(4379), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6374), 4, + ACTIONS(6171), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(6376), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(6173), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [159245] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6380), 1, - anon_sym_LBRACK, - STATE(3548), 1, + STATE(4614), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [123790] = 6, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6866), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6378), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159274] = 7, - ACTIONS(3908), 1, + ACTIONS(7650), 3, anon_sym_STAR, - ACTIONS(6385), 1, + sym_identifier, + anon_sym___stdcall, + [123815] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6928), 1, + anon_sym_LPAREN, + ACTIONS(7723), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3647), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, + STATE(4656), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [123844] = 8, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6383), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159303] = 7, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3750), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, + ACTIONS(6645), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(7242), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5959), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [159332] = 3, + [123873] = 8, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(7725), 1, + sym_float, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(5519), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6388), 4, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + [123902] = 3, + ACTIONS(6576), 1, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6390), 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, - [159353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6186), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6188), 8, + ACTIONS(5079), 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_AMP, - anon_sym_GT, - anon_sym_QMARK, - [159374] = 3, + anon_sym_complex, + anon_sym___stdcall, + [123921] = 5, + STATE(4379), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5591), 4, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7650), 3, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(4580), 8, + ACTIONS(6866), 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, - [159395] = 7, - ACTIONS(3908), 1, + [123944] = 3, + ACTIONS(7302), 1, anon_sym_STAR, - ACTIONS(6394), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6392), 4, - sym__newline, + ACTIONS(7304), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [159424] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6397), 1, - anon_sym_complex, - STATE(3548), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3803), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5655), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [159455] = 4, - ACTIONS(5680), 1, + [123963] = 3, + ACTIONS(7420), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6025), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5682), 9, + ACTIONS(7422), 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, - [159478] = 7, - ACTIONS(3908), 1, + [123982] = 3, + ACTIONS(6576), 1, anon_sym_STAR, - ACTIONS(6399), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6344), 4, - sym__newline, + ACTIONS(5079), 9, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [159507] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6402), 1, anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [124001] = 4, + ACTIONS(7727), 1, + aux_sym_integer_token1, + STATE(4640), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3641), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6346), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4863), 8, anon_sym_COMMA, - anon_sym_EQ, - [159536] = 7, - ACTIONS(3908), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [124022] = 3, + ACTIONS(7177), 1, anon_sym_STAR, - ACTIONS(6407), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6405), 4, - sym__newline, + ACTIONS(7179), 9, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [159565] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6412), 1, anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3617), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6410), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159594] = 7, - ACTIONS(3908), 1, + [124041] = 3, + ACTIONS(7314), 1, anon_sym_STAR, - ACTIONS(6417), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3661), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6415), 4, - sym__newline, + ACTIONS(7316), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [159623] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6422), 1, anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [124060] = 5, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(7730), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6420), 4, + ACTIONS(5982), 7, sym__newline, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_EQ, - [159652] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6427), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [124083] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3652), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6425), 4, + ACTIONS(5484), 10, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159681] = 13, - ACTIONS(6352), 1, - anon_sym_COMMA, - ACTIONS(6354), 1, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(6356), 1, anon_sym_if, - ACTIONS(6358), 1, anon_sym_COLON, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6368), 1, anon_sym_or, - STATE(4099), 1, - sym_for_in_clause, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, - STATE(5849), 1, - sym__comprehension_clauses, + [124100] = 8, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(7733), 1, + sym_float, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5630), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159722] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6430), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + [124129] = 8, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(7735), 1, + sym_float, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5538), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + [124158] = 8, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6350), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159751] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6433), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3655), 2, + ACTIONS(6686), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(7577), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + [124187] = 8, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6372), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159780] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, + ACTIONS(6928), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(7723), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6436), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [159809] = 7, - ACTIONS(3908), 1, + [124216] = 3, + ACTIONS(7234), 1, anon_sym_STAR, - ACTIONS(6438), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6436), 4, - sym__newline, + ACTIONS(7236), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [159838] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6443), 1, anon_sym_LBRACK, - STATE(3548), 1, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [124235] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(6928), 1, + anon_sym_LPAREN, + ACTIONS(7723), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3650), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, + STATE(4681), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [124264] = 9, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6441), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159867] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(6253), 1, + ACTIONS(6963), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(6966), 1, + anon_sym_STAR_STAR, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3724), 2, + ACTIONS(7553), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6256), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159898] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6448), 1, + [124295] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6645), 1, + anon_sym_LPAREN, + ACTIONS(7242), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3658), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6446), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159927] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + STATE(4694), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [124324] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(7281), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5676), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159956] = 3, - ACTIONS(6019), 1, + STATE(4701), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [124353] = 3, + ACTIONS(7384), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6021), 11, + ACTIONS(7386), 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_int, - anon_sym_double, anon_sym_complex, anon_sym___stdcall, - [159977] = 9, - ACTIONS(3908), 1, + [124372] = 3, + ACTIONS(7298), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(6451), 1, - anon_sym_complex, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5645), 2, - sym__newline, - anon_sym_COLON, - STATE(3801), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(7300), 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, anon_sym___stdcall, - [160010] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, + [124391] = 5, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(7737), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5645), 4, + ACTIONS(6930), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160039] = 4, - ACTIONS(5993), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + [124414] = 3, + ACTIONS(7420), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6453), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5995), 9, + ACTIONS(7422), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -263078,31263 +323173,30979 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [160062] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + [124433] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3620), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6441), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5438), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, - [160091] = 8, - ACTIONS(5890), 1, - anon_sym_LPAREN, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [124450] = 9, + ACTIONS(6171), 1, + anon_sym___stdcall, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3750), 1, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_STAR_STAR, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, + ACTIONS(7281), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5961), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [160122] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + [124481] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(6686), 1, + anon_sym_LPAREN, + ACTIONS(7577), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6378), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [160151] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + STATE(4636), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [124510] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5890), 1, + ACTIONS(6888), 1, anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7650), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3722), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5961), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160182] = 13, - ACTIONS(6352), 1, - anon_sym_COMMA, - ACTIONS(6354), 1, - anon_sym_as, - ACTIONS(6356), 1, - anon_sym_if, - ACTIONS(6358), 1, - anon_sym_COLON, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, - anon_sym_and, - ACTIONS(6368), 1, - anon_sym_or, - STATE(4099), 1, - sym_for_in_clause, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, - STATE(5548), 1, - sym__comprehension_clauses, + STATE(4651), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [124539] = 8, + ACTIONS(1993), 1, + aux_sym_integer_token4, + ACTIONS(7739), 1, + sym_float, + STATE(2488), 1, + aux_sym_integer_repeat4, + STATE(5572), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160223] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + ACTIONS(1989), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1991), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5388), 2, + anon_sym_0x, + anon_sym_0X, + [124568] = 4, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3708), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6383), 4, - anon_sym_RPAREN, + ACTIONS(5915), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - [160252] = 8, - ACTIONS(5895), 1, - anon_sym_LPAREN, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + anon_sym_PIPE, + [124589] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3750), 1, + ACTIONS(6628), 1, + anon_sym_LPAREN, + ACTIONS(7281), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5963), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(6003), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [160283] = 7, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3700), 2, + STATE(4673), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6256), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [160312] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + [124618] = 6, + ACTIONS(7741), 1, + anon_sym_as, + ACTIONS(7743), 1, + anon_sym_if, + ACTIONS(7745), 1, + anon_sym_and, + ACTIONS(7747), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6420), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7691), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - [160341] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + anon_sym_PIPE, + [124643] = 8, + ACTIONS(6171), 1, + anon_sym___stdcall, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3710), 2, + ACTIONS(7240), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(7715), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + [124672] = 8, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6425), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [160370] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3627), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6966), 2, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6446), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [160399] = 7, - ACTIONS(4429), 1, + ACTIONS(7553), 2, anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + sym_identifier, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [124701] = 8, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(7749), 1, + sym_float, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(5383), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6455), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [160428] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6457), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + [124730] = 3, + ACTIONS(7699), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3683), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6348), 4, + ACTIONS(5608), 9, sym__newline, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_EQ, - [160457] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6460), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_or, + [124749] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6455), 4, + ACTIONS(5495), 10, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - [160486] = 8, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [124766] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(6253), 1, + ACTIONS(6966), 1, anon_sym_LPAREN, - STATE(3750), 1, + ACTIONS(7553), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6256), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [160517] = 8, - ACTIONS(5952), 1, - anon_sym_LPAREN, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [124795] = 4, + ACTIONS(7751), 1, + aux_sym_integer_token1, + STATE(4672), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5984), 3, + ACTIONS(4863), 8, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [160548] = 8, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - ACTIONS(6245), 1, + anon_sym_as, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [124816] = 6, + ACTIONS(6948), 1, anon_sym_LPAREN, - STATE(3750), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(6951), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + ACTIONS(7721), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(6248), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [160579] = 3, + [124841] = 8, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(7754), 1, + sym_float, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(5631), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6238), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5750), 2, + anon_sym_0x, + anon_sym_0X, + [124870] = 8, + ACTIONS(1525), 1, + aux_sym_integer_token4, + ACTIONS(7756), 1, + sym_float, + STATE(2452), 1, + aux_sym_integer_repeat4, + STATE(4948), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1521), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1523), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1614), 2, + anon_sym_0x, + anon_sym_0X, + [124899] = 9, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6240), 8, - sym__newline, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7221), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(7224), 1, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [160600] = 3, + STATE(4379), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6238), 4, + ACTIONS(7758), 2, anon_sym_STAR, sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6240), 8, - anon_sym_LPAREN, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [124930] = 4, + ACTIONS(7764), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7762), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(7760), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [160621] = 7, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, + anon_sym___stdcall, + [124951] = 8, + ACTIONS(1834), 1, + aux_sym_integer_token4, + ACTIONS(7766), 1, + sym_float, + STATE(2456), 1, + aux_sym_integer_repeat4, + STATE(5672), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1830), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1832), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5750), 2, + anon_sym_0x, + anon_sym_0X, + [124980] = 6, + ACTIONS(6963), 1, + anon_sym_LPAREN, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3707), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(6966), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + ACTIONS(7553), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5676), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [160650] = 13, - ACTIONS(6352), 1, - anon_sym_COMMA, - ACTIONS(6354), 1, + [125005] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6358), 1, - anon_sym_COLON, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7701), 1, anon_sym_or, - STATE(4099), 1, - sym_for_in_clause, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, - STATE(5721), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160691] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(5947), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + [125030] = 8, + ACTIONS(6171), 1, + anon_sym___stdcall, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3697), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5676), 4, + ACTIONS(6930), 2, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160720] = 7, - ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(7737), 2, anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, + sym_identifier, + STATE(4282), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [125059] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3619), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5645), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [160749] = 13, - ACTIONS(6352), 1, - anon_sym_COMMA, - ACTIONS(6354), 1, + ACTIONS(5567), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(6356), 1, anon_sym_if, - ACTIONS(6358), 1, anon_sym_COLON, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6368), 1, anon_sym_or, - STATE(4099), 1, - sym_for_in_clause, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, - STATE(5651), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160790] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6463), 1, - anon_sym_complex, - STATE(3548), 1, + [125076] = 6, + ACTIONS(7221), 1, + anon_sym_LPAREN, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3728), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(7224), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5943), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [160821] = 7, - ACTIONS(3908), 1, + ACTIONS(7758), 3, anon_sym_STAR, - ACTIONS(6467), 1, + sym_identifier, + anon_sym___stdcall, + [125101] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(7721), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6465), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160850] = 13, - ACTIONS(6352), 1, + STATE(4619), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [125130] = 8, + ACTIONS(7768), 1, anon_sym_COMMA, - ACTIONS(6354), 1, + ACTIONS(7770), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(7772), 1, anon_sym_if, - ACTIONS(6358), 1, - anon_sym_COLON, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, + ACTIONS(7776), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7778), 1, anon_sym_or, - STATE(4099), 1, - sym_for_in_clause, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, - STATE(5526), 1, - sym__comprehension_clauses, + STATE(5253), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160891] = 7, - ACTIONS(4429), 1, + ACTIONS(7774), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [125159] = 3, + ACTIONS(6982), 1, anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5926), 4, + ACTIONS(6984), 9, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [160920] = 7, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5676), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [160949] = 13, - ACTIONS(6352), 1, - anon_sym_COMMA, - ACTIONS(6354), 1, + [125178] = 6, + ACTIONS(7741), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(7743), 1, anon_sym_if, - ACTIONS(6358), 1, - anon_sym_COLON, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, + ACTIONS(7745), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7747), 1, anon_sym_or, - STATE(4099), 1, - sym_for_in_clause, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, - STATE(5680), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160990] = 7, - ACTIONS(6470), 1, - anon_sym_STAR, - ACTIONS(6476), 1, + ACTIONS(5967), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [125203] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3750), 1, + ACTIONS(6888), 1, + anon_sym_LPAREN, + ACTIONS(7650), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6473), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, + STATE(4679), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [125232] = 9, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6085), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [161019] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(7240), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + anon_sym_LPAREN, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3719), 2, + ACTIONS(7715), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [161048] = 13, - ACTIONS(6352), 1, - anon_sym_COMMA, - ACTIONS(6354), 1, + [125263] = 5, + ACTIONS(7745), 1, + anon_sym_and, + ACTIONS(7747), 1, + anon_sym_or, + ACTIONS(7780), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5982), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_if, - ACTIONS(6358), 1, anon_sym_COLON, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, + anon_sym_EQ, + anon_sym_PIPE, + [125286] = 4, + ACTIONS(7745), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7747), 1, anon_sym_or, - STATE(4099), 1, - sym_for_in_clause, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, - STATE(5797), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161089] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + ACTIONS(5915), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [125307] = 3, + ACTIONS(7745), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5670), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5608), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - [161120] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5940), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + anon_sym_PIPE, + anon_sym_or, + [125326] = 6, + ACTIONS(7741), 1, + anon_sym_as, + ACTIONS(7743), 1, + anon_sym_if, + ACTIONS(7745), 1, + anon_sym_and, + ACTIONS(7747), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5943), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5927), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, anon_sym_EQ, - [161151] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, + anon_sym_PIPE, + [125351] = 5, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3660), 2, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(7723), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6928), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6415), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [125374] = 6, + ACTIONS(7741), 1, + anon_sym_as, + ACTIONS(7743), 1, + anon_sym_if, + ACTIONS(7745), 1, + anon_sym_and, + ACTIONS(7747), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5947), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - [161180] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + anon_sym_PIPE, + [125399] = 4, + ACTIONS(7783), 1, + aux_sym_integer_token1, + STATE(4696), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5943), 4, - anon_sym_LPAREN, + ACTIONS(4863), 8, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [161209] = 7, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, + anon_sym_as, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [125420] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5926), 4, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5571), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - [161238] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [125437] = 8, + ACTIONS(7768), 1, + anon_sym_COMMA, + ACTIONS(7770), 1, + anon_sym_as, + ACTIONS(7772), 1, + anon_sym_if, + ACTIONS(7776), 1, + anon_sym_and, + ACTIONS(7778), 1, + anon_sym_or, + STATE(5253), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6392), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7786), 4, anon_sym_COLON, anon_sym_EQ, - [161267] = 7, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + anon_sym_RBRACE, + sym_type_conversion, + [125466] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3750), 1, + ACTIONS(7252), 1, + anon_sym_LPAREN, + ACTIONS(7715), 1, + sym_identifier, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3643), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6003), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5926), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [161296] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + STATE(4676), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [125495] = 8, + ACTIONS(1716), 1, + aux_sym_integer_token4, + ACTIONS(7788), 1, + sym_float, + STATE(2524), 1, + aux_sym_integer_repeat4, + STATE(5677), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(1712), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1714), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5289), 2, + anon_sym_0x, + anon_sym_0X, + [125524] = 9, + ACTIONS(6171), 1, anon_sym___stdcall, - ACTIONS(6405), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [161325] = 8, - ACTIONS(5667), 1, - anon_sym_LPAREN, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, + ACTIONS(6173), 1, + anon_sym_AMP, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3750), 1, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(6951), 1, + anon_sym_STAR_STAR, + STATE(4379), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3671), 2, + ACTIONS(7721), 2, + anon_sym_STAR, + sym_identifier, + STATE(4282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5670), 3, + [125555] = 4, + ACTIONS(7790), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7762), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(7760), 7, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(6003), 3, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AMP, anon_sym___stdcall, - [161356] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + [125576] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7794), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3630), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6410), 4, - anon_sym_RPAREN, + [125604] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(7796), 1, anon_sym_EQ, - [161385] = 8, - ACTIONS(5940), 1, - anon_sym_LPAREN, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, + ACTIONS(7798), 1, + sym__newline, + STATE(5148), 1, + sym_string, + STATE(5723), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3676), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5943), 3, + STATE(4947), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [125634] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7800), 1, anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161416] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + ACTIONS(7802), 1, + sym__newline, + STATE(4955), 1, + sym_string, + STATE(5744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [161445] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + STATE(4966), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [125664] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7804), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5959), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, + [125692] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7806), 1, anon_sym_EQ, - [161474] = 9, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(5895), 1, - anon_sym_LPAREN, - ACTIONS(6479), 1, - anon_sym_complex, - STATE(3548), 1, - sym_type_index, + ACTIONS(7808), 1, + sym__newline, + STATE(5110), 1, + sym_string, + STATE(5737), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5963), 2, - sym__newline, - anon_sym_COLON, - STATE(3744), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161507] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_LPAREN, - STATE(3547), 1, + STATE(5112), 2, sym_type_index, + aux_sym_cvar_decl_repeat1, + [125722] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7810), 1, + anon_sym_EQ, + ACTIONS(7812), 1, + sym__newline, + STATE(5103), 1, + sym_string, + STATE(6112), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5961), 3, - anon_sym_RPAREN, + STATE(5104), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [125752] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7814), 1, anon_sym_EQ, - [161538] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, + ACTIONS(7816), 1, + sym__newline, + STATE(5107), 1, + sym_string, + STATE(6117), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5111), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [125782] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5895), 1, - anon_sym_LPAREN, - STATE(3547), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7818), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [125810] = 5, + ACTIONS(7820), 1, + anon_sym_DOT, + ACTIONS(7824), 1, anon_sym_EQ, - [161569] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + STATE(4793), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6256), 4, + ACTIONS(7822), 6, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [161598] = 8, - ACTIONS(5667), 1, - anon_sym_LPAREN, - ACTIONS(6001), 1, - anon_sym_STAR, - ACTIONS(6005), 1, - anon_sym_LBRACK, - STATE(3750), 1, - sym_type_index, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [125832] = 6, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5670), 3, + ACTIONS(7691), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(6003), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161629] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(6253), 1, + anon_sym_PIPE, + [125856] = 10, + ACTIONS(7834), 1, anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + ACTIONS(7836), 1, + anon_sym_COMMA, + ACTIONS(7838), 1, + anon_sym_EQ, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(7842), 1, + sym__newline, + STATE(1198), 1, + sym_c_function_definition, + STATE(4833), 1, + sym_c_parameters, + STATE(5796), 1, + aux_sym_cvar_def_repeat1, + STATE(6318), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6256), 3, - anon_sym_RPAREN, + [125888] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4964), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - [161660] = 8, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [125904] = 9, + ACTIONS(7846), 1, + anon_sym_from, + ACTIONS(7848), 1, + anon_sym_COMMA, + ACTIONS(7850), 1, + anon_sym_as, + ACTIONS(7852), 1, + anon_sym_if, + ACTIONS(7854), 1, + anon_sym_and, + ACTIONS(7856), 1, + anon_sym_or, + STATE(5449), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5984), 3, - anon_sym_RPAREN, + ACTIONS(7844), 2, + sym__newline, + anon_sym_SEMI, + [125934] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5580), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - [161691] = 7, - ACTIONS(4429), 1, - anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(3547), 1, - sym_type_index, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [125950] = 5, + ACTIONS(7858), 1, + anon_sym_class, + ACTIONS(7860), 1, + anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3629), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6465), 4, - anon_sym_RPAREN, + STATE(3444), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6848), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [125972] = 10, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(7862), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(7864), 1, anon_sym_EQ, - [161720] = 8, - ACTIONS(4429), 1, + ACTIONS(7866), 1, + sym__newline, + STATE(1950), 1, + sym_c_function_definition, + STATE(4799), 1, + sym_c_parameters, + STATE(6269), 1, + aux_sym_cvar_def_repeat1, + STATE(6442), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [126004] = 3, + ACTIONS(7870), 1, anon_sym_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACK, - ACTIONS(6245), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3497), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4431), 3, + ACTIONS(7868), 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, - ACTIONS(6248), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [161751] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(6481), 1, + [126022] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7872), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6370), 4, - sym__newline, + [126050] = 10, + ACTIONS(7834), 1, anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(7872), 1, + sym__newline, + ACTIONS(7874), 1, anon_sym_COMMA, + ACTIONS(7876), 1, anon_sym_EQ, - [161780] = 12, - ACTIONS(6364), 1, - anon_sym_RBRACK, - ACTIONS(6484), 1, + STATE(1996), 1, + sym_c_function_definition, + STATE(4799), 1, + sym_c_parameters, + STATE(5740), 1, + aux_sym_cvar_def_repeat1, + STATE(6442), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [126082] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5596), 9, anon_sym_COMMA, - ACTIONS(6486), 1, anon_sym_as, - ACTIONS(6488), 1, anon_sym_if, - ACTIONS(6490), 1, - anon_sym_async, - ACTIONS(6492), 1, - anon_sym_for, - ACTIONS(6494), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6496), 1, anon_sym_or, - STATE(4127), 1, - sym_for_in_clause, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, - STATE(5545), 1, - sym__comprehension_clauses, + sym_type_conversion, + [126098] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161818] = 10, - ACTIONS(6500), 1, + ACTIONS(5608), 9, anon_sym_COMMA, - ACTIONS(6502), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6504), 1, - anon_sym_LBRACK, - ACTIONS(6507), 1, - sym__newline, - ACTIONS(6509), 1, - sym_string_start, - STATE(4108), 1, - sym_string, - STATE(5030), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [126114] = 3, + ACTIONS(7880), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6498), 2, + ACTIONS(7878), 8, + sym__newline, anon_sym_LPAREN, - sym_identifier, - STATE(4119), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [161852] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [126132] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7882), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 3, + [126160] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7607), 1, + anon_sym_EQ, + ACTIONS(7609), 1, sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161880] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6518), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [161910] = 8, - ACTIONS(3), 1, + STATE(5002), 1, + sym_string, + STATE(5832), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6520), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3732), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [161940] = 9, - ACTIONS(5094), 1, + STATE(5003), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [126190] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5655), 1, - anon_sym_LPAREN, - ACTIONS(6522), 1, + ACTIONS(7792), 1, sym_identifier, - ACTIONS(6524), 1, - anon_sym_complex, - STATE(3584), 1, + ACTIONS(7884), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3861), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [161972] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6526), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162002] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6528), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3734), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162032] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6530), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162062] = 12, - ACTIONS(6364), 1, - anon_sym_RBRACK, - ACTIONS(6484), 1, + [126218] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6486), 1, - anon_sym_as, - ACTIONS(6488), 1, - anon_sym_if, - ACTIONS(6490), 1, - anon_sym_async, - ACTIONS(6492), 1, - anon_sym_for, - ACTIONS(6494), 1, - anon_sym_and, - ACTIONS(6496), 1, - anon_sym_or, - STATE(4127), 1, - sym_for_in_clause, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, - STATE(5871), 1, - sym__comprehension_clauses, + ACTIONS(7886), 1, + anon_sym_EQ, + ACTIONS(7888), 1, + sym__newline, + STATE(5020), 1, + sym_string, + STATE(5890), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162100] = 12, - ACTIONS(6532), 1, - anon_sym_RPAREN, - ACTIONS(6534), 1, + STATE(5023), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [126248] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6539), 1, - anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, - anon_sym_and, - ACTIONS(6547), 1, - anon_sym_or, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5533), 1, - sym__comprehension_clauses, + ACTIONS(7890), 1, + anon_sym_EQ, + ACTIONS(7892), 1, + sym__newline, + STATE(5026), 1, + sym_string, + STATE(5893), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162138] = 9, - ACTIONS(5094), 1, + STATE(5028), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [126278] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(6549), 1, + ACTIONS(7792), 1, sym_identifier, - ACTIONS(6551), 1, - anon_sym_complex, - STATE(3584), 1, + ACTIONS(7894), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3885), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [162170] = 10, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6504), 1, + [126306] = 9, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6509), 1, + ACTIONS(4538), 1, sym_string_start, - ACTIONS(6553), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7896), 1, anon_sym_EQ, - ACTIONS(6555), 1, + ACTIONS(7898), 1, sym__newline, - STATE(4140), 1, + STATE(5051), 1, sym_string, - STATE(5192), 1, + STATE(5962), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6498), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4144), 2, + STATE(5151), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [162204] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + [126336] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7900), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5959), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [162232] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + [126364] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_LPAREN, - STATE(3548), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7902), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5961), 2, - sym__newline, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [126392] = 3, + ACTIONS(7762), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7760), 8, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [162262] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + [126410] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5895), 1, - anon_sym_LPAREN, - STATE(3548), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7904), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5963), 2, - sym__newline, - anon_sym_COLON, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [162292] = 12, - ACTIONS(6364), 1, - anon_sym_RBRACK, - ACTIONS(6484), 1, + [126438] = 6, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5967), 5, anon_sym_COMMA, - ACTIONS(6486), 1, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [126462] = 5, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + ACTIONS(7906), 1, anon_sym_as, - ACTIONS(6488), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5982), 6, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6490), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(6492), 1, anon_sym_for, - ACTIONS(6494), 1, + anon_sym_RBRACE, + [126484] = 5, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(7344), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(7346), 1, anon_sym_or, - STATE(4127), 1, - sym_for_in_clause, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, - STATE(5676), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162330] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + ACTIONS(5915), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [126506] = 4, + ACTIONS(5610), 1, + anon_sym_as, + ACTIONS(7344), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6256), 3, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5608), 7, + anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - [162358] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_or, + [126526] = 6, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5927), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [126550] = 9, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_LPAREN, - STATE(3548), 1, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7909), 1, + anon_sym_EQ, + ACTIONS(7911), 1, + sym__newline, + STATE(5061), 1, + sym_string, + STATE(6016), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5062), 2, sym_type_index, + aux_sym_cvar_decl_repeat1, + [126580] = 6, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7334), 1, + anon_sym_if, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6256), 2, - sym__newline, + ACTIONS(5947), 5, + anon_sym_COMMA, anon_sym_COLON, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [162388] = 8, - ACTIONS(3908), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [126604] = 3, + ACTIONS(7762), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LPAREN, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5984), 2, + ACTIONS(7760), 8, sym__newline, - anon_sym_COLON, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [162418] = 8, - ACTIONS(3), 1, + [126622] = 10, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + anon_sym_COMMA, + ACTIONS(7915), 1, + anon_sym_EQ, + ACTIONS(7917), 1, + sym__newline, + STATE(3653), 1, + sym_c_function_definition, + STATE(4802), 1, + sym_c_parameters, + STATE(6220), 1, + aux_sym_cvar_def_repeat1, + STATE(6469), 1, + sym_template_params, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6557), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3748), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162448] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + [126654] = 9, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6245), 1, - anon_sym_LPAREN, - STATE(3548), 1, - sym_type_index, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7514), 1, + anon_sym_EQ, + ACTIONS(7516), 1, + sym__newline, + STATE(5054), 1, + sym_string, + STATE(6057), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6248), 2, + STATE(5063), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [126684] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7919), 1, sym__newline, - anon_sym_COLON, - STATE(3484), 2, + STATE(6121), 1, + sym_type_index, + STATE(6822), 1, sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [162478] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6559), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162508] = 7, - ACTIONS(3908), 1, + ACTIONS(6171), 2, anon_sym_STAR, - ACTIONS(3918), 1, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [126712] = 10, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + ACTIONS(7919), 1, + sym__newline, + ACTIONS(7921), 1, + anon_sym_COMMA, + ACTIONS(7923), 1, + anon_sym_EQ, + STATE(3562), 1, + sym_c_function_definition, + STATE(4802), 1, + sym_c_parameters, + STATE(6266), 1, + aux_sym_cvar_def_repeat1, + STATE(6469), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3792), 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, + [126744] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7925), 1, sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [162536] = 5, - ACTIONS(6238), 1, - anon_sym_STAR, - ACTIONS(6561), 1, - anon_sym_DOT, - STATE(3782), 1, - aux_sym_type_qualifier_repeat1, + STATE(6121), 1, + sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6240), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [162560] = 12, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6539), 1, - anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, - anon_sym_and, - ACTIONS(6547), 1, - anon_sym_or, - ACTIONS(6563), 1, - anon_sym_RPAREN, - ACTIONS(6565), 1, + [126772] = 9, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5707), 1, - sym__comprehension_clauses, + ACTIONS(7569), 1, + anon_sym_EQ, + ACTIONS(7571), 1, + sym__newline, + STATE(4944), 1, + sym_string, + STATE(5718), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162598] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6567), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3809), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162628] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + STATE(4945), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [126802] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - STATE(3548), 1, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7927), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3802), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5645), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [162656] = 12, - ACTIONS(6537), 1, + [126830] = 6, + ACTIONS(7770), 1, anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(7772), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + ACTIONS(7776), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7778), 1, anon_sym_or, - ACTIONS(6569), 1, - anon_sym_RPAREN, - ACTIONS(6571), 1, - anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(4880), 1, - aux_sym_argument_list_repeat1, - STATE(5707), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162694] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6573), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3764), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162724] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6575), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3759), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162754] = 10, - ACTIONS(6500), 1, + ACTIONS(5967), 5, anon_sym_COMMA, - ACTIONS(6504), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [126854] = 9, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6509), 1, + ACTIONS(4538), 1, sym_string_start, - ACTIONS(6577), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7929), 1, anon_sym_EQ, - ACTIONS(6579), 1, + ACTIONS(7931), 1, sym__newline, - STATE(4206), 1, + STATE(4960), 1, sym_string, - STATE(5103), 1, + STATE(5751), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6498), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4207), 2, + STATE(4961), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [162788] = 10, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6504), 1, + [126884] = 9, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6509), 1, + ACTIONS(4538), 1, sym_string_start, - ACTIONS(6581), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7933), 1, anon_sym_EQ, - ACTIONS(6583), 1, + ACTIONS(7935), 1, sym__newline, - STATE(4172), 1, + STATE(4962), 1, sym_string, - STATE(5238), 1, + STATE(5753), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6498), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4173), 2, + STATE(4963), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [162822] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6585), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162852] = 12, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6539), 1, - anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + [126914] = 5, + ACTIONS(7776), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7778), 1, anon_sym_or, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(6587), 1, - anon_sym_RPAREN, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5620), 1, - sym__comprehension_clauses, + ACTIONS(7937), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162890] = 12, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(5982), 6, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [126936] = 4, + ACTIONS(7776), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7778), 1, anon_sym_or, - ACTIONS(6589), 1, - anon_sym_RPAREN, - ACTIONS(6591), 1, - anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(5121), 1, - aux_sym_argument_list_repeat1, - STATE(5805), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6593), 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, - [162946] = 12, - ACTIONS(6537), 1, + ACTIONS(5915), 7, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6539), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [126956] = 3, + ACTIONS(7776), 1, anon_sym_and, - ACTIONS(6547), 1, - anon_sym_or, - ACTIONS(6595), 1, - anon_sym_RPAREN, - ACTIONS(6597), 1, - anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(5197), 1, - aux_sym_argument_list_repeat1, - STATE(5533), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162984] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6599), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163014] = 12, - ACTIONS(6537), 1, + ACTIONS(5608), 8, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6539), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, - anon_sym_and, - ACTIONS(6547), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_or, - ACTIONS(6601), 1, - anon_sym_RPAREN, - ACTIONS(6603), 1, - anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(4932), 1, - aux_sym_argument_list_repeat1, - STATE(5620), 1, - sym__comprehension_clauses, + sym_type_conversion, + [126974] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7940), 1, + sym__newline, + STATE(6121), 1, + sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163052] = 12, - ACTIONS(6537), 1, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [127002] = 6, + ACTIONS(7770), 1, anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(7772), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + ACTIONS(7776), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7778), 1, anon_sym_or, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(6605), 1, - anon_sym_RPAREN, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5805), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163090] = 3, + ACTIONS(5927), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [127026] = 3, + ACTIONS(7880), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6238), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6240), 8, - anon_sym_LPAREN, + ACTIONS(7878), 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_GT, - anon_sym_QMARK, - [163110] = 9, - ACTIONS(5094), 1, + anon_sym___stdcall, + [127044] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, + ACTIONS(7792), 1, sym_identifier, - ACTIONS(6609), 1, - anon_sym_complex, - STATE(3584), 1, + ACTIONS(7942), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3835), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163142] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6611), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3770), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163172] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6613), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163202] = 12, - ACTIONS(6537), 1, + [127072] = 6, + ACTIONS(7770), 1, anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(7772), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + ACTIONS(7776), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7778), 1, anon_sym_or, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(6615), 1, - anon_sym_RPAREN, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5867), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163240] = 12, - ACTIONS(6364), 1, - anon_sym_RBRACK, - ACTIONS(6484), 1, + ACTIONS(5947), 5, anon_sym_COMMA, - ACTIONS(6486), 1, - anon_sym_as, - ACTIONS(6488), 1, - anon_sym_if, - ACTIONS(6490), 1, - anon_sym_async, - ACTIONS(6492), 1, - anon_sym_for, - ACTIONS(6494), 1, - anon_sym_and, - ACTIONS(6496), 1, - anon_sym_or, - STATE(4127), 1, - sym_for_in_clause, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, - STATE(5710), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163278] = 12, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6539), 1, - anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, - anon_sym_and, - ACTIONS(6547), 1, - anon_sym_or, - ACTIONS(6617), 1, - anon_sym_RPAREN, - ACTIONS(6619), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [127096] = 10, + ACTIONS(7794), 1, + sym__newline, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(7944), 1, anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(4965), 1, - aux_sym_argument_list_repeat1, - STATE(5867), 1, - sym__comprehension_clauses, + ACTIONS(7946), 1, + anon_sym_EQ, + STATE(1640), 1, + sym_c_function_definition, + STATE(4833), 1, + sym_c_parameters, + STATE(6109), 1, + aux_sym_cvar_def_repeat1, + STATE(6318), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163316] = 8, - ACTIONS(3), 1, + [127128] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6621), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3729), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163346] = 12, - ACTIONS(6537), 1, + ACTIONS(5567), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6539), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6547), 1, anon_sym_or, - ACTIONS(6623), 1, - anon_sym_RPAREN, - ACTIONS(6625), 1, - anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(5257), 1, - aux_sym_argument_list_repeat1, - STATE(5606), 1, - sym__comprehension_clauses, + sym_type_conversion, + [127144] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163384] = 12, - ACTIONS(6364), 1, - anon_sym_RBRACK, - ACTIONS(6484), 1, + ACTIONS(5571), 9, anon_sym_COMMA, - ACTIONS(6486), 1, anon_sym_as, - ACTIONS(6488), 1, anon_sym_if, - ACTIONS(6490), 1, - anon_sym_async, - ACTIONS(6492), 1, - anon_sym_for, - ACTIONS(6494), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6496), 1, anon_sym_or, - STATE(4127), 1, - sym_for_in_clause, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, - STATE(5633), 1, - sym__comprehension_clauses, + sym_type_conversion, + [127160] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163422] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6627), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3781), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163452] = 12, - ACTIONS(6537), 1, + ACTIONS(5484), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6539), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6547), 1, anon_sym_or, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(6629), 1, - anon_sym_RPAREN, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5606), 1, - sym__comprehension_clauses, + sym_type_conversion, + [127176] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163490] = 12, - ACTIONS(6364), 1, - anon_sym_RBRACK, - ACTIONS(6484), 1, + ACTIONS(5495), 9, anon_sym_COMMA, - ACTIONS(6486), 1, anon_sym_as, - ACTIONS(6488), 1, anon_sym_if, - ACTIONS(6490), 1, - anon_sym_async, - ACTIONS(6492), 1, - anon_sym_for, - ACTIONS(6494), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6496), 1, anon_sym_or, - STATE(4127), 1, - sym_for_in_clause, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, - STATE(5870), 1, - sym__comprehension_clauses, + sym_type_conversion, + [127192] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163528] = 10, - ACTIONS(6500), 1, + ACTIONS(5438), 9, anon_sym_COMMA, - ACTIONS(6504), 1, - anon_sym_LBRACK, - ACTIONS(6509), 1, - sym_string_start, - ACTIONS(6631), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6633), 1, - sym__newline, - STATE(4222), 1, - sym_string, - STATE(5219), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6498), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4224), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [163562] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6635), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163592] = 5, - ACTIONS(6171), 1, - anon_sym_STAR, - ACTIONS(6561), 1, - anon_sym_DOT, - STATE(3807), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [127208] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6175), 8, - anon_sym_LPAREN, + ACTIONS(5442), 9, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [163616] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3739), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5926), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [163644] = 12, - ACTIONS(6537), 1, anon_sym_as, - ACTIONS(6539), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6547), 1, anon_sym_or, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(6637), 1, - anon_sym_RPAREN, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5671), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163682] = 12, - ACTIONS(6364), 1, - anon_sym_RBRACK, - ACTIONS(6484), 1, - anon_sym_COMMA, - ACTIONS(6486), 1, + sym_type_conversion, + [127224] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6488), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6490), 1, - anon_sym_async, - ACTIONS(6492), 1, - anon_sym_for, - ACTIONS(6494), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(7832), 1, anon_sym_or, - STATE(4127), 1, - sym_for_in_clause, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, - STATE(5675), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163720] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6639), 1, - anon_sym_LBRACE, - ACTIONS(6645), 1, - anon_sym_BSLASH, - ACTIONS(6648), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6642), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163750] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5670), 2, - sym__newline, + ACTIONS(5967), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, - STATE(3740), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [163780] = 12, - ACTIONS(6364), 1, anon_sym_RBRACK, - ACTIONS(6484), 1, - anon_sym_COMMA, - ACTIONS(6486), 1, - anon_sym_as, - ACTIONS(6488), 1, - anon_sym_if, - ACTIONS(6490), 1, - anon_sym_async, - ACTIONS(6492), 1, - anon_sym_for, - ACTIONS(6494), 1, + anon_sym_PIPE, + [127248] = 5, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(7832), 1, anon_sym_or, - STATE(4127), 1, - sym_for_in_clause, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, - STATE(5790), 1, - sym__comprehension_clauses, + ACTIONS(7948), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163818] = 12, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(5982), 6, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [127270] = 4, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6650), 1, - anon_sym_RPAREN, - ACTIONS(6652), 1, - anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(5000), 1, - aux_sym_argument_list_repeat1, - STATE(5671), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163856] = 9, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5895), 1, - anon_sym_LPAREN, - ACTIONS(6654), 1, - sym_identifier, - ACTIONS(6656), 1, - anon_sym_complex, - STATE(3584), 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(3844), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163888] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(5940), 1, - anon_sym_LPAREN, - STATE(3548), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5943), 2, - sym__newline, - anon_sym_COLON, - STATE(3741), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [163918] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5926), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [163946] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6658), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3796), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163976] = 9, - ACTIONS(6270), 1, + ACTIONS(5915), 7, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6272), 1, anon_sym_if, - ACTIONS(6274), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [127290] = 3, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6664), 1, - anon_sym_COMMA, - STATE(4676), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6660), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6662), 3, + ACTIONS(5608), 8, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [164008] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, + anon_sym_or, + [127308] = 6, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - STATE(3484), 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, - [164036] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6666), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [164066] = 12, - ACTIONS(6537), 1, + sym_line_continuation, + ACTIONS(5927), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [127332] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(6668), 1, - anon_sym_RPAREN, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5789), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164104] = 8, - ACTIONS(3), 1, + ACTIONS(5947), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [127356] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + sym_identifier, + ACTIONS(7951), 1, + sym__newline, + STATE(6121), 1, + sym_type_index, + STATE(6822), 1, + sym_type_qualifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6670), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3804), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [164134] = 8, - ACTIONS(3908), 1, + ACTIONS(6171), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6173), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [127384] = 3, + ACTIONS(7171), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5670), 2, - sym__newline, - anon_sym_COLON, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, + ACTIONS(7175), 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, - [164164] = 12, - ACTIONS(6537), 1, + [127402] = 6, + ACTIONS(7770), 1, anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(7772), 1, anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, + ACTIONS(7776), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7778), 1, anon_sym_or, - ACTIONS(6672), 1, - anon_sym_RPAREN, - ACTIONS(6674), 1, - anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(5044), 1, - aux_sym_argument_list_repeat1, - STATE(5789), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164202] = 8, - ACTIONS(3908), 1, + ACTIONS(7953), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [127426] = 3, + ACTIONS(7870), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(5940), 1, - anon_sym_LPAREN, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5943), 2, - sym__newline, + ACTIONS(7868), 8, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [164232] = 7, - ACTIONS(3908), 1, + [127444] = 3, + ACTIONS(6576), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5943), 3, + ACTIONS(5079), 8, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [164260] = 7, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3484), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5645), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [164288] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6676), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [164318] = 7, - ACTIONS(3908), 1, + [127462] = 3, + ACTIONS(7420), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3743), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5963), 3, + ACTIONS(7422), 8, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [164346] = 12, - ACTIONS(6532), 1, - anon_sym_RPAREN, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6539), 1, - anon_sym_if, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(6545), 1, - anon_sym_and, - ACTIONS(6547), 1, - anon_sym_or, - ACTIONS(6565), 1, - anon_sym_COMMA, - STATE(4107), 1, - sym_for_in_clause, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - STATE(5533), 1, - sym__comprehension_clauses, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [127480] = 5, + ACTIONS(7955), 1, + anon_sym_class, + ACTIONS(7957), 1, + anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164384] = 5, - ACTIONS(6155), 1, + STATE(3444), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6848), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [127502] = 3, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(6678), 1, - anon_sym_DOT, - STATE(3807), 1, - aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6157), 8, + ACTIONS(7386), 8, + sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [164408] = 9, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5895), 1, + [127520] = 10, + ACTIONS(7834), 1, anon_sym_LPAREN, - ACTIONS(6654), 1, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7961), 1, + anon_sym_EQ, + ACTIONS(7963), 1, + sym__newline, + STATE(3838), 1, + sym_c_function_definition, + STATE(4905), 1, + sym_c_parameters, + STATE(6204), 1, + aux_sym_cvar_def_repeat1, + STATE(6389), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [127552] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, sym_identifier, - ACTIONS(6681), 1, - anon_sym_complex, - STATE(3584), 1, + ACTIONS(7965), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3878), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164440] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6683), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [164470] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6685), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3814), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [164500] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(5890), 1, + [127580] = 10, + ACTIONS(7834), 1, anon_sym_LPAREN, - STATE(3548), 1, - sym_type_index, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(7965), 1, + sym__newline, + ACTIONS(7967), 1, + anon_sym_COMMA, + ACTIONS(7969), 1, + anon_sym_EQ, + STATE(3866), 1, + sym_c_function_definition, + STATE(4905), 1, + sym_c_parameters, + STATE(6242), 1, + aux_sym_cvar_def_repeat1, + STATE(6389), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5961), 2, - sym__newline, - anon_sym_COLON, - STATE(3745), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [164530] = 9, - ACTIONS(5094), 1, + [127612] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5655), 1, - anon_sym_LPAREN, - ACTIONS(6522), 1, + ACTIONS(7792), 1, sym_identifier, - ACTIONS(6687), 1, - anon_sym_complex, - STATE(3584), 1, + ACTIONS(7971), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3875), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164562] = 5, - ACTIONS(6155), 1, - anon_sym_STAR, - ACTIONS(6689), 1, + [127640] = 9, + ACTIONS(4504), 1, anon_sym_LBRACK, - STATE(3883), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6157), 8, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, + ACTIONS(7573), 1, anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [164586] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6512), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_BSLASH, - ACTIONS(6692), 1, - sym_string_end, - STATE(4016), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6514), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3786), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [164616] = 8, - ACTIONS(3908), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_LPAREN, - STATE(3548), 1, - sym_type_index, + ACTIONS(7575), 1, + sym__newline, + STATE(4976), 1, + sym_string, + STATE(5951), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6256), 2, - sym__newline, - anon_sym_COLON, - STATE(3747), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3924), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [164646] = 9, - ACTIONS(5094), 1, + STATE(5053), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [127670] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, + ACTIONS(7792), 1, sym_identifier, - ACTIONS(6694), 1, - anon_sym_complex, - STATE(3584), 1, + ACTIONS(7973), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3837), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164678] = 9, - ACTIONS(5094), 1, + [127698] = 8, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(6549), 1, + ACTIONS(7792), 1, sym_identifier, - ACTIONS(6696), 1, - anon_sym_complex, - STATE(3584), 1, + ACTIONS(7975), 1, + sym__newline, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5090), 2, + ACTIONS(6171), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5092), 2, + ACTIONS(6173), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3862), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164710] = 10, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6504), 1, + [127726] = 6, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7691), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [127750] = 9, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6509), 1, + ACTIONS(4538), 1, sym_string_start, - ACTIONS(6698), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7977), 1, anon_sym_EQ, - ACTIONS(6700), 1, + ACTIONS(7979), 1, sym__newline, - STATE(4118), 1, + STATE(4975), 1, sym_string, - STATE(5196), 1, + STATE(5783), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6498), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4123), 2, + STATE(4933), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [164744] = 3, - ACTIONS(6112), 1, - anon_sym_STAR, + [127780] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6114), 9, + ACTIONS(5567), 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, + [127795] = 4, + ACTIONS(7820), 1, anon_sym_DOT, + STATE(4867), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7981), 6, 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, - [164763] = 6, - ACTIONS(6702), 1, anon_sym_as, - ACTIONS(6704), 1, anon_sym_if, - ACTIONS(6706), 1, + anon_sym_COLON, + anon_sym_PIPE, + [127814] = 6, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7547), 1, anon_sym_and, - ACTIONS(6708), 1, + ACTIONS(7549), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(5967), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [127837] = 9, + ACTIONS(4487), 1, anon_sym_DOT, + ACTIONS(7983), 1, + anon_sym_LPAREN, + ACTIONS(7985), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [164788] = 4, - ACTIONS(5972), 1, - anon_sym_DOT, - STATE(3895), 1, + ACTIONS(7987), 1, + anon_sym_LBRACK, + ACTIONS(7989), 1, + sym__newline, + STATE(1149), 1, + sym_external_definition, + STATE(4820), 1, aux_sym_class_definition_repeat2, + STATE(5766), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6710), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_LPAREN, + [127866] = 9, + ACTIONS(7991), 1, anon_sym_COMMA, + ACTIONS(7993), 1, anon_sym_as, + ACTIONS(7995), 1, anon_sym_if, + ACTIONS(7997), 1, anon_sym_COLON, - anon_sym_PIPE, - [164809] = 3, - ACTIONS(6374), 1, - anon_sym_STAR, + ACTIONS(7999), 1, + anon_sym_by, + ACTIONS(8001), 1, + anon_sym_and, + ACTIONS(8003), 1, + anon_sym_or, + STATE(5579), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6376), 9, + [127895] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8005), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8007), 1, + anon_sym_COLON, + ACTIONS(8009), 1, + anon_sym_LBRACK, + ACTIONS(8011), 1, + sym__newline, + STATE(3436), 1, + sym_external_definition, + STATE(4800), 1, + aux_sym_class_definition_repeat2, + STATE(6180), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [127924] = 8, + ACTIONS(7693), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + STATE(5710), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7689), 2, + sym__newline, + anon_sym_SEMI, + [127951] = 9, + ACTIONS(8013), 1, + anon_sym_COLON, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8017), 1, + anon_sym_with, + ACTIONS(8019), 1, + anon_sym_nogil, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8023), 1, + sym__newline, + STATE(4826), 1, + sym_gil_spec, + STATE(5324), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [127980] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8009), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [164828] = 6, - ACTIONS(5952), 1, + ACTIONS(8025), 1, anon_sym_LPAREN, - STATE(3584), 1, - sym_type_index, + ACTIONS(8027), 1, + anon_sym_COLON, + ACTIONS(8029), 1, + sym__newline, + STATE(3442), 1, + sym_external_definition, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(6183), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5984), 3, - anon_sym_STAR_STAR, + [128009] = 6, + ACTIONS(8031), 1, + anon_sym_as, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_and, + ACTIONS(8037), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4339), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [128032] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8017), 1, + anon_sym_with, + ACTIONS(8019), 1, + anon_sym_nogil, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8039), 1, + anon_sym_COLON, + ACTIONS(8041), 1, + sym__newline, + STATE(4809), 1, + sym_gil_spec, + STATE(5446), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128061] = 9, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6712), 3, - anon_sym_STAR, + ACTIONS(8043), 1, sym_identifier, - anon_sym___stdcall, - [164853] = 3, - ACTIONS(6374), 1, - anon_sym_STAR, + ACTIONS(8045), 1, + sym_string_start, + STATE(3739), 1, + sym_c_function_definition, + STATE(4905), 1, + sym_c_parameters, + STATE(5180), 1, + sym_string, + STATE(6389), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6376), 9, + [128090] = 9, + ACTIONS(7834), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, + ACTIONS(7840), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [164872] = 6, - ACTIONS(6714), 1, + ACTIONS(8045), 1, + sym_string_start, + ACTIONS(8047), 1, + sym_identifier, + STATE(3602), 1, + sym_c_function_definition, + STATE(4802), 1, + sym_c_parameters, + STATE(5159), 1, + sym_string, + STATE(6469), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128119] = 5, + ACTIONS(7332), 1, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7344), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7346), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 6, - anon_sym_DOT, + ACTIONS(8049), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_by, - anon_sym_PIPE, - [164897] = 5, - ACTIONS(6718), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [128140] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6722), 1, - anon_sym_as, + ACTIONS(8051), 1, + anon_sym_COMMA, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8055), 1, + anon_sym_RBRACK, + STATE(6282), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 7, + [128169] = 9, + ACTIONS(4487), 1, anon_sym_DOT, + ACTIONS(8009), 1, + anon_sym_LBRACK, + ACTIONS(8057), 1, + anon_sym_LPAREN, + ACTIONS(8059), 1, + anon_sym_COLON, + ACTIONS(8061), 1, + sym__newline, + STATE(3441), 1, + sym_external_definition, + STATE(4815), 1, + aux_sym_class_definition_repeat2, + STATE(6185), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128198] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8017), 1, + anon_sym_with, + ACTIONS(8019), 1, + anon_sym_nogil, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8063), 1, + anon_sym_COLON, + ACTIONS(8065), 1, + sym__newline, + STATE(4817), 1, + sym_gil_spec, + STATE(5369), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128227] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8063), 1, + anon_sym_COLON, + ACTIONS(8065), 1, + sym__newline, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + STATE(5369), 1, + sym_exception_value, + STATE(6594), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128256] = 4, + ACTIONS(1537), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2603), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(8071), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_by, anon_sym_PIPE, - [164920] = 4, - ACTIONS(6729), 1, - anon_sym_LBRACK_RBRACK, + [128275] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8073), 1, + anon_sym_COMMA, + ACTIONS(8075), 1, + anon_sym_RBRACK, + STATE(5757), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6727), 2, - anon_sym_STAR, + [128304] = 9, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, anon_sym_LBRACK, - ACTIONS(6725), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym___stdcall, - [164941] = 3, - ACTIONS(5591), 1, - anon_sym_STAR, + ACTIONS(8045), 1, + sym_string_start, + ACTIONS(8077), 1, + sym_identifier, + STATE(3614), 1, + sym_c_function_definition, + STATE(4802), 1, + sym_c_parameters, + STATE(5166), 1, + sym_string, + STATE(6469), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 9, + [128333] = 9, + ACTIONS(7834), 1, 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, - [164960] = 8, - ACTIONS(5094), 1, + ACTIONS(7840), 1, anon_sym_LBRACK, - ACTIONS(5645), 1, - anon_sym_LPAREN, - ACTIONS(6549), 1, + ACTIONS(8045), 1, + sym_string_start, + ACTIONS(8079), 1, sym_identifier, - STATE(3584), 1, - sym_type_index, + STATE(1454), 1, + sym_c_function_definition, + STATE(4833), 1, + sym_c_parameters, + STATE(5216), 1, + sym_string, + STATE(6318), 1, + sym_template_params, 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(3886), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164989] = 8, - ACTIONS(5094), 1, + [128362] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8085), 1, + anon_sym_BSLASH, + ACTIONS(8081), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(4843), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(8083), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [128385] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8009), 1, anon_sym_LBRACK, - ACTIONS(5963), 1, + ACTIONS(8087), 1, anon_sym_LPAREN, - ACTIONS(6654), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + ACTIONS(8089), 1, + anon_sym_COLON, + ACTIONS(8091), 1, + sym__newline, + STATE(3432), 1, + sym_external_definition, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(6188), 1, + sym_argument_list, 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(3863), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165018] = 6, - ACTIONS(6245), 1, + [128414] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8093), 1, anon_sym_LPAREN, - STATE(3584), 1, - sym_type_index, + ACTIONS(8095), 1, + anon_sym_COLON, + ACTIONS(8097), 1, + anon_sym_LBRACK, + ACTIONS(8099), 1, + sym__newline, + STATE(3745), 1, + sym_external_definition, + STATE(4835), 1, + aux_sym_class_definition_repeat2, + STATE(6160), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6248), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6731), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [165043] = 4, - ACTIONS(6718), 1, + [128443] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8101), 1, + anon_sym_COLON, + ACTIONS(8103), 1, + sym__newline, + STATE(5526), 1, + sym_exception_value, + STATE(6556), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128472] = 5, + ACTIONS(7547), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7549), 1, + anon_sym_or, + ACTIONS(8105), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5982), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [128493] = 5, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 8, + ACTIONS(5915), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [128514] = 9, + ACTIONS(4487), 1, anon_sym_DOT, + ACTIONS(7987), 1, + anon_sym_LBRACK, + ACTIONS(8108), 1, + anon_sym_LPAREN, + ACTIONS(8110), 1, + anon_sym_COLON, + ACTIONS(8112), 1, + sym__newline, + STATE(1083), 1, + sym_external_definition, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(5768), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128543] = 4, + ACTIONS(5610), 1, + anon_sym_as, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5608), 6, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_or, + [128562] = 6, + ACTIONS(7332), 1, anon_sym_as, + ACTIONS(7334), 1, anon_sym_if, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8114), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [128585] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8017), 1, + anon_sym_with, + ACTIONS(8019), 1, + anon_sym_nogil, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8116), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_by, - anon_sym_PIPE, - [165064] = 3, - ACTIONS(6718), 1, + ACTIONS(8118), 1, + sym__newline, + STATE(4839), 1, + sym_gil_spec, + STATE(5402), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128614] = 6, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7510), 1, anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 9, - anon_sym_DOT, + ACTIONS(5927), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [128637] = 5, + ACTIONS(7332), 1, anon_sym_as, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8049), 5, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [128658] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8116), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_by, - anon_sym_PIPE, + ACTIONS(8118), 1, + sym__newline, + STATE(5402), 1, + sym_exception_value, + STATE(6508), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128687] = 6, + ACTIONS(7770), 1, + anon_sym_as, + ACTIONS(7772), 1, + anon_sym_if, + ACTIONS(7776), 1, + anon_sym_and, + ACTIONS(7778), 1, anon_sym_or, - [165083] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5963), 1, - anon_sym_LPAREN, - ACTIONS(6654), 1, - sym_identifier, - STATE(3584), 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(3836), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165112] = 8, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, + ACTIONS(8120), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [128710] = 8, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8124), 1, + anon_sym_COMMA, + STATE(5634), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5963), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6654), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165141] = 5, - STATE(3584), 1, - sym_type_index, + ACTIONS(8122), 2, + sym__newline, + anon_sym_SEMI, + [128737] = 8, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8128), 1, + anon_sym_COMMA, + STATE(5681), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6733), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6256), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [165164] = 5, - STATE(3584), 1, - sym_type_index, + ACTIONS(8126), 2, + sym__newline, + anon_sym_SEMI, + [128764] = 4, + ACTIONS(7858), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6654), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5963), 4, + STATE(3444), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6848), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [128783] = 9, + ACTIONS(7834), 1, anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [165187] = 8, - ACTIONS(5094), 1, + ACTIONS(7840), 1, anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - ACTIONS(6323), 1, + ACTIONS(8045), 1, + sym_string_start, + ACTIONS(8130), 1, sym_identifier, - STATE(3584), 1, - sym_type_index, + STATE(3756), 1, + sym_c_function_definition, + STATE(4905), 1, + sym_c_parameters, + STATE(5201), 1, + sym_string, + STATE(6389), 1, + sym_template_params, 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(3887), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165216] = 8, - ACTIONS(5094), 1, + [128812] = 6, + ACTIONS(7850), 1, + anon_sym_as, + ACTIONS(7852), 1, + anon_sym_if, + ACTIONS(7854), 1, + anon_sym_and, + ACTIONS(7856), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5927), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [128835] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8017), 1, + anon_sym_with, + ACTIONS(8019), 1, + anon_sym_nogil, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8132), 1, + anon_sym_COLON, + ACTIONS(8134), 1, + sym__newline, + STATE(4889), 1, + sym_gil_spec, + STATE(5415), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128864] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(7987), 1, anon_sym_LBRACK, - ACTIONS(5926), 1, + ACTIONS(8136), 1, anon_sym_LPAREN, - ACTIONS(6735), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + ACTIONS(8138), 1, + anon_sym_COLON, + ACTIONS(8140), 1, + sym__newline, + STATE(1153), 1, + sym_external_definition, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(6090), 1, + sym_argument_list, 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(3857), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165245] = 8, - ACTIONS(5094), 1, + [128893] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8097), 1, anon_sym_LBRACK, - ACTIONS(5890), 1, + ACTIONS(8142), 1, + anon_sym_LPAREN, + ACTIONS(8144), 1, + anon_sym_COLON, + ACTIONS(8146), 1, + sym__newline, + STATE(3763), 1, + sym_external_definition, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(6163), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [128922] = 6, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7541), 1, + anon_sym_if, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5927), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [128945] = 8, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8150), 1, + anon_sym_COMMA, + STATE(5546), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8148), 2, + sym__newline, + anon_sym_SEMI, + [128972] = 9, + ACTIONS(7834), 1, anon_sym_LPAREN, - ACTIONS(6737), 1, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(8045), 1, + sym_string_start, + ACTIONS(8152), 1, sym_identifier, - STATE(3584), 1, - sym_type_index, + STATE(1744), 1, + sym_c_function_definition, + STATE(4833), 1, + sym_c_parameters, + STATE(5296), 1, + sym_string, + STATE(6318), 1, + sym_template_params, 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(3865), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165274] = 4, - ACTIONS(6739), 1, - anon_sym_LBRACK_RBRACK, + [129001] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8154), 1, + anon_sym_COLON, + ACTIONS(8156), 1, + sym__newline, + STATE(5527), 1, + sym_exception_value, + STATE(6535), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6727), 2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(6725), 7, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym___stdcall, - [165295] = 2, + [129030] = 7, + ACTIONS(2283), 1, + anon_sym_except_STAR, + ACTIONS(2319), 1, + anon_sym_except, + ACTIONS(8158), 1, + anon_sym_finally, + STATE(2186), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + STATE(779), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(783), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [129055] = 8, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - [165312] = 2, + ACTIONS(8150), 1, + anon_sym_COMMA, + STATE(5546), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 10, + ACTIONS(8160), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, + [129082] = 6, + ACTIONS(7539), 1, anon_sym_as, + ACTIONS(7541), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7547), 1, anon_sym_and, + ACTIONS(7549), 1, anon_sym_or, - [165329] = 9, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_LPAREN, - ACTIONS(6256), 1, - anon_sym_STAR_STAR, - STATE(3584), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6733), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165360] = 3, - ACTIONS(6186), 1, - anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6188), 9, - anon_sym_LPAREN, + ACTIONS(5947), 4, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [165379] = 2, - ACTIONS(3), 2, + [129105] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(4813), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(8167), 1, + anon_sym_BSLASH, + ACTIONS(8162), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(4843), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(8164), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [129128] = 9, + ACTIONS(7826), 1, anon_sym_as, + ACTIONS(7828), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7830), 1, anon_sym_and, + ACTIONS(7832), 1, anon_sym_or, - [165396] = 2, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8170), 1, + anon_sym_COMMA, + ACTIONS(8172), 1, + anon_sym_RBRACK, + STATE(5876), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4729), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [129157] = 9, + ACTIONS(7991), 1, + anon_sym_COMMA, + ACTIONS(7993), 1, anon_sym_as, + ACTIONS(7995), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(8001), 1, anon_sym_and, + ACTIONS(8003), 1, anon_sym_or, - [165413] = 2, + ACTIONS(8174), 1, + anon_sym_COLON, + ACTIONS(8176), 1, + anon_sym_by, + STATE(5579), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4718), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [129186] = 8, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - [165430] = 2, + ACTIONS(8150), 1, + anon_sym_COMMA, + STATE(5546), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4725), 10, + ACTIONS(6870), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, + [129213] = 5, + ACTIONS(7539), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7547), 1, anon_sym_and, + ACTIONS(7549), 1, anon_sym_or, - [165447] = 3, - ACTIONS(5680), 1, - anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5682), 9, - anon_sym_LPAREN, + ACTIONS(8049), 5, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [165466] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5926), 1, - anon_sym_LPAREN, - ACTIONS(6735), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + [129234] = 6, + ACTIONS(7850), 1, + anon_sym_as, + ACTIONS(7852), 1, + anon_sym_if, + ACTIONS(7854), 1, + anon_sym_and, + ACTIONS(7856), 1, + anon_sym_or, 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(3879), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165495] = 9, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, + ACTIONS(5967), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [129257] = 7, + ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(6245), 1, - anon_sym_LPAREN, - ACTIONS(6248), 1, - anon_sym_STAR_STAR, - STATE(3584), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6731), 2, - anon_sym_STAR, + ACTIONS(7792), 1, sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165526] = 5, - STATE(3584), 1, + STATE(6121), 1, sym_type_index, + STATE(6822), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6735), 3, + ACTIONS(6171), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5926), 4, - anon_sym_LPAREN, + ACTIONS(6173), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [165549] = 6, - ACTIONS(6702), 1, + [129282] = 6, + ACTIONS(7850), 1, anon_sym_as, - ACTIONS(6704), 1, + ACTIONS(7852), 1, anon_sym_if, - ACTIONS(6706), 1, + ACTIONS(7854), 1, anon_sym_and, - ACTIONS(6708), 1, + ACTIONS(7856), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6662), 6, + ACTIONS(5947), 4, sym__newline, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + [129305] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [165574] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LPAREN, - ACTIONS(6323), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + ACTIONS(8178), 1, + anon_sym_COMMA, + ACTIONS(8180), 1, + anon_sym_RBRACK, + STATE(5911), 1, + aux_sym_subscript_repeat1, 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(3892), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165603] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(6282), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + [129334] = 6, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7504), 1, + anon_sym_if, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, 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(3859), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165632] = 5, - STATE(3584), 1, - sym_type_index, + ACTIONS(5967), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [129357] = 5, + ACTIONS(7854), 1, + anon_sym_and, + ACTIONS(7856), 1, + anon_sym_or, + ACTIONS(8182), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6741), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5959), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [165655] = 6, - ACTIONS(6714), 1, + ACTIONS(5982), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + [129378] = 6, + ACTIONS(7502), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(7504), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7510), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7512), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 6, - anon_sym_DOT, + ACTIONS(5947), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [129401] = 5, + ACTIONS(7332), 1, + anon_sym_as, + ACTIONS(7344), 1, + anon_sym_and, + ACTIONS(7346), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8049), 5, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [129422] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_by, - anon_sym_PIPE, - [165680] = 8, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, + ACTIONS(8185), 1, + anon_sym_COMMA, + ACTIONS(8187), 1, + anon_sym_RBRACK, + STATE(5943), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5926), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6735), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165709] = 6, - ACTIONS(5667), 1, - anon_sym_LPAREN, - STATE(3584), 1, - sym_type_index, + [129451] = 5, + ACTIONS(7539), 1, + anon_sym_as, + ACTIONS(7547), 1, + anon_sym_and, + ACTIONS(7549), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5670), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6323), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [165734] = 8, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, + ACTIONS(8049), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [129472] = 5, + ACTIONS(8189), 1, + anon_sym_DOT, + ACTIONS(8191), 1, + anon_sym_EQ, + STATE(5055), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5645), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6549), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165763] = 6, - ACTIONS(5940), 1, + ACTIONS(7822), 5, anon_sym_LPAREN, - STATE(3584), 1, - sym_type_index, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [129493] = 5, + ACTIONS(7050), 1, + anon_sym_DOT, + ACTIONS(8193), 1, + anon_sym_EQ, + STATE(5033), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5943), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6607), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [165788] = 8, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, + ACTIONS(7822), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [129514] = 6, + ACTIONS(8031), 1, + anon_sym_as, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_and, + ACTIONS(8037), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6256), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6733), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165817] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_LPAREN, - ACTIONS(6733), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + ACTIONS(5967), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [129537] = 5, + ACTIONS(8035), 1, + anon_sym_and, + ACTIONS(8037), 1, + anon_sym_or, + ACTIONS(8195), 1, + anon_sym_as, 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(3852), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165846] = 9, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LPAREN, - ACTIONS(5984), 1, - anon_sym_STAR_STAR, - STATE(3584), 1, - sym_type_index, + ACTIONS(5982), 5, + sym__newline, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [129558] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8198), 1, + anon_sym_COMMA, + ACTIONS(8200), 1, + anon_sym_RBRACK, + STATE(5981), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6712), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165877] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5940), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + [129587] = 4, + ACTIONS(8035), 1, + anon_sym_and, + ACTIONS(8037), 1, + anon_sym_or, 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(3890), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165906] = 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(3584), 1, - sym_type_index, + ACTIONS(5915), 6, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [129606] = 3, + ACTIONS(8035), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6323), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165937] = 3, - ACTIONS(6116), 1, - anon_sym_STAR, + ACTIONS(5608), 7, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_or, + anon_sym_nogil, + [129623] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6118), 9, + ACTIONS(5967), 4, 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, - anon_sym___stdcall, - [165956] = 3, - ACTIONS(5591), 1, - anon_sym_STAR, + anon_sym_COLON, + anon_sym_PIPE, + [129646] = 6, + ACTIONS(8031), 1, + anon_sym_as, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_and, + ACTIONS(8037), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5927), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [129669] = 4, + ACTIONS(8210), 1, + anon_sym_DOT, + STATE(4867), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 9, + ACTIONS(6937), 6, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [129688] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8097), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [165975] = 5, - STATE(3584), 1, - sym_type_index, + ACTIONS(8213), 1, + anon_sym_LPAREN, + ACTIONS(8215), 1, + anon_sym_COLON, + ACTIONS(8217), 1, + sym__newline, + STATE(3720), 1, + sym_external_definition, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(6158), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6282), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5676), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [165998] = 8, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, + [129717] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8219), 1, + anon_sym_COMMA, + ACTIONS(8221), 1, + anon_sym_RBRACK, + STATE(6010), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5676), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6282), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166027] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5940), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + [129746] = 6, + ACTIONS(8031), 1, + anon_sym_as, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_and, + ACTIONS(8037), 1, + anon_sym_or, 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(3894), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166056] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_LPAREN, - ACTIONS(6733), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + ACTIONS(5947), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [129769] = 2, 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(3831), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166085] = 8, - ACTIONS(6743), 1, - anon_sym_COMMA, - ACTIONS(6745), 1, + ACTIONS(5484), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6747), 1, anon_sym_if, - ACTIONS(6751), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6753), 1, anon_sym_or, - STATE(4264), 1, - aux_sym_assert_statement_repeat1, + [129784] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 4, + ACTIONS(5495), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [166114] = 5, - STATE(3584), 1, - sym_type_index, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [129799] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6549), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5645), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [166137] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_LPAREN, - ACTIONS(6737), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + ACTIONS(5438), 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, + [129814] = 2, 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(3823), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166166] = 6, - ACTIONS(6714), 1, + ACTIONS(5442), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6716), 1, anon_sym_if, - ACTIONS(6718), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6720), 1, anon_sym_or, + [129829] = 5, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(8223), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 6, + ACTIONS(5982), 5, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_by, anon_sym_PIPE, - [166191] = 6, - ACTIONS(6253), 1, - anon_sym_LPAREN, - STATE(3584), 1, - sym_type_index, + [129850] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8017), 1, + anon_sym_with, + ACTIONS(8019), 1, + anon_sym_nogil, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8226), 1, + anon_sym_COLON, + ACTIONS(8228), 1, + sym__newline, + STATE(4928), 1, + sym_gil_spec, + STATE(5514), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6256), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6733), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [166216] = 8, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, + [129879] = 4, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5959), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6741), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166245] = 3, - ACTIONS(6388), 1, - anon_sym_STAR, + ACTIONS(5915), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [129898] = 3, + ACTIONS(8206), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6390), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5608), 7, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [166264] = 3, - ACTIONS(6098), 1, - anon_sym_STAR, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_or, + [129915] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8230), 1, + anon_sym_COMMA, + ACTIONS(8232), 1, + anon_sym_RBRACK, + STATE(6030), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6100), 9, - anon_sym_DOT, - anon_sym_LPAREN, + [129944] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8234), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, + ACTIONS(8236), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [166283] = 3, - ACTIONS(5993), 1, - anon_sym_STAR, + STATE(5789), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5995), 9, - anon_sym_LPAREN, + [129973] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8238), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, + ACTIONS(8240), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [166302] = 3, - ACTIONS(6298), 1, - anon_sym_STAR, + STATE(6050), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6300), 9, - anon_sym_DOT, - anon_sym_LPAREN, + [130002] = 6, + ACTIONS(8031), 1, + anon_sym_as, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_and, + ACTIONS(8037), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6059), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [130025] = 5, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8049), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [130046] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, + anon_sym_COLON, + ACTIONS(8242), 1, + anon_sym_COMMA, + ACTIONS(8244), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [166321] = 3, - ACTIONS(6102), 1, - anon_sym_STAR, + STATE(6066), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6104), 9, + [130075] = 9, + ACTIONS(4487), 1, 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, - anon_sym___stdcall, - [166340] = 9, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, + ACTIONS(7987), 1, anon_sym_LBRACK, - ACTIONS(5940), 1, + ACTIONS(8246), 1, anon_sym_LPAREN, - ACTIONS(5943), 1, - anon_sym_STAR_STAR, - STATE(3584), 1, - sym_type_index, + ACTIONS(8248), 1, + anon_sym_COLON, + ACTIONS(8250), 1, + sym__newline, + STATE(1138), 1, + sym_external_definition, + STATE(4834), 1, + aux_sym_class_definition_repeat2, + STATE(5798), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6607), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166371] = 8, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_type_index, + [130104] = 6, + ACTIONS(8252), 1, + anon_sym_as, + ACTIONS(8254), 1, + anon_sym_if, + ACTIONS(8256), 1, + anon_sym_and, + ACTIONS(8258), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5943), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6607), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166400] = 6, - ACTIONS(5890), 1, - anon_sym_LPAREN, - STATE(3584), 1, - sym_type_index, + ACTIONS(7691), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [130127] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5961), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6737), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [166425] = 8, - ACTIONS(6743), 1, + ACTIONS(5927), 4, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(6745), 1, + anon_sym_COLON, + anon_sym_PIPE, + [130150] = 8, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6747), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6751), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6753), 1, + ACTIONS(7701), 1, anon_sym_or, - STATE(4264), 1, + ACTIONS(8150), 1, + anon_sym_COMMA, + STATE(5546), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6755), 4, + ACTIONS(7786), 2, + sym__newline, + anon_sym_SEMI, + [130177] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8226), 1, + anon_sym_COLON, + ACTIONS(8228), 1, + sym__newline, + STATE(5514), 1, + sym_exception_value, + STATE(6422), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [130206] = 9, + ACTIONS(7991), 1, + anon_sym_COMMA, + ACTIONS(7993), 1, + anon_sym_as, + ACTIONS(7995), 1, + anon_sym_if, + ACTIONS(8001), 1, + anon_sym_and, + ACTIONS(8003), 1, + anon_sym_or, + ACTIONS(8260), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [166454] = 3, - ACTIONS(6108), 1, - anon_sym_STAR, + ACTIONS(8262), 1, + anon_sym_by, + STATE(5579), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6110), 9, - anon_sym_DOT, - anon_sym_LPAREN, + [130235] = 4, + ACTIONS(7955), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3444), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6848), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [130254] = 9, + ACTIONS(7991), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [166473] = 6, - ACTIONS(5895), 1, - anon_sym_LPAREN, - STATE(3584), 1, - sym_type_index, + ACTIONS(7993), 1, + anon_sym_as, + ACTIONS(7995), 1, + anon_sym_if, + ACTIONS(8001), 1, + anon_sym_and, + ACTIONS(8003), 1, + anon_sym_or, + ACTIONS(8264), 1, + anon_sym_COLON, + ACTIONS(8266), 1, + anon_sym_by, + STATE(5579), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5963), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6654), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [166498] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(6282), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + [130283] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, 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(3853), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166527] = 9, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_LPAREN, - ACTIONS(5961), 1, - anon_sym_STAR_STAR, - STATE(3584), 1, - sym_type_index, + ACTIONS(5947), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + [130306] = 9, + ACTIONS(7991), 1, + anon_sym_COMMA, + ACTIONS(7993), 1, + anon_sym_as, + ACTIONS(7995), 1, + anon_sym_if, + ACTIONS(8001), 1, + anon_sym_and, + ACTIONS(8003), 1, + anon_sym_or, + ACTIONS(8268), 1, + anon_sym_COLON, + ACTIONS(8270), 1, + anon_sym_by, + STATE(5579), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6737), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166558] = 3, - ACTIONS(6388), 1, - anon_sym_STAR, + [130335] = 9, + ACTIONS(7991), 1, + anon_sym_COMMA, + ACTIONS(7993), 1, + anon_sym_as, + ACTIONS(7995), 1, + anon_sym_if, + ACTIONS(8001), 1, + anon_sym_and, + ACTIONS(8003), 1, + anon_sym_or, + ACTIONS(8272), 1, + anon_sym_COLON, + ACTIONS(8274), 1, + anon_sym_by, + STATE(5579), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6390), 9, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, + [130364] = 5, + ACTIONS(8276), 1, + anon_sym_DOT, + ACTIONS(8278), 1, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [166577] = 9, - ACTIONS(5090), 1, - anon_sym___stdcall, - ACTIONS(5092), 1, - anon_sym_AMP, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5895), 1, - anon_sym_LPAREN, - ACTIONS(5963), 1, - anon_sym_STAR_STAR, - STATE(3584), 1, - sym_type_index, + STATE(4954), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6654), 2, - anon_sym_STAR, - sym_identifier, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166608] = 4, - ACTIONS(5972), 1, + ACTIONS(7822), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [130385] = 4, + ACTIONS(7820), 1, anon_sym_DOT, - STATE(3269), 1, + STATE(4793), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6757), 8, - anon_sym_import, - anon_sym_cimport, + ACTIONS(7822), 6, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [166629] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5645), 1, + [130404] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8280), 1, anon_sym_LPAREN, - ACTIONS(6549), 1, - sym_identifier, - STATE(3584), 1, - sym_type_index, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8284), 1, + anon_sym_LBRACK, + ACTIONS(8286), 1, + sym__newline, + STATE(1161), 1, + sym_external_definition, + STATE(4903), 1, + aux_sym_class_definition_repeat2, + STATE(6120), 1, + sym_argument_list, 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(3902), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [166658] = 6, - ACTIONS(6702), 1, - anon_sym_as, - ACTIONS(6704), 1, - anon_sym_if, - ACTIONS(6706), 1, + [130433] = 4, + ACTIONS(7854), 1, anon_sym_and, - ACTIONS(6708), 1, + ACTIONS(7856), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 6, + ACTIONS(5915), 6, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [166683] = 5, - ACTIONS(6706), 1, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + [130452] = 5, + ACTIONS(7510), 1, anon_sym_and, - ACTIONS(6708), 1, + ACTIONS(7512), 1, anon_sym_or, - ACTIONS(6759), 1, + ACTIONS(8288), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5982), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [166706] = 4, - ACTIONS(6706), 1, + anon_sym_async, + anon_sym_for, + [130473] = 9, + ACTIONS(7991), 1, + anon_sym_COMMA, + ACTIONS(7993), 1, + anon_sym_as, + ACTIONS(7995), 1, + anon_sym_if, + ACTIONS(8001), 1, anon_sym_and, - ACTIONS(6708), 1, + ACTIONS(8003), 1, anon_sym_or, + ACTIONS(8291), 1, + anon_sym_COLON, + ACTIONS(8293), 1, + anon_sym_by, + STATE(5579), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 8, - sym__newline, - anon_sym_SEMI, + [130502] = 7, + ACTIONS(2341), 1, + anon_sym_except, + ACTIONS(2345), 1, + anon_sym_except_STAR, + ACTIONS(8295), 1, + anon_sym_finally, + STATE(2061), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(793), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [130527] = 9, + ACTIONS(4487), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(8284), 1, + anon_sym_LBRACK, + ACTIONS(8297), 1, + anon_sym_LPAREN, + ACTIONS(8299), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [166727] = 3, - ACTIONS(6706), 1, + ACTIONS(8301), 1, + sym__newline, + STATE(1070), 1, + sym_external_definition, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(6128), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [130556] = 3, + ACTIONS(7854), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 9, + ACTIONS(5608), 7, sym__newline, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, anon_sym_or, - [166746] = 6, - ACTIONS(6702), 1, + [130573] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8017), 1, + anon_sym_with, + ACTIONS(8019), 1, + anon_sym_nogil, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8303), 1, + anon_sym_COLON, + ACTIONS(8305), 1, + sym__newline, + STATE(4914), 1, + sym_gil_spec, + STATE(5485), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [130602] = 6, + ACTIONS(7850), 1, anon_sym_as, - ACTIONS(6704), 1, + ACTIONS(7852), 1, anon_sym_if, - ACTIONS(6706), 1, + ACTIONS(7854), 1, anon_sym_and, - ACTIONS(6708), 1, + ACTIONS(7856), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 6, + ACTIONS(7953), 4, sym__newline, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + [130625] = 9, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(8045), 1, + sym_string_start, + ACTIONS(8307), 1, + sym_identifier, + STATE(1578), 1, + sym_c_function_definition, + STATE(4799), 1, + sym_c_parameters, + STATE(5279), 1, + sym_string, + STATE(6442), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [130654] = 9, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8053), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [166771] = 5, - STATE(3584), 1, - sym_type_index, + ACTIONS(8309), 1, + anon_sym_COMMA, + ACTIONS(8311), 1, + anon_sym_RBRACK, + STATE(6253), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3528), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6607), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5943), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, + [130683] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8284), 1, anon_sym_LBRACK, - anon_sym_AMP, - [166794] = 6, - ACTIONS(6745), 1, + ACTIONS(8313), 1, + anon_sym_LPAREN, + ACTIONS(8315), 1, + anon_sym_COLON, + ACTIONS(8317), 1, + sym__newline, + STATE(1071), 1, + sym_external_definition, + STATE(4918), 1, + aux_sym_class_definition_repeat2, + STATE(6131), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [130712] = 7, + ACTIONS(2341), 1, + anon_sym_except, + ACTIONS(2345), 1, + anon_sym_except_STAR, + ACTIONS(8295), 1, + anon_sym_finally, + STATE(2079), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(808), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(813), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [130737] = 5, + ACTIONS(7539), 1, anon_sym_as, - ACTIONS(6747), 1, - anon_sym_if, - ACTIONS(6751), 1, + ACTIONS(7547), 1, anon_sym_and, - ACTIONS(6753), 1, + ACTIONS(7549), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 5, + ACTIONS(8049), 5, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [130758] = 7, + ACTIONS(2283), 1, + anon_sym_except_STAR, + ACTIONS(2319), 1, + anon_sym_except, + ACTIONS(8158), 1, + anon_sym_finally, + STATE(2102), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(767), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(832), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [130783] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8017), 1, + anon_sym_with, + ACTIONS(8019), 1, + anon_sym_nogil, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8319), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [166818] = 6, - ACTIONS(6270), 1, + ACTIONS(8321), 1, + sym__newline, + STATE(4930), 1, + sym_gil_spec, + STATE(5521), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [130812] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8319), 1, + anon_sym_COLON, + ACTIONS(8321), 1, + sym__newline, + STATE(5521), 1, + sym_exception_value, + STATE(6586), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [130841] = 5, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5915), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [130862] = 8, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8128), 1, + anon_sym_COMMA, + STATE(5550), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6662), 5, + ACTIONS(8323), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [166842] = 8, - ACTIONS(5094), 1, + [130889] = 9, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, anon_sym_LBRACK, - ACTIONS(6764), 1, + ACTIONS(8045), 1, + sym_string_start, + ACTIONS(8325), 1, sym_identifier, - ACTIONS(6766), 1, - sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + STATE(1605), 1, + sym_c_function_definition, + STATE(4799), 1, + sym_c_parameters, + STATE(5239), 1, + sym_string, + STATE(6442), 1, + sym_template_params, 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, - [166870] = 8, - ACTIONS(5094), 1, + [130918] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8284), 1, anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6768), 1, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(8329), 1, + anon_sym_COLON, + ACTIONS(8331), 1, sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + STATE(1085), 1, + sym_external_definition, + STATE(4284), 1, + aux_sym_class_definition_repeat2, + STATE(6135), 1, + sym_argument_list, 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, - [166898] = 6, - ACTIONS(6770), 1, + [130947] = 6, + ACTIONS(8252), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8254), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8258), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 5, + ACTIONS(5967), 4, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [166922] = 3, - ACTIONS(6780), 1, - anon_sym_STAR, + [130970] = 9, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(8097), 1, + anon_sym_LBRACK, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8335), 1, + anon_sym_COLON, + ACTIONS(8337), 1, + sym__newline, + STATE(3732), 1, + sym_external_definition, + STATE(4868), 1, + aux_sym_class_definition_repeat2, + STATE(6151), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6778), 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, - [166940] = 5, - ACTIONS(6774), 1, + [130999] = 5, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8258), 1, anon_sym_or, - ACTIONS(6782), 1, + ACTIONS(8339), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 6, + ACTIONS(5982), 5, anon_sym_DOT, - anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [166962] = 4, - ACTIONS(6774), 1, + [131020] = 4, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8258), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 7, + ACTIONS(5915), 6, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [166982] = 6, - ACTIONS(6770), 1, anon_sym_as, - ACTIONS(6772), 1, anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6662), 5, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [167006] = 3, - ACTIONS(6774), 1, + [131039] = 3, + ACTIONS(8256), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 8, + ACTIONS(5608), 7, anon_sym_DOT, - anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [167024] = 3, - ACTIONS(6787), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6785), 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, - [167042] = 6, - ACTIONS(6770), 1, + [131056] = 6, + ACTIONS(8252), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8254), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8258), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 5, + ACTIONS(5927), 4, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [167066] = 6, - ACTIONS(6770), 1, + [131079] = 6, + ACTIONS(8252), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8254), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8258), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 5, + ACTIONS(5947), 4, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [167090] = 9, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + [131102] = 9, + ACTIONS(7991), 1, anon_sym_COMMA, - ACTIONS(6789), 1, - anon_sym_EQ, - ACTIONS(6791), 1, - sym__newline, - STATE(4116), 1, - sym_string, - STATE(5244), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4117), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [167120] = 6, - ACTIONS(6354), 1, + ACTIONS(7993), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(7995), 1, anon_sym_if, - ACTIONS(6366), 1, + ACTIONS(8001), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(8003), 1, anon_sym_or, + ACTIONS(8342), 1, + anon_sym_COLON, + ACTIONS(8344), 1, + anon_sym_by, + STATE(5579), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167144] = 6, - ACTIONS(6745), 1, + [131131] = 5, + ACTIONS(7502), 1, anon_sym_as, - ACTIONS(6747), 1, - anon_sym_if, - ACTIONS(6751), 1, + ACTIONS(7510), 1, anon_sym_and, - ACTIONS(6753), 1, + ACTIONS(7512), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167168] = 3, - ACTIONS(6727), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6725), 8, + ACTIONS(8049), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [131152] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8346), 1, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [167186] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6793), 1, - sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, - 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, - [167214] = 10, - ACTIONS(6793), 1, + ACTIONS(8348), 1, sym__newline, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6797), 1, - anon_sym_COMMA, - ACTIONS(6799), 1, - anon_sym_EQ, - ACTIONS(6801), 1, - anon_sym_LBRACK, - STATE(1340), 1, - sym_c_function_definition, - STATE(4003), 1, - sym_c_parameters, - STATE(5126), 1, - aux_sym_cvar_def_repeat1, - STATE(5520), 1, - sym_template_params, + STATE(5351), 1, + sym_exception_value, + STATE(6486), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167246] = 3, - ACTIONS(6787), 1, - anon_sym_STAR, + [131181] = 4, + ACTIONS(5610), 1, + anon_sym_as, + ACTIONS(7510), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6785), 8, + ACTIONS(5608), 6, 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, - [167264] = 6, - ACTIONS(6745), 1, - anon_sym_as, - ACTIONS(6747), 1, anon_sym_if, - ACTIONS(6751), 1, - anon_sym_and, - ACTIONS(6753), 1, + anon_sym_async, + anon_sym_for, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4829), 5, - anon_sym_COMMA, + [131200] = 9, + ACTIONS(8015), 1, + anon_sym_except, + ACTIONS(8021), 1, + anon_sym_noexcept, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8350), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167288] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6803), 1, + ACTIONS(8352), 1, sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + STATE(5513), 1, + sym_exception_value, + STATE(6336), 1, + sym_gil_spec, 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, - [167316] = 5, - ACTIONS(5972), 1, - anon_sym_DOT, - ACTIONS(6805), 1, - anon_sym_EQ, - STATE(3895), 1, - aux_sym_class_definition_repeat2, + [131229] = 5, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7510), 1, + anon_sym_and, + ACTIONS(7512), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6710), 6, - anon_sym_LPAREN, + ACTIONS(8049), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [167338] = 2, + anon_sym_async, + anon_sym_for, + [131250] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 9, - anon_sym_COMMA, + ACTIONS(5571), 8, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [167354] = 2, + [131265] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8354), 1, + anon_sym_EQ, + ACTIONS(8356), 1, + sym__newline, + STATE(5812), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 9, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [131289] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [167370] = 6, - ACTIONS(6354), 1, + ACTIONS(8358), 1, + sym__newline, + STATE(6264), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [131315] = 8, + ACTIONS(7557), 1, + anon_sym_RPAREN, + ACTIONS(7559), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6366), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(8366), 1, anon_sym_or, + STATE(6251), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 5, + [131341] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167394] = 2, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8368), 1, + sym__newline, + STATE(6270), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4813), 9, + [131367] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [167410] = 10, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(6807), 1, - anon_sym_COMMA, - ACTIONS(6809), 1, - anon_sym_EQ, - ACTIONS(6811), 1, + ACTIONS(8370), 1, sym__newline, - STATE(674), 1, - sym_c_function_definition, - STATE(4005), 1, - sym_c_parameters, - STATE(5151), 1, - aux_sym_cvar_def_repeat1, - STATE(5395), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [167442] = 2, + STATE(6273), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4729), 9, + [131393] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [167458] = 6, - ACTIONS(6354), 1, + ACTIONS(8372), 1, + sym__newline, + STATE(6277), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [131419] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6366), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8374), 1, + sym__newline, + STATE(6309), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167482] = 2, + [131445] = 6, + ACTIONS(8378), 1, + anon_sym_EQ, + ACTIONS(8380), 1, + anon_sym_LBRACK, + STATE(5459), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4718), 9, + ACTIONS(8376), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(8382), 2, + anon_sym_not, + anon_sym_or, + [131467] = 8, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [167498] = 2, + ACTIONS(7927), 1, + sym__newline, + ACTIONS(8384), 1, + anon_sym_COMMA, + STATE(5742), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4725), 9, + [131493] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [167514] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6813), 1, + ACTIONS(7935), 1, sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + STATE(5743), 1, + aux_sym_cvar_decl_repeat2, 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, - [167542] = 10, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, + [131519] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6813), 1, - sym__newline, - ACTIONS(6815), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6817), 1, + ACTIONS(7929), 1, anon_sym_EQ, - STATE(681), 1, - sym_c_function_definition, - STATE(4005), 1, - sym_c_parameters, - STATE(5190), 1, - aux_sym_cvar_def_repeat1, - STATE(5395), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [167574] = 3, - ACTIONS(6780), 1, - anon_sym_STAR, + ACTIONS(7931), 1, + sym__newline, + STATE(5745), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6778), 8, - anon_sym_RPAREN, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [131543] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, + ACTIONS(8386), 1, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [167592] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6819), 1, + ACTIONS(8388), 1, sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + STATE(5747), 1, + aux_sym_cvar_decl_repeat2, 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, - [167620] = 9, - ACTIONS(3918), 1, + STATE(4959), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [131567] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6581), 1, + ACTIONS(7933), 1, anon_sym_EQ, - ACTIONS(6583), 1, + ACTIONS(7935), 1, sym__newline, - STATE(4172), 1, - sym_string, - STATE(5237), 1, + STATE(5748), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4173), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167650] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6821), 1, + [131591] = 8, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(7882), 1, sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + ACTIONS(8390), 1, + anon_sym_COMMA, + STATE(5808), 1, + aux_sym_cvar_def_repeat1, 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, - [167678] = 9, - ACTIONS(3918), 1, + [131617] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6502), 1, + ACTIONS(8392), 1, anon_sym_EQ, - ACTIONS(6507), 1, + ACTIONS(8394), 1, sym__newline, - STATE(4108), 1, - sym_string, - STATE(4961), 1, + STATE(5722), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4119), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167708] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6823), 1, - sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + [131641] = 3, 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, - [167736] = 9, - ACTIONS(3918), 1, + ACTIONS(8398), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8396), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [131657] = 8, + ACTIONS(7703), 1, + anon_sym_RPAREN, + ACTIONS(7705), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, + anon_sym_as, + ACTIONS(8362), 1, + anon_sym_if, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, + STATE(5754), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [131683] = 4, + ACTIONS(8189), 1, + anon_sym_DOT, + STATE(5055), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7822), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [131701] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6825), 1, + ACTIONS(8400), 1, anon_sym_EQ, - ACTIONS(6827), 1, + ACTIONS(8402), 1, sym__newline, - STATE(4202), 1, - sym_string, - STATE(5270), 1, + STATE(5824), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4203), 2, + STATE(5001), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167766] = 9, - ACTIONS(3918), 1, + [131725] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6829), 1, + ACTIONS(7607), 1, anon_sym_EQ, - ACTIONS(6831), 1, + ACTIONS(7609), 1, sym__newline, - STATE(4204), 1, - sym_string, - STATE(5272), 1, + STATE(5827), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4205), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167796] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6833), 1, - sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + [131749] = 8, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(8406), 1, + anon_sym_RBRACK, + STATE(5764), 1, + aux_sym_type_index_repeat1, 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, - [167824] = 9, - ACTIONS(3918), 1, + [131775] = 4, + ACTIONS(8276), 1, + anon_sym_DOT, + STATE(4965), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7981), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [131793] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6835), 1, + ACTIONS(8408), 1, anon_sym_EQ, - ACTIONS(6837), 1, + ACTIONS(8410), 1, sym__newline, - STATE(4229), 1, - sym_string, - STATE(4790), 1, + STATE(5734), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4230), 2, + STATE(5093), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167854] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6839), 1, - sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, - 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, - [167882] = 2, + [131817] = 4, + ACTIONS(8412), 1, + anon_sym_DOT, + STATE(4956), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4393), 9, + ACTIONS(6937), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [131835] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [167898] = 5, - ACTIONS(6366), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6841), 1, - anon_sym_as, + ACTIONS(8415), 1, + sym__newline, + STATE(5771), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 6, + [131861] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167920] = 9, - ACTIONS(6270), 1, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6846), 1, - anon_sym_from, - ACTIONS(6848), 1, - anon_sym_COMMA, - STATE(4512), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8417), 1, + sym__newline, + STATE(5773), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6844), 2, - sym__newline, - anon_sym_SEMI, - [167950] = 9, - ACTIONS(3918), 1, + [131887] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6850), 1, + ACTIONS(7977), 1, anon_sym_EQ, - ACTIONS(6852), 1, + ACTIONS(7979), 1, sym__newline, - STATE(4263), 1, - sym_string, - STATE(4933), 1, + STATE(5775), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4189), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167980] = 10, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, + [131911] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6854), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6856), 1, + ACTIONS(8419), 1, anon_sym_EQ, - ACTIONS(6858), 1, + ACTIONS(8421), 1, sym__newline, - STATE(1265), 1, - sym_c_function_definition, - STATE(4003), 1, - sym_c_parameters, - STATE(5089), 1, - aux_sym_cvar_def_repeat1, - STATE(5520), 1, - sym_template_params, + STATE(5777), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168012] = 10, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, + STATE(4973), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [131935] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6860), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6862), 1, + ACTIONS(8415), 1, + sym__newline, + ACTIONS(8423), 1, anon_sym_EQ, - ACTIONS(6864), 1, + STATE(5778), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [131959] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8425), 1, + anon_sym_EQ, + ACTIONS(8427), 1, sym__newline, - STATE(3110), 1, - sym_c_function_definition, - STATE(4028), 1, - sym_c_parameters, - STATE(4994), 1, - aux_sym_cvar_def_repeat1, - STATE(5347), 1, - sym_template_params, + STATE(5780), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168044] = 5, - ACTIONS(4791), 1, - anon_sym_as, - ACTIONS(6366), 1, - anon_sym_and, - ACTIONS(6368), 1, - anon_sym_or, + STATE(4974), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [131983] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8417), 1, + sym__newline, + ACTIONS(8429), 1, + anon_sym_EQ, + STATE(5781), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [132007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 6, + ACTIONS(8431), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8071), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [168066] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6866), 1, - sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + anon_sym_PIPE, + [132023] = 4, + ACTIONS(8433), 1, + anon_sym_DOT, + STATE(4965), 1, + aux_sym_class_definition_repeat2, 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, - [168094] = 10, - ACTIONS(6795), 1, + ACTIONS(6937), 5, anon_sym_LPAREN, - ACTIONS(6801), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [132041] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6866), 1, - sym__newline, - ACTIONS(6868), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6870), 1, + ACTIONS(8436), 1, anon_sym_EQ, - STATE(3127), 1, - sym_c_function_definition, - STATE(4028), 1, - sym_c_parameters, - STATE(5099), 1, - aux_sym_cvar_def_repeat1, - STATE(5347), 1, - sym_template_params, + ACTIONS(8438), 1, + sym__newline, + STATE(5736), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168126] = 5, - ACTIONS(6872), 1, - anon_sym_class, - ACTIONS(6874), 1, - anon_sym_ctypedef, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [132065] = 4, + ACTIONS(6953), 1, + anon_sym_DOT, + STATE(4148), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - [168148] = 4, - ACTIONS(4716), 1, + ACTIONS(7981), 5, + anon_sym_import, + anon_sym_cimport, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_PIPE, + [132083] = 7, + ACTIONS(2678), 1, + anon_sym_COLON, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2676), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [132107] = 8, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(8440), 1, + anon_sym_RBRACK, + STATE(6089), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 7, + [132133] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - [168168] = 2, + ACTIONS(8442), 1, + sym__newline, + STATE(5804), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4809), 9, + [132159] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [168184] = 3, - ACTIONS(6727), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6725), 8, + ACTIONS(8356), 1, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [168202] = 3, - ACTIONS(6238), 1, - anon_sym_STAR, + STATE(5805), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6240), 8, - anon_sym_LPAREN, + [132185] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [168220] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6876), 1, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8444), 1, sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + STATE(5806), 1, + aux_sym_cvar_decl_repeat2, 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, - [168248] = 9, - ACTIONS(3918), 1, + [132211] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6631), 1, + ACTIONS(8446), 1, anon_sym_EQ, - ACTIONS(6633), 1, + ACTIONS(8448), 1, sym__newline, - STATE(4222), 1, - sym_string, - STATE(5216), 1, + STATE(5807), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4224), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [168278] = 9, - ACTIONS(3918), 1, + [132235] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6878), 1, + ACTIONS(8450), 1, anon_sym_EQ, - ACTIONS(6880), 1, + ACTIONS(8452), 1, sym__newline, - STATE(4121), 1, - sym_string, - STATE(5249), 1, + STATE(5809), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4122), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [168308] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6882), 1, - sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, - 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, - [168336] = 3, - ACTIONS(5591), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4580), 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, - [168354] = 9, - ACTIONS(3918), 1, + [132259] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6884), 1, + ACTIONS(8454), 1, anon_sym_EQ, - ACTIONS(6886), 1, + ACTIONS(8456), 1, sym__newline, - STATE(4254), 1, - sym_string, - STATE(4777), 1, + STATE(5811), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4255), 2, + STATE(4986), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [168384] = 9, - ACTIONS(3918), 1, + [132283] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6888), 1, + ACTIONS(8458), 1, anon_sym_EQ, - ACTIONS(6890), 1, + ACTIONS(8460), 1, sym__newline, - STATE(4256), 1, - sym_string, - STATE(4781), 1, + STATE(6279), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4257), 2, + STATE(5079), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [168414] = 6, - ACTIONS(6745), 1, + [132307] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6747), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6751), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6753), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8462), 1, + sym__newline, + STATE(5851), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 5, + [132333] = 8, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(8464), 1, anon_sym_COMMA, + ACTIONS(8466), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [168438] = 2, + STATE(5724), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4801), 9, + [132359] = 6, + ACTIONS(7543), 1, + anon_sym_async, + ACTIONS(7545), 1, + anon_sym_for, + ACTIONS(8468), 1, + anon_sym_if, + ACTIONS(8470), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5115), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [132381] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [168454] = 5, - ACTIONS(6751), 1, - anon_sym_and, - ACTIONS(6753), 1, - anon_sym_or, - ACTIONS(6892), 1, - anon_sym_as, + ACTIONS(7816), 1, + sym__newline, + STATE(6054), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 6, + [132407] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [168476] = 4, - ACTIONS(6751), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6753), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8472), 1, + sym__newline, + STATE(5825), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 7, + [132433] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [168496] = 2, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8474), 1, + sym__newline, + STATE(5826), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 9, + [132459] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [168512] = 3, - ACTIONS(6388), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6390), 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, - [168530] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(8476), 1, sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + STATE(5828), 1, + aux_sym_cvar_decl_repeat2, 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, - [168558] = 3, - ACTIONS(6751), 1, + [132485] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8478), 1, + sym__newline, + STATE(5829), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 8, + [132511] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - sym_type_conversion, - [168576] = 8, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6897), 1, + ACTIONS(8480), 1, sym__newline, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, - 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, - [168604] = 3, - ACTIONS(6374), 1, - anon_sym_STAR, + STATE(5830), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6376), 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, - [168622] = 9, - ACTIONS(3918), 1, + [132537] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(8482), 1, anon_sym_EQ, - ACTIONS(6901), 1, + ACTIONS(8484), 1, sym__newline, - STATE(4153), 1, - sym_string, - STATE(4854), 1, + STATE(5831), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4179), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [168652] = 5, - ACTIONS(6903), 1, - anon_sym_class, - ACTIONS(6905), 1, - anon_sym_ctypedef, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - [168674] = 4, - ACTIONS(6872), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - [168693] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(6907), 1, - anon_sym_LPAREN, - ACTIONS(6909), 1, - anon_sym_COLON, - ACTIONS(6911), 1, - anon_sym_LBRACK, - ACTIONS(6913), 1, - sym__newline, - STATE(2947), 1, - sym_external_definition, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(5153), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168722] = 5, - ACTIONS(5999), 1, - anon_sym_DOT, - ACTIONS(6915), 1, - anon_sym_EQ, - STATE(4182), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6710), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [132561] = 5, + ACTIONS(7539), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [168743] = 5, - ACTIONS(6545), 1, + ACTIONS(7547), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7549), 1, anon_sym_or, - ACTIONS(6917), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(8486), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [168764] = 2, + anon_sym_RBRACK, + [132581] = 6, + ACTIONS(8488), 1, + anon_sym_if, + ACTIONS(8491), 1, + anon_sym_async, + ACTIONS(8494), 1, + anon_sym_for, + ACTIONS(8497), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 8, - anon_sym_DOT, + STATE(4988), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [132603] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - [168779] = 2, + ACTIONS(8499), 1, + sym__newline, + STATE(5840), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 8, - anon_sym_DOT, + [132629] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - [168794] = 2, + ACTIONS(8501), 1, + sym__newline, + STATE(5841), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4813), 8, - anon_sym_DOT, + [132655] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - [168809] = 2, + ACTIONS(8503), 1, + sym__newline, + STATE(5842), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4729), 8, - anon_sym_DOT, + [132681] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - [168824] = 9, - ACTIONS(6920), 1, - anon_sym_COLON, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(6930), 1, + ACTIONS(8505), 1, sym__newline, - STATE(4544), 1, - sym_exception_value, - STATE(5280), 1, - sym_gil_spec, + STATE(5843), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168853] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(6932), 1, - anon_sym_LPAREN, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(6936), 1, + [132707] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6938), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7796), 1, + anon_sym_EQ, + ACTIONS(7798), 1, sym__newline, - STATE(1102), 1, - sym_external_definition, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(5067), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168882] = 5, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6545), 1, - anon_sym_and, - ACTIONS(6547), 1, - anon_sym_or, + STATE(6206), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, - anon_sym_RPAREN, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [132731] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [168903] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4718), 8, - anon_sym_DOT, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, anon_sym_or, - [168918] = 2, + ACTIONS(8507), 1, + sym__newline, + STATE(5846), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4725), 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, - [168933] = 9, - ACTIONS(6714), 1, + [132757] = 5, + ACTIONS(7332), 1, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7344), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7346), 1, anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(6944), 1, - anon_sym_COLON, - ACTIONS(6946), 1, - anon_sym_by, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168962] = 6, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(8486), 4, anon_sym_if, - ACTIONS(6545), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [132777] = 5, + ACTIONS(7502), 1, + anon_sym_as, + ACTIONS(7510), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7512), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 4, + ACTIONS(8486), 4, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [168985] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + [132797] = 6, + ACTIONS(8497), 1, + anon_sym_RPAREN, + ACTIONS(8509), 1, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6848), 1, - anon_sym_COMMA, - STATE(4512), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8512), 1, + anon_sym_async, + ACTIONS(8515), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6948), 2, - sym__newline, - anon_sym_SEMI, - [169012] = 9, - ACTIONS(6770), 1, + STATE(4997), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [132819] = 8, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6950), 1, + ACTIONS(7884), 1, + sym__newline, + ACTIONS(8518), 1, anon_sym_COMMA, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(6954), 1, - anon_sym_RBRACK, - STATE(4884), 1, - aux_sym_subscript_repeat1, + STATE(5881), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169041] = 5, - ACTIONS(6354), 1, + [132845] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(7892), 1, + sym__newline, + STATE(5883), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, - anon_sym_COMMA, - anon_sym_if, + [132871] = 8, + ACTIONS(7338), 1, anon_sym_async, + ACTIONS(7340), 1, anon_sym_for, + ACTIONS(8520), 1, + anon_sym_COMMA, + ACTIONS(8522), 1, anon_sym_RBRACE, - [169062] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(6956), 1, - anon_sym_COLON, - ACTIONS(6958), 1, + STATE(5060), 1, + sym_for_in_clause, + STATE(5858), 1, + aux_sym_dictionary_repeat1, + STATE(6921), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [132897] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7886), 1, + anon_sym_EQ, + ACTIONS(7888), 1, sym__newline, - STATE(4451), 1, - sym_exception_value, - STATE(5389), 1, - sym_gil_spec, + STATE(5886), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169091] = 9, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(6942), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [132921] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6960), 1, - anon_sym_COLON, - ACTIONS(6962), 1, - anon_sym_by, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8524), 1, + anon_sym_EQ, + ACTIONS(8526), 1, + sym__newline, + STATE(5887), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169120] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(6936), 1, + STATE(5018), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [132945] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6964), 1, - anon_sym_LPAREN, - ACTIONS(6966), 1, - anon_sym_COLON, - ACTIONS(6968), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7890), 1, + anon_sym_EQ, + ACTIONS(7892), 1, sym__newline, - STATE(1083), 1, - sym_external_definition, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(5134), 1, - sym_argument_list, + STATE(5888), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169149] = 6, - ACTIONS(6537), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [132969] = 6, + ACTIONS(7993), 1, anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(7995), 1, anon_sym_if, - ACTIONS(6545), 1, + ACTIONS(8001), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(8003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 4, - anon_sym_RPAREN, + ACTIONS(5967), 3, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [169172] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(6970), 1, anon_sym_COLON, - ACTIONS(6972), 1, - anon_sym_with, - ACTIONS(6974), 1, - anon_sym_nogil, - ACTIONS(6976), 1, - sym__newline, - STATE(3989), 1, - sym_gil_spec, - STATE(4541), 1, - sym_exception_value, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169201] = 9, - ACTIONS(6770), 1, + anon_sym_by, + [132991] = 8, + ACTIONS(7786), 1, + anon_sym_RBRACK, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(6978), 1, + ACTIONS(8528), 1, anon_sym_COMMA, - ACTIONS(6980), 1, - anon_sym_RBRACK, - STATE(4935), 1, - aux_sym_subscript_repeat1, + STATE(5741), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169230] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(6972), 1, - anon_sym_with, - ACTIONS(6974), 1, - anon_sym_nogil, - ACTIONS(6982), 1, - anon_sym_COLON, - ACTIONS(6984), 1, - sym__newline, - STATE(4038), 1, - sym_gil_spec, - STATE(4561), 1, - sym_exception_value, + [133017] = 6, + ACTIONS(8497), 1, + anon_sym_RBRACE, + ACTIONS(8530), 1, + anon_sym_if, + ACTIONS(8533), 1, + anon_sym_async, + ACTIONS(8536), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169259] = 7, - ACTIONS(2709), 1, - anon_sym_except_STAR, - ACTIONS(2713), 1, - anon_sym_except, - ACTIONS(6986), 1, - anon_sym_finally, - STATE(1430), 1, - sym_finally_clause, + STATE(5006), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [133039] = 8, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(8539), 1, + anon_sym_COMMA, + ACTIONS(8541), 1, + anon_sym_RBRACE, + STATE(5060), 1, + sym_for_in_clause, + STATE(5865), 1, + aux_sym_dictionary_repeat1, + STATE(6782), 1, + sym__comprehension_clauses, 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, - [169284] = 5, - ACTIONS(6354), 1, - anon_sym_as, - ACTIONS(6366), 1, - anon_sym_and, - ACTIONS(6368), 1, - anon_sym_or, + [133065] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, + ACTIONS(5251), 7, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [169305] = 5, - ACTIONS(4427), 1, - anon_sym_DOT, - ACTIONS(6988), 1, + anon_sym_COLON, + anon_sym_in, anon_sym_EQ, - STATE(4094), 1, + anon_sym_LBRACK, + [133079] = 4, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(5033), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6710), 5, + ACTIONS(7822), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [169326] = 9, - ACTIONS(6770), 1, - anon_sym_as, - ACTIONS(6772), 1, - anon_sym_if, - ACTIONS(6774), 1, + [133097] = 5, + ACTIONS(8001), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8003), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(6990), 1, - anon_sym_COMMA, - ACTIONS(6992), 1, - anon_sym_RBRACK, - STATE(4969), 1, - aux_sym_subscript_repeat1, + ACTIONS(8543), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169355] = 5, - ACTIONS(6486), 1, + ACTIONS(5982), 4, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_by, + [133117] = 8, + ACTIONS(7518), 1, + anon_sym_RPAREN, + ACTIONS(7520), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6494), 1, + ACTIONS(8362), 1, + anon_sym_if, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(8366), 1, anon_sym_or, + STATE(6278), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [169376] = 9, - ACTIONS(6770), 1, + [133143] = 8, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(6994), 1, + ACTIONS(8464), 1, anon_sym_COMMA, - ACTIONS(6996), 1, - anon_sym_RBRACK, - STATE(4796), 1, - aux_sym_subscript_repeat1, + ACTIONS(8546), 1, + anon_sym_COLON, + STATE(5724), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169405] = 9, - ACTIONS(6770), 1, + [133169] = 8, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(6998), 1, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(7000), 1, + ACTIONS(8548), 1, anon_sym_RBRACK, - STATE(5003), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169434] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(7002), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_COLON, - ACTIONS(7006), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - sym__newline, - STATE(525), 1, - sym_external_definition, - STATE(4019), 1, - aux_sym_class_definition_repeat2, - STATE(5106), 1, - sym_argument_list, + STATE(5922), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169463] = 9, - ACTIONS(6770), 1, + [133195] = 8, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(7010), 1, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(7012), 1, + ACTIONS(8550), 1, anon_sym_RBRACK, - STATE(5028), 1, - aux_sym_subscript_repeat1, + STATE(5884), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169492] = 9, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7014), 1, - sym_identifier, - ACTIONS(7016), 1, - sym_string_start, - STATE(2951), 1, - sym_c_function_definition, - STATE(4028), 1, - sym_c_parameters, - STATE(4292), 1, - sym_string, - STATE(5347), 1, - sym_template_params, + [133221] = 8, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(7973), 1, + sym__newline, + ACTIONS(8552), 1, + anon_sym_COMMA, + STATE(6044), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169521] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7022), 1, - anon_sym_BSLASH, - ACTIONS(7018), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(4054), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(7020), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [169544] = 9, - ACTIONS(6770), 1, + [133247] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(7024), 1, - anon_sym_COMMA, - ACTIONS(7026), 1, - anon_sym_RBRACK, - STATE(5047), 1, - aux_sym_subscript_repeat1, + ACTIONS(8554), 1, + sym__newline, + STATE(5937), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169573] = 7, - ACTIONS(2741), 1, - anon_sym_except_STAR, - ACTIONS(2747), 1, - anon_sym_except, - ACTIONS(7028), 1, - anon_sym_finally, - STATE(1538), 1, - sym_finally_clause, + [133273] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8556), 1, + sym__newline, + STATE(5945), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(819), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(822), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [169598] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(7006), 1, + [133299] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7030), 1, - anon_sym_LPAREN, - ACTIONS(7032), 1, - anon_sym_COLON, - ACTIONS(7034), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7896), 1, + anon_sym_EQ, + ACTIONS(7898), 1, sym__newline, - STATE(526), 1, - sym_external_definition, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(5114), 1, - sym_argument_list, + STATE(5947), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169627] = 8, - ACTIONS(6270), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [133323] = 8, + ACTIONS(7786), 1, + anon_sym_RBRACE, + ACTIONS(8558), 1, + anon_sym_COMMA, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8566), 1, anon_sym_or, - ACTIONS(7038), 1, - anon_sym_COMMA, - STATE(4753), 1, + STATE(6311), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7036), 2, - sym__newline, - anon_sym_SEMI, - [169654] = 9, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, + [133349] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7016), 1, - sym_string_start, - ACTIONS(7040), 1, - sym_identifier, - STATE(1267), 1, - sym_c_function_definition, - STATE(4003), 1, - sym_c_parameters, - STATE(4300), 1, - sym_string, - STATE(5520), 1, - sym_template_params, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8568), 1, + anon_sym_EQ, + ACTIONS(8570), 1, + sym__newline, + STATE(5953), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169683] = 9, - ACTIONS(6770), 1, - anon_sym_as, - ACTIONS(6772), 1, - anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(7042), 1, + STATE(5047), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [133373] = 8, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(8572), 1, anon_sym_COMMA, - ACTIONS(7044), 1, - anon_sym_RBRACK, - STATE(5063), 1, - aux_sym_subscript_repeat1, + ACTIONS(8574), 1, + anon_sym_RBRACE, + STATE(5060), 1, + sym_for_in_clause, + STATE(5898), 1, + aux_sym_dictionary_repeat1, + STATE(6902), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169712] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(6936), 1, - anon_sym_LBRACK, - ACTIONS(7046), 1, + [133399] = 8, + ACTIONS(8576), 1, + sym_identifier, + ACTIONS(8578), 1, anon_sym_LPAREN, - ACTIONS(7048), 1, - anon_sym_COLON, - ACTIONS(7050), 1, + ACTIONS(8580), 1, + anon_sym_STAR, + STATE(5342), 1, + sym_dotted_name, + STATE(5569), 1, + sym_aliased_import, + STATE(6376), 1, + sym__import_list, + STATE(6378), 1, + sym_wildcard_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [133425] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8554), 1, sym__newline, - STATE(1089), 1, - sym_external_definition, - STATE(3990), 1, - aux_sym_class_definition_repeat2, - STATE(4804), 1, - sym_argument_list, + ACTIONS(8582), 1, + anon_sym_EQ, + STATE(5954), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169741] = 6, - ACTIONS(6270), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [133449] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3998), 4, + ACTIONS(7953), 3, sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [169764] = 9, - ACTIONS(6770), 1, + anon_sym_SEMI, + anon_sym_COMMA, + [133471] = 8, + ACTIONS(7634), 1, + anon_sym_RPAREN, + ACTIONS(7636), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(7052), 1, - anon_sym_COMMA, - ACTIONS(7054), 1, - anon_sym_RBRACK, - STATE(5077), 1, - aux_sym_subscript_repeat1, + STATE(5874), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169793] = 9, - ACTIONS(6770), 1, - anon_sym_as, - ACTIONS(6772), 1, - anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(7056), 1, + [133497] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_RBRACK, - STATE(5082), 1, - aux_sym_subscript_repeat1, + ACTIONS(8584), 1, + anon_sym_EQ, + ACTIONS(8586), 1, + sym__newline, + STATE(5955), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169822] = 9, - ACTIONS(6770), 1, + STATE(5049), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [133521] = 8, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(7060), 1, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(7062), 1, + ACTIONS(8588), 1, anon_sym_RBRACK, - STATE(5201), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169851] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(6972), 1, - anon_sym_with, - ACTIONS(6974), 1, - anon_sym_nogil, - ACTIONS(7064), 1, - anon_sym_COLON, - ACTIONS(7066), 1, - sym__newline, - STATE(4050), 1, - sym_gil_spec, - STATE(4511), 1, - sym_exception_value, + STATE(5917), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169880] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(6911), 1, + [133547] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7068), 1, - anon_sym_LPAREN, - ACTIONS(7070), 1, - anon_sym_COLON, - ACTIONS(7072), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8556), 1, sym__newline, - STATE(2954), 1, - sym_external_definition, - STATE(4061), 1, - aux_sym_class_definition_repeat2, - STATE(5155), 1, - sym_argument_list, + ACTIONS(8590), 1, + anon_sym_EQ, + STATE(5957), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169909] = 4, - ACTIONS(1313), 1, - sym_string_start, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [133571] = 4, + ACTIONS(8001), 1, + anon_sym_and, + ACTIONS(8003), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2179), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(7074), 5, + ACTIONS(5915), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [169928] = 9, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7016), 1, - sym_string_start, - ACTIONS(7076), 1, - sym_identifier, - STATE(538), 1, - sym_c_function_definition, - STATE(4005), 1, - sym_c_parameters, - STATE(4351), 1, - sym_string, - STATE(5395), 1, - sym_template_params, + anon_sym_by, + [133589] = 3, + ACTIONS(8001), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169957] = 9, - ACTIONS(6714), 1, + ACTIONS(5608), 6, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(7078), 1, anon_sym_COLON, - ACTIONS(7080), 1, anon_sym_by, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169986] = 9, - ACTIONS(6770), 1, - anon_sym_as, - ACTIONS(6772), 1, - anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, - ACTIONS(7082), 1, + [133605] = 8, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(8592), 1, anon_sym_COMMA, - ACTIONS(7084), 1, - anon_sym_RBRACK, - STATE(5135), 1, - aux_sym_subscript_repeat1, + ACTIONS(8594), 1, + anon_sym_RBRACE, + STATE(5060), 1, + sym_for_in_clause, + STATE(5929), 1, + aux_sym_dictionary_repeat1, + STATE(6894), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170015] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(7006), 1, - anon_sym_LBRACK, - ACTIONS(7086), 1, - anon_sym_LPAREN, - ACTIONS(7088), 1, - anon_sym_COLON, - ACTIONS(7090), 1, - sym__newline, - STATE(527), 1, - sym_external_definition, - STATE(4055), 1, - aux_sym_class_definition_repeat2, - STATE(5117), 1, - sym_argument_list, + [133631] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170044] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(6972), 1, - anon_sym_with, - ACTIONS(6974), 1, - anon_sym_nogil, - ACTIONS(7092), 1, - anon_sym_COLON, - ACTIONS(7094), 1, + ACTIONS(5174), 7, sym__newline, - STATE(4069), 1, - sym_gil_spec, - STATE(4461), 1, - sym_exception_value, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + [133645] = 4, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4286), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170073] = 8, - ACTIONS(6270), 1, + ACTIONS(7981), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [133663] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6664), 1, - anon_sym_COMMA, - STATE(4676), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8596), 1, + sym__newline, + STATE(6191), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6660), 2, + [133689] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7810), 1, + anon_sym_EQ, + ACTIONS(7812), 1, sym__newline, - anon_sym_SEMI, - [170100] = 8, - ACTIONS(6270), 1, + STATE(6086), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [133713] = 8, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6848), 1, + ACTIONS(8598), 1, + anon_sym_RPAREN, + ACTIONS(8600), 1, anon_sym_COMMA, - STATE(4512), 1, - aux_sym_assert_statement_repeat1, + STATE(6027), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7096), 2, - sym__newline, - anon_sym_SEMI, - [170127] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(7092), 1, - anon_sym_COLON, - ACTIONS(7094), 1, - sym__newline, - STATE(4461), 1, - sym_exception_value, - STATE(5469), 1, - sym_gil_spec, + [133739] = 7, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(8602), 1, + anon_sym_DOT, + ACTIONS(8604), 1, + anon_sym___future__, + STATE(5300), 1, + aux_sym_import_prefix_repeat1, + STATE(5708), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170156] = 9, - ACTIONS(6714), 1, + STATE(6418), 2, + sym_relative_import, + sym_dotted_name, + [133763] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(7098), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_by, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170185] = 7, - ACTIONS(2741), 1, - anon_sym_except_STAR, - ACTIONS(2747), 1, - anon_sym_except, - ACTIONS(7028), 1, - anon_sym_finally, - STATE(1457), 1, - sym_finally_clause, + ACTIONS(8606), 1, + sym__newline, + STATE(6192), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(823), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(827), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [170210] = 8, - ACTIONS(6270), 1, + [133789] = 8, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6848), 1, + ACTIONS(7904), 1, + sym__newline, + ACTIONS(8608), 1, anon_sym_COMMA, - STATE(4512), 1, - aux_sym_assert_statement_repeat1, + STATE(6268), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5916), 2, - sym__newline, - anon_sym_SEMI, - [170237] = 9, - ACTIONS(6714), 1, + [133815] = 8, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6942), 1, + ACTIONS(8464), 1, anon_sym_COMMA, - ACTIONS(7102), 1, + ACTIONS(8610), 1, anon_sym_COLON, - ACTIONS(7104), 1, - anon_sym_by, - STATE(4624), 1, + STATE(5724), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170266] = 7, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(6764), 1, - sym_identifier, - STATE(5107), 1, - sym_type_index, - STATE(5718), 1, - sym_type_qualifier, + [133841] = 4, + ACTIONS(1728), 1, + sym_string_start, 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, - [170291] = 4, - ACTIONS(6903), 1, - anon_sym_class, + STATE(2867), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(8071), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [133859] = 8, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(8612), 1, + anon_sym_COMMA, + ACTIONS(8614), 1, + anon_sym_RBRACE, + STATE(5060), 1, + sym_for_in_clause, + STATE(5968), 1, + aux_sym_dictionary_repeat1, + STATE(6753), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - [170310] = 6, - ACTIONS(6486), 1, + [133885] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6488), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6494), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8616), 1, + sym__newline, + STATE(6014), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 4, + [133911] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [170333] = 5, - ACTIONS(6494), 1, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(7106), 1, - anon_sym_as, + ACTIONS(8618), 1, + sym__newline, + STATE(6195), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 5, + [133937] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [170354] = 5, - ACTIONS(4791), 1, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6494), 1, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8620), 1, + sym__newline, + STATE(6015), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 5, + [133963] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [170375] = 4, - ACTIONS(4716), 1, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6494), 1, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8622), 1, + sym__newline, + STATE(6018), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [133989] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8624), 1, + anon_sym_EQ, + ACTIONS(8626), 1, + sym__newline, + STATE(6022), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 6, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134013] = 8, + ACTIONS(7597), 1, + anon_sym_RPAREN, + ACTIONS(7599), 1, anon_sym_COMMA, + ACTIONS(8360), 1, + anon_sym_as, + ACTIONS(8362), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, anon_sym_or, - [170394] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(6972), 1, - anon_sym_with, - ACTIONS(6974), 1, - anon_sym_nogil, - ACTIONS(7109), 1, - anon_sym_COLON, - ACTIONS(7111), 1, - sym__newline, - STATE(4062), 1, - sym_gil_spec, - STATE(4537), 1, - sym_exception_value, + STATE(5939), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170423] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(7109), 1, - anon_sym_COLON, - ACTIONS(7111), 1, + [134039] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8628), 1, + anon_sym_EQ, + ACTIONS(8630), 1, sym__newline, - STATE(4537), 1, - sym_exception_value, - STATE(5444), 1, - sym_gil_spec, + STATE(6026), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170452] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(6911), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134063] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7113), 1, - anon_sym_LPAREN, - ACTIONS(7115), 1, - anon_sym_COLON, - ACTIONS(7117), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8632), 1, + anon_sym_EQ, + ACTIONS(8634), 1, sym__newline, - STATE(2936), 1, - sym_external_definition, - STATE(3982), 1, - aux_sym_class_definition_repeat2, - STATE(5149), 1, - sym_argument_list, + STATE(6199), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170481] = 9, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134087] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7016), 1, - sym_string_start, - ACTIONS(7119), 1, - sym_identifier, - STATE(2961), 1, - sym_c_function_definition, - STATE(4028), 1, - sym_c_parameters, - STATE(4325), 1, - sym_string, - STATE(5347), 1, - sym_template_params, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8636), 1, + anon_sym_EQ, + ACTIONS(8638), 1, + sym__newline, + STATE(6034), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170510] = 9, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, + STATE(5069), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134111] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7016), 1, - sym_string_start, - ACTIONS(7121), 1, - sym_identifier, - STATE(545), 1, - sym_c_function_definition, - STATE(4005), 1, - sym_c_parameters, - STATE(4367), 1, - sym_string, - STATE(5395), 1, - sym_template_params, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8640), 1, + anon_sym_EQ, + ACTIONS(8642), 1, + sym__newline, + STATE(6225), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170539] = 6, - ACTIONS(3), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134135] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7800), 1, + anon_sym_EQ, + ACTIONS(7802), 1, + sym__newline, + STATE(6286), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7128), 1, - anon_sym_BSLASH, - ACTIONS(7123), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(4054), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(7125), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [170562] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(7006), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134159] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7131), 1, - anon_sym_LPAREN, - ACTIONS(7133), 1, - anon_sym_COLON, - ACTIONS(7135), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8644), 1, + anon_sym_EQ, + ACTIONS(8646), 1, sym__newline, - STATE(528), 1, - sym_external_definition, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(5124), 1, - sym_argument_list, + STATE(6106), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170591] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6848), 1, - anon_sym_COMMA, - STATE(4512), 1, - aux_sym_assert_statement_repeat1, + STATE(5099), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134183] = 4, + ACTIONS(8189), 1, + anon_sym_DOT, + STATE(4956), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6755), 2, - sym__newline, - anon_sym_SEMI, - [170618] = 5, - ACTIONS(6486), 1, + ACTIONS(7981), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6494), 1, - anon_sym_and, - ACTIONS(6496), 1, - anon_sym_or, + anon_sym_PIPE, + [134201] = 4, + ACTIONS(2001), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, + STATE(2743), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(8071), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, anon_sym_RBRACK, - [170639] = 6, - ACTIONS(6354), 1, + anon_sym_PIPE, + [134219] = 8, + ACTIONS(7625), 1, + anon_sym_RPAREN, + ACTIONS(7627), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6356), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6366), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(8366), 1, anon_sym_or, + STATE(6006), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7137), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [170662] = 5, - ACTIONS(6537), 1, + [134245] = 6, + ACTIONS(7993), 1, anon_sym_as, - ACTIONS(6545), 1, + ACTIONS(7995), 1, + anon_sym_if, + ACTIONS(8001), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(8003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, - anon_sym_RPAREN, + ACTIONS(5927), 3, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [170683] = 5, - ACTIONS(6537), 1, - anon_sym_as, - ACTIONS(6545), 1, - anon_sym_and, - ACTIONS(6547), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_by, + [134267] = 6, + ACTIONS(8648), 1, + anon_sym_EQ, + ACTIONS(8650), 1, + anon_sym_LBRACK, + STATE(5474), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, + ACTIONS(8376), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, + ACTIONS(8652), 2, + anon_sym_not, + anon_sym_or, + [134289] = 6, + ACTIONS(7338), 1, anon_sym_async, + ACTIONS(7340), 1, anon_sym_for, - [170704] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(6911), 1, + ACTIONS(8470), 1, + anon_sym_RBRACE, + ACTIONS(8654), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5131), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [134311] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7139), 1, - anon_sym_LPAREN, - ACTIONS(7141), 1, - anon_sym_COLON, - ACTIONS(7143), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8656), 1, + anon_sym_EQ, + ACTIONS(8658), 1, sym__newline, - STATE(2968), 1, - sym_external_definition, - STATE(3354), 1, - aux_sym_class_definition_repeat2, - STATE(5160), 1, - sym_argument_list, + STATE(6247), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170733] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(7145), 1, - anon_sym_COLON, - ACTIONS(7147), 1, + STATE(5125), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134335] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8606), 1, sym__newline, - STATE(4563), 1, - sym_exception_value, - STATE(5516), 1, - sym_gil_spec, + ACTIONS(8660), 1, + anon_sym_EQ, + STATE(6249), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170762] = 5, - ACTIONS(4791), 1, - anon_sym_as, - ACTIONS(6545), 1, - anon_sym_and, - ACTIONS(6547), 1, - anon_sym_or, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134359] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7814), 1, + anon_sym_EQ, + ACTIONS(7816), 1, + sym__newline, + STATE(6108), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 5, - anon_sym_RPAREN, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134383] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [170783] = 6, - ACTIONS(6270), 1, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8662), 1, + sym__newline, + STATE(6074), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + [134409] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - [170806] = 9, - ACTIONS(6920), 1, - anon_sym_COLON, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(6930), 1, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8664), 1, sym__newline, - ACTIONS(6972), 1, - anon_sym_with, - ACTIONS(6974), 1, - anon_sym_nogil, - STATE(3999), 1, - sym_gil_spec, - STATE(4544), 1, - sym_exception_value, + STATE(6075), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170835] = 6, - ACTIONS(6486), 1, + [134435] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6488), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6494), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8666), 1, + sym__newline, + STATE(6077), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 4, + [134461] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [170858] = 6, - ACTIONS(6537), 1, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6539), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6545), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8668), 1, + sym__newline, + STATE(6078), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 4, - anon_sym_RPAREN, + [134487] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [170881] = 9, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7016), 1, - sym_string_start, - ACTIONS(7149), 1, - sym_identifier, - STATE(1246), 1, - sym_c_function_definition, - STATE(4003), 1, - sym_c_parameters, - STATE(4363), 1, - sym_string, - STATE(5520), 1, - sym_template_params, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8670), 1, + sym__newline, + STATE(6080), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170910] = 9, - ACTIONS(6922), 1, - anon_sym_except, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(6928), 1, - anon_sym_noexcept, - ACTIONS(7151), 1, - anon_sym_COLON, - ACTIONS(7153), 1, + [134513] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8672), 1, + anon_sym_EQ, + ACTIONS(8674), 1, sym__newline, - STATE(4509), 1, - sym_exception_value, - STATE(5504), 1, - sym_gil_spec, + STATE(6085), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170939] = 8, - ACTIONS(6270), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134537] = 8, + ACTIONS(7522), 1, + anon_sym_RPAREN, + ACTIONS(7524), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(7157), 1, - anon_sym_COMMA, - STATE(4683), 1, - aux_sym_print_statement_repeat1, + STATE(5907), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7155), 2, - sym__newline, - anon_sym_SEMI, - [170966] = 5, - ACTIONS(6486), 1, + [134563] = 6, + ACTIONS(7993), 1, anon_sym_as, - ACTIONS(6494), 1, + ACTIONS(7995), 1, + anon_sym_if, + ACTIONS(8001), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(8003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, + ACTIONS(5947), 3, anon_sym_COMMA, - anon_sym_if, + anon_sym_COLON, + anon_sym_by, + [134585] = 6, + ACTIONS(7506), 1, anon_sym_async, + ACTIONS(7508), 1, anon_sym_for, - anon_sym_RBRACK, - [170987] = 6, - ACTIONS(7159), 1, + ACTIONS(8470), 1, + anon_sym_RPAREN, + ACTIONS(8676), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5101), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [134607] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7161), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7163), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(7165), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8394), 1, + sym__newline, + STATE(6274), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6662), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [171010] = 6, - ACTIONS(6270), 1, + [134633] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8678), 1, + sym__newline, + STATE(5931), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4966), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [171033] = 6, - ACTIONS(6486), 1, + [134659] = 8, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6488), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6494), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(8366), 1, anon_sym_or, + ACTIONS(8680), 1, + anon_sym_RPAREN, + ACTIONS(8682), 1, + anon_sym_COMMA, + STATE(6046), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [171056] = 9, - ACTIONS(6714), 1, + [134685] = 7, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(7167), 1, + ACTIONS(8684), 1, anon_sym_COLON, - ACTIONS(7169), 1, - anon_sym_by, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171085] = 5, - ACTIONS(7171), 1, - anon_sym_DOT, - ACTIONS(7173), 1, - anon_sym_EQ, - STATE(4106), 1, - aux_sym_class_definition_repeat2, + ACTIONS(2803), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [134709] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8438), 1, + sym__newline, + STATE(6284), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6710), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [171106] = 8, - ACTIONS(6270), 1, + [134735] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(7038), 1, - anon_sym_COMMA, - STATE(4694), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7175), 2, + ACTIONS(8686), 3, sym__newline, anon_sym_SEMI, - [171133] = 9, - ACTIONS(3901), 1, - anon_sym_DOT, - ACTIONS(6936), 1, + anon_sym_COMMA, + [134757] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7177), 1, - anon_sym_LPAREN, - ACTIONS(7179), 1, - anon_sym_COLON, - ACTIONS(7181), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7806), 1, + anon_sym_EQ, + ACTIONS(7808), 1, sym__newline, - STATE(1152), 1, - sym_external_definition, - STATE(4001), 1, - aux_sym_class_definition_repeat2, - STATE(4907), 1, - sym_argument_list, + STATE(6301), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171162] = 7, - ACTIONS(2709), 1, - anon_sym_except_STAR, - ACTIONS(2713), 1, - anon_sym_except, - ACTIONS(6986), 1, - anon_sym_finally, - STATE(1546), 1, - sym_finally_clause, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [134781] = 4, + ACTIONS(6953), 1, + anon_sym_DOT, + STATE(4967), 1, + aux_sym_class_definition_repeat2, 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, - [171187] = 6, - ACTIONS(7159), 1, + ACTIONS(7822), 5, + anon_sym_import, + anon_sym_cimport, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_PIPE, + [134799] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7161), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7163), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(7165), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8688), 1, + sym__newline, + STATE(6094), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [171210] = 5, - ACTIONS(7163), 1, + [134825] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(7165), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(7183), 1, - anon_sym_as, + ACTIONS(8690), 1, + sym__newline, + STATE(6095), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 5, - anon_sym_DOT, + [134851] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [171231] = 4, - ACTIONS(7163), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(7165), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8692), 1, + sym__newline, + STATE(6096), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 6, - anon_sym_DOT, + [134877] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [171250] = 3, - ACTIONS(7163), 1, + ACTIONS(7699), 1, anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8694), 1, + sym__newline, + STATE(6098), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 7, - anon_sym_DOT, + [134903] = 8, + ACTIONS(8202), 1, anon_sym_as, + ACTIONS(8204), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, anon_sym_or, - [171267] = 6, - ACTIONS(7159), 1, + ACTIONS(8696), 1, + anon_sym_COMMA, + ACTIONS(8698), 1, + anon_sym_COLON, + STATE(6178), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [134929] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7161), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7163), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(7165), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8700), 1, + sym__newline, + STATE(5930), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [171290] = 6, - ACTIONS(7159), 1, + [134955] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7161), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7163), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(7165), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8702), 1, + sym__newline, + STATE(5932), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [171313] = 6, - ACTIONS(6745), 1, + [134981] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6747), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6751), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6753), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8704), 1, + sym__newline, + STATE(5946), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7186), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [171336] = 4, - ACTIONS(4716), 1, + [135007] = 8, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6545), 1, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(8706), 1, + anon_sym_RBRACK, + STATE(5857), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_or, - [171355] = 9, - ACTIONS(6714), 1, + [135033] = 8, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6942), 1, + ACTIONS(8464), 1, anon_sym_COMMA, - ACTIONS(7188), 1, + ACTIONS(8708), 1, anon_sym_COLON, - ACTIONS(7190), 1, - anon_sym_by, - STATE(4624), 1, + STATE(5724), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171384] = 5, - ACTIONS(6354), 1, - anon_sym_as, - ACTIONS(6366), 1, - anon_sym_and, - ACTIONS(6368), 1, - anon_sym_or, + [135059] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8710), 1, + anon_sym_EQ, + ACTIONS(8712), 1, + sym__newline, + STATE(5952), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6940), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [171405] = 9, - ACTIONS(6714), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [135083] = 8, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6942), 1, + ACTIONS(8464), 1, anon_sym_COMMA, - ACTIONS(7192), 1, + ACTIONS(8714), 1, anon_sym_COLON, - ACTIONS(7194), 1, - anon_sym_by, - STATE(4624), 1, + STATE(5724), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171434] = 7, - ACTIONS(3918), 1, + [135109] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(8716), 1, anon_sym_EQ, - ACTIONS(6901), 1, + ACTIONS(8718), 1, sym__newline, - STATE(4845), 1, + STATE(5972), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171458] = 5, - ACTIONS(6537), 1, + [135133] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6545), 1, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6547), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(8720), 1, + sym__newline, + STATE(6105), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7196), 4, - anon_sym_RPAREN, + [135159] = 8, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [171478] = 6, - ACTIONS(7198), 1, - anon_sym_RPAREN, - ACTIONS(7200), 1, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(8464), 1, + anon_sym_COMMA, + ACTIONS(8722), 1, + anon_sym_COLON, + STATE(5724), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [135185] = 8, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(7203), 1, - anon_sym_async, - ACTIONS(7206), 1, - anon_sym_for, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(8464), 1, + anon_sym_COMMA, + ACTIONS(8724), 1, + anon_sym_COLON, + STATE(5724), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4093), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171500] = 4, - ACTIONS(4427), 1, - anon_sym_DOT, - STATE(3363), 1, - aux_sym_class_definition_repeat2, + [135211] = 4, + ACTIONS(1842), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6757), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(2592), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(8071), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [171518] = 8, - ACTIONS(6270), 1, + anon_sym_RBRACE, + [135229] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(8726), 1, + sym__newline, + STATE(5950), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [135255] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7209), 1, + ACTIONS(7909), 1, + anon_sym_EQ, + ACTIONS(7911), 1, sym__newline, - STATE(4770), 1, + STATE(5966), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171544] = 8, - ACTIONS(6360), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [135279] = 8, + ACTIONS(7338), 1, anon_sym_async, - ACTIONS(6362), 1, + ACTIONS(7340), 1, anon_sym_for, - ACTIONS(7211), 1, + ACTIONS(8728), 1, anon_sym_COMMA, - ACTIONS(7213), 1, + ACTIONS(8730), 1, anon_sym_RBRACE, - STATE(4099), 1, + STATE(5060), 1, sym_for_in_clause, - STATE(4867), 1, + STATE(6186), 1, aux_sym_dictionary_repeat1, - STATE(5740), 1, + STATE(6725), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171570] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + [135305] = 6, + ACTIONS(7506), 1, + anon_sym_async, + ACTIONS(7508), 1, + anon_sym_for, + ACTIONS(8676), 1, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7215), 1, - sym__newline, - STATE(4860), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8732), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171596] = 7, - ACTIONS(6770), 1, + STATE(4997), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [135327] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(7217), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3465), 2, + ACTIONS(8734), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - [171620] = 6, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(7219), 1, - anon_sym_if, - ACTIONS(7221), 1, - anon_sym_RBRACE, + [135349] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8736), 1, + anon_sym_EQ, + ACTIONS(8738), 1, + sym__newline, + STATE(5983), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4175), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171642] = 6, - ACTIONS(4433), 1, + STATE(5050), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [135373] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(7225), 1, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8678), 1, + sym__newline, + ACTIONS(8740), 1, anon_sym_EQ, - STATE(4552), 1, + STATE(5985), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5196), 2, sym_type_index, + aux_sym_cvar_decl_repeat1, + [135397] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7223), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7227), 2, - anon_sym_not, - anon_sym_or, - [171664] = 8, - ACTIONS(7229), 1, - anon_sym_RPAREN, - ACTIONS(7231), 1, + ACTIONS(6937), 7, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7233), 1, anon_sym_as, - ACTIONS(7235), 1, anon_sym_if, - ACTIONS(7237), 1, + anon_sym_COLON, + anon_sym_PIPE, + [135411] = 6, + ACTIONS(7993), 1, + anon_sym_as, + ACTIONS(7995), 1, + anon_sym_if, + ACTIONS(8001), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8003), 1, anon_sym_or, - STATE(5025), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171690] = 4, - ACTIONS(4427), 1, - anon_sym_DOT, - STATE(4094), 1, - aux_sym_class_definition_repeat2, + ACTIONS(7953), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_by, + [135433] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8742), 1, + anon_sym_EQ, + ACTIONS(8744), 1, + sym__newline, + STATE(5994), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6710), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(5052), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [135457] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - anon_sym_PIPE, - [171708] = 8, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(7241), 1, - anon_sym_COMMA, - ACTIONS(7243), 1, - anon_sym_RBRACE, - STATE(4099), 1, - sym_for_in_clause, - STATE(4923), 1, - aux_sym_dictionary_repeat1, - STATE(5564), 1, - sym__comprehension_clauses, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8746), 1, + sym__newline, + STATE(5810), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171734] = 8, - ACTIONS(6770), 1, + [135483] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(7245), 1, + ACTIONS(8748), 1, + sym__newline, + STATE(5844), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [135509] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7247), 1, - anon_sym_RBRACK, - STATE(4897), 1, - aux_sym_type_index_repeat1, + ACTIONS(8750), 1, + anon_sym_EQ, + ACTIONS(8752), 1, + sym__newline, + STATE(5988), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171760] = 8, - ACTIONS(6714), 1, + STATE(5143), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [135533] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8726), 1, + sym__newline, + ACTIONS(8754), 1, + anon_sym_EQ, + STATE(6003), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [135557] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(8702), 1, + sym__newline, + ACTIONS(8756), 1, + anon_sym_EQ, + STATE(5992), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [135581] = 8, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6942), 1, + ACTIONS(8758), 1, anon_sym_COMMA, - ACTIONS(7249), 1, + ACTIONS(8760), 1, anon_sym_COLON, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, + STATE(6159), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171786] = 4, - ACTIONS(7171), 1, - anon_sym_DOT, - STATE(4213), 1, - aux_sym_class_definition_repeat2, + [135607] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8762), 1, + sym__newline, + STATE(5731), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6757), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [171804] = 6, - ACTIONS(6541), 1, + [135633] = 6, + ACTIONS(7543), 1, anon_sym_async, - ACTIONS(6543), 1, + ACTIONS(7545), 1, anon_sym_for, - ACTIONS(7221), 1, - anon_sym_RPAREN, - ACTIONS(7251), 1, + ACTIONS(8468), 1, anon_sym_if, + ACTIONS(8732), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4131), 3, + STATE(4988), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [171826] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + [135655] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7253), 1, - anon_sym_EQ, - ACTIONS(7255), 1, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8764), 1, sym__newline, - STATE(5225), 1, + STATE(5854), 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, - [171850] = 5, - ACTIONS(6486), 1, + [135681] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6494), 1, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6496), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7196), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [171870] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6850), 1, - anon_sym_EQ, - ACTIONS(6852), 1, + ACTIONS(8766), 1, sym__newline, - STATE(4873), 1, + STATE(5866), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171894] = 6, - ACTIONS(7198), 1, - anon_sym_RBRACK, - ACTIONS(7257), 1, + [135707] = 8, + ACTIONS(7786), 1, + anon_sym_RPAREN, + ACTIONS(8360), 1, + anon_sym_as, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(7260), 1, - anon_sym_async, - ACTIONS(7263), 1, - anon_sym_for, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, + ACTIONS(8768), 1, + anon_sym_COMMA, + STATE(5948), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4111), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171916] = 8, - ACTIONS(6589), 1, - anon_sym_RPAREN, - ACTIONS(6591), 1, + [135733] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7233), 1, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(7701), 1, anon_sym_or, - STATE(5121), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8770), 1, + sym__newline, + STATE(5738), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171942] = 8, - ACTIONS(6714), 1, + [135759] = 8, + ACTIONS(7659), 1, + anon_sym_RPAREN, + ACTIONS(7661), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, + STATE(5762), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171968] = 8, - ACTIONS(6270), 1, + [135785] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6880), 1, + ACTIONS(8772), 1, sym__newline, - STATE(5187), 1, + STATE(5871), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171994] = 8, - ACTIONS(6360), 1, + [135811] = 8, + ACTIONS(7338), 1, anon_sym_async, - ACTIONS(6362), 1, + ACTIONS(7340), 1, anon_sym_for, - ACTIONS(7268), 1, + ACTIONS(8774), 1, anon_sym_COMMA, - ACTIONS(7270), 1, + ACTIONS(8776), 1, anon_sym_RBRACE, - STATE(4099), 1, + STATE(5060), 1, sym_for_in_clause, - STATE(4924), 1, + STATE(6203), 1, aux_sym_dictionary_repeat1, - STATE(5653), 1, + STATE(6761), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172020] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7272), 1, - anon_sym_EQ, - ACTIONS(7274), 1, + [135837] = 8, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(7971), 1, sym__newline, - STATE(4889), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8778), 1, + anon_sym_COMMA, + STATE(6304), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4137), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172044] = 7, - ACTIONS(3918), 1, + [135863] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7276), 1, + ACTIONS(8780), 1, anon_sym_EQ, - ACTIONS(7278), 1, + ACTIONS(8782), 1, sym__newline, - STATE(4890), 1, + STATE(5786), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, + STATE(5035), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172068] = 7, - ACTIONS(3918), 1, + [135887] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7280), 1, + ACTIONS(8784), 1, anon_sym_EQ, - ACTIONS(7282), 1, + ACTIONS(8786), 1, sym__newline, - STATE(5162), 1, + STATE(5892), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4171), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172092] = 7, - ACTIONS(3918), 1, + [135911] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6878), 1, + ACTIONS(7514), 1, anon_sym_EQ, - ACTIONS(6880), 1, + ACTIONS(7516), 1, sym__newline, - STATE(5231), 1, + STATE(5974), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172116] = 8, - ACTIONS(6569), 1, - anon_sym_RPAREN, - ACTIONS(6571), 1, + [135935] = 8, + ACTIONS(7338), 1, + anon_sym_async, + ACTIONS(7340), 1, + anon_sym_for, + ACTIONS(8788), 1, anon_sym_COMMA, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, - STATE(4880), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8790), 1, + anon_sym_RBRACE, + STATE(5060), 1, + sym_for_in_clause, + STATE(6231), 1, + aux_sym_dictionary_repeat1, + STATE(6819), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172142] = 7, - ACTIONS(3918), 1, + [135961] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7284), 1, + ACTIONS(8792), 1, anon_sym_EQ, - ACTIONS(7286), 1, - sym__newline, - STATE(4896), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4151), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172166] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7215), 1, + ACTIONS(8794), 1, sym__newline, - ACTIONS(7288), 1, - anon_sym_EQ, - STATE(4918), 1, + STATE(6258), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, + STATE(4993), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172190] = 7, - ACTIONS(3918), 1, + [135985] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6502), 1, + ACTIONS(7573), 1, anon_sym_EQ, - ACTIONS(6507), 1, + ACTIONS(7575), 1, sym__newline, - STATE(5222), 1, + STATE(6288), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172214] = 5, - ACTIONS(6354), 1, + [136009] = 7, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(7828), 1, + anon_sym_if, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6368), 1, + ACTIONS(7832), 1, anon_sym_or, + ACTIONS(8053), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7196), 4, - anon_sym_if, + ACTIONS(8796), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [136033] = 6, + ACTIONS(7338), 1, anon_sym_async, + ACTIONS(7340), 1, anon_sym_for, + ACTIONS(8654), 1, + anon_sym_if, + ACTIONS(8732), 1, anon_sym_RBRACE, - [172234] = 8, - ACTIONS(6714), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5006), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [136055] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8798), 1, + sym__newline, + STATE(5749), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [136081] = 8, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(7290), 1, + ACTIONS(8464), 1, anon_sym_COMMA, - ACTIONS(7292), 1, + ACTIONS(8800), 1, anon_sym_COLON, - STATE(5174), 1, - aux_sym_match_statement_repeat1, + STATE(5724), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172260] = 6, - ACTIONS(7198), 1, - anon_sym_RBRACE, - ACTIONS(7294), 1, + [136107] = 7, + ACTIONS(7826), 1, + anon_sym_as, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(7297), 1, - anon_sym_async, - ACTIONS(7300), 1, - anon_sym_for, + ACTIONS(7830), 1, + anon_sym_and, + ACTIONS(7832), 1, + anon_sym_or, + ACTIONS(8802), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4126), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [172282] = 6, - ACTIONS(6490), 1, - anon_sym_async, - ACTIONS(6492), 1, - anon_sym_for, - ACTIONS(7221), 1, + ACTIONS(2825), 2, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(7303), 1, + [136131] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8804), 1, + sym__newline, + STATE(5755), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4196), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [172304] = 8, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(7305), 1, + [136157] = 8, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7307), 1, - anon_sym_RBRACE, - STATE(4099), 1, - sym_for_in_clause, - STATE(4956), 1, - aux_sym_dictionary_repeat1, - STATE(5527), 1, - sym__comprehension_clauses, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8806), 1, + sym__newline, + STATE(6118), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172330] = 8, - ACTIONS(6270), 1, + [136183] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7309), 1, + ACTIONS(8808), 1, sym__newline, - STATE(5049), 1, + STATE(6127), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172356] = 8, - ACTIONS(6270), 1, + [136209] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6819), 1, + ACTIONS(8810), 1, sym__newline, - ACTIONS(7311), 1, - anon_sym_COMMA, - STATE(5227), 1, - aux_sym_cvar_def_repeat1, + STATE(6168), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172382] = 6, - ACTIONS(6541), 1, - anon_sym_async, - ACTIONS(6543), 1, - anon_sym_for, - ACTIONS(7251), 1, + [136235] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7313), 1, - anon_sym_RPAREN, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(8812), 1, + sym__newline, + STATE(6173), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4093), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [172404] = 8, - ACTIONS(6601), 1, - anon_sym_RPAREN, - ACTIONS(6603), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, + [136261] = 8, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8366), 1, anon_sym_or, - STATE(4932), 1, + ACTIONS(8814), 1, + anon_sym_RPAREN, + ACTIONS(8816), 1, + anon_sym_COMMA, + STATE(5978), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172430] = 8, - ACTIONS(6270), 1, + [136287] = 8, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7315), 1, + ACTIONS(7925), 1, sym__newline, - STATE(5052), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8818), 1, + anon_sym_COMMA, + STATE(6310), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172456] = 8, - ACTIONS(6270), 1, + [136313] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(8820), 1, + sym__newline, + STATE(6207), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [136339] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7317), 1, + ACTIONS(8822), 1, + anon_sym_EQ, + ACTIONS(8824), 1, sym__newline, - STATE(5053), 1, + STATE(6222), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172482] = 6, - ACTIONS(6714), 1, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [136363] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8208), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 3, - anon_sym_COMMA, + ACTIONS(7691), 3, + anon_sym_DOT, anon_sym_COLON, - anon_sym_by, - [172504] = 8, - ACTIONS(6270), 1, + anon_sym_PIPE, + [136385] = 4, + ACTIONS(8276), 1, + anon_sym_DOT, + STATE(4954), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7822), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [136403] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7319), 1, + ACTIONS(8826), 1, + anon_sym_EQ, + ACTIONS(8828), 1, sym__newline, - STATE(5065), 1, + STATE(5715), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172530] = 7, - ACTIONS(3918), 1, + STATE(4943), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [136427] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7321), 1, + ACTIONS(7569), 1, anon_sym_EQ, - ACTIONS(7323), 1, + ACTIONS(7571), 1, sym__newline, - STATE(4772), 1, + STATE(5716), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172554] = 8, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(7325), 1, + [136451] = 7, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7327), 1, - anon_sym_RBRACE, - STATE(4099), 1, - sym_for_in_clause, - STATE(4991), 1, - aux_sym_dictionary_repeat1, - STATE(5681), 1, - sym__comprehension_clauses, + ACTIONS(8830), 1, + anon_sym_EQ, + ACTIONS(8832), 1, + sym__newline, + STATE(6313), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172580] = 8, - ACTIONS(6270), 1, + STATE(5091), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [136475] = 8, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(7975), 1, + sym__newline, + ACTIONS(8834), 1, anon_sym_COMMA, - ACTIONS(7329), 1, + STATE(6061), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [136501] = 8, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(7802), 1, sym__newline, - STATE(4906), 1, + STATE(6084), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172606] = 7, - ACTIONS(3918), 1, + [136527] = 7, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7331), 1, - anon_sym_EQ, - ACTIONS(7333), 1, + ACTIONS(8620), 1, sym__newline, - STATE(5235), 1, + ACTIONS(8836), 1, + anon_sym_EQ, + STATE(6035), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4170), 2, + STATE(5196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172630] = 8, - ACTIONS(7233), 1, + [136551] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(7335), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5967), 2, anon_sym_RPAREN, - ACTIONS(7337), 1, anon_sym_COMMA, - STATE(5059), 1, - aux_sym_argument_list_repeat1, + [136572] = 6, + ACTIONS(8560), 1, + anon_sym_as, + ACTIONS(8562), 1, + anon_sym_if, + ACTIONS(8564), 1, + anon_sym_and, + ACTIONS(8566), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8838), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [136593] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8840), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [136606] = 4, + ACTIONS(8842), 1, + anon_sym_COMMA, + STATE(5156), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172656] = 8, - ACTIONS(6360), 1, + ACTIONS(8844), 4, + anon_sym_if, anon_sym_async, - ACTIONS(6362), 1, anon_sym_for, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(7341), 1, anon_sym_RBRACE, - STATE(4099), 1, - sym_for_in_clause, - STATE(4928), 1, - aux_sym_dictionary_repeat1, - STATE(5563), 1, - sym__comprehension_clauses, + [136623] = 4, + ACTIONS(8846), 1, + anon_sym_COMMA, + STATE(5156), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172682] = 8, - ACTIONS(6360), 1, + ACTIONS(8849), 4, + anon_sym_if, anon_sym_async, - ACTIONS(6362), 1, anon_sym_for, - ACTIONS(7343), 1, + anon_sym_RBRACE, + [136640] = 4, + ACTIONS(8851), 1, anon_sym_COMMA, - ACTIONS(7345), 1, + STATE(5233), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2207), 4, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - STATE(4099), 1, - sym_for_in_clause, - STATE(5015), 1, - aux_sym_dictionary_repeat1, - STATE(5799), 1, - sym__comprehension_clauses, + sym_type_conversion, + [136657] = 7, + ACTIONS(8853), 1, + anon_sym_DOT, + ACTIONS(8855), 1, + anon_sym_COMMA, + ACTIONS(8857), 1, + anon_sym_COLON, + ACTIONS(8859), 1, + anon_sym_RBRACK, + ACTIONS(8861), 1, + anon_sym_PIPE, + STATE(5949), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172708] = 7, - ACTIONS(3918), 1, + [136680] = 7, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6581), 1, - anon_sym_EQ, - ACTIONS(6583), 1, + ACTIONS(8863), 1, + sym_identifier, + STATE(3610), 1, + sym_c_function_definition, + STATE(4802), 1, + sym_c_parameters, + STATE(6469), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [136703] = 7, + ACTIONS(8009), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(8867), 1, + anon_sym_COLON, + ACTIONS(8869), 1, sym__newline, - STATE(5236), 1, - aux_sym_cvar_decl_repeat2, + STATE(3438), 1, + sym_external_definition, + STATE(6189), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172732] = 8, - ACTIONS(6650), 1, - anon_sym_RPAREN, - ACTIONS(6652), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, + [136726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8873), 1, + anon_sym_BSLASH, + ACTIONS(8871), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [136743] = 6, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8566), 1, anon_sym_or, - STATE(5000), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172758] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(8114), 2, anon_sym_COMMA, - ACTIONS(7347), 1, - sym__newline, - STATE(4908), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + [136764] = 4, + ACTIONS(8877), 1, + anon_sym_COMMA, + STATE(5241), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172784] = 7, - ACTIONS(6770), 1, - anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8875), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, - ACTIONS(7349), 1, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + [136781] = 4, + ACTIONS(8881), 1, + anon_sym_COMMA, + STATE(5242), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3507), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [172808] = 7, - ACTIONS(3918), 1, + ACTIONS(8879), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [136798] = 7, + ACTIONS(8284), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7351), 1, - anon_sym_EQ, - ACTIONS(7353), 1, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(8883), 1, + anon_sym_COLON, + ACTIONS(8885), 1, sym__newline, - STATE(4910), 1, - aux_sym_cvar_decl_repeat2, + STATE(1103), 1, + sym_external_definition, + STATE(6144), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172832] = 7, - ACTIONS(3918), 1, + [136821] = 7, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7355), 1, - anon_sym_EQ, - ACTIONS(7357), 1, - sym__newline, - STATE(4913), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8887), 1, + sym_identifier, + STATE(3645), 1, + sym_c_function_definition, + STATE(4802), 1, + sym_c_parameters, + STATE(6469), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172856] = 8, - ACTIONS(6672), 1, - anon_sym_RPAREN, - ACTIONS(6674), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, + [136844] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(7832), 1, anon_sym_or, - STATE(5044), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172882] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7953), 2, anon_sym_COMMA, - ACTIONS(7359), 1, - anon_sym_EQ, - ACTIONS(7361), 1, - sym__newline, - STATE(4798), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACK, + [136865] = 7, + ACTIONS(8853), 1, + anon_sym_DOT, + ACTIONS(8857), 1, + anon_sym_COLON, + ACTIONS(8861), 1, + anon_sym_PIPE, + ACTIONS(8889), 1, + anon_sym_COMMA, + ACTIONS(8891), 1, + anon_sym_RBRACK, + STATE(5763), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172906] = 8, - ACTIONS(6270), 1, + [136888] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6803), 1, - sym__newline, - ACTIONS(7363), 1, - anon_sym_COMMA, - STATE(5233), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172932] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(8893), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7365), 1, - anon_sym_EQ, - ACTIONS(7367), 1, + [136909] = 7, + ACTIONS(8009), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(8895), 1, + anon_sym_COLON, + ACTIONS(8897), 1, sym__newline, - STATE(4915), 1, - aux_sym_cvar_decl_repeat2, + STATE(3431), 1, + sym_external_definition, + STATE(6190), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4178), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172956] = 4, - ACTIONS(7171), 1, + [136932] = 4, + ACTIONS(4487), 1, anon_sym_DOT, - STATE(4106), 1, + STATE(5202), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6710), 5, - anon_sym_LPAREN, + ACTIONS(7822), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [172974] = 7, - ACTIONS(6770), 1, - anon_sym_as, - ACTIONS(6772), 1, - anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, - ACTIONS(6952), 1, - anon_sym_COLON, + [136949] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7369), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [172998] = 8, - ACTIONS(6617), 1, + ACTIONS(6937), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(6619), 1, anon_sym_COMMA, - ACTIONS(7233), 1, anon_sym_as, - ACTIONS(7235), 1, + anon_sym_PIPE, + [136962] = 6, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(7701), 1, anon_sym_or, - STATE(4965), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173024] = 8, - ACTIONS(6270), 1, + ACTIONS(8120), 2, + sym__newline, + anon_sym_SEMI, + [136983] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8899), 2, anon_sym_COMMA, - ACTIONS(7371), 1, + anon_sym_COLON, + [137004] = 7, + ACTIONS(8009), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(8901), 1, + anon_sym_COLON, + ACTIONS(8903), 1, sym__newline, - STATE(5090), 1, - aux_sym_cvar_decl_repeat2, + STATE(3451), 1, + sym_external_definition, + STATE(6194), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173050] = 6, - ACTIONS(6270), 1, + [137027] = 4, + ACTIONS(8907), 1, + anon_sym_PIPE, + STATE(5248), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8905), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6272), 1, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, + anon_sym_COLON, + [137044] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8911), 1, + anon_sym_BSLASH, + ACTIONS(8909), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [137061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8915), 1, + anon_sym_BSLASH, + ACTIONS(8913), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [137078] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8919), 1, + anon_sym_BSLASH, + ACTIONS(8917), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [137095] = 7, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(8921), 1, + sym_identifier, + STATE(3755), 1, + sym_c_function_definition, + STATE(4905), 1, + sym_c_parameters, + STATE(6389), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7373), 3, + [137118] = 7, + ACTIONS(8009), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(8923), 1, + anon_sym_COLON, + ACTIONS(8925), 1, sym__newline, - anon_sym_SEMI, + STATE(3433), 1, + sym_external_definition, + STATE(6196), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [137141] = 4, + ACTIONS(8929), 1, anon_sym_COMMA, - [173072] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + STATE(5164), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8927), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, + anon_sym_async, + anon_sym_for, + [137158] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6937), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7375), 1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [137171] = 7, + ACTIONS(8097), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(8931), 1, + anon_sym_COLON, + ACTIONS(8933), 1, sym__newline, - STATE(4947), 1, - aux_sym_cvar_decl_repeat2, + STATE(3764), 1, + sym_external_definition, + STATE(6164), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173098] = 6, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_EQ, - STATE(4587), 1, - sym_type_index, + [137194] = 4, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7223), 2, + ACTIONS(5915), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(7379), 2, - anon_sym_not, - anon_sym_or, - [173120] = 8, - ACTIONS(6270), 1, + [137211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8937), 1, + anon_sym_BSLASH, + ACTIONS(8935), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [137228] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7381), 1, - sym__newline, - STATE(4949), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173146] = 8, - ACTIONS(7233), 1, + ACTIONS(8939), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [137249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8943), 1, + anon_sym_BSLASH, + ACTIONS(8941), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [137266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8947), 1, + anon_sym_BSLASH, + ACTIONS(8945), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [137283] = 5, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, + ACTIONS(8949), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5982), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(7237), 1, + [137302] = 4, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(7383), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5915), 4, anon_sym_RPAREN, - ACTIONS(7385), 1, anon_sym_COMMA, - STATE(5075), 1, - aux_sym_argument_list_repeat1, + anon_sym_as, + anon_sym_if, + [137319] = 3, + ACTIONS(8364), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173172] = 2, + ACTIONS(5608), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_or, + [137334] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4610), 7, + ACTIONS(8952), 6, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, - anon_sym_LBRACK, - [173186] = 4, - ACTIONS(5999), 1, - anon_sym_DOT, - STATE(4182), 1, - aux_sym_class_definition_repeat2, + anon_sym_PIPE, + [137347] = 6, + ACTIONS(8360), 1, + anon_sym_as, + ACTIONS(8362), 1, + anon_sym_if, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6710), 5, + ACTIONS(5927), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [137368] = 3, + ACTIONS(8954), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8071), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [173204] = 8, - ACTIONS(6270), 1, + [137383] = 4, + ACTIONS(8958), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5196), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + ACTIONS(8956), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [137400] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5947), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7387), 1, - sym__newline, - STATE(4950), 1, - aux_sym_cvar_decl_repeat2, + [137421] = 7, + ACTIONS(8961), 1, + anon_sym_COMMA, + ACTIONS(8963), 1, + anon_sym_as, + ACTIONS(8965), 1, + anon_sym_if, + ACTIONS(8967), 1, + anon_sym_COLON, + STATE(5314), 1, + aux_sym_case_clause_repeat1, + STATE(6788), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173230] = 3, + [137444] = 4, + ACTIONS(8907), 1, + anon_sym_PIPE, + STATE(5176), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7391), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7389), 5, + ACTIONS(8969), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [173246] = 8, - ACTIONS(6755), 1, - anon_sym_RBRACE, - ACTIONS(7393), 1, - anon_sym_COMMA, - ACTIONS(7395), 1, + [137461] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(7397), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(7399), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(7401), 1, + ACTIONS(7832), 1, anon_sym_or, - STATE(5275), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173272] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6823), 1, - sym__newline, - ACTIONS(7403), 1, + ACTIONS(8971), 2, anon_sym_COMMA, - STATE(5262), 1, - aux_sym_cvar_def_repeat1, + anon_sym_RBRACK, + [137482] = 7, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(8973), 1, + sym_identifier, + STATE(3779), 1, + sym_c_function_definition, + STATE(4905), 1, + sym_c_parameters, + STATE(6389), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [137505] = 4, + ACTIONS(4487), 1, + anon_sym_DOT, + STATE(4284), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173298] = 8, - ACTIONS(6270), 1, + ACTIONS(7981), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [137522] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6831), 1, - sym__newline, - STATE(5263), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173324] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(8975), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(6825), 1, - anon_sym_EQ, - ACTIONS(6827), 1, - sym__newline, - STATE(5265), 1, - aux_sym_cvar_decl_repeat2, + [137543] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173348] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6789), 1, - anon_sym_EQ, - ACTIONS(6791), 1, + ACTIONS(4595), 6, sym__newline, - STATE(5194), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [137556] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173372] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7405), 1, - anon_sym_EQ, - ACTIONS(7407), 1, + ACTIONS(8977), 6, sym__newline, - STATE(5267), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [137569] = 6, + ACTIONS(8981), 1, + anon_sym_DOT, + ACTIONS(8983), 1, + anon_sym_COLON, + ACTIONS(8985), 1, + anon_sym_EQ, + ACTIONS(8987), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4201), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173396] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6829), 1, - anon_sym_EQ, - ACTIONS(6831), 1, + ACTIONS(8979), 2, sym__newline, - STATE(5268), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [137590] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173420] = 8, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(7157), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [137603] = 7, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(7409), 1, + ACTIONS(8989), 1, anon_sym_COMMA, - ACTIONS(7411), 1, + ACTIONS(8991), 1, + anon_sym_as, + ACTIONS(8993), 1, anon_sym_COLON, - STATE(4912), 1, - aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173446] = 6, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(7219), 1, + [137626] = 7, + ACTIONS(8097), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(8995), 1, + anon_sym_COLON, + ACTIONS(8997), 1, + sym__newline, + STATE(3793), 1, + sym_external_definition, + STATE(6166), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [137649] = 6, + ACTIONS(8360), 1, + anon_sym_as, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(7313), 1, - anon_sym_RBRACE, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4126), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [173468] = 8, - ACTIONS(6270), 1, + ACTIONS(8999), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [137670] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9001), 2, + sym__newline, anon_sym_COMMA, - ACTIONS(7413), 1, + [137691] = 7, + ACTIONS(8284), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9003), 1, + anon_sym_COLON, + ACTIONS(9005), 1, sym__newline, - STATE(4952), 1, - aux_sym_cvar_decl_repeat2, + STATE(1102), 1, + sym_external_definition, + STATE(6142), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173494] = 8, - ACTIONS(6270), 1, + [137714] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7415), 1, - sym__newline, - STATE(4955), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173520] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(4367), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7417), 1, - anon_sym_EQ, - ACTIONS(7419), 1, + [137735] = 6, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, + anon_sym_if, + ACTIONS(7699), 1, + anon_sym_and, + ACTIONS(7701), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9007), 2, sym__newline, - STATE(4957), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COMMA, + [137756] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173544] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(7953), 2, anon_sym_COMMA, - ACTIONS(7329), 1, - sym__newline, - ACTIONS(7421), 1, - anon_sym_EQ, - STATE(4917), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [137777] = 7, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(9009), 1, + sym_identifier, + STATE(1569), 1, + sym_c_function_definition, + STATE(4833), 1, + sym_c_parameters, + STATE(6318), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173568] = 3, + [137800] = 6, + ACTIONS(8360), 1, + anon_sym_as, + ACTIONS(8362), 1, + anon_sym_if, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7423), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7074), 5, + ACTIONS(9011), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [137821] = 6, + ACTIONS(8360), 1, anon_sym_as, + ACTIONS(8362), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [173584] = 2, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4646), 7, - sym__newline, - anon_sym_SEMI, + ACTIONS(7953), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, + [137842] = 6, + ACTIONS(8360), 1, + anon_sym_as, + ACTIONS(8362), 1, + anon_sym_if, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9013), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [137863] = 4, + ACTIONS(9015), 1, + anon_sym_COMMA, + STATE(5251), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8927), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [137880] = 7, + ACTIONS(4839), 1, + anon_sym_RBRACK, + ACTIONS(4926), 1, + sym_c_integer_signedness, + ACTIONS(4928), 1, + aux_sym_c_integer_type_token1, + ACTIONS(9017), 1, + aux_sym_integer_token1, + STATE(3200), 1, + sym_c_integer_type, + STATE(4640), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [137903] = 7, + ACTIONS(8097), 1, anon_sym_LBRACK, - [173598] = 4, - ACTIONS(5999), 1, - anon_sym_DOT, - STATE(3550), 1, - aux_sym_class_definition_repeat2, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9019), 1, + anon_sym_COLON, + ACTIONS(9021), 1, + sym__newline, + STATE(3774), 1, + sym_external_definition, + STATE(6170), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [137926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6757), 5, - anon_sym_LPAREN, + ACTIONS(9023), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8071), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [173616] = 8, - ACTIONS(6270), 1, + [137941] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7425), 1, - sym__newline, - STATE(5276), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173642] = 8, - ACTIONS(6714), 1, + ACTIONS(9025), 2, + sym__newline, + anon_sym_COMMA, + [137962] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(7427), 1, - anon_sym_COLON, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173668] = 8, - ACTIONS(6770), 1, + ACTIONS(8939), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [137983] = 6, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8566), 1, anon_sym_or, - ACTIONS(7245), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8999), 2, anon_sym_COMMA, - ACTIONS(7429), 1, - anon_sym_RBRACK, - STATE(4773), 1, - aux_sym_type_index_repeat1, + anon_sym_RBRACE, + [138004] = 7, + ACTIONS(7987), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9027), 1, + anon_sym_COLON, + ACTIONS(9029), 1, + sym__newline, + STATE(1146), 1, + sym_external_definition, + STATE(5975), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173694] = 8, - ACTIONS(6270), 1, + [138027] = 6, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8566), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7431), 1, - sym__newline, - STATE(5256), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173720] = 4, - ACTIONS(1474), 1, - sym_string_start, + ACTIONS(8120), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [138048] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(7074), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(9031), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [173738] = 8, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(7433), 1, + [138061] = 7, + ACTIONS(8097), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, anon_sym_COLON, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(9035), 1, + sym__newline, + STATE(3711), 1, + sym_external_definition, + STATE(6172), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173764] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + [138084] = 4, + ACTIONS(9037), 1, anon_sym_COMMA, - ACTIONS(7425), 1, - sym__newline, - ACTIONS(7435), 1, - anon_sym_EQ, - STATE(4806), 1, - aux_sym_cvar_decl_repeat2, + STATE(5274), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173788] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8927), 4, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7437), 1, - sym__newline, - STATE(4904), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [138101] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173814] = 8, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(6942), 1, + ACTIONS(9039), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [138114] = 4, + ACTIONS(9041), 1, anon_sym_COMMA, - ACTIONS(7439), 1, + STATE(5233), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6749), 4, anon_sym_COLON, - STATE(4624), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [138131] = 4, + ACTIONS(9044), 1, + anon_sym_COMMA, + STATE(5234), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173840] = 8, - ACTIONS(6623), 1, - anon_sym_RPAREN, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, + ACTIONS(7953), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [138148] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(7832), 1, anon_sym_or, - STATE(5257), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173866] = 8, - ACTIONS(6755), 1, + ACTIONS(9047), 2, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(6770), 1, + [138169] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(7441), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9049), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(5087), 1, - aux_sym_assert_statement_repeat1, + [138190] = 7, + ACTIONS(7987), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9051), 1, + anon_sym_COLON, + ACTIONS(9053), 1, + sym__newline, + STATE(1154), 1, + sym_external_definition, + STATE(6271), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173892] = 8, - ACTIONS(6714), 1, + [138213] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(7443), 1, - anon_sym_COLON, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173918] = 8, - ACTIONS(6595), 1, + ACTIONS(8120), 2, anon_sym_RPAREN, - ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(7233), 1, + [138234] = 7, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(9055), 1, + sym_identifier, + STATE(1631), 1, + sym_c_function_definition, + STATE(4799), 1, + sym_c_parameters, + STATE(6442), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [138257] = 6, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8566), 1, anon_sym_or, - STATE(5197), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173944] = 6, - ACTIONS(6490), 1, + ACTIONS(8939), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [138278] = 4, + ACTIONS(9057), 1, + anon_sym_COMMA, + STATE(5242), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8844), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(6492), 1, anon_sym_for, - ACTIONS(7303), 1, - anon_sym_if, - ACTIONS(7313), 1, - anon_sym_RBRACK, + [138295] = 4, + ACTIONS(9059), 1, + anon_sym_COMMA, + STATE(5242), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4111), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [173966] = 8, - ACTIONS(6270), 1, + ACTIONS(8849), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [138312] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9062), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7445), 1, + [138333] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9064), 6, sym__newline, - STATE(4780), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [138346] = 4, + ACTIONS(8907), 1, + anon_sym_PIPE, + STATE(5176), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173992] = 8, - ACTIONS(6714), 1, + ACTIONS(9066), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(6942), 1, + anon_sym_COLON, + [138363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(9070), 1, + anon_sym_BSLASH, + ACTIONS(9068), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [138380] = 3, + STATE(5176), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9072), 5, anon_sym_COMMA, - ACTIONS(7447), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, + anon_sym_PIPE, + [138395] = 4, + ACTIONS(9074), 1, + anon_sym_PIPE, + STATE(5248), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174018] = 8, - ACTIONS(6270), 1, + ACTIONS(9072), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6272), 1, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, + anon_sym_COLON, + [138412] = 4, + ACTIONS(9077), 1, anon_sym_COMMA, - ACTIONS(7449), 1, - sym__newline, - STATE(4782), 1, - aux_sym_cvar_decl_repeat2, + STATE(5275), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174044] = 8, - ACTIONS(6270), 1, + ACTIONS(8875), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [138429] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6876), 1, - sym__newline, - ACTIONS(7451), 1, - anon_sym_COMMA, - STATE(5195), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174070] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(8975), 2, anon_sym_COMMA, - ACTIONS(6835), 1, - anon_sym_EQ, - ACTIONS(6837), 1, - sym__newline, - STATE(4783), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [138450] = 4, + ACTIONS(9079), 1, + anon_sym_COMMA, + STATE(5278), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174094] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7453), 1, - anon_sym_EQ, - ACTIONS(7455), 1, - sym__newline, - STATE(4785), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8879), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [138467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4227), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174118] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(9081), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8396), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7445), 1, - sym__newline, - ACTIONS(7457), 1, - anon_sym_EQ, - STATE(4786), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_PIPE, + [138482] = 4, + ACTIONS(9083), 1, + anon_sym_COMMA, + STATE(5234), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174142] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7459), 1, + ACTIONS(2628), 4, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(7461), 1, - sym__newline, - STATE(4788), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + sym_type_conversion, + [138499] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4228), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174166] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + ACTIONS(9085), 6, sym__newline, - ACTIONS(7463), 1, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, anon_sym_EQ, - STATE(4789), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_PIPE, + [138512] = 6, + ACTIONS(8360), 1, + anon_sym_as, + ACTIONS(8362), 1, + anon_sym_if, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174190] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(8838), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7465), 1, - anon_sym_EQ, - ACTIONS(7467), 1, - sym__newline, - STATE(5210), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4221), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174214] = 7, - ACTIONS(3918), 1, + [138533] = 7, + ACTIONS(8284), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6631), 1, - anon_sym_EQ, - ACTIONS(6633), 1, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9087), 1, + anon_sym_COLON, + ACTIONS(9089), 1, sym__newline, - STATE(5211), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174238] = 8, - ACTIONS(6360), 1, - anon_sym_async, - ACTIONS(6362), 1, - anon_sym_for, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7471), 1, - anon_sym_RBRACE, - STATE(4099), 1, - sym_for_in_clause, - STATE(5136), 1, - aux_sym_dictionary_repeat1, - STATE(5551), 1, - sym__comprehension_clauses, + STATE(1115), 1, + sym_external_definition, + STATE(6146), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174264] = 4, - ACTIONS(2541), 1, - sym_string_start, + [138556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2337), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(7074), 4, + ACTIONS(9091), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8071), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [174282] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + anon_sym_RBRACE, + [138571] = 7, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(8991), 1, + anon_sym_as, + ACTIONS(9093), 1, anon_sym_COMMA, - ACTIONS(7473), 1, - sym__newline, - STATE(4938), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9095), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174308] = 8, - ACTIONS(6270), 1, + [138594] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7475), 1, - sym__newline, - STATE(4940), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174334] = 7, - ACTIONS(3427), 1, - anon_sym_COLON, - ACTIONS(6770), 1, + ACTIONS(9097), 2, + sym__newline, + anon_sym_SEMI, + [138615] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7832), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3425), 2, + ACTIONS(9099), 2, anon_sym_COMMA, anon_sym_RBRACK, - [174358] = 4, - ACTIONS(7477), 1, - anon_sym_DOT, - STATE(4213), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5739), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [174376] = 8, - ACTIONS(6270), 1, + [138636] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8893), 2, anon_sym_COMMA, - ACTIONS(7480), 1, + anon_sym_COLON, + [138657] = 7, + ACTIONS(7987), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9101), 1, + anon_sym_COLON, + ACTIONS(9103), 1, sym__newline, - STATE(4976), 1, - aux_sym_cvar_decl_repeat2, + STATE(1126), 1, + sym_external_definition, + STATE(5850), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174402] = 8, - ACTIONS(6714), 1, + [138680] = 6, + ACTIONS(9105), 1, + sym_identifier, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(9109), 1, + anon_sym_STAR, + ACTIONS(9111), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5594), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [138701] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(7482), 1, - anon_sym_COLON, - STATE(4624), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174428] = 8, - ACTIONS(6270), 1, + ACTIONS(9113), 2, + sym__newline, + anon_sym_SEMI, + [138722] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7484), 1, - sym__newline, - STATE(4979), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174454] = 8, - ACTIONS(6270), 1, + ACTIONS(4373), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [138743] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7486), 1, - sym__newline, - STATE(4980), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174480] = 8, - ACTIONS(6270), 1, + ACTIONS(9115), 2, + anon_sym_COMMA, + anon_sym_COLON, + [138764] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7488), 1, - sym__newline, - STATE(4983), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174506] = 8, - ACTIONS(6270), 1, + ACTIONS(8899), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [138785] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(6882), 1, - sym__newline, - ACTIONS(7490), 1, - anon_sym_COMMA, - STATE(5058), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174532] = 8, - ACTIONS(6270), 1, + ACTIONS(9117), 2, + sym__newline, + anon_sym_COMMA, + [138806] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(6890), 1, - sym__newline, - STATE(4767), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174558] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(8120), 2, anon_sym_COMMA, - ACTIONS(6884), 1, - anon_sym_EQ, - ACTIONS(6886), 1, - sym__newline, - STATE(4771), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACK, + [138827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174582] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7492), 1, - anon_sym_EQ, - ACTIONS(7494), 1, + ACTIONS(7691), 6, sym__newline, - STATE(4774), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [138840] = 4, + ACTIONS(9119), 1, + anon_sym_COMMA, + STATE(5155), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4091), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174606] = 8, - ACTIONS(6270), 1, + ACTIONS(8875), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [138857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9121), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8396), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [138872] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7496), 1, - sym__newline, - STATE(4807), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174632] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(2841), 2, anon_sym_COMMA, - ACTIONS(6888), 1, - anon_sym_EQ, - ACTIONS(6890), 1, - sym__newline, - STATE(4775), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACK, + [138893] = 4, + ACTIONS(9123), 1, + anon_sym_COMMA, + STATE(5156), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174656] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8879), 4, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [138910] = 4, + ACTIONS(9125), 1, anon_sym_COMMA, - ACTIONS(7498), 1, - sym__newline, - STATE(4808), 1, - aux_sym_cvar_decl_repeat2, + STATE(5278), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174682] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8844), 4, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7500), 1, - sym__newline, - STATE(4810), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [138927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174708] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(9127), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8396), 4, anon_sym_COMMA, - ACTIONS(7502), 1, - anon_sym_EQ, - ACTIONS(7504), 1, - sym__newline, - STATE(4811), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [138942] = 7, + ACTIONS(8853), 1, + anon_sym_DOT, + ACTIONS(8857), 1, + anon_sym_COLON, + ACTIONS(8861), 1, + anon_sym_PIPE, + ACTIONS(9129), 1, + anon_sym_COMMA, + ACTIONS(9131), 1, + anon_sym_RBRACK, + STATE(6281), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174732] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + [138965] = 4, + ACTIONS(9133), 1, anon_sym_COMMA, - ACTIONS(7506), 1, - anon_sym_EQ, - ACTIONS(7508), 1, - sym__newline, - STATE(4812), 1, - aux_sym_cvar_decl_repeat2, + STATE(5278), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174756] = 7, - ACTIONS(3918), 1, + ACTIONS(8849), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [138982] = 7, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7510), 1, - anon_sym_EQ, - ACTIONS(7512), 1, - sym__newline, - STATE(4814), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9136), 1, + sym_identifier, + STATE(1604), 1, + sym_c_function_definition, + STATE(4799), 1, + sym_c_parameters, + STATE(6442), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4247), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174780] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7498), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_EQ, - STATE(4815), 1, - aux_sym_cvar_decl_repeat2, + [139005] = 6, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(9138), 1, + sym_identifier, + ACTIONS(9140), 1, + anon_sym_STAR, + ACTIONS(9142), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174804] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7278), 1, - sym__newline, - STATE(4856), 1, - aux_sym_cvar_decl_repeat2, + STATE(5694), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [139026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174830] = 8, - ACTIONS(6270), 1, + ACTIONS(9144), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [139039] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7516), 1, - sym__newline, - STATE(4963), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174856] = 8, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_LPAREN, - ACTIONS(7522), 1, - anon_sym_STAR, - STATE(4434), 1, - sym_dotted_name, - STATE(4765), 1, - sym_aliased_import, - STATE(5279), 1, - sym__import_list, - STATE(5495), 1, - sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174882] = 8, - ACTIONS(6270), 1, + ACTIONS(8838), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [139060] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7524), 1, - sym__newline, - STATE(4966), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174908] = 8, - ACTIONS(6270), 1, + ACTIONS(2825), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [139081] = 6, + ACTIONS(7826), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(7828), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(7830), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(7832), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7526), 1, - sym__newline, - STATE(4972), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174934] = 7, - ACTIONS(5401), 1, - sym_identifier, - ACTIONS(7528), 1, - anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym___future__, - STATE(4492), 1, - aux_sym_import_prefix_repeat1, - STATE(4702), 1, - sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5303), 2, - sym_relative_import, - sym_dotted_name, - [174958] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(2839), 2, anon_sym_COMMA, - ACTIONS(7532), 1, - anon_sym_EQ, - ACTIONS(7534), 1, + anon_sym_RBRACK, + [139102] = 7, + ACTIONS(7987), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_COLON, + ACTIONS(9148), 1, sym__newline, - STATE(4977), 1, - aux_sym_cvar_decl_repeat2, + STATE(1127), 1, + sym_external_definition, + STATE(6032), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174982] = 8, - ACTIONS(6770), 1, + [139125] = 6, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8566), 1, anon_sym_or, - ACTIONS(7245), 1, - anon_sym_COMMA, - ACTIONS(7536), 1, - anon_sym_RBRACK, - STATE(4823), 1, - aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175008] = 8, - ACTIONS(6755), 1, - anon_sym_RPAREN, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(5967), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [139146] = 5, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8566), 1, anon_sym_or, - ACTIONS(7538), 1, - anon_sym_COMMA, - STATE(5116), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(9150), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175034] = 6, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(5982), 3, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6274), 1, + anon_sym_RBRACE, + [139165] = 4, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8566), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7540), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(5915), 4, anon_sym_COMMA, - [175056] = 8, - ACTIONS(6270), 1, anon_sym_as, - ACTIONS(6272), 1, anon_sym_if, - ACTIONS(6274), 1, + anon_sym_RBRACE, + [139182] = 3, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7542), 1, - sym__newline, - STATE(4826), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175082] = 4, - ACTIONS(2461), 1, - sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2229), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(7074), 4, + ACTIONS(5608), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, + anon_sym_if, anon_sym_RBRACE, - [175100] = 8, - ACTIONS(6270), 1, + anon_sym_or, + [139197] = 6, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8566), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7544), 1, - sym__newline, - STATE(4827), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175126] = 8, - ACTIONS(6270), 1, + ACTIONS(5927), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [139218] = 6, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8566), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5947), 2, anon_sym_COMMA, - ACTIONS(7546), 1, + anon_sym_RBRACE, + [139239] = 7, + ACTIONS(8284), 1, + anon_sym_LBRACK, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(9153), 1, + anon_sym_COLON, + ACTIONS(9155), 1, sym__newline, - STATE(4828), 1, - aux_sym_cvar_decl_repeat2, + STATE(1093), 1, + sym_external_definition, + STATE(6138), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [139262] = 5, + ACTIONS(8981), 1, + anon_sym_DOT, + ACTIONS(8983), 1, + anon_sym_COLON, + ACTIONS(8987), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9157), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [139281] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175152] = 8, - ACTIONS(6270), 1, + ACTIONS(9159), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [139294] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9049), 2, anon_sym_COMMA, - ACTIONS(7548), 1, - sym__newline, - STATE(4829), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [139315] = 7, + ACTIONS(7834), 1, + anon_sym_LPAREN, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(9161), 1, + sym_identifier, + STATE(1452), 1, + sym_c_function_definition, + STATE(4833), 1, + sym_c_parameters, + STATE(6318), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175178] = 8, - ACTIONS(6270), 1, + [139338] = 6, + ACTIONS(8560), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8562), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8564), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8566), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7953), 2, anon_sym_COMMA, - ACTIONS(7550), 1, - sym__newline, - STATE(4831), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + [139359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175204] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(9163), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8071), 4, anon_sym_COMMA, - ACTIONS(7552), 1, - anon_sym_EQ, - ACTIONS(7554), 1, - sym__newline, - STATE(4832), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [139374] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175228] = 8, - ACTIONS(6270), 1, + ACTIONS(9165), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6272), 1, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7556), 1, + anon_sym_COLON, + anon_sym_PIPE, + [139386] = 4, + ACTIONS(9169), 1, + anon_sym_DOT, + STATE(5520), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9167), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [139402] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9173), 1, sym__newline, - STATE(4838), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9175), 1, + sym__indent, + STATE(3814), 1, + sym_struct_suite, + STATE(3899), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175254] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, + [139422] = 6, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(7558), 1, - sym__newline, - STATE(4839), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9179), 1, + anon_sym_EQ, + ACTIONS(9181), 1, + anon_sym_RBRACK, + STATE(5776), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175280] = 8, - ACTIONS(6270), 1, + [139442] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(9183), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [139462] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9185), 5, anon_sym_COMMA, - ACTIONS(7560), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [139474] = 6, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9189), 1, sym__newline, - STATE(4840), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9191), 1, + sym__indent, + STATE(1965), 1, + sym_pass_statement, + STATE(1967), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175306] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7562), 1, + [139494] = 6, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9193), 1, sym__newline, - STATE(4836), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9195), 1, + sym__indent, + STATE(2003), 1, + sym_pass_statement, + STATE(2011), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175332] = 8, - ACTIONS(6270), 1, + [139514] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7564), 1, - sym__newline, - STATE(4843), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9197), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175358] = 8, - ACTIONS(6270), 1, + [139534] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(9203), 1, + anon_sym_else, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(9207), 1, anon_sym_or, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7566), 1, - sym__newline, - STATE(4842), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175384] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(7568), 1, - anon_sym_EQ, - ACTIONS(7570), 1, - sym__newline, - STATE(4846), 1, - aux_sym_cvar_decl_repeat2, + [139554] = 3, + STATE(5483), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4148), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175408] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(9072), 4, anon_sym_COMMA, - ACTIONS(7562), 1, - sym__newline, - ACTIONS(7572), 1, - anon_sym_EQ, - STATE(4849), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [139568] = 4, + ACTIONS(9209), 1, + anon_sym_PIPE, + STATE(5310), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175432] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(9072), 3, anon_sym_COMMA, - ACTIONS(7574), 1, - anon_sym_EQ, - ACTIONS(7576), 1, - sym__newline, - STATE(4850), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + [139584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4149), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175456] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(6828), 5, anon_sym_COMMA, - ACTIONS(7564), 1, - sym__newline, - ACTIONS(7578), 1, + anon_sym_COLON, anon_sym_EQ, - STATE(4851), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175480] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, + anon_sym_RBRACE, + sym_type_conversion, + [139596] = 5, + ACTIONS(9212), 1, anon_sym_COMMA, - ACTIONS(7580), 1, - sym__newline, - STATE(4993), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9214), 1, + anon_sym_RBRACE, + STATE(5792), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175506] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, + ACTIONS(8071), 2, + anon_sym_COLON, + anon_sym_PIPE, + [139614] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6662), 3, + ACTIONS(8952), 5, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [175528] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, + [139626] = 6, + ACTIONS(5063), 1, + anon_sym_COLON, + ACTIONS(8965), 1, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6500), 1, + ACTIONS(9216), 1, anon_sym_COMMA, - ACTIONS(7582), 1, - sym__newline, - STATE(4847), 1, - aux_sym_cvar_decl_repeat2, + STATE(5674), 1, + aux_sym_case_clause_repeat1, + STATE(6868), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175554] = 8, - ACTIONS(6770), 1, - anon_sym_as, - ACTIONS(6772), 1, - anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, - ACTIONS(7245), 1, - anon_sym_COMMA, - ACTIONS(7584), 1, - anon_sym_RBRACK, - STATE(5243), 1, - aux_sym_type_index_repeat1, + [139646] = 6, + ACTIONS(9218), 1, + anon_sym_COLON, + ACTIONS(9220), 1, + anon_sym_LBRACK, + ACTIONS(9222), 1, + anon_sym_nogil, + ACTIONS(9224), 1, + sym__newline, + STATE(5733), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175580] = 8, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(6895), 1, - sym__newline, - ACTIONS(7586), 1, - anon_sym_COMMA, - STATE(5168), 1, - aux_sym_cvar_def_repeat1, + [139666] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175606] = 7, - ACTIONS(3918), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, + ACTIONS(9226), 5, anon_sym_COMMA, - ACTIONS(7588), 1, - anon_sym_EQ, - ACTIONS(7590), 1, - sym__newline, - STATE(4803), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [139678] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4237), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175630] = 4, - ACTIONS(7592), 1, + ACTIONS(9228), 5, anon_sym_COMMA, - STATE(4320), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [139690] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 4, + ACTIONS(6838), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [175647] = 3, - ACTIONS(3), 2, + [139702] = 6, + ACTIONS(9230), 1, + anon_sym_LBRACE, + ACTIONS(9233), 1, + anon_sym_RBRACE, + ACTIONS(9235), 1, + aux_sym_format_specifier_token1, + STATE(5319), 1, + aux_sym_format_specifier_repeat1, + STATE(5814), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, - sym_line_continuation, - ACTIONS(7594), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7389), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [175662] = 4, - ACTIONS(7598), 1, - anon_sym_COMMA, - STATE(4266), 1, - aux_sym_for_in_clause_repeat1, + sym_line_continuation, + [139722] = 6, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9193), 1, + sym__newline, + ACTIONS(9195), 1, + sym__indent, + STATE(1196), 1, + sym_struct_suite, + STATE(2003), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7596), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [175679] = 6, - ACTIONS(7395), 1, + [139742] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7397), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7399), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7401), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9238), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7601), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [175700] = 2, + [139762] = 3, + ACTIONS(9240), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6207), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [175713] = 6, - ACTIONS(7605), 1, - anon_sym_DOT, - ACTIONS(7607), 1, - anon_sym_COLON, - ACTIONS(7609), 1, - anon_sym_EQ, - ACTIONS(7611), 1, + ACTIONS(8071), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [139776] = 4, + ACTIONS(9242), 1, anon_sym_PIPE, + STATE(5404), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7603), 2, - sym__newline, - anon_sym_SEMI, - [175734] = 7, - ACTIONS(7613), 1, + ACTIONS(8969), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7615), 1, anon_sym_as, - ACTIONS(7617), 1, - anon_sym_if, - ACTIONS(7619), 1, + [139792] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8116), 1, anon_sym_COLON, - STATE(4488), 1, - aux_sym_case_clause_repeat1, - STATE(5560), 1, - sym_if_clause, + ACTIONS(8118), 1, + sym__newline, + STATE(6508), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175757] = 4, - ACTIONS(7623), 1, - anon_sym_PIPE, - STATE(4335), 1, - aux_sym_union_pattern_repeat1, + [139812] = 5, + ACTIONS(9244), 1, + anon_sym_COMMA, + ACTIONS(9246), 1, + anon_sym_RBRACE, + STATE(5990), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(8071), 2, anon_sym_COLON, - [175774] = 6, - ACTIONS(6714), 1, + anon_sym_PIPE, + [139830] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8366), 1, anon_sym_or, + ACTIONS(9248), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7625), 2, - anon_sym_COMMA, - anon_sym_COLON, - [175795] = 6, - ACTIONS(6714), 1, + [139850] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9250), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7627), 2, - anon_sym_COMMA, - anon_sym_COLON, - [175816] = 4, - ACTIONS(7629), 1, - anon_sym_COMMA, - STATE(4276), 1, - aux_sym_for_in_clause_repeat1, + [139870] = 6, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9193), 1, + sym__newline, + ACTIONS(9195), 1, + sym__indent, + STATE(1252), 1, + sym_struct_suite, + STATE(2003), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7631), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [175833] = 6, - ACTIONS(7233), 1, + [139890] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8208), 1, anon_sym_or, + ACTIONS(9252), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7633), 2, - anon_sym_RPAREN, + [139910] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9254), 5, anon_sym_COMMA, - [175854] = 4, - ACTIONS(7635), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [139922] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9039), 5, + anon_sym_DOT, anon_sym_COMMA, - STATE(4276), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [139934] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7596), 4, + ACTIONS(8849), 5, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [175871] = 7, - ACTIONS(7638), 1, + [139946] = 5, + ACTIONS(8981), 1, anon_sym_DOT, - ACTIONS(7640), 1, - anon_sym_COMMA, - ACTIONS(7642), 1, + ACTIONS(9258), 1, anon_sym_COLON, - ACTIONS(7644), 1, - anon_sym_RBRACK, - ACTIONS(7646), 1, + ACTIONS(9260), 1, anon_sym_PIPE, - STATE(5205), 1, - aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175894] = 2, + ACTIONS(9256), 2, + sym__newline, + anon_sym_SEMI, + [139964] = 6, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_EQ, + ACTIONS(9264), 1, + anon_sym_RBRACK, + STATE(6059), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 6, - sym__newline, - anon_sym_SEMI, + [139984] = 5, + ACTIONS(8853), 1, anon_sym_DOT, + ACTIONS(8857), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(8861), 1, anon_sym_PIPE, - [175907] = 6, - ACTIONS(7395), 1, - anon_sym_as, - ACTIONS(7397), 1, - anon_sym_if, - ACTIONS(7399), 1, - anon_sym_and, - ACTIONS(7401), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7650), 2, + ACTIONS(9157), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [175928] = 6, - ACTIONS(7233), 1, + anon_sym_RBRACK, + [140002] = 6, + ACTIONS(5967), 1, + anon_sym_else, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4037), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [175949] = 6, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, + [140022] = 5, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9266), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7652), 2, - sym__newline, - anon_sym_COMMA, - [175970] = 7, - ACTIONS(6716), 1, + ACTIONS(5982), 2, anon_sym_if, - ACTIONS(6718), 1, + anon_sym_else, + [140040] = 6, + ACTIONS(9199), 1, + anon_sym_as, + ACTIONS(9201), 1, + anon_sym_if, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(9207), 1, anon_sym_or, - ACTIONS(7654), 1, - anon_sym_COMMA, - ACTIONS(7656), 1, - anon_sym_as, - ACTIONS(7658), 1, - anon_sym_COLON, + ACTIONS(9269), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175993] = 6, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, + [140060] = 4, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7186), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [176014] = 6, - ACTIONS(6770), 1, + ACTIONS(5915), 3, anon_sym_as, - ACTIONS(6772), 1, anon_sym_if, - ACTIONS(6774), 1, + anon_sym_else, + [140076] = 3, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7660), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [176035] = 6, - ACTIONS(6770), 1, + ACTIONS(5608), 4, anon_sym_as, - ACTIONS(6772), 1, anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, + anon_sym_else, anon_sym_or, + [140090] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9273), 1, + sym__newline, + ACTIONS(9275), 1, + sym__indent, + STATE(1320), 1, + sym_pass_statement, + STATE(1323), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3509), 2, + [140110] = 5, + ACTIONS(9279), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [176056] = 3, + ACTIONS(9281), 1, + anon_sym_as, + STATE(5598), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7662), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7074), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [176071] = 7, - ACTIONS(6936), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7666), 1, - anon_sym_COLON, - ACTIONS(7668), 1, + ACTIONS(9277), 2, sym__newline, - STATE(1157), 1, - sym_external_definition, - STATE(4943), 1, - sym_argument_list, + anon_sym_SEMI, + [140128] = 6, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9189), 1, + sym__newline, + ACTIONS(9191), 1, + sym__indent, + STATE(1613), 1, + sym_extern_suite, + STATE(1965), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176094] = 6, - ACTIONS(7233), 1, + [140148] = 6, + ACTIONS(5927), 1, + anon_sym_else, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [176115] = 4, - ACTIONS(7670), 1, - anon_sym_COMMA, - STATE(4295), 1, - aux_sym_for_in_clause_repeat1, + [140168] = 3, + ACTIONS(9283), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7631), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176132] = 6, - ACTIONS(7233), 1, + ACTIONS(8071), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, + anon_sym_RBRACK, + anon_sym_PIPE, + [140182] = 4, + ACTIONS(9285), 1, + anon_sym_PIPE, + STATE(5483), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7672), 2, - anon_sym_RPAREN, + ACTIONS(8969), 3, anon_sym_COMMA, - [176153] = 6, - ACTIONS(6714), 1, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, + anon_sym_RBRACK, + [140198] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7259), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_not, anon_sym_or, + [140210] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7674), 2, + ACTIONS(6749), 5, anon_sym_COMMA, anon_sym_COLON, - [176174] = 7, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7676), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [140222] = 5, + ACTIONS(9287), 1, sym_identifier, - STATE(2960), 1, - sym_c_function_definition, - STATE(4028), 1, - sym_c_parameters, - STATE(5347), 1, - sym_template_params, + ACTIONS(9289), 1, + anon_sym_COLON, + ACTIONS(9293), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176197] = 5, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, - ACTIONS(7678), 1, - anon_sym_as, + ACTIONS(9291), 2, + anon_sym_class, + anon_sym_struct, + [140240] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 3, - anon_sym_RPAREN, + ACTIONS(9031), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - [176216] = 4, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [140252] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(9295), 1, + anon_sym_COLON, + ACTIONS(9297), 1, + sym__newline, + STATE(6349), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [140272] = 6, + ACTIONS(9199), 1, anon_sym_as, + ACTIONS(9201), 1, anon_sym_if, - [176233] = 4, - ACTIONS(7681), 1, - anon_sym_COMMA, - STATE(4295), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(9205), 1, + anon_sym_and, + ACTIONS(9207), 1, + anon_sym_or, + ACTIONS(9299), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7596), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176250] = 6, - ACTIONS(7233), 1, + [140292] = 6, + ACTIONS(5947), 1, + anon_sym_else, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7601), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [176271] = 6, - ACTIONS(6770), 1, + [140312] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(7701), 1, anon_sym_or, + ACTIONS(9301), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [176292] = 7, - ACTIONS(6936), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7684), 1, + [140332] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(9303), 1, anon_sym_COLON, - ACTIONS(7686), 1, - sym__newline, - STATE(1065), 1, - sym_external_definition, - STATE(5034), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176315] = 6, - ACTIONS(6770), 1, + [140352] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8208), 1, anon_sym_or, + ACTIONS(9305), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [140372] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7186), 2, + ACTIONS(9307), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [176336] = 7, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7688), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [140384] = 5, + ACTIONS(9309), 1, sym_identifier, - STATE(1245), 1, - sym_c_function_definition, - STATE(4003), 1, - sym_c_parameters, - STATE(5520), 1, - sym_template_params, + ACTIONS(9311), 1, + anon_sym_COLON, + ACTIONS(9315), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176359] = 3, - ACTIONS(7237), 1, + ACTIONS(9313), 2, + anon_sym_class, + anon_sym_struct, + [140402] = 6, + ACTIONS(9199), 1, + anon_sym_as, + ACTIONS(9201), 1, + anon_sym_if, + ACTIONS(9205), 1, anon_sym_and, + ACTIONS(9207), 1, + anon_sym_or, + ACTIONS(9317), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [140422] = 4, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, anon_sym_or, - [176374] = 4, - ACTIONS(7623), 1, - anon_sym_PIPE, - STATE(4335), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7690), 4, - anon_sym_COMMA, + ACTIONS(5915), 3, anon_sym_as, anon_sym_if, anon_sym_COLON, - [176391] = 6, - ACTIONS(5157), 1, - anon_sym_STAR_STAR, - ACTIONS(7692), 1, + [140438] = 5, + ACTIONS(9319), 1, sym_identifier, - ACTIONS(7694), 1, - anon_sym_LPAREN, - ACTIONS(7696), 1, - anon_sym_STAR, + ACTIONS(9321), 1, + anon_sym_COLON, + ACTIONS(9325), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4720), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [176412] = 4, - ACTIONS(7698), 1, - anon_sym_COMMA, - STATE(4289), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(9323), 2, + anon_sym_class, + anon_sym_struct, + [140456] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7700), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176429] = 7, - ACTIONS(7638), 1, - anon_sym_DOT, - ACTIONS(7642), 1, - anon_sym_COLON, - ACTIONS(7646), 1, - anon_sym_PIPE, - ACTIONS(7702), 1, + ACTIONS(7259), 5, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7704), 1, - anon_sym_RBRACK, - STATE(4978), 1, - aux_sym_type_parameter_repeat1, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [140468] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176452] = 7, - ACTIONS(6911), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, + ACTIONS(9031), 5, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(7706), 1, anon_sym_COLON, - ACTIONS(7708), 1, - sym__newline, - STATE(2971), 1, - sym_external_definition, - STATE(5161), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [176475] = 4, - ACTIONS(3), 1, + anon_sym_EQ, + anon_sym_PIPE, + [140480] = 6, + ACTIONS(9327), 1, + anon_sym_LBRACE, + ACTIONS(9329), 1, + anon_sym_RBRACE, + ACTIONS(9331), 1, + aux_sym_format_specifier_token1, + STATE(5319), 1, + aux_sym_format_specifier_repeat1, + STATE(5814), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7712), 1, - anon_sym_BSLASH, - ACTIONS(7710), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176492] = 4, - ACTIONS(7714), 1, - anon_sym_COMMA, - STATE(4384), 1, - aux_sym_for_in_clause_repeat1, + [140500] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7700), 4, + ACTIONS(9333), 5, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [176509] = 4, - ACTIONS(7718), 1, + [140512] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9335), 1, + sym__newline, + ACTIONS(9337), 1, + sym__indent, + STATE(3818), 1, + sym_extern_suite, + STATE(3931), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [140532] = 5, + ACTIONS(8853), 1, + anon_sym_DOT, + ACTIONS(8857), 1, + anon_sym_COLON, + ACTIONS(8861), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9339), 2, anon_sym_COMMA, - STATE(4266), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [140550] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7716), 4, + ACTIONS(8849), 5, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [176526] = 4, - ACTIONS(7720), 1, - anon_sym_COMMA, - STATE(4295), 1, - aux_sym_for_in_clause_repeat1, + [140562] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8101), 1, + anon_sym_COLON, + ACTIONS(8103), 1, + sym__newline, + STATE(6556), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7716), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176543] = 2, + [140582] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7722), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(9341), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [176556] = 6, - ACTIONS(6770), 1, + [140594] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9343), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7601), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [176577] = 4, - ACTIONS(3901), 1, - anon_sym_DOT, - STATE(4354), 1, - aux_sym_class_definition_repeat2, + [140614] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6710), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(7236), 5, anon_sym_COMMA, - anon_sym_as, - [176594] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_not, anon_sym_or, + [140626] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7724), 2, - anon_sym_COMMA, + ACTIONS(9085), 5, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COLON, - [176615] = 3, + anon_sym_EQ, + anon_sym_PIPE, + [140638] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7726), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7389), 4, - anon_sym_RPAREN, + ACTIONS(9345), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [176630] = 6, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [140650] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9273), 1, + sym__newline, + ACTIONS(9275), 1, + sym__indent, + STATE(1199), 1, + sym_struct_suite, + STATE(1320), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7186), 2, - sym__newline, - anon_sym_SEMI, - [176651] = 6, - ACTIONS(7233), 1, + [140670] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9347), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7650), 2, - anon_sym_RPAREN, + [140690] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9349), 5, anon_sym_COMMA, - [176672] = 6, - ACTIONS(6270), 1, anon_sym_as, - ACTIONS(6272), 1, anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [140702] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7728), 2, - sym__newline, + ACTIONS(9351), 5, anon_sym_COMMA, - [176693] = 6, - ACTIONS(7233), 1, anon_sym_as, - ACTIONS(7235), 1, anon_sym_if, - ACTIONS(7237), 1, + anon_sym_COLON, + anon_sym_PIPE, + [140714] = 6, + ACTIONS(9327), 1, + anon_sym_LBRACE, + ACTIONS(9353), 1, + anon_sym_RBRACE, + ACTIONS(9355), 1, + aux_sym_format_specifier_token1, + STATE(5364), 1, + aux_sym_format_specifier_repeat1, + STATE(5814), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [140734] = 6, + ACTIONS(9199), 1, + anon_sym_as, + ACTIONS(9201), 1, + anon_sym_if, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9357), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7730), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [176714] = 4, - ACTIONS(7732), 1, - anon_sym_COMMA, - STATE(4320), 1, - aux_sym_assert_statement_repeat1, + [140754] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 4, + ACTIONS(9359), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [176731] = 6, - ACTIONS(6770), 1, + anon_sym_PIPE, + [140766] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9361), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [140786] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7735), 2, + ACTIONS(9363), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [176752] = 6, - ACTIONS(7233), 1, anon_sym_as, - ACTIONS(7235), 1, anon_sym_if, - ACTIONS(7237), 1, + anon_sym_COLON, + anon_sym_PIPE, + [140798] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8208), 1, anon_sym_or, + ACTIONS(9365), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [176773] = 2, + [140818] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5739), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(9367), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [176786] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7737), 6, + [140830] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9173), 1, sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [176799] = 7, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7739), 1, - sym_identifier, - STATE(3003), 1, - sym_c_function_definition, - STATE(4028), 1, - sym_c_parameters, - STATE(5347), 1, - sym_template_params, + ACTIONS(9175), 1, + sym__indent, + STATE(3828), 1, + sym_struct_suite, + STATE(3899), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176822] = 6, - ACTIONS(7233), 1, + [140850] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9369), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7625), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [176843] = 6, - ACTIONS(7233), 1, + [140870] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9371), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4049), 2, - anon_sym_RPAREN, + [140890] = 6, + ACTIONS(8404), 1, anon_sym_COMMA, - [176864] = 6, - ACTIONS(5035), 1, - anon_sym_STAR_STAR, - ACTIONS(7694), 1, + ACTIONS(9177), 1, anon_sym_LPAREN, - ACTIONS(7741), 1, - sym_identifier, - ACTIONS(7743), 1, - anon_sym_STAR, + ACTIONS(9373), 1, + anon_sym_EQ, + ACTIONS(9375), 1, + anon_sym_RBRACK, + STATE(6295), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4616), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [176885] = 7, - ACTIONS(6716), 1, + [140910] = 6, + ACTIONS(9199), 1, + anon_sym_as, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(9207), 1, anon_sym_or, - ACTIONS(7656), 1, - anon_sym_as, - ACTIONS(7745), 1, - anon_sym_COMMA, - ACTIONS(7747), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [176908] = 7, - ACTIONS(7638), 1, - anon_sym_DOT, - ACTIONS(7642), 1, - anon_sym_COLON, - ACTIONS(7646), 1, - anon_sym_PIPE, - ACTIONS(7749), 1, - anon_sym_COMMA, - ACTIONS(7751), 1, - anon_sym_RBRACK, - STATE(5163), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [176931] = 7, - ACTIONS(6911), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7753), 1, - anon_sym_COLON, - ACTIONS(7755), 1, - sym__newline, - STATE(3012), 1, - sym_external_definition, - STATE(5164), 1, - sym_argument_list, + ACTIONS(9377), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176954] = 6, - ACTIONS(6270), 1, + [140930] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8366), 1, anon_sym_or, + ACTIONS(9379), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7757), 2, - sym__newline, - anon_sym_COMMA, - [176975] = 3, - STATE(4335), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7759), 5, - anon_sym_COMMA, + [140950] = 6, + ACTIONS(9199), 1, anon_sym_as, + ACTIONS(9201), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [176990] = 4, - ACTIONS(7761), 1, - anon_sym_PIPE, - STATE(4334), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(9205), 1, + anon_sym_and, + ACTIONS(9207), 1, + anon_sym_or, + ACTIONS(9381), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7759), 4, - anon_sym_COMMA, + [140970] = 6, + ACTIONS(9199), 1, anon_sym_as, + ACTIONS(9201), 1, anon_sym_if, - anon_sym_COLON, - [177007] = 4, - ACTIONS(7623), 1, - anon_sym_PIPE, - STATE(4334), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(9205), 1, + anon_sym_and, + ACTIONS(9207), 1, + anon_sym_or, + ACTIONS(9383), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7764), 4, - anon_sym_COMMA, + [140990] = 6, + ACTIONS(8202), 1, anon_sym_as, + ACTIONS(8204), 1, anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(8486), 1, anon_sym_COLON, - [177024] = 4, - ACTIONS(7768), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4336), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - ACTIONS(7766), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [177041] = 6, - ACTIONS(6770), 1, + [141010] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(6772), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9385), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [177062] = 4, - ACTIONS(7771), 1, - anon_sym_COMMA, - STATE(4340), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7773), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [177079] = 6, - ACTIONS(7395), 1, + [141030] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7397), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7399), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7401), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9387), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7186), 2, + [141050] = 5, + ACTIONS(9389), 1, anon_sym_COMMA, + ACTIONS(9391), 1, anon_sym_RBRACE, - [177100] = 4, - ACTIONS(7775), 1, - anon_sym_COMMA, - STATE(4276), 1, - aux_sym_for_in_clause_repeat1, + STATE(5833), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7716), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [177117] = 6, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, + ACTIONS(8071), 2, + anon_sym_COLON, + anon_sym_PIPE, + [141068] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [177138] = 4, - ACTIONS(7777), 1, + ACTIONS(9393), 5, anon_sym_COMMA, - STATE(4342), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [141080] = 5, + ACTIONS(9395), 1, + sym_identifier, + ACTIONS(9397), 1, + anon_sym_COLON, + ACTIONS(9401), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5725), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [177155] = 6, - ACTIONS(7233), 1, + ACTIONS(9399), 2, + anon_sym_class, + anon_sym_struct, + [141098] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9403), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [177176] = 6, - ACTIONS(7395), 1, + [141118] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7397), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7399), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7401), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9405), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [177197] = 3, + [141138] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8154), 1, + anon_sym_COLON, + ACTIONS(8156), 1, + sym__newline, + STATE(6535), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7780), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7074), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [177212] = 6, - ACTIONS(7233), 1, + [141158] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9407), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [141178] = 4, + ACTIONS(9242), 1, + anon_sym_PIPE, + STATE(5480), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7782), 2, + ACTIONS(8905), 3, anon_sym_RPAREN, anon_sym_COMMA, - [177233] = 6, - ACTIONS(7233), 1, anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, + [141194] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7674), 2, - anon_sym_RPAREN, + ACTIONS(9409), 5, anon_sym_COMMA, - [177254] = 7, - ACTIONS(7006), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7784), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(7786), 1, + anon_sym_PIPE, + [141206] = 5, + ACTIONS(8576), 1, + sym_identifier, + STATE(5699), 1, + sym_dotted_name, + STATE(6104), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9411), 2, sym__newline, - STATE(520), 1, - sym_external_definition, - STATE(5140), 1, - sym_argument_list, + anon_sym_SEMI, + [141224] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9415), 1, + sym__newline, + ACTIONS(9417), 1, + sym__indent, + STATE(3466), 1, + sym_pass_statement, + STATE(3513), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177277] = 6, - ACTIONS(6270), 1, + [141244] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, + ACTIONS(9419), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7788), 2, - sym__newline, - anon_sym_SEMI, - [177298] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6662), 6, + [141264] = 6, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9189), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [177311] = 7, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7790), 1, - sym_identifier, - STATE(544), 1, - sym_c_function_definition, - STATE(4005), 1, - sym_c_parameters, - STATE(5395), 1, - sym_template_params, + ACTIONS(9191), 1, + sym__indent, + STATE(1314), 1, + sym_extern_suite, + STATE(1965), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177334] = 6, - ACTIONS(7233), 1, + [141284] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8208), 1, anon_sym_or, + ACTIONS(9421), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7724), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [177355] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7794), 1, - anon_sym_BSLASH, - ACTIONS(7792), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [177372] = 4, - ACTIONS(3901), 1, - anon_sym_DOT, - STATE(3354), 1, - aux_sym_class_definition_repeat2, + [141304] = 5, + ACTIONS(8576), 1, + sym_identifier, + STATE(5699), 1, + sym_dotted_name, + STATE(6104), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6757), 4, + ACTIONS(9411), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + [141322] = 6, + ACTIONS(8202), 1, anon_sym_as, - [177389] = 2, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(9423), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7796), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [177402] = 7, - ACTIONS(6911), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7798), 1, - anon_sym_COLON, - ACTIONS(7800), 1, + [141342] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9425), 1, sym__newline, - STATE(2952), 1, - sym_external_definition, - STATE(5165), 1, - sym_argument_list, + ACTIONS(9427), 1, + sym__indent, + STATE(3505), 1, + sym_pass_statement, + STATE(3572), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177425] = 2, + [141362] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7802), 6, - sym__newline, + ACTIONS(4595), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_except, + anon_sym_RBRACK, + anon_sym_PIPE, + [141374] = 6, + ACTIONS(8067), 1, anon_sym_with, + ACTIONS(8069), 1, anon_sym_nogil, - anon_sym_noexcept, - [177438] = 4, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4789), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [177455] = 7, - ACTIONS(7006), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7804), 1, + ACTIONS(8226), 1, anon_sym_COLON, - ACTIONS(7806), 1, + ACTIONS(8228), 1, sym__newline, - STATE(529), 1, - sym_external_definition, - STATE(5128), 1, - sym_argument_list, + STATE(6422), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7810), 1, - anon_sym_BSLASH, - ACTIONS(7808), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [177495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7814), 1, - anon_sym_BSLASH, - ACTIONS(7812), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [177512] = 4, - ACTIONS(7816), 1, - anon_sym_COMMA, - STATE(4309), 1, - aux_sym_for_in_clause_repeat1, + [141394] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9425), 1, + sym__newline, + ACTIONS(9427), 1, + sym__indent, + STATE(3505), 1, + sym_pass_statement, + STATE(3604), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7773), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [177529] = 7, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7818), 1, - sym_identifier, - STATE(1415), 1, - sym_c_function_definition, - STATE(4003), 1, - sym_c_parameters, - STATE(5520), 1, - sym_template_params, + [141414] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9425), 1, + sym__newline, + ACTIONS(9427), 1, + sym__indent, + STATE(3505), 1, + sym_pass_statement, + STATE(3521), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177552] = 4, - ACTIONS(7820), 1, - anon_sym_COMMA, - STATE(4342), 1, - aux_sym__patterns_repeat1, + [141434] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 4, + ACTIONS(8977), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [177569] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [141446] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(9429), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [177582] = 6, - ACTIONS(7233), 1, + [141458] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9431), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7824), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [177603] = 7, - ACTIONS(6795), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(7826), 1, - sym_identifier, - STATE(560), 1, - sym_c_function_definition, - STATE(4005), 1, - sym_c_parameters, - STATE(5395), 1, - sym_template_params, + [141478] = 6, + ACTIONS(9433), 1, + anon_sym_COLON, + ACTIONS(9435), 1, + anon_sym_EQ, + ACTIONS(9437), 1, + anon_sym_RBRACE, + ACTIONS(9439), 1, + sym_type_conversion, + STATE(6895), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [141498] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9441), 1, + sym__newline, + ACTIONS(9443), 1, + sym__indent, + STATE(1612), 1, + sym_pass_statement, + STATE(1821), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177626] = 7, - ACTIONS(6936), 1, + [141518] = 6, + ACTIONS(9220), 1, anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7828), 1, + ACTIONS(9445), 1, anon_sym_COLON, - ACTIONS(7830), 1, + ACTIONS(9447), 1, + anon_sym_nogil, + ACTIONS(9449), 1, sym__newline, - STATE(1095), 1, - sym_external_definition, - STATE(4818), 1, - sym_argument_list, + STATE(6248), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177649] = 2, + [141538] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7832), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(7691), 5, anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [177662] = 5, - ACTIONS(7605), 1, - anon_sym_DOT, - ACTIONS(7607), 1, + [141550] = 6, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(9451), 1, + anon_sym_as, + ACTIONS(9453), 1, anon_sym_COLON, - ACTIONS(7611), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7834), 3, - sym__newline, - anon_sym_SEMI, + [141570] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7300), 5, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [177681] = 7, - ACTIONS(6936), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, + anon_sym_not, + anon_sym_or, + [141582] = 3, + ACTIONS(9455), 1, anon_sym_LPAREN, - ACTIONS(7836), 1, - anon_sym_COLON, - ACTIONS(7838), 1, - sym__newline, - STATE(1088), 1, - sym_external_definition, - STATE(5229), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177704] = 6, - ACTIONS(6770), 1, + ACTIONS(8071), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6772), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [141596] = 4, + ACTIONS(9457), 1, + anon_sym_PIPE, + STATE(5468), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8969), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [141612] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6774), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6776), 1, + ACTIONS(8208), 1, anon_sym_or, + ACTIONS(9459), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7840), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [177725] = 6, - ACTIONS(6270), 1, + [141632] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6272), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6274), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8208), 1, anon_sym_or, + ACTIONS(9461), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7842), 2, - sym__newline, - anon_sym_SEMI, - [177746] = 7, - ACTIONS(7006), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7844), 1, + [141652] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, + anon_sym_if, + ACTIONS(8206), 1, + anon_sym_and, + ACTIONS(8208), 1, + anon_sym_or, + ACTIONS(9463), 1, anon_sym_COLON, - ACTIONS(7846), 1, - sym__newline, - STATE(518), 1, - sym_external_definition, - STATE(5133), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177769] = 3, - ACTIONS(7848), 1, - anon_sym_LPAREN, + [141672] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 5, + ACTIONS(9465), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177784] = 3, + [141684] = 4, + ACTIONS(9285), 1, + anon_sym_PIPE, + STATE(5483), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7850), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7074), 4, + ACTIONS(9066), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [177799] = 7, - ACTIONS(6911), 1, - anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7852), 1, + anon_sym_RBRACK, + [141700] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7316), 5, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(7854), 1, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [141712] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9335), 1, sym__newline, - STATE(2948), 1, - sym_external_definition, - STATE(5169), 1, - sym_argument_list, + ACTIONS(9337), 1, + sym__indent, + STATE(3831), 1, + sym_extern_suite, + STATE(3931), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177822] = 2, + [141732] = 6, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9193), 1, + sym__newline, + ACTIONS(9195), 1, + sym__indent, + STATE(1469), 1, + sym_struct_suite, + STATE(2003), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7856), 6, + [141752] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9441), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(9443), 1, + sym__indent, + STATE(1413), 1, + sym_extern_suite, + STATE(1612), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [141772] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7294), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [177835] = 2, + anon_sym_not, + anon_sym_or, + [141784] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7858), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(8840), 5, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [141796] = 5, + ACTIONS(9467), 1, + anon_sym_COMMA, + ACTIONS(9469), 1, + anon_sym_RBRACE, + STATE(6083), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8071), 2, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [177848] = 6, - ACTIONS(6770), 1, + [141814] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9471), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6772), 1, anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [141826] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9415), 1, + sym__newline, + ACTIONS(9417), 1, + sym__indent, + STATE(3466), 1, + sym_pass_statement, + STATE(3634), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [141846] = 5, + ACTIONS(9473), 1, + sym_identifier, + ACTIONS(9475), 1, + anon_sym_COLON, + ACTIONS(9479), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3493), 2, + ACTIONS(9477), 2, + anon_sym_class, + anon_sym_struct, + [141864] = 4, + ACTIONS(9481), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [177869] = 2, + STATE(5444), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4097), 6, + ACTIONS(7953), 3, sym__newline, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_from, + [141880] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4506), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [177882] = 6, - ACTIONS(6770), 1, - anon_sym_as, - ACTIONS(6772), 1, - anon_sym_if, - ACTIONS(6774), 1, - anon_sym_and, - ACTIONS(6776), 1, - anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [141892] = 6, + ACTIONS(8063), 1, + anon_sym_COLON, + ACTIONS(8065), 1, + sym__newline, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + STATE(6594), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [141912] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9273), 1, + sym__newline, + ACTIONS(9275), 1, + sym__indent, + STATE(1320), 1, + sym_pass_statement, + STATE(1953), 1, + sym_struct_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [141932] = 6, + ACTIONS(9433), 1, + anon_sym_COLON, + ACTIONS(9484), 1, + anon_sym_EQ, + ACTIONS(9486), 1, + anon_sym_RBRACE, + ACTIONS(9488), 1, + sym_type_conversion, + STATE(6780), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3465), 2, + [141952] = 4, + ACTIONS(9490), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [177903] = 6, - ACTIONS(6714), 1, + STATE(5444), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2628), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [141968] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9441), 1, + sym__newline, + ACTIONS(9443), 1, + sym__indent, + STATE(1268), 1, + sym_extern_suite, + STATE(1612), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [141988] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8366), 1, anon_sym_or, + ACTIONS(9492), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142008] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7824), 2, + ACTIONS(8952), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - [177924] = 4, - ACTIONS(7860), 1, - anon_sym_COMMA, - STATE(4266), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + anon_sym_PIPE, + [142020] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9425), 1, + sym__newline, + ACTIONS(9427), 1, + sym__indent, + STATE(3505), 1, + sym_pass_statement, + STATE(3684), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7631), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [177941] = 3, + [142040] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7389), 4, + ACTIONS(7236), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [142052] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9441), 1, + sym__newline, + ACTIONS(9443), 1, + sym__indent, + STATE(1612), 1, + sym_pass_statement, + STATE(1762), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142072] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9335), 1, + sym__newline, + ACTIONS(9337), 1, + sym__indent, + STATE(3862), 1, + sym_extern_suite, + STATE(3931), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142092] = 6, + ACTIONS(9220), 1, + anon_sym_LBRACK, + ACTIONS(9494), 1, + anon_sym_COLON, + ACTIONS(9496), 1, + anon_sym_nogil, + ACTIONS(9498), 1, + sym__newline, + STATE(6237), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142112] = 6, + ACTIONS(8360), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [177956] = 6, - ACTIONS(7395), 1, - anon_sym_as, - ACTIONS(7397), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(7399), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(7401), 1, + ACTIONS(8366), 1, anon_sym_or, + ACTIONS(9500), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4837), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [177977] = 5, - ACTIONS(7399), 1, - anon_sym_and, - ACTIONS(7401), 1, - anon_sym_or, - ACTIONS(7864), 1, - anon_sym_as, + [142132] = 4, + ACTIONS(9504), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4741), 3, + ACTIONS(9502), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_RBRACE, - [177996] = 4, - ACTIONS(7399), 1, - anon_sym_and, - ACTIONS(7401), 1, + anon_sym_COLON, + ACTIONS(9506), 2, + anon_sym_not, anon_sym_or, + [142148] = 5, + ACTIONS(9508), 1, + sym_identifier, + ACTIONS(9510), 1, + anon_sym_COLON, + ACTIONS(9514), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 4, - anon_sym_COMMA, + ACTIONS(9512), 2, + anon_sym_class, + anon_sym_struct, + [142166] = 6, + ACTIONS(9199), 1, anon_sym_as, + ACTIONS(9201), 1, anon_sym_if, - anon_sym_RBRACE, - [178013] = 3, - ACTIONS(7399), 1, + ACTIONS(9205), 1, anon_sym_and, + ACTIONS(9207), 1, + anon_sym_or, + ACTIONS(9516), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142186] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4714), 5, + ACTIONS(9351), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_or, - [178028] = 6, - ACTIONS(7395), 1, + [142198] = 6, + ACTIONS(8360), 1, anon_sym_as, - ACTIONS(7397), 1, + ACTIONS(8362), 1, anon_sym_if, - ACTIONS(7399), 1, + ACTIONS(8364), 1, anon_sym_and, - ACTIONS(7401), 1, + ACTIONS(8366), 1, anon_sym_or, + ACTIONS(9518), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142218] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4793), 2, + ACTIONS(9520), 5, anon_sym_COMMA, - anon_sym_RBRACE, - [178049] = 6, - ACTIONS(7395), 1, anon_sym_as, - ACTIONS(7397), 1, anon_sym_if, - ACTIONS(7399), 1, + anon_sym_COLON, + anon_sym_PIPE, + [142230] = 6, + ACTIONS(9199), 1, + anon_sym_as, + ACTIONS(9201), 1, + anon_sym_if, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7401), 1, + ACTIONS(9207), 1, anon_sym_or, + ACTIONS(9522), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4829), 2, + [142250] = 6, + ACTIONS(8404), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [178070] = 6, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9524), 1, + anon_sym_EQ, + ACTIONS(9526), 1, + anon_sym_RBRACK, + STATE(5879), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7867), 2, + [142270] = 5, + ACTIONS(9528), 1, + sym_identifier, + ACTIONS(9530), 1, + anon_sym_COLON, + ACTIONS(9534), 1, sym__newline, - anon_sym_COMMA, - [178091] = 6, - ACTIONS(7395), 1, - anon_sym_as, - ACTIONS(7397), 1, - anon_sym_if, - ACTIONS(7399), 1, - anon_sym_and, - ACTIONS(7401), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7137), 2, + ACTIONS(9532), 2, + anon_sym_class, + anon_sym_struct, + [142288] = 4, + ACTIONS(9457), 1, + anon_sym_PIPE, + STATE(5508), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8905), 3, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACE, - [178112] = 4, - ACTIONS(7869), 1, - anon_sym_COMMA, - STATE(4310), 1, - aux_sym_for_in_clause_repeat1, + [142304] = 5, + ACTIONS(8576), 1, + sym_identifier, + STATE(5699), 1, + sym_dotted_name, + STATE(6104), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9536), 2, + sym__newline, + anon_sym_SEMI, + [142322] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7773), 4, + ACTIONS(9333), 5, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [178129] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7873), 1, - anon_sym_BSLASH, - ACTIONS(7871), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178146] = 7, - ACTIONS(7006), 1, + [142334] = 6, + ACTIONS(9220), 1, anon_sym_LBRACK, - ACTIONS(7664), 1, - anon_sym_LPAREN, - ACTIONS(7875), 1, + ACTIONS(9538), 1, anon_sym_COLON, - ACTIONS(7877), 1, + ACTIONS(9540), 1, + anon_sym_nogil, + ACTIONS(9542), 1, sym__newline, - STATE(524), 1, - sym_external_definition, - STATE(5137), 1, - sym_argument_list, + STATE(5849), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7881), 1, - anon_sym_BSLASH, - ACTIONS(7879), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178186] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7885), 1, - anon_sym_BSLASH, - ACTIONS(7883), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178203] = 4, - ACTIONS(7887), 1, - anon_sym_COMMA, - STATE(4274), 1, - aux_sym_for_in_clause_repeat1, + [142354] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7700), 4, + ACTIONS(8849), 5, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [178220] = 6, - ACTIONS(7395), 1, - anon_sym_as, - ACTIONS(7397), 1, - anon_sym_if, - ACTIONS(7399), 1, - anon_sym_and, - ACTIONS(7401), 1, - anon_sym_or, + anon_sym_RBRACK, + [142366] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9335), 1, + sym__newline, + ACTIONS(9337), 1, + sym__indent, + STATE(3805), 1, + sym_extern_suite, + STATE(3931), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142386] = 4, + ACTIONS(9544), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 2, + ACTIONS(9502), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [178241] = 4, - ACTIONS(3), 1, + ACTIONS(9546), 2, + anon_sym_not, + anon_sym_or, + [142402] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9415), 1, + sym__newline, + ACTIONS(9417), 1, + sym__indent, + STATE(3466), 1, + sym_pass_statement, + STATE(3469), 1, + sym_extern_suite, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7891), 1, - anon_sym_BSLASH, - ACTIONS(7889), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178258] = 6, - ACTIONS(7245), 1, + [142422] = 6, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(7893), 1, + ACTIONS(9177), 1, anon_sym_LPAREN, - ACTIONS(7895), 1, + ACTIONS(9548), 1, anon_sym_EQ, - ACTIONS(7897), 1, + ACTIONS(9550), 1, anon_sym_RBRACK, - STATE(4886), 1, + STATE(6290), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178278] = 6, - ACTIONS(6714), 1, + [142442] = 4, + ACTIONS(9242), 1, + anon_sym_PIPE, + STATE(5404), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9066), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, + [142458] = 6, + ACTIONS(7695), 1, + anon_sym_as, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(7899), 1, - anon_sym_else, + ACTIONS(9552), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178298] = 6, - ACTIONS(6714), 1, + [142478] = 3, + STATE(5404), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9072), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, + anon_sym_PIPE, + [142492] = 4, + ACTIONS(9554), 1, + anon_sym_PIPE, + STATE(5480), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9072), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [142508] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9173), 1, + sym__newline, + ACTIONS(9175), 1, + sym__indent, + STATE(3899), 1, + sym_pass_statement, + STATE(3900), 1, + sym_struct_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142528] = 6, + ACTIONS(8202), 1, + anon_sym_as, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(7901), 1, - anon_sym_else, + ACTIONS(9557), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178318] = 2, + [142548] = 4, + ACTIONS(9285), 1, + anon_sym_PIPE, + STATE(5310), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7903), 5, + ACTIONS(8905), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178330] = 2, + anon_sym_RBRACK, + [142564] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7722), 5, + ACTIONS(9085), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [178342] = 2, + [142576] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8319), 1, + anon_sym_COLON, + ACTIONS(8321), 1, + sym__newline, + STATE(6586), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7905), 5, - anon_sym_COMMA, + [142596] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9273), 1, + sym__newline, + ACTIONS(9275), 1, + sym__indent, + STATE(1306), 1, + sym_struct_suite, + STATE(1320), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142616] = 6, + ACTIONS(8360), 1, anon_sym_as, + ACTIONS(8362), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178354] = 6, - ACTIONS(7907), 1, - anon_sym_COLON, - ACTIONS(7909), 1, - anon_sym_LBRACK, - ACTIONS(7911), 1, - anon_sym_nogil, - ACTIONS(7913), 1, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, + ACTIONS(9559), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142636] = 6, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9189), 1, sym__newline, - STATE(5186), 1, - sym_template_params, + ACTIONS(9191), 1, + sym__indent, + STATE(1519), 1, + sym_extern_suite, + STATE(1965), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142656] = 6, + ACTIONS(8576), 1, + sym_identifier, + ACTIONS(9561), 1, + anon_sym_LPAREN, + STATE(5342), 1, + sym_dotted_name, + STATE(5569), 1, + sym_aliased_import, + STATE(6374), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178374] = 2, + [142676] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7915), 5, + ACTIONS(9185), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178386] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [142688] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7917), 5, + ACTIONS(7786), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [178398] = 2, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [142700] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7300), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [142712] = 5, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(9565), 1, + anon_sym_EQ, + STATE(6053), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9563), 2, + sym__newline, + anon_sym_COMMA, + [142730] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7919), 5, + ACTIONS(9567), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178410] = 2, + [142742] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7921), 5, + ACTIONS(9569), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178422] = 2, + [142754] = 6, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9441), 1, + sym__newline, + ACTIONS(9443), 1, + sym__indent, + STATE(1181), 1, + sym_extern_suite, + STATE(1612), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, + [142774] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7316), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_PIPE, - [178434] = 6, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, + anon_sym_not, + anon_sym_or, + [142786] = 6, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(7923), 1, - anon_sym_RPAREN, + ACTIONS(9451), 1, + anon_sym_as, + ACTIONS(9571), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178454] = 4, - ACTIONS(7925), 1, - anon_sym_PIPE, - STATE(4442), 1, - aux_sym_union_pattern_repeat1, + [142806] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9173), 1, + sym__newline, + ACTIONS(9175), 1, + sym__indent, + STATE(3809), 1, + sym_struct_suite, + STATE(3899), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7690), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [142826] = 6, + ACTIONS(8360), 1, anon_sym_as, - [178470] = 6, - ACTIONS(6714), 1, + ACTIONS(8362), 1, + anon_sym_if, + ACTIONS(8364), 1, + anon_sym_and, + ACTIONS(8366), 1, + anon_sym_or, + ACTIONS(9573), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [142846] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(9207), 1, anon_sym_or, - ACTIONS(7927), 1, + ACTIONS(9575), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178490] = 6, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(7931), 1, - sym__newline, - ACTIONS(7933), 1, - sym__indent, - STATE(3054), 1, - sym_pass_statement, - STATE(3083), 1, - sym_extern_suite, + [142866] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178510] = 6, - ACTIONS(7935), 1, + ACTIONS(7294), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [142878] = 4, + ACTIONS(9457), 1, + anon_sym_PIPE, + STATE(5468), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9066), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [142894] = 6, + ACTIONS(9187), 1, anon_sym_pass, - ACTIONS(7937), 1, + ACTIONS(9189), 1, sym__newline, - ACTIONS(7939), 1, + ACTIONS(9191), 1, sym__indent, - STATE(1385), 1, + STATE(1839), 1, sym_extern_suite, - STATE(1425), 1, + STATE(1965), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178530] = 5, - ACTIONS(7941), 1, - sym_identifier, - ACTIONS(7943), 1, - anon_sym_COLON, - ACTIONS(7947), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7945), 2, - anon_sym_class, - anon_sym_struct, - [178548] = 6, - ACTIONS(7233), 1, + [142914] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(7235), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(7237), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(7239), 1, + ACTIONS(9207), 1, anon_sym_or, - ACTIONS(7949), 1, - anon_sym_RPAREN, + ACTIONS(9577), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178568] = 5, - ACTIONS(7638), 1, - anon_sym_DOT, - ACTIONS(7642), 1, - anon_sym_COLON, - ACTIONS(7646), 1, - anon_sym_PIPE, + [142934] = 6, + ACTIONS(9199), 1, + anon_sym_as, + ACTIONS(9201), 1, + anon_sym_if, + ACTIONS(9205), 1, + anon_sym_and, + ACTIONS(9207), 1, + anon_sym_or, + ACTIONS(9579), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7951), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [178586] = 3, - STATE(4442), 1, + [142954] = 3, + STATE(5468), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7759), 4, - anon_sym_RPAREN, + ACTIONS(9072), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [178600] = 4, - ACTIONS(7953), 1, + anon_sym_RBRACE, + [142968] = 4, + ACTIONS(9581), 1, anon_sym_PIPE, - STATE(4423), 1, + STATE(5508), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7759), 3, - anon_sym_RPAREN, + ACTIONS(9072), 3, anon_sym_COMMA, anon_sym_as, - [178616] = 6, - ACTIONS(6714), 1, + anon_sym_RBRACE, + [142984] = 6, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9335), 1, + sym__newline, + ACTIONS(9337), 1, + sym__indent, + STATE(3845), 1, + sym_extern_suite, + STATE(3931), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143004] = 6, + ACTIONS(7695), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(7697), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(7699), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(7701), 1, anon_sym_or, - ACTIONS(7956), 1, - anon_sym_else, + ACTIONS(9584), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143024] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9415), 1, + sym__newline, + ACTIONS(9417), 1, + sym__indent, + STATE(3466), 1, + sym_pass_statement, + STATE(3627), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143044] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9185), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [143056] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(9586), 1, + anon_sym_COLON, + ACTIONS(9588), 1, + sym__newline, + STATE(6528), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143076] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8346), 1, + anon_sym_COLON, + ACTIONS(8348), 1, + sym__newline, + STATE(6486), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178636] = 5, - ACTIONS(7958), 1, + [143096] = 5, + ACTIONS(9590), 1, sym_identifier, - ACTIONS(7960), 1, + ACTIONS(9592), 1, anon_sym_COLON, - ACTIONS(7964), 1, + ACTIONS(9596), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7962), 2, + ACTIONS(9594), 2, anon_sym_class, anon_sym_struct, - [178654] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(7966), 1, - anon_sym_else, + [143114] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178674] = 2, + ACTIONS(9333), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [143126] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7968), 5, + ACTIONS(9598), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178686] = 2, + [143138] = 6, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9600), 1, + anon_sym_EQ, + ACTIONS(9602), 1, + anon_sym_RBRACK, + STATE(5913), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7970), 5, + [143158] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9604), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178698] = 6, - ACTIONS(7972), 1, - anon_sym_COLON, - ACTIONS(7974), 1, - anon_sym_EQ, - ACTIONS(7976), 1, - anon_sym_RBRACE, - ACTIONS(7978), 1, - sym_type_conversion, - STATE(5876), 1, - sym_format_specifier, + [143170] = 4, + ACTIONS(9608), 1, + anon_sym_DOT, + STATE(5520), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178718] = 4, - ACTIONS(7980), 1, - anon_sym_COMMA, - STATE(4430), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(9606), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [143186] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8352), 1, + sym__newline, + STATE(6336), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [178734] = 4, - ACTIONS(7983), 1, - anon_sym_PIPE, - STATE(4487), 1, - aux_sym_union_pattern_repeat1, + [143206] = 6, + ACTIONS(9199), 1, + anon_sym_as, + ACTIONS(9201), 1, + anon_sym_if, + ACTIONS(9205), 1, + anon_sym_and, + ACTIONS(9207), 1, + anon_sym_or, + ACTIONS(9611), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7764), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [178750] = 2, + [143226] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7985), 5, + ACTIONS(9613), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178762] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7822), 5, + [143238] = 5, + ACTIONS(8981), 1, anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(9258), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(9260), 1, anon_sym_PIPE, - [178774] = 5, - ACTIONS(7989), 1, - anon_sym_COMMA, - ACTIONS(7991), 1, - anon_sym_as, - STATE(4627), 1, - aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7987), 2, + ACTIONS(9157), 2, sym__newline, anon_sym_SEMI, - [178792] = 6, - ACTIONS(6714), 1, + [143256] = 6, + ACTIONS(8202), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(8204), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(8206), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(8208), 1, anon_sym_or, - ACTIONS(7993), 1, - anon_sym_else, + ACTIONS(9615), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178812] = 6, - ACTIONS(6714), 1, + [143276] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(9617), 1, + anon_sym_COLON, + ACTIONS(9619), 1, + sym__newline, + STATE(6430), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143296] = 6, + ACTIONS(8067), 1, + anon_sym_with, + ACTIONS(8069), 1, + anon_sym_nogil, + ACTIONS(9621), 1, + anon_sym_COLON, + ACTIONS(9623), 1, + sym__newline, + STATE(6429), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143316] = 6, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9415), 1, + sym__newline, + ACTIONS(9417), 1, + sym__indent, + STATE(3466), 1, + sym_pass_statement, + STATE(3517), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143336] = 6, + ACTIONS(9199), 1, anon_sym_as, - ACTIONS(6716), 1, + ACTIONS(9201), 1, anon_sym_if, - ACTIONS(6718), 1, + ACTIONS(9205), 1, anon_sym_and, - ACTIONS(6720), 1, + ACTIONS(9207), 1, anon_sym_or, - ACTIONS(7995), 1, + ACTIONS(9625), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178832] = 2, + [143356] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7997), 5, - anon_sym_RPAREN, + ACTIONS(9627), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [178844] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [143368] = 4, + ACTIONS(9631), 1, + anon_sym_COMMA, + STATE(5578), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7999), 5, + ACTIONS(9629), 2, + anon_sym_from, + anon_sym_in, + [143383] = 5, + ACTIONS(9633), 1, + anon_sym_RPAREN, + ACTIONS(9635), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [178856] = 2, + ACTIONS(9637), 1, + anon_sym_as, + STATE(5977), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143400] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3920), 5, + ACTIONS(9359), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [178868] = 6, - ACTIONS(8001), 1, - anon_sym_LBRACE, - ACTIONS(8003), 1, - anon_sym_RBRACE, - ACTIONS(8005), 1, - aux_sym_format_specifier_token1, - STATE(4586), 1, - aux_sym_format_specifier_repeat1, - STATE(4816), 1, - sym_interpolation, - ACTIONS(5), 2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [143411] = 5, + ACTIONS(9639), 1, + sym_identifier, + STATE(5560), 1, + sym_dotted_name, + STATE(5991), 1, + sym_aliased_import, + STATE(6846), 1, + sym__import_list, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178888] = 6, - ACTIONS(6714), 1, + [143428] = 5, + ACTIONS(9641), 1, + anon_sym_COMMA, + ACTIONS(9643), 1, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8007), 1, - anon_sym_else, + ACTIONS(9645), 1, + anon_sym_RBRACK, + STATE(5980), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [143445] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178908] = 4, - ACTIONS(7925), 1, + ACTIONS(9520), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - STATE(4423), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [143456] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7764), 3, + ACTIONS(9613), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [178924] = 6, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8011), 1, - sym__newline, - ACTIONS(8013), 1, - sym__indent, - STATE(676), 1, - sym_pass_statement, - STATE(693), 1, - sym_extern_suite, + anon_sym_PIPE, + [143467] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178944] = 2, + ACTIONS(9604), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [143478] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7596), 5, + ACTIONS(9613), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [178956] = 2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [143489] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8015), 5, + ACTIONS(9228), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [178968] = 2, + [143500] = 4, + ACTIONS(9647), 1, + anon_sym_COMMA, + STATE(5541), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8017), 5, + ACTIONS(6749), 2, + anon_sym_from, + anon_sym_in, + [143515] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9254), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [178980] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8019), 1, - anon_sym_else, + [143526] = 4, + ACTIONS(9652), 1, + anon_sym_COMMA, + STATE(5680), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179000] = 2, + ACTIONS(9650), 2, + sym__newline, + anon_sym_SEMI, + [143541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8021), 5, + ACTIONS(9228), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [179012] = 6, - ACTIONS(6714), 1, + [143552] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9567), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8023), 1, - anon_sym_else, + anon_sym_RBRACK, + anon_sym_PIPE, + [143563] = 4, + ACTIONS(9654), 1, + anon_sym_COMMA, + STATE(5658), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179032] = 6, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(7931), 1, + ACTIONS(2628), 2, sym__newline, - ACTIONS(7933), 1, - sym__indent, - STATE(3054), 1, - sym_pass_statement, - STATE(3103), 1, - sym_extern_suite, + anon_sym_SEMI, + [143578] = 4, + ACTIONS(9658), 1, + anon_sym_EQ, + STATE(6561), 1, + sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179052] = 6, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(8025), 1, - anon_sym_COLON, - ACTIONS(8027), 1, - sym__newline, - STATE(5305), 1, - sym_gil_spec, + ACTIONS(9656), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [143593] = 5, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(9662), 1, + anon_sym_RPAREN, + ACTIONS(9664), 1, + anon_sym_COMMA, + STATE(6097), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179072] = 6, - ACTIONS(7909), 1, - anon_sym_LBRACK, - ACTIONS(8029), 1, - anon_sym_COLON, - ACTIONS(8031), 1, - anon_sym_nogil, - ACTIONS(8033), 1, - sym__newline, - STATE(5093), 1, - sym_template_params, + [143610] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179092] = 6, - ACTIONS(6714), 1, + ACTIONS(9226), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8035), 1, - anon_sym_else, + anon_sym_PIPE, + anon_sym_RBRACE, + [143621] = 4, + ACTIONS(8128), 1, + anon_sym_COMMA, + STATE(5658), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179112] = 2, + ACTIONS(9666), 2, + sym__newline, + anon_sym_SEMI, + [143636] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8037), 5, + ACTIONS(9569), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [179124] = 2, + [143647] = 5, + ACTIONS(9637), 1, + anon_sym_as, + ACTIONS(9668), 1, + anon_sym_RPAREN, + ACTIONS(9670), 1, + anon_sym_COMMA, + STATE(5787), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6755), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [179136] = 2, + [143664] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4097), 5, - anon_sym_DOT, + ACTIONS(9254), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [179148] = 6, - ACTIONS(6714), 1, + [143675] = 5, + ACTIONS(9643), 1, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8039), 1, - anon_sym_else, + ACTIONS(9672), 1, + anon_sym_COMMA, + ACTIONS(9674), 1, + anon_sym_RBRACK, + STATE(5788), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179168] = 5, - ACTIONS(8041), 1, - sym_identifier, - ACTIONS(8043), 1, - anon_sym_COLON, - ACTIONS(8047), 1, - sym__newline, + [143692] = 5, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9676), 1, + anon_sym_COMMA, + ACTIONS(9678), 1, + anon_sym_RBRACK, + STATE(6001), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8045), 2, - anon_sym_class, - anon_sym_struct, - [179186] = 6, - ACTIONS(7935), 1, - anon_sym_pass, - ACTIONS(7937), 1, - sym__newline, - ACTIONS(7939), 1, - sym__indent, - STATE(1353), 1, - sym_extern_suite, - STATE(1425), 1, - sym_pass_statement, + [143709] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179206] = 6, - ACTIONS(6714), 1, + ACTIONS(9393), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8049), 1, - anon_sym_else, + anon_sym_PIPE, + [143720] = 4, + ACTIONS(9682), 1, + anon_sym_COMMA, + STATE(5620), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179226] = 6, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(7151), 1, - anon_sym_COLON, - ACTIONS(7153), 1, + ACTIONS(9680), 2, sym__newline, - STATE(5504), 1, - sym_gil_spec, + anon_sym_SEMI, + [143735] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179246] = 6, - ACTIONS(6270), 1, + ACTIONS(9409), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(8051), 1, - sym__newline, + anon_sym_PIPE, + [143746] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179266] = 6, - ACTIONS(7233), 1, + ACTIONS(9165), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, - ACTIONS(8053), 1, + anon_sym_PIPE, + [143757] = 5, + ACTIONS(9277), 1, anon_sym_RPAREN, + ACTIONS(9684), 1, + anon_sym_COMMA, + ACTIONS(9686), 1, + anon_sym_as, + STATE(5772), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179286] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8055), 1, - anon_sym_COLON, + [143774] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179306] = 6, - ACTIONS(6714), 1, + ACTIONS(9613), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8057), 1, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACE, + [143785] = 5, + ACTIONS(9688), 1, + anon_sym_case, + ACTIONS(9690), 1, + sym__dedent, + STATE(5616), 1, + aux_sym__match_block_repeat1, + STATE(6454), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179326] = 6, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, - ACTIONS(8059), 1, - anon_sym_RPAREN, + [143802] = 4, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9692), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179346] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8061), 1, - anon_sym_else, + STATE(2179), 2, + sym_pass_statement, + sym__cppclass_suite, + [143817] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179366] = 6, - ACTIONS(6714), 1, + ACTIONS(8969), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8063), 1, anon_sym_COLON, + [143828] = 4, + ACTIONS(9271), 1, + anon_sym_pass, + ACTIONS(9694), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179386] = 5, - ACTIONS(8065), 1, + STATE(2152), 2, + sym_pass_statement, + sym__cppclass_suite, + [143843] = 5, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(9664), 1, anon_sym_COMMA, - ACTIONS(8067), 1, - anon_sym_RBRACE, - STATE(5041), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(9696), 1, + anon_sym_RPAREN, + STATE(6297), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 2, + [143860] = 5, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(9698), 1, anon_sym_COLON, - anon_sym_PIPE, - [179404] = 6, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(7931), 1, + ACTIONS(9700), 1, sym__newline, - ACTIONS(7933), 1, - sym__indent, - STATE(3054), 1, - sym_pass_statement, - STATE(3057), 1, - sym_extern_suite, + STATE(6460), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179424] = 4, - ACTIONS(7983), 1, - anon_sym_PIPE, - STATE(4431), 1, - aux_sym_union_pattern_repeat1, + [143877] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7690), 3, + ACTIONS(9627), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [179440] = 6, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8069), 1, + anon_sym_PIPE, + [143888] = 4, + ACTIONS(9279), 1, + anon_sym_COMMA, + STATE(5596), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9277), 2, sym__newline, - ACTIONS(8071), 1, - sym__indent, - STATE(685), 1, - sym_pass_statement, - STATE(696), 1, - sym_struct_suite, + anon_sym_SEMI, + [143903] = 4, + ACTIONS(9704), 1, + anon_sym_COMMA, + STATE(5570), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179460] = 2, + ACTIONS(9702), 2, + sym__newline, + anon_sym_SEMI, + [143918] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7856), 5, - anon_sym_DOT, + ACTIONS(9567), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [179472] = 6, - ACTIONS(7935), 1, - anon_sym_pass, - ACTIONS(8073), 1, - sym__newline, - ACTIONS(8075), 1, - sym__indent, - STATE(1188), 1, - sym_pass_statement, - STATE(1196), 1, - sym_struct_suite, + [143929] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179492] = 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(9363), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [143940] = 5, + ACTIONS(9643), 1, + anon_sym_as, + ACTIONS(9707), 1, + anon_sym_COMMA, + ACTIONS(9709), 1, + anon_sym_RBRACK, + STATE(6071), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179512] = 2, + [143957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5856), 5, - anon_sym_COMMA, + ACTIONS(4595), 4, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [179524] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8077), 1, - anon_sym_else, + anon_sym_PIPE, + [143968] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179544] = 6, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8069), 1, - sym__newline, - ACTIONS(8071), 1, - sym__indent, - STATE(685), 1, - sym_pass_statement, - STATE(703), 1, - sym_struct_suite, + ACTIONS(9711), 4, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [143979] = 5, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9676), 1, + anon_sym_COMMA, + ACTIONS(9713), 1, + anon_sym_RBRACK, + STATE(5729), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179564] = 6, - ACTIONS(7935), 1, + [143996] = 4, + ACTIONS(9271), 1, anon_sym_pass, - ACTIONS(8073), 1, - sym__newline, - ACTIONS(8075), 1, + ACTIONS(9694), 1, sym__indent, - STATE(1188), 1, - sym_pass_statement, - STATE(1357), 1, - sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179584] = 5, - ACTIONS(7605), 1, - anon_sym_DOT, - ACTIONS(8081), 1, - anon_sym_COLON, - ACTIONS(8083), 1, - anon_sym_PIPE, + STATE(2015), 2, + sym_pass_statement, + sym__cppclass_suite, + [144011] = 4, + ACTIONS(9715), 1, + anon_sym_COMMA, + STATE(5541), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8079), 2, - sym__newline, - anon_sym_SEMI, - [179602] = 5, - ACTIONS(8085), 1, + ACTIONS(2207), 2, + anon_sym_from, + anon_sym_in, + [144026] = 4, + ACTIONS(9717), 1, anon_sym_COMMA, - ACTIONS(8087), 1, - anon_sym_RBRACE, - STATE(4905), 1, - aux_sym_dict_pattern_repeat1, + STATE(5666), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 2, - anon_sym_COLON, - anon_sym_PIPE, - [179620] = 6, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8089), 1, - anon_sym_as, - ACTIONS(8091), 1, + ACTIONS(2628), 2, anon_sym_COLON, + anon_sym_by, + [144041] = 4, + ACTIONS(9631), 1, + anon_sym_COMMA, + STATE(5578), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179640] = 2, + ACTIONS(9719), 2, + anon_sym_from, + anon_sym_in, + [144056] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5870), 5, + ACTIONS(9471), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [179652] = 3, - STATE(4431), 1, - aux_sym_union_pattern_repeat1, + anon_sym_as, + anon_sym_PIPE, + [144067] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7759), 4, + ACTIONS(9598), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [179666] = 6, - ACTIONS(6714), 1, + [144078] = 5, + ACTIONS(9637), 1, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8093), 1, - anon_sym_COLON, + ACTIONS(9721), 1, + anon_sym_RPAREN, + ACTIONS(9723), 1, + anon_sym_COMMA, + STATE(6055), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179686] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8095), 1, + [144095] = 5, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(9725), 1, anon_sym_COLON, + ACTIONS(9727), 1, + sym__newline, + STATE(6510), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179706] = 4, - ACTIONS(8097), 1, - anon_sym_PIPE, - STATE(4487), 1, - aux_sym_union_pattern_repeat1, + [144112] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7759), 3, + ACTIONS(9598), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [179722] = 6, - ACTIONS(5138), 1, - anon_sym_COLON, - ACTIONS(7617), 1, - anon_sym_if, - ACTIONS(8100), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [144123] = 5, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9676), 1, anon_sym_COMMA, - STATE(4598), 1, - aux_sym_case_clause_repeat1, - STATE(5524), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179742] = 6, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, - ACTIONS(8102), 1, - anon_sym_RPAREN, + ACTIONS(9729), 1, + anon_sym_RBRACK, + STATE(5882), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179762] = 6, - ACTIONS(7935), 1, - anon_sym_pass, - ACTIONS(8073), 1, - sym__newline, - ACTIONS(8075), 1, - sym__indent, - STATE(1188), 1, - sym_pass_statement, - STATE(1373), 1, - sym_struct_suite, + [144140] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179782] = 6, - ACTIONS(6714), 1, + ACTIONS(9367), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8104), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [144151] = 5, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(9731), 1, anon_sym_COLON, + ACTIONS(9733), 1, + sym__newline, + STATE(6540), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179802] = 4, - ACTIONS(8108), 1, - anon_sym_DOT, - STATE(4551), 1, - aux_sym_import_prefix_repeat1, + [144168] = 5, + ACTIONS(9688), 1, + anon_sym_case, + ACTIONS(9735), 1, + sym__dedent, + STATE(5562), 1, + aux_sym__match_block_repeat1, + STATE(6454), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8106), 3, - anon_sym_import, - anon_sym_cimport, - sym_identifier, - [179818] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8110), 1, - anon_sym_else, + [144185] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179838] = 6, - ACTIONS(7245), 1, + ACTIONS(9569), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(8112), 1, - anon_sym_EQ, - ACTIONS(8114), 1, - anon_sym_RBRACK, - STATE(5180), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179858] = 6, - ACTIONS(7929), 1, + anon_sym_as, + anon_sym_PIPE, + [144196] = 4, + ACTIONS(9271), 1, anon_sym_pass, - ACTIONS(8116), 1, - sym__newline, - ACTIONS(8118), 1, + ACTIONS(9694), 1, sym__indent, - STATE(3063), 1, - sym_pass_statement, - STATE(3157), 1, - sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179878] = 6, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8011), 1, - sym__newline, - ACTIONS(8013), 1, - sym__indent, - STATE(676), 1, + STATE(2087), 2, sym_pass_statement, - STATE(720), 1, - sym_extern_suite, + sym__cppclass_suite, + [144211] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179898] = 6, - ACTIONS(8120), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(9393), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(8125), 1, - aux_sym_format_specifier_token1, - STATE(4497), 1, - aux_sym_format_specifier_repeat1, - STATE(4816), 1, - sym_interpolation, - ACTIONS(5), 2, + [144222] = 5, + ACTIONS(4549), 1, + anon_sym_LBRACK, + ACTIONS(9737), 1, + anon_sym_LPAREN, + STATE(6516), 1, + sym_parameters, + STATE(6518), 1, + sym_type_parameter, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179918] = 5, - ACTIONS(8128), 1, - anon_sym_COMMA, - ACTIONS(8130), 1, - anon_sym_RBRACE, - STATE(4876), 1, - aux_sym_dict_pattern_repeat1, + [144239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 2, - anon_sym_COLON, - anon_sym_PIPE, - [179936] = 6, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, + ACTIONS(8376), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(8652), 2, + anon_sym_not, anon_sym_or, - ACTIONS(8132), 1, + [144252] = 5, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(9739), 1, + anon_sym_COLON, + ACTIONS(9741), 1, sym__newline, + STATE(6514), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179956] = 6, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(8116), 1, + [144269] = 4, + ACTIONS(9745), 1, + anon_sym_COMMA, + STATE(5709), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9743), 2, sym__newline, - ACTIONS(8118), 1, + anon_sym_SEMI, + [144284] = 4, + ACTIONS(9413), 1, + anon_sym_pass, + ACTIONS(9747), 1, sym__indent, - STATE(3063), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3733), 2, sym_pass_statement, - STATE(3064), 1, - sym_struct_suite, + sym__cppclass_suite, + [144299] = 4, + ACTIONS(9749), 1, + anon_sym_COMMA, + STATE(5709), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179976] = 2, + ACTIONS(9743), 2, + sym__newline, + anon_sym_SEMI, + [144314] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8134), 5, + ACTIONS(9228), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [179988] = 6, - ACTIONS(7972), 1, - anon_sym_COLON, - ACTIONS(8136), 1, - anon_sym_EQ, - ACTIONS(8138), 1, anon_sym_RBRACE, - ACTIONS(8140), 1, - sym_type_conversion, - STATE(5617), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180008] = 6, - ACTIONS(7935), 1, - anon_sym_pass, - ACTIONS(8073), 1, - sym__newline, - ACTIONS(8075), 1, - sym__indent, - STATE(1188), 1, - sym_pass_statement, - STATE(1398), 1, - sym_struct_suite, + [144325] = 4, + ACTIONS(6175), 1, + anon_sym_LBRACK, + STATE(4411), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180028] = 2, + ACTIONS(7133), 2, + anon_sym_DOT, + sym_identifier, + [144340] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5725), 5, + ACTIONS(9307), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - sym_type_conversion, - [180040] = 5, - ACTIONS(3956), 1, + [144351] = 5, + ACTIONS(4538), 1, sym_string_start, - ACTIONS(8144), 1, - anon_sym_EQ, - STATE(5173), 1, + ACTIONS(9751), 1, + anon_sym_COLON, + ACTIONS(9753), 1, + sym__newline, + STATE(6537), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8142), 2, - sym__newline, - anon_sym_COMMA, - [180058] = 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, + [144368] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180078] = 2, + ACTIONS(9520), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [144379] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 5, + ACTIONS(9429), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [180090] = 6, - ACTIONS(7245), 1, - anon_sym_COMMA, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(8148), 1, - anon_sym_EQ, - ACTIONS(8150), 1, - anon_sym_RBRACK, - STATE(5214), 1, - aux_sym_type_index_repeat1, + anon_sym_RBRACE, + [144390] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180110] = 6, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(8152), 1, + ACTIONS(8840), 4, + anon_sym_DOT, anon_sym_COLON, - ACTIONS(8154), 1, - sym__newline, - STATE(5420), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180130] = 3, - ACTIONS(8156), 1, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + [144401] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 4, + ACTIONS(9165), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [180144] = 6, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(7109), 1, - anon_sym_COLON, - ACTIONS(7111), 1, - sym__newline, - STATE(5444), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180164] = 4, - ACTIONS(8158), 1, + anon_sym_RBRACE, + [144412] = 4, + ACTIONS(9631), 1, anon_sym_COMMA, - STATE(4430), 1, - aux_sym_assert_statement_repeat1, + STATE(5578), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(9755), 2, anon_sym_from, - [180180] = 2, + anon_sym_in, + [144427] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8160), 5, + ACTIONS(9465), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [180192] = 6, - ACTIONS(7233), 1, + anon_sym_RBRACE, + [144438] = 5, + ACTIONS(9637), 1, anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, - ACTIONS(8162), 1, + ACTIONS(9757), 1, anon_sym_RPAREN, + ACTIONS(9759), 1, + anon_sym_COMMA, + STATE(5817), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180212] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7832), 5, + [144455] = 5, + ACTIONS(9157), 1, + anon_sym_EQ, + ACTIONS(9761), 1, anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(9763), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(9765), 1, anon_sym_PIPE, - [180224] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8164), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180244] = 5, - ACTIONS(7638), 1, - anon_sym_DOT, - ACTIONS(7642), 1, + [144472] = 5, + ACTIONS(9433), 1, anon_sym_COLON, - ACTIONS(7646), 1, - anon_sym_PIPE, + ACTIONS(9767), 1, + anon_sym_RBRACE, + ACTIONS(9769), 1, + sym_type_conversion, + STATE(6883), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7834), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [180262] = 2, + [144489] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7858), 5, - anon_sym_DOT, + ACTIONS(9307), 4, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [180274] = 2, + [144500] = 5, + ACTIONS(9688), 1, + anon_sym_case, + ACTIONS(9771), 1, + sym__dedent, + STATE(5659), 1, + aux_sym__match_block_repeat1, + STATE(6454), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6662), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [180286] = 2, + [144517] = 4, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9773), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3937), 2, + sym_pass_statement, + sym__cppclass_suite, + [144532] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8166), 5, + ACTIONS(9351), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [180298] = 6, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8089), 1, - anon_sym_as, - ACTIONS(8168), 1, - anon_sym_COLON, + [144543] = 5, + ACTIONS(9775), 1, + anon_sym_case, + ACTIONS(9778), 1, + sym__dedent, + STATE(5616), 1, + aux_sym__match_block_repeat1, + STATE(6454), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180318] = 5, - ACTIONS(7518), 1, - sym_identifier, - STATE(4655), 1, - sym_dotted_name, - STATE(5069), 1, - sym_aliased_import, + [144560] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8170), 2, - sym__newline, - anon_sym_SEMI, - [180336] = 6, - ACTIONS(6714), 1, + ACTIONS(9409), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8172), 1, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACE, + [144571] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180356] = 6, - ACTIONS(8009), 1, + ACTIONS(9429), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [144582] = 4, + ACTIONS(9413), 1, anon_sym_pass, - ACTIONS(8069), 1, - sym__newline, - ACTIONS(8071), 1, + ACTIONS(9747), 1, sym__indent, - STATE(685), 1, - sym_pass_statement, - STATE(686), 1, - sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180376] = 6, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8011), 1, - sym__newline, - ACTIONS(8013), 1, - sym__indent, - STATE(676), 1, + STATE(3735), 2, sym_pass_statement, - STATE(714), 1, - sym_extern_suite, + sym__cppclass_suite, + [144597] = 4, + ACTIONS(9782), 1, + anon_sym_COMMA, + STATE(5570), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180396] = 4, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, + ACTIONS(9780), 2, + sym__newline, + anon_sym_SEMI, + [144612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4789), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [180412] = 6, - ACTIONS(6714), 1, + ACTIONS(9393), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8174), 1, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [144623] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180432] = 6, - ACTIONS(6714), 1, + ACTIONS(9409), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8176), 1, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [144634] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180452] = 6, - ACTIONS(6714), 1, + ACTIONS(9465), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8178), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [144645] = 4, + ACTIONS(9786), 1, anon_sym_COLON, + ACTIONS(9788), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180472] = 4, - ACTIONS(7983), 1, - anon_sym_PIPE, - STATE(4431), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(9784), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [144660] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 3, + ACTIONS(9341), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [180488] = 2, + anon_sym_PIPE, + [144671] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(9345), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - [180500] = 6, - ACTIONS(7518), 1, + [144682] = 5, + ACTIONS(9639), 1, sym_identifier, - ACTIONS(8180), 1, - anon_sym_LPAREN, - STATE(4434), 1, + STATE(5560), 1, sym_dotted_name, - STATE(4765), 1, + STATE(5991), 1, sym_aliased_import, - STATE(5361), 1, + STATE(6690), 1, sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180520] = 2, + [144699] = 5, + ACTIONS(4549), 1, + anon_sym_LBRACK, + ACTIONS(9737), 1, + anon_sym_LPAREN, + STATE(6497), 1, + sym_type_parameter, + STATE(6545), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8182), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [180532] = 2, + [144716] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 5, - anon_sym_DOT, + ACTIONS(9359), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [180544] = 6, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(7931), 1, - sym__newline, - ACTIONS(7933), 1, - sym__indent, - STATE(3054), 1, - sym_pass_statement, - STATE(3107), 1, - sym_extern_suite, + [144727] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180564] = 6, - ACTIONS(7245), 1, + ACTIONS(9363), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(8184), 1, - anon_sym_EQ, - ACTIONS(8186), 1, - anon_sym_RBRACK, - STATE(5036), 1, - aux_sym_type_index_repeat1, + anon_sym_as, + anon_sym_PIPE, + [144738] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180584] = 6, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(7145), 1, - anon_sym_COLON, - ACTIONS(7147), 1, - sym__newline, - STATE(5516), 1, - sym_gil_spec, + ACTIONS(9604), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [144749] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180604] = 6, - ACTIONS(6714), 1, + ACTIONS(9367), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8188), 1, - anon_sym_COLON, + anon_sym_PIPE, + [144760] = 5, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(9664), 1, + anon_sym_COMMA, + ACTIONS(9790), 1, + anon_sym_RPAREN, + STATE(6294), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180624] = 2, + [144777] = 4, + ACTIONS(9794), 1, + anon_sym_COMMA, + STATE(5570), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7997), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [180636] = 5, - ACTIONS(8190), 1, + ACTIONS(9792), 2, + sym__newline, + anon_sym_SEMI, + [144792] = 4, + ACTIONS(9652), 1, anon_sym_COMMA, - ACTIONS(8192), 1, - anon_sym_RBRACE, - STATE(4801), 1, - aux_sym_dict_pattern_repeat1, + STATE(5543), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 2, - anon_sym_COLON, - anon_sym_PIPE, - [180654] = 6, - ACTIONS(6920), 1, - anon_sym_COLON, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(6930), 1, + ACTIONS(9796), 2, sym__newline, - STATE(5280), 1, - sym_gil_spec, + anon_sym_SEMI, + [144807] = 4, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9692), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180674] = 2, + STATE(2188), 2, + sym_pass_statement, + sym__cppclass_suite, + [144822] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8194), 5, + ACTIONS(9226), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_PIPE, + [144833] = 5, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(9763), 1, anon_sym_COLON, + ACTIONS(9765), 1, anon_sym_PIPE, - [180686] = 6, - ACTIONS(7929), 1, + ACTIONS(9798), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [144850] = 4, + ACTIONS(9171), 1, anon_sym_pass, - ACTIONS(7931), 1, - sym__newline, - ACTIONS(7933), 1, + ACTIONS(9773), 1, sym__indent, - STATE(3054), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3933), 2, sym_pass_statement, - STATE(3135), 1, - sym_extern_suite, + sym__cppclass_suite, + [144865] = 5, + ACTIONS(4549), 1, + anon_sym_LBRACK, + ACTIONS(9737), 1, + anon_sym_LPAREN, + STATE(6380), 1, + sym_parameters, + STATE(6526), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [144882] = 5, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9676), 1, + anon_sym_COMMA, + ACTIONS(9800), 1, + anon_sym_RBRACK, + STATE(5853), 1, + aux_sym_external_definition_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [144899] = 4, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9804), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9802), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [144914] = 5, + ACTIONS(4549), 1, + anon_sym_LBRACK, + ACTIONS(9737), 1, + anon_sym_LPAREN, + STATE(6393), 1, + sym_parameters, + STATE(6532), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [144931] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180706] = 6, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(6956), 1, + ACTIONS(8977), 4, + anon_sym_DOT, anon_sym_COLON, - ACTIONS(6958), 1, - sym__newline, - STATE(5389), 1, - sym_gil_spec, + anon_sym_EQ, + anon_sym_PIPE, + [144942] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180726] = 5, - ACTIONS(7518), 1, - sym_identifier, - STATE(4655), 1, - sym_dotted_name, - STATE(5069), 1, - sym_aliased_import, + ACTIONS(9627), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [144953] = 4, + ACTIONS(9652), 1, + anon_sym_COMMA, + STATE(5680), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8196), 2, + ACTIONS(9806), 2, sym__newline, anon_sym_SEMI, - [180744] = 6, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(8116), 1, - sym__newline, - ACTIONS(8118), 1, - sym__indent, - STATE(3063), 1, - sym_pass_statement, - STATE(3115), 1, - sym_struct_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180764] = 5, - ACTIONS(7518), 1, - sym_identifier, - STATE(4655), 1, - sym_dotted_name, - STATE(5069), 1, - sym_aliased_import, + [144968] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8196), 2, - sym__newline, - anon_sym_SEMI, - [180782] = 6, - ACTIONS(6714), 1, + ACTIONS(9471), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(7196), 1, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [144979] = 5, + ACTIONS(9637), 1, + anon_sym_as, + ACTIONS(9808), 1, + anon_sym_RPAREN, + ACTIONS(9810), 1, + anon_sym_COMMA, + STATE(6062), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180802] = 6, - ACTIONS(7909), 1, - anon_sym_LBRACK, - ACTIONS(8198), 1, + [144996] = 5, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(9812), 1, anon_sym_COLON, - ACTIONS(8200), 1, - anon_sym_nogil, - ACTIONS(8202), 1, + ACTIONS(9814), 1, sym__newline, - STATE(4992), 1, - sym_template_params, + STATE(6588), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180822] = 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, + [145013] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180842] = 4, - ACTIONS(8206), 1, + ACTIONS(7691), 4, anon_sym_DOT, - STATE(4551), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8204), 3, - anon_sym_import, - anon_sym_cimport, - sym_identifier, - [180858] = 4, - ACTIONS(8211), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8209), 2, + anon_sym_PIPE, + [145024] = 5, + ACTIONS(9411), 1, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(8213), 2, - anon_sym_not, - anon_sym_or, - [180874] = 5, - ACTIONS(8215), 1, + ACTIONS(9639), 1, sym_identifier, - ACTIONS(8217), 1, - anon_sym_COLON, - ACTIONS(8221), 1, - sym__newline, + STATE(6124), 1, + sym_dotted_name, + STATE(6390), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8219), 2, - anon_sym_class, - anon_sym_struct, - [180892] = 3, - ACTIONS(8223), 1, - anon_sym_LPAREN, + [145041] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 4, + ACTIONS(9520), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [180906] = 4, - ACTIONS(8225), 1, - anon_sym_PIPE, - STATE(4570), 1, - aux_sym_union_pattern_repeat1, + [145052] = 4, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(9816), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 3, + ACTIONS(4367), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [145067] = 5, + ACTIONS(9637), 1, anon_sym_as, - anon_sym_RBRACE, - [180922] = 6, - ACTIONS(8009), 1, + ACTIONS(9818), 1, + anon_sym_RPAREN, + ACTIONS(9820), 1, + anon_sym_COMMA, + STATE(6068), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [145084] = 4, + ACTIONS(9413), 1, anon_sym_pass, - ACTIONS(8011), 1, - sym__newline, - ACTIONS(8013), 1, + ACTIONS(9747), 1, sym__indent, - STATE(676), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3773), 2, sym_pass_statement, - STATE(705), 1, - sym_extern_suite, + sym__cppclass_suite, + [145099] = 5, + ACTIONS(9536), 1, + anon_sym_RPAREN, + ACTIONS(9639), 1, + sym_identifier, + STATE(6124), 1, + sym_dotted_name, + STATE(6390), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180942] = 6, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, - ACTIONS(8227), 1, + [145116] = 5, + ACTIONS(9411), 1, anon_sym_RPAREN, + ACTIONS(9639), 1, + sym_identifier, + STATE(6124), 1, + sym_dotted_name, + STATE(6390), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180962] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8229), 1, - anon_sym_else, + [145133] = 4, + ACTIONS(9822), 1, + anon_sym_COMMA, + STATE(5658), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180982] = 3, - ACTIONS(8231), 1, - anon_sym_LPAREN, + ACTIONS(7953), 2, + sym__newline, + anon_sym_SEMI, + [145148] = 5, + ACTIONS(9688), 1, + anon_sym_case, + ACTIONS(9825), 1, + sym__dedent, + STATE(5616), 1, + aux_sym__match_block_repeat1, + STATE(6454), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 4, + [145165] = 5, + ACTIONS(9637), 1, + anon_sym_as, + ACTIONS(9827), 1, anon_sym_RPAREN, + ACTIONS(9829), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [180996] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8233), 1, - anon_sym_COLON, + STATE(6307), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181016] = 6, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(7092), 1, + [145182] = 5, + ACTIONS(9662), 1, + anon_sym_RPAREN, + ACTIONS(9664), 1, + anon_sym_COMMA, + ACTIONS(9831), 1, + anon_sym_LPAREN, + STATE(6097), 1, + aux_sym_function_pointer_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [145199] = 5, + ACTIONS(9433), 1, anon_sym_COLON, - ACTIONS(7094), 1, - sym__newline, - STATE(5469), 1, - sym_gil_spec, + ACTIONS(9833), 1, + anon_sym_RBRACE, + ACTIONS(9835), 1, + sym_type_conversion, + STATE(6631), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181036] = 6, - ACTIONS(6270), 1, + [145216] = 3, + ACTIONS(8963), 1, anon_sym_as, - ACTIONS(6272), 1, - anon_sym_if, - ACTIONS(6274), 1, - anon_sym_and, - ACTIONS(6276), 1, - anon_sym_or, - ACTIONS(8235), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181056] = 6, - ACTIONS(6924), 1, - anon_sym_with, - ACTIONS(6926), 1, - anon_sym_nogil, - ACTIONS(8237), 1, + ACTIONS(9837), 3, + anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - ACTIONS(8239), 1, - sym__newline, - STATE(5407), 1, - sym_gil_spec, + [145229] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181076] = 4, - ACTIONS(7925), 1, + ACTIONS(9165), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - STATE(4442), 1, - aux_sym_union_pattern_repeat1, + [145240] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 3, - anon_sym_RPAREN, + ACTIONS(9839), 4, anon_sym_COMMA, anon_sym_as, - [181092] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8241), 1, anon_sym_COLON, + [145251] = 4, + ACTIONS(9841), 1, + anon_sym_COMMA, + STATE(5666), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181112] = 2, + ACTIONS(7953), 2, + anon_sym_COLON, + anon_sym_by, + [145266] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8243), 5, + ACTIONS(9341), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [181124] = 6, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8069), 1, - sym__newline, - ACTIONS(8071), 1, - sym__indent, - STATE(685), 1, - sym_pass_statement, - STATE(713), 1, - sym_struct_suite, + anon_sym_RBRACE, + [145277] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181144] = 2, + ACTIONS(9345), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [145288] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8017), 5, + ACTIONS(9349), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_COLON, anon_sym_PIPE, anon_sym_RBRACE, - [181156] = 2, + [145299] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7999), 5, + ACTIONS(9359), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [181168] = 4, - ACTIONS(8225), 1, + anon_sym_as, anon_sym_PIPE, - STATE(4583), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [145310] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7764), 3, + ACTIONS(9254), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [181184] = 2, + [145321] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8245), 5, + ACTIONS(9363), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [181196] = 2, + anon_sym_RBRACE, + [145332] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8247), 5, + ACTIONS(9598), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [181208] = 2, + [145343] = 4, + ACTIONS(9844), 1, + anon_sym_COMMA, + STATE(5674), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7596), 5, - anon_sym_COMMA, + ACTIONS(9837), 2, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [181220] = 2, + anon_sym_COLON, + [145358] = 5, + ACTIONS(8576), 1, + sym_identifier, + STATE(5342), 1, + sym_dotted_name, + STATE(5569), 1, + sym_aliased_import, + STATE(6322), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7722), 5, - anon_sym_DOT, - anon_sym_LPAREN, + [145375] = 5, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(9847), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [181232] = 6, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8011), 1, + ACTIONS(9849), 1, sym__newline, - ACTIONS(8013), 1, - sym__indent, - STATE(676), 1, - sym_pass_statement, - STATE(677), 1, - sym_extern_suite, + STATE(6471), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181252] = 2, + [145392] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7999), 5, + ACTIONS(9604), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [181264] = 2, + anon_sym_as, + anon_sym_PIPE, + [145403] = 4, + ACTIONS(9652), 1, + anon_sym_COMMA, + STATE(5646), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9851), 2, + sym__newline, + anon_sym_SEMI, + [145418] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8249), 5, + ACTIONS(9367), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [181276] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8251), 1, - anon_sym_else, + anon_sym_RBRACE, + [145429] = 4, + ACTIONS(9855), 1, + anon_sym_COMMA, + STATE(5680), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181296] = 6, - ACTIONS(6714), 1, - anon_sym_as, - ACTIONS(6716), 1, - anon_sym_if, - ACTIONS(6718), 1, - anon_sym_and, - ACTIONS(6720), 1, - anon_sym_or, - ACTIONS(8253), 1, - anon_sym_else, + ACTIONS(9853), 2, + sym__newline, + anon_sym_SEMI, + [145444] = 4, + ACTIONS(8128), 1, + anon_sym_COMMA, + STATE(5658), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181316] = 4, - ACTIONS(8225), 1, - anon_sym_PIPE, - STATE(4570), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(9858), 2, + sym__newline, + anon_sym_SEMI, + [145459] = 5, + ACTIONS(9177), 1, + anon_sym_LPAREN, + ACTIONS(9676), 1, + anon_sym_COMMA, + ACTIONS(9860), 1, + anon_sym_RBRACK, + STATE(5878), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7690), 3, - anon_sym_COMMA, + [145476] = 5, + ACTIONS(9637), 1, anon_sym_as, - anon_sym_RBRACE, - [181332] = 3, - STATE(4570), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(9862), 1, + anon_sym_RPAREN, + ACTIONS(9864), 1, + anon_sym_COMMA, + STATE(5782), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7759), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [181346] = 5, - ACTIONS(8255), 1, - sym_identifier, - ACTIONS(8257), 1, - anon_sym_COLON, - ACTIONS(8261), 1, - sym__newline, + [145493] = 4, + ACTIONS(9187), 1, + anon_sym_pass, + ACTIONS(9692), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8259), 2, - anon_sym_class, - anon_sym_struct, - [181364] = 4, - ACTIONS(8263), 1, - anon_sym_PIPE, - STATE(4583), 1, - aux_sym_union_pattern_repeat1, + STATE(2183), 2, + sym_pass_statement, + sym__cppclass_suite, + [145508] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7759), 3, + ACTIONS(9341), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [181380] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [145519] = 5, + ACTIONS(9643), 1, + anon_sym_as, + ACTIONS(9866), 1, + anon_sym_COMMA, + ACTIONS(9868), 1, + anon_sym_RBRACK, + STATE(5803), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8266), 5, + [145536] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9569), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [181392] = 2, + anon_sym_RBRACE, + [145547] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7596), 5, + ACTIONS(9307), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [181404] = 6, - ACTIONS(8001), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_RBRACE, - ACTIONS(8270), 1, - aux_sym_format_specifier_token1, - STATE(4497), 1, - aux_sym_format_specifier_repeat1, - STATE(4816), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [181424] = 4, - ACTIONS(8272), 1, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, + [145558] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8209), 2, + ACTIONS(9345), 4, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(8274), 2, - anon_sym_not, - anon_sym_or, - [181440] = 6, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(8116), 1, - sym__newline, - ACTIONS(8118), 1, - sym__indent, - STATE(3063), 1, - sym_pass_statement, - STATE(3124), 1, - sym_struct_suite, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [145569] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181460] = 5, - ACTIONS(8276), 1, - sym_identifier, - ACTIONS(8278), 1, - anon_sym_COLON, - ACTIONS(8282), 1, - sym__newline, + ACTIONS(9351), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [145580] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8280), 2, - anon_sym_class, - anon_sym_struct, - [181478] = 5, - ACTIONS(7605), 1, - anon_sym_DOT, - ACTIONS(8081), 1, + ACTIONS(8071), 2, anon_sym_COLON, - ACTIONS(8083), 1, anon_sym_PIPE, + ACTIONS(9870), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [145593] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7834), 2, - sym__newline, - anon_sym_SEMI, - [181496] = 6, - ACTIONS(7233), 1, - anon_sym_as, - ACTIONS(7235), 1, - anon_sym_if, - ACTIONS(7237), 1, - anon_sym_and, - ACTIONS(7239), 1, - anon_sym_or, - ACTIONS(8284), 1, + ACTIONS(9429), 4, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [145604] = 4, + ACTIONS(9631), 1, + anon_sym_COMMA, + STATE(5578), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181516] = 2, + ACTIONS(9872), 2, + anon_sym_from, + anon_sym_in, + [145619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7997), 5, + ACTIONS(8376), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [181528] = 2, + anon_sym_COLON, + ACTIONS(8382), 2, + anon_sym_not, + anon_sym_or, + [145632] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8266), 4, + ACTIONS(9567), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181539] = 2, + anon_sym_RBRACE, + [145643] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8037), 4, + ACTIONS(9465), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181550] = 5, - ACTIONS(8286), 1, - anon_sym_case, - ACTIONS(8288), 1, - sym__dedent, - STATE(4685), 1, - aux_sym__match_block_repeat1, - STATE(5359), 1, - sym_case_clause, + [145654] = 4, + ACTIONS(9171), 1, + anon_sym_pass, + ACTIONS(9773), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181567] = 5, - ACTIONS(8286), 1, - anon_sym_case, - ACTIONS(8290), 1, - sym__dedent, - STATE(4604), 1, - aux_sym__match_block_repeat1, - STATE(5359), 1, - sym_case_clause, + STATE(3932), 2, + sym_pass_statement, + sym__cppclass_suite, + [145669] = 5, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(9874), 1, + anon_sym_COLON, + ACTIONS(9876), 1, + sym__newline, + STATE(6530), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181584] = 4, - ACTIONS(8294), 1, - anon_sym_COMMA, - STATE(4663), 1, - aux_sym_global_statement_repeat1, + [145686] = 3, + ACTIONS(9281), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8292), 2, + ACTIONS(9878), 3, sym__newline, anon_sym_SEMI, - [181599] = 4, - ACTIONS(8296), 1, anon_sym_COMMA, - STATE(4598), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8299), 2, - anon_sym_if, - anon_sym_COLON, - [181614] = 5, - ACTIONS(8301), 1, + [145699] = 5, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(8303), 1, - anon_sym_RPAREN, - ACTIONS(8305), 1, + ACTIONS(9664), 1, anon_sym_COMMA, - STATE(5218), 1, + ACTIONS(9880), 1, + anon_sym_RPAREN, + STATE(5784), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181631] = 2, + [145716] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7903), 4, + ACTIONS(9226), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181642] = 2, + [145727] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7832), 4, - anon_sym_DOT, + ACTIONS(9882), 4, + sym__newline, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [181653] = 2, + anon_sym_with, + anon_sym_nogil, + [145738] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7985), 4, + ACTIONS(9349), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181664] = 2, + [145749] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7903), 4, - anon_sym_RPAREN, + ACTIONS(9627), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181675] = 5, - ACTIONS(8286), 1, - anon_sym_case, - ACTIONS(8307), 1, - sym__dedent, - STATE(4695), 1, - aux_sym__match_block_repeat1, - STATE(5359), 1, - sym_case_clause, + anon_sym_RBRACE, + [145760] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181692] = 2, + ACTIONS(9039), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [145771] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8309), 4, + ACTIONS(9884), 4, sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, sym_identifier, - [181703] = 2, + [145782] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 4, - anon_sym_RPAREN, + ACTIONS(9471), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181714] = 2, + anon_sym_RBRACE, + [145793] = 4, + ACTIONS(5784), 1, + sym_identifier, + STATE(6326), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8160), 4, - anon_sym_RPAREN, + ACTIONS(9886), 2, + anon_sym_import, + anon_sym_cimport, + [145808] = 4, + ACTIONS(9890), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181725] = 2, + STATE(5709), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8182), 4, - anon_sym_RPAREN, + ACTIONS(9888), 2, + sym__newline, + anon_sym_SEMI, + [145823] = 4, + ACTIONS(9893), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181736] = 2, + STATE(5658), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8021), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181747] = 2, + ACTIONS(2781), 2, + sym__newline, + anon_sym_SEMI, + [145838] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8194), 4, + ACTIONS(9349), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181758] = 2, + [145849] = 3, + ACTIONS(9897), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8243), 4, - anon_sym_RPAREN, + ACTIONS(9895), 2, + sym__newline, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181769] = 2, + [145861] = 4, + ACTIONS(9899), 1, + anon_sym_LPAREN, + ACTIONS(9901), 1, + anon_sym_COLON, + ACTIONS(9903), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8245), 4, - anon_sym_RPAREN, + [145875] = 4, + ACTIONS(6347), 1, + anon_sym_COLON, + ACTIONS(9905), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181780] = 2, + STATE(6049), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8249), 4, - anon_sym_RPAREN, + [145889] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181791] = 2, + ACTIONS(9907), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8266), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181802] = 4, - ACTIONS(8313), 1, + [145903] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4652), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8311), 2, + ACTIONS(9909), 1, sym__newline, - anon_sym_SEMI, - [181817] = 3, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7223), 2, + [145917] = 4, + ACTIONS(9181), 1, + anon_sym_RBRACK, + ACTIONS(9911), 1, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7379), 2, - anon_sym_not, - anon_sym_or, - [181830] = 2, + STATE(5779), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7917), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181841] = 5, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(8315), 1, + [145931] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8317), 1, - anon_sym_RBRACK, - STATE(5255), 1, - aux_sym_external_definition_repeat1, + ACTIONS(9913), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181858] = 4, - ACTIONS(8321), 1, + [145945] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4660), 1, - aux_sym__import_list_repeat1, + ACTIONS(9915), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8319), 2, - sym__newline, - anon_sym_SEMI, - [181873] = 5, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(8315), 1, + [145959] = 4, + ACTIONS(7330), 1, anon_sym_COMMA, - ACTIONS(8323), 1, - anon_sym_RBRACK, - STATE(5252), 1, - aux_sym_external_definition_repeat1, + ACTIONS(7342), 1, + anon_sym_RBRACE, + STATE(5902), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181890] = 5, - ACTIONS(7834), 1, - anon_sym_EQ, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8327), 1, + [145973] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(9919), 1, anon_sym_COLON, - ACTIONS(8329), 1, - anon_sym_PIPE, + ACTIONS(9921), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181907] = 4, - ACTIONS(8331), 1, + [145987] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4622), 1, - aux_sym__patterns_repeat1, + ACTIONS(9923), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5725), 2, - anon_sym_from, - anon_sym_in, - [181922] = 5, - ACTIONS(8334), 1, - anon_sym_RPAREN, - ACTIONS(8336), 1, + [146001] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8338), 1, - anon_sym_as, - STATE(5005), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9925), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181939] = 4, - ACTIONS(8340), 1, + [146015] = 4, + ACTIONS(2628), 1, + anon_sym_COLON, + ACTIONS(9927), 1, anon_sym_COMMA, - STATE(4747), 1, + STATE(6091), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 2, + [146029] = 4, + ACTIONS(9929), 1, anon_sym_COLON, - anon_sym_by, - [181954] = 5, - ACTIONS(8338), 1, - anon_sym_as, - ACTIONS(8342), 1, - anon_sym_RPAREN, - ACTIONS(8344), 1, - anon_sym_COMMA, - STATE(4899), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9931), 1, + anon_sym_PIPE, + STATE(6255), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181971] = 2, + [146043] = 4, + ACTIONS(9933), 1, + anon_sym_COMMA, + ACTIONS(9935), 1, + anon_sym_RBRACE, + STATE(6076), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7919), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181982] = 4, - ACTIONS(8346), 1, + [146057] = 4, + ACTIONS(9937), 1, anon_sym_COMMA, - STATE(4660), 1, - aux_sym__import_list_repeat1, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(5765), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8319), 2, - sym__newline, - anon_sym_SEMI, - [181997] = 2, + [146071] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7856), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [182008] = 5, - ACTIONS(4021), 1, - anon_sym_LBRACK, - ACTIONS(8348), 1, - anon_sym_LPAREN, - STATE(5398), 1, - sym_parameters, - STATE(5400), 1, - sym_type_parameter, + ACTIONS(9941), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [146083] = 4, + ACTIONS(9676), 1, + anon_sym_COMMA, + ACTIONS(9943), 1, + anon_sym_RBRACK, + STATE(5847), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182025] = 2, + [146097] = 4, + ACTIONS(9945), 1, + anon_sym_LPAREN, + ACTIONS(9947), 1, + anon_sym_COLON, + ACTIONS(9949), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8350), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [182036] = 5, - ACTIONS(8352), 1, + [146111] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8354), 1, - anon_sym_as, - ACTIONS(8356), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9951), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182053] = 4, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(8358), 1, - sym__indent, + [146125] = 4, + ACTIONS(9953), 1, + anon_sym_RPAREN, + ACTIONS(9955), 1, + anon_sym_COMMA, + STATE(5732), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3163), 2, - sym_pass_statement, - sym__cppclass_suite, - [182068] = 2, + [146139] = 4, + ACTIONS(9958), 1, + anon_sym_COLON, + ACTIONS(9960), 1, + anon_sym_nogil, + ACTIONS(9962), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6662), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [182079] = 4, - ACTIONS(8294), 1, + [146153] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4718), 1, - aux_sym_global_statement_repeat1, + ACTIONS(9964), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8360), 2, + [146167] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(9966), 1, + anon_sym_COLON, + ACTIONS(9968), 1, sym__newline, - anon_sym_SEMI, - [182094] = 4, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8362), 1, - sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(737), 2, - sym_pass_statement, - sym__cppclass_suite, - [182109] = 5, - ACTIONS(8338), 1, - anon_sym_as, - ACTIONS(8364), 1, - anon_sym_RPAREN, - ACTIONS(8366), 1, + [146181] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4795), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9970), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182126] = 5, - ACTIONS(8354), 1, - anon_sym_as, - ACTIONS(8368), 1, + [146195] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8370), 1, - anon_sym_RBRACK, - STATE(4869), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9972), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182143] = 4, - ACTIONS(8374), 1, + [146209] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4638), 1, - aux_sym_print_statement_repeat1, + ACTIONS(9974), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8372), 2, + [146223] = 4, + ACTIONS(9949), 1, sym__newline, - anon_sym_SEMI, - [182158] = 5, - ACTIONS(8354), 1, - anon_sym_as, - ACTIONS(8377), 1, - anon_sym_COMMA, - ACTIONS(8379), 1, - anon_sym_RBRACK, - STATE(4797), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9976), 1, + sym_identifier, + ACTIONS(9978), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182175] = 2, + [146237] = 4, + ACTIONS(7882), 1, + sym__newline, + ACTIONS(8390), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7968), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182186] = 5, - ACTIONS(8354), 1, - anon_sym_as, - ACTIONS(8381), 1, - anon_sym_COMMA, - ACTIONS(8383), 1, + [146251] = 4, + ACTIONS(2628), 1, anon_sym_RBRACK, - STATE(5009), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9980), 1, + anon_sym_COMMA, + STATE(6052), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182203] = 2, + [146265] = 4, + ACTIONS(7940), 1, + sym__newline, + ACTIONS(9982), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8037), 4, + [146279] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [182214] = 2, + ACTIONS(9984), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8385), 4, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [182225] = 5, - ACTIONS(8338), 1, - anon_sym_as, - ACTIONS(8387), 1, - anon_sym_RPAREN, - ACTIONS(8389), 1, + [146293] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4866), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9986), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182242] = 4, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8362), 1, - sym__indent, + [146307] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(9988), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(738), 2, - sym_pass_statement, - sym__cppclass_suite, - [182257] = 2, + [146321] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(9990), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 4, + [146335] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [182268] = 2, + ACTIONS(9992), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7968), 4, + [146349] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [182279] = 4, - ACTIONS(5094), 1, - anon_sym_LBRACK, - STATE(3639), 1, - sym_type_index, + ACTIONS(9994), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6157), 2, - anon_sym_DOT, - sym_identifier, - [182294] = 4, - ACTIONS(8294), 1, + [146363] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4597), 1, - aux_sym_global_statement_repeat1, + ACTIONS(9996), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8391), 2, - sym__newline, - anon_sym_SEMI, - [182309] = 2, + [146377] = 4, + ACTIONS(9998), 1, + anon_sym_COMMA, + ACTIONS(10001), 1, + anon_sym_RBRACE, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8160), 4, + [146391] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [182320] = 3, + ACTIONS(10003), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(8393), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [182333] = 4, - ACTIONS(8397), 1, + [146405] = 4, + ACTIONS(9062), 1, + anon_sym_RPAREN, + ACTIONS(10005), 1, anon_sym_COMMA, - STATE(4638), 1, - aux_sym_print_statement_repeat1, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8395), 2, + [146419] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10008), 1, sym__newline, - anon_sym_SEMI, - [182348] = 2, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8182), 4, + [146433] = 4, + ACTIONS(2399), 1, + anon_sym_RPAREN, + ACTIONS(10010), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [182359] = 2, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7858), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [182370] = 3, - ACTIONS(7991), 1, - anon_sym_as, + [146447] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10012), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8399), 3, - sym__newline, - anon_sym_SEMI, + [146461] = 4, + ACTIONS(2401), 1, + anon_sym_RPAREN, + ACTIONS(10014), 1, anon_sym_COMMA, - [182383] = 2, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8194), 4, + [146475] = 4, + ACTIONS(10016), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(10018), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [182394] = 5, - ACTIONS(8170), 1, - anon_sym_RPAREN, - ACTIONS(8401), 1, - sym_identifier, - STATE(4990), 1, - sym_dotted_name, - STATE(5426), 1, - sym_aliased_import, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182411] = 2, + [146489] = 4, + ACTIONS(10020), 1, + anon_sym_COMMA, + ACTIONS(10022), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8243), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [182422] = 5, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(8403), 1, + [146503] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10024), 1, anon_sym_COLON, - ACTIONS(8405), 1, + ACTIONS(10026), 1, sym__newline, - STATE(5324), 1, - sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182439] = 4, - ACTIONS(8409), 1, - anon_sym_COMMA, - STATE(4660), 1, - aux_sym__import_list_repeat1, + [146517] = 3, + ACTIONS(2668), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8407), 2, - sym__newline, - anon_sym_SEMI, - [182454] = 5, - ACTIONS(8338), 1, - anon_sym_as, - ACTIONS(8412), 1, - anon_sym_RPAREN, - ACTIONS(8414), 1, + ACTIONS(2670), 2, + anon_sym_except_STAR, + anon_sym_finally, + [146529] = 4, + ACTIONS(10028), 1, anon_sym_COMMA, - STATE(4909), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10030), 1, + anon_sym_RBRACE, + STATE(5791), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182471] = 2, + [146543] = 4, + ACTIONS(2411), 1, + anon_sym_RPAREN, + ACTIONS(10032), 1, + anon_sym_COMMA, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7921), 4, - anon_sym_COMMA, - anon_sym_as, + [146557] = 4, + ACTIONS(2185), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [182482] = 4, - ACTIONS(8418), 1, + ACTIONS(10034), 1, anon_sym_COMMA, - STATE(4663), 1, - aux_sym_global_statement_repeat1, + STATE(5921), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8416), 2, - sym__newline, - anon_sym_SEMI, - [182497] = 5, - ACTIONS(8338), 1, - anon_sym_as, - ACTIONS(8421), 1, - anon_sym_RPAREN, - ACTIONS(8423), 1, + [146571] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, - STATE(4857), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10036), 1, + anon_sym_RBRACK, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182514] = 5, - ACTIONS(8401), 1, - sym_identifier, - STATE(4713), 1, - sym_dotted_name, - STATE(5143), 1, - sym_aliased_import, - STATE(5585), 1, - sym__import_list, + [146585] = 4, + ACTIONS(2847), 1, + anon_sym_COLON, + ACTIONS(10038), 1, + anon_sym_COMMA, + STATE(5852), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182531] = 2, + [146599] = 4, + ACTIONS(10040), 1, + anon_sym_COLON, + ACTIONS(10042), 1, + anon_sym_LBRACK, + STATE(6898), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7905), 4, + [146613] = 4, + ACTIONS(2413), 1, anon_sym_RPAREN, + ACTIONS(10044), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182542] = 2, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7915), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182553] = 2, + [146627] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10046), 1, + anon_sym_COLON, + STATE(6978), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7917), 4, + [146641] = 4, + ACTIONS(9743), 1, anon_sym_RPAREN, + ACTIONS(10048), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182564] = 5, - ACTIONS(4021), 1, - anon_sym_LBRACK, - ACTIONS(8348), 1, + STATE(6126), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [146655] = 4, + ACTIONS(9917), 1, anon_sym_LPAREN, - STATE(5342), 1, - sym_parameters, - STATE(5460), 1, - sym_type_parameter, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10052), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182581] = 2, + [146669] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10054), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7919), 4, + [146683] = 4, + ACTIONS(9743), 1, anon_sym_RPAREN, + ACTIONS(10056), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182592] = 2, + STATE(6126), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7921), 4, - anon_sym_RPAREN, + [146697] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182603] = 5, - ACTIONS(8301), 1, + ACTIONS(10058), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [146711] = 4, + ACTIONS(9917), 1, anon_sym_LPAREN, - ACTIONS(8305), 1, + ACTIONS(10060), 1, + anon_sym_COLON, + ACTIONS(10062), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [146725] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8425), 1, - anon_sym_RPAREN, - STATE(5060), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(10064), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182620] = 5, - ACTIONS(4021), 1, - anon_sym_LBRACK, - ACTIONS(8348), 1, - anon_sym_LPAREN, - STATE(5349), 1, - sym_parameters, - STATE(5464), 1, - sym_type_parameter, + [146739] = 4, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(10066), 1, + anon_sym_RBRACK, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182637] = 2, + [146753] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10068), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8015), 4, - anon_sym_RPAREN, + [146767] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182648] = 2, + ACTIONS(10070), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8245), 4, + [146781] = 4, + ACTIONS(9911), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(10066), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [182659] = 4, - ACTIONS(8427), 1, + STATE(6101), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [146795] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4430), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(10072), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 2, + [146809] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10074), 1, sym__newline, - anon_sym_SEMI, - [182674] = 2, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8134), 4, + [146823] = 4, + ACTIONS(5594), 1, anon_sym_RPAREN, + ACTIONS(10076), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182685] = 4, - ACTIONS(7935), 1, - anon_sym_pass, - ACTIONS(8429), 1, - sym__indent, + STATE(6234), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1499), 2, - sym_pass_statement, - sym__cppclass_suite, - [182700] = 3, - ACTIONS(7615), 1, - anon_sym_as, + [146837] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10078), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8299), 3, + [146851] = 4, + ACTIONS(9664), 1, anon_sym_COMMA, - anon_sym_if, + ACTIONS(10080), 1, + anon_sym_RPAREN, + STATE(6116), 1, + aux_sym_function_pointer_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [146865] = 4, + ACTIONS(10082), 1, + anon_sym_LPAREN, + ACTIONS(10084), 1, anon_sym_COLON, - [182713] = 2, + ACTIONS(10086), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8431), 4, + [146879] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [182724] = 2, + ACTIONS(10088), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8247), 4, + [146893] = 4, + ACTIONS(5501), 1, anon_sym_RPAREN, + ACTIONS(10090), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182735] = 2, + STATE(6234), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8249), 4, - anon_sym_COMMA, - anon_sym_as, + [146907] = 4, + ACTIONS(5503), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [182746] = 4, - ACTIONS(8435), 1, + ACTIONS(10092), 1, anon_sym_COMMA, - STATE(4638), 1, - aux_sym_print_statement_repeat1, + STATE(6275), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8433), 2, - sym__newline, - anon_sym_SEMI, - [182761] = 5, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(8315), 1, + [146921] = 4, + ACTIONS(10094), 1, anon_sym_COMMA, - ACTIONS(8437), 1, + ACTIONS(10096), 1, anon_sym_RBRACK, - STATE(5043), 1, - aux_sym_external_definition_repeat1, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182778] = 5, - ACTIONS(8286), 1, - anon_sym_case, - ACTIONS(8439), 1, - sym__dedent, - STATE(4695), 1, - aux_sym__match_block_repeat1, - STATE(5359), 1, - sym_case_clause, + [146935] = 4, + ACTIONS(10098), 1, + anon_sym_COMMA, + ACTIONS(10100), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182795] = 2, + [146949] = 4, + ACTIONS(10102), 1, + anon_sym_COMMA, + ACTIONS(10104), 1, + anon_sym_RBRACE, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7970), 4, - anon_sym_RPAREN, + [146963] = 4, + ACTIONS(10106), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182806] = 4, - ACTIONS(8443), 1, - anon_sym_EQ, - STATE(5478), 1, - sym_template_default, + ACTIONS(10108), 1, + anon_sym_RBRACE, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8441), 2, - anon_sym_COMMA, + [146977] = 4, + ACTIONS(2447), 1, anon_sym_RBRACK, - [182821] = 5, - ACTIONS(8196), 1, - anon_sym_RPAREN, - ACTIONS(8401), 1, - sym_identifier, - STATE(4990), 1, - sym_dotted_name, - STATE(5426), 1, - sym_aliased_import, + ACTIONS(10110), 1, + anon_sym_COMMA, + STATE(6134), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182838] = 5, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(8315), 1, - anon_sym_COMMA, - ACTIONS(8445), 1, - anon_sym_RBRACK, - STATE(4891), 1, - aux_sym_external_definition_repeat1, + [146991] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10112), 1, + anon_sym_COLON, + ACTIONS(10114), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182855] = 5, - ACTIONS(8196), 1, - anon_sym_RPAREN, - ACTIONS(8401), 1, - sym_identifier, - STATE(4990), 1, - sym_dotted_name, - STATE(5426), 1, - sym_aliased_import, + [147005] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182872] = 2, + ACTIONS(6828), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [147015] = 4, + ACTIONS(7794), 1, + sym__newline, + ACTIONS(7944), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7905), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [182883] = 2, + [147029] = 3, + ACTIONS(2660), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7985), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182894] = 4, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(8358), 1, - sym__indent, + ACTIONS(2662), 2, + anon_sym_except_STAR, + anon_sym_finally, + [147041] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10116), 1, + anon_sym_COLON, + STATE(6675), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3162), 2, - sym_pass_statement, - sym__cppclass_suite, - [182909] = 4, - ACTIONS(7038), 1, - anon_sym_COMMA, - STATE(4430), 1, - aux_sym_assert_statement_repeat1, + [147055] = 3, + ACTIONS(10120), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8447), 2, + ACTIONS(10118), 2, sym__newline, anon_sym_SEMI, - [182924] = 5, - ACTIONS(8449), 1, - anon_sym_case, - ACTIONS(8452), 1, - sym__dedent, - STATE(4695), 1, - aux_sym__match_block_repeat1, - STATE(5359), 1, - sym_case_clause, + [147067] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10122), 1, + anon_sym_COLON, + ACTIONS(10124), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182941] = 4, - ACTIONS(8456), 1, + [147081] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10126), 1, anon_sym_COLON, - ACTIONS(8458), 1, - anon_sym_EQ, + ACTIONS(10128), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8454), 2, - anon_sym_RPAREN, + [147095] = 4, + ACTIONS(4313), 1, + anon_sym_RBRACK, + ACTIONS(10130), 1, anon_sym_COMMA, - [182956] = 2, + STATE(6088), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8017), 4, - anon_sym_COMMA, - anon_sym_as, + [147109] = 4, + ACTIONS(5621), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [182967] = 5, - ACTIONS(8338), 1, - anon_sym_as, - ACTIONS(8460), 1, - anon_sym_RPAREN, - ACTIONS(8462), 1, + ACTIONS(10132), 1, anon_sym_COMMA, - STATE(4820), 1, + STATE(6275), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182984] = 5, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(8305), 1, + [147123] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8464), 1, - anon_sym_RPAREN, - STATE(5183), 1, - aux_sym_function_pointer_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183001] = 4, - ACTIONS(7935), 1, - anon_sym_pass, - ACTIONS(8429), 1, - sym__indent, + ACTIONS(10134), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1441), 2, - sym_pass_statement, - sym__cppclass_suite, - [183016] = 5, - ACTIONS(7518), 1, - sym_identifier, - STATE(4434), 1, - sym_dotted_name, - STATE(4765), 1, - sym_aliased_import, - STATE(5390), 1, - sym__import_list, + [147137] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10136), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183033] = 4, - ACTIONS(5401), 1, - sym_identifier, - STATE(5433), 1, - sym_dotted_name, + [147151] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10138), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8466), 2, - anon_sym_import, - anon_sym_cimport, - [183048] = 5, - ACTIONS(7972), 1, - anon_sym_COLON, - ACTIONS(8468), 1, - anon_sym_RBRACE, - ACTIONS(8470), 1, - sym_type_conversion, - STATE(5803), 1, - sym_format_specifier, + [147165] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10140), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183065] = 2, + [147179] = 4, + ACTIONS(7884), 1, + sym__newline, + ACTIONS(8518), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7985), 4, + [147193] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183076] = 4, - ACTIONS(8009), 1, - anon_sym_pass, - ACTIONS(8362), 1, - sym__indent, + ACTIONS(10142), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(746), 2, - sym_pass_statement, - sym__cppclass_suite, - [183091] = 4, - ACTIONS(8474), 1, + [147207] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4715), 1, - aux_sym__patterns_repeat1, + ACTIONS(10144), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8472), 2, - anon_sym_from, - anon_sym_in, - [183106] = 5, - ACTIONS(8401), 1, - sym_identifier, - STATE(4713), 1, - sym_dotted_name, - STATE(5143), 1, - sym_aliased_import, - STATE(5599), 1, - sym__import_list, + [147221] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10146), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183123] = 2, + [147235] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10148), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8021), 4, + [147249] = 4, + ACTIONS(10150), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(10152), 1, anon_sym_RBRACE, - [183134] = 5, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(8476), 1, - anon_sym_COLON, - ACTIONS(8478), 1, - sym__newline, - STATE(5470), 1, - sym_string, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183151] = 2, - ACTIONS(3), 2, + [147263] = 3, + ACTIONS(10156), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(8037), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(10154), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - [183162] = 5, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(8305), 1, - anon_sym_COMMA, - ACTIONS(8480), 1, - anon_sym_RPAREN, - STATE(4888), 1, - aux_sym_function_pointer_type_repeat1, - ACTIONS(3), 2, + [147275] = 3, + ACTIONS(8935), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [183179] = 5, - ACTIONS(8338), 1, - anon_sym_as, - ACTIONS(8482), 1, - anon_sym_RPAREN, - ACTIONS(8484), 1, - anon_sym_COMMA, - STATE(4931), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, + ACTIONS(8937), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147287] = 3, + ACTIONS(8941), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [183196] = 5, - ACTIONS(7987), 1, + ACTIONS(8943), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147299] = 4, + ACTIONS(5509), 1, anon_sym_RPAREN, - ACTIONS(8486), 1, + ACTIONS(10158), 1, anon_sym_COMMA, - ACTIONS(8488), 1, - anon_sym_as, - STATE(5253), 1, - aux_sym__import_list_repeat1, + STATE(6234), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183213] = 4, - ACTIONS(7929), 1, - anon_sym_pass, - ACTIONS(8358), 1, - sym__indent, - ACTIONS(3), 2, + [147313] = 3, + ACTIONS(8945), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3161), 2, - sym_pass_statement, - sym__cppclass_suite, - [183228] = 4, - ACTIONS(8490), 1, - anon_sym_COMMA, - STATE(4622), 1, - aux_sym__patterns_repeat1, + ACTIONS(8947), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147325] = 4, + ACTIONS(9639), 1, + sym_identifier, + STATE(6124), 1, + sym_dotted_name, + STATE(6390), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 2, - anon_sym_from, - anon_sym_in, - [183243] = 2, + [147339] = 4, + ACTIONS(10128), 1, + sym__newline, + ACTIONS(10160), 1, + anon_sym_LPAREN, + ACTIONS(10162), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8017), 4, + [147353] = 4, + ACTIONS(7953), 1, anon_sym_RPAREN, + ACTIONS(10164), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [183254] = 2, + STATE(5821), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8166), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [183265] = 4, - ACTIONS(8294), 1, - anon_sym_COMMA, - STATE(4663), 1, - aux_sym_global_statement_repeat1, + [147367] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10167), 1, + anon_sym_COLON, + ACTIONS(10169), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8492), 2, - sym__newline, - anon_sym_SEMI, - [183280] = 2, + [147381] = 4, + ACTIONS(9433), 1, + anon_sym_COLON, + ACTIONS(10171), 1, + anon_sym_RBRACE, + STATE(6844), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7970), 4, + [147395] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [183291] = 3, + ACTIONS(10173), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7223), 2, - anon_sym_RPAREN, + [147409] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7227), 2, - anon_sym_not, - anon_sym_or, - [183304] = 2, + ACTIONS(10175), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8166), 4, + [147423] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183315] = 2, + ACTIONS(10177), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7970), 4, + [147437] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183326] = 2, + ACTIONS(10179), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8134), 4, + [147451] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183337] = 2, + ACTIONS(10181), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7915), 4, + [147465] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [183348] = 2, + ACTIONS(10183), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8247), 4, + [147479] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183359] = 2, + ACTIONS(10185), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7903), 4, + [147493] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183370] = 2, + ACTIONS(10187), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8015), 4, + [147507] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [183381] = 2, + ACTIONS(10189), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7968), 4, + [147521] = 4, + ACTIONS(10191), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(10193), 1, anon_sym_RBRACE, - [183392] = 5, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(8494), 1, - anon_sym_COLON, - ACTIONS(8496), 1, - sym__newline, - STATE(5436), 1, - sym_string, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183409] = 4, - ACTIONS(7935), 1, - anon_sym_pass, - ACTIONS(8429), 1, + [147535] = 4, + ACTIONS(10195), 1, + sym__newline, + ACTIONS(10197), 1, sym__indent, + STATE(2091), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1553), 2, - sym_pass_statement, - sym__cppclass_suite, - [183424] = 2, + [147549] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10199), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8021), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + [147563] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10114), 1, anon_sym_PIPE, - [183435] = 4, - ACTIONS(8474), 1, - anon_sym_COMMA, - STATE(4715), 1, - aux_sym__patterns_repeat1, + ACTIONS(10201), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8498), 2, - anon_sym_from, - anon_sym_in, - [183450] = 2, + [147577] = 4, + ACTIONS(8576), 1, + sym_identifier, + STATE(5699), 1, + sym_dotted_name, + STATE(6104), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8134), 4, + [147591] = 4, + ACTIONS(10203), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [183461] = 2, + ACTIONS(10206), 1, + anon_sym_RBRACE, + STATE(5838), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8247), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [183472] = 5, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(8500), 1, + [147605] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10208), 1, anon_sym_COLON, - ACTIONS(8502), 1, + ACTIONS(10210), 1, sym__newline, - STATE(5428), 1, - sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183489] = 2, + [147619] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10212), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 4, + [147633] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183500] = 5, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(8504), 1, - anon_sym_COLON, - ACTIONS(8506), 1, + ACTIONS(10214), 1, sym__newline, - STATE(5376), 1, - sym_string, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183517] = 4, - ACTIONS(8474), 1, + [147647] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4715), 1, - aux_sym__patterns_repeat1, + ACTIONS(10216), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8508), 2, - anon_sym_from, - anon_sym_in, - [183532] = 5, - ACTIONS(8305), 1, + [147661] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8425), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, - anon_sym_LPAREN, - STATE(5060), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(10218), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183549] = 2, + [147675] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10220), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8160), 4, + [147689] = 4, + ACTIONS(10222), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183560] = 2, + ACTIONS(10224), 1, + anon_sym_in, + STATE(6217), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8182), 4, + [147703] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183571] = 2, + ACTIONS(10226), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8194), 4, + [147717] = 4, + ACTIONS(10228), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183582] = 2, + ACTIONS(10231), 1, + anon_sym_RBRACK, + STATE(5847), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8243), 4, + [147731] = 4, + ACTIONS(8520), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(8522), 1, anon_sym_RBRACE, - [183593] = 2, + STATE(5858), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8245), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183604] = 2, + [147745] = 4, + ACTIONS(10233), 1, + anon_sym_COLON, + ACTIONS(10235), 1, + anon_sym_nogil, + ACTIONS(10237), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8249), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183615] = 4, - ACTIONS(8474), 1, - anon_sym_COMMA, - STATE(4715), 1, - aux_sym__patterns_repeat1, + [147759] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10239), 1, + anon_sym_COLON, + STATE(6964), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8512), 2, - anon_sym_from, - anon_sym_in, - [183630] = 4, - ACTIONS(8514), 1, + [147773] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(10241), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6762), 2, + [147787] = 4, + ACTIONS(10243), 1, + anon_sym_COMMA, + ACTIONS(10246), 1, anon_sym_COLON, - anon_sym_by, - [183645] = 2, + STATE(5852), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8266), 4, + [147801] = 4, + ACTIONS(9676), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183656] = 2, + ACTIONS(10248), 1, + anon_sym_RBRACK, + STATE(5847), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7905), 4, + [147815] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183667] = 2, + ACTIONS(10250), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4097), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [183678] = 4, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(8519), 1, - anon_sym_EQ, + [147829] = 4, + ACTIONS(9264), 1, + anon_sym_RBRACK, + ACTIONS(9911), 1, + anon_sym_COMMA, + STATE(6065), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [147843] = 4, + ACTIONS(10252), 1, + anon_sym_SEMI, + ACTIONS(10254), 1, + sym__newline, + STATE(5863), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8517), 2, + [147857] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, + ACTIONS(10256), 1, anon_sym_RBRACK, - [183693] = 5, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8327), 1, - anon_sym_COLON, - ACTIONS(8329), 1, - anon_sym_PIPE, - ACTIONS(8521), 1, - anon_sym_EQ, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183710] = 4, - ACTIONS(7038), 1, + [147871] = 4, + ACTIONS(2555), 1, + anon_sym_RBRACE, + ACTIONS(10258), 1, anon_sym_COMMA, - STATE(4430), 1, - aux_sym_assert_statement_repeat1, + STATE(5838), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8523), 2, + [147885] = 4, + ACTIONS(10260), 1, sym__newline, - anon_sym_SEMI, - [183725] = 2, + ACTIONS(10262), 1, + sym__indent, + STATE(2039), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7915), 4, + [147899] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183736] = 4, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(8525), 1, - anon_sym_EQ, + ACTIONS(7589), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4037), 2, - anon_sym_RPAREN, + [147913] = 4, + ACTIONS(8539), 1, anon_sym_COMMA, - [183751] = 5, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(8527), 1, - anon_sym_COLON, - ACTIONS(8529), 1, - sym__newline, - STATE(5445), 1, - sym_string, + ACTIONS(8541), 1, + anon_sym_RBRACE, + STATE(5865), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183768] = 2, + [147927] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10264), 1, + anon_sym_GT, + ACTIONS(10266), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7917), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183779] = 2, + [147941] = 4, + ACTIONS(1555), 1, + sym__newline, + ACTIONS(10268), 1, + anon_sym_SEMI, + STATE(5885), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7919), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183790] = 5, - ACTIONS(4021), 1, - anon_sym_LBRACK, - ACTIONS(8348), 1, + [147955] = 4, + ACTIONS(9917), 1, anon_sym_LPAREN, - STATE(5316), 1, - sym_parameters, - STATE(5379), 1, - sym_type_parameter, + ACTIONS(10270), 1, + anon_sym_COLON, + ACTIONS(10272), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183807] = 2, + [147969] = 4, + ACTIONS(2639), 1, + anon_sym_RBRACE, + ACTIONS(10274), 1, + anon_sym_COMMA, + STATE(5838), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8166), 4, - anon_sym_RPAREN, + [147983] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [183818] = 2, + ACTIONS(10276), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 4, + [147997] = 4, + ACTIONS(7634), 1, + anon_sym_RPAREN, + ACTIONS(7636), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [183829] = 2, + STATE(5874), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7921), 4, + [148011] = 4, + ACTIONS(10278), 1, + anon_sym_RPAREN, + ACTIONS(10280), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183840] = 2, + STATE(5875), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8015), 4, + [148025] = 4, + ACTIONS(10282), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183851] = 5, - ACTIONS(7972), 1, - anon_sym_COLON, - ACTIONS(8531), 1, + ACTIONS(10284), 1, anon_sym_RBRACE, - ACTIONS(8533), 1, - sym_type_conversion, - STATE(5571), 1, - sym_format_specifier, + STATE(5813), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183868] = 4, - ACTIONS(7989), 1, + [148039] = 4, + ACTIONS(8170), 1, anon_sym_COMMA, - STATE(4619), 1, - aux_sym__import_list_repeat1, + ACTIONS(8172), 1, + anon_sym_RBRACK, + STATE(5877), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7987), 2, + [148053] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10286), 1, sym__newline, - anon_sym_SEMI, - [183883] = 4, - ACTIONS(8535), 1, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [148067] = 4, + ACTIONS(10288), 1, + anon_sym_RPAREN, + ACTIONS(10290), 1, anon_sym_COMMA, - ACTIONS(8537), 1, - anon_sym_RBRACE, - STATE(4799), 1, - aux_sym_dict_pattern_repeat1, + STATE(6250), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183897] = 4, - ACTIONS(6500), 1, + [148081] = 4, + ACTIONS(9526), 1, + anon_sym_RBRACK, + ACTIONS(9911), 1, anon_sym_COMMA, - ACTIONS(8539), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5880), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183911] = 4, - ACTIONS(8541), 1, + [148095] = 4, + ACTIONS(2307), 1, anon_sym_RPAREN, - ACTIONS(8543), 1, + ACTIONS(10292), 1, anon_sym_COMMA, - STATE(4769), 1, + STATE(5752), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183925] = 4, - ACTIONS(2883), 1, + [148109] = 4, + ACTIONS(2309), 1, anon_sym_RPAREN, - ACTIONS(8545), 1, + ACTIONS(10294), 1, anon_sym_COMMA, - STATE(4986), 1, + STATE(5752), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183939] = 4, - ACTIONS(6500), 1, + [148123] = 4, + ACTIONS(10296), 1, anon_sym_COMMA, - ACTIONS(8547), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10298), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183953] = 4, - ACTIONS(6500), 1, + [148137] = 4, + ACTIONS(10300), 1, anon_sym_COMMA, - ACTIONS(8549), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10302), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183967] = 4, - ACTIONS(6500), 1, + [148151] = 4, + ACTIONS(9676), 1, anon_sym_COMMA, - ACTIONS(8551), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10304), 1, + anon_sym_RBRACK, + STATE(5847), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183981] = 4, - ACTIONS(7245), 1, + [148165] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(8553), 1, + ACTIONS(10306), 1, anon_sym_RBRACK, - STATE(5179), 1, + STATE(6087), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183995] = 4, - ACTIONS(6500), 1, + [148179] = 4, + ACTIONS(9911), 1, anon_sym_COMMA, - ACTIONS(8555), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10306), 1, + anon_sym_RBRACK, + STATE(6101), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184009] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8557), 1, + [148193] = 4, + ACTIONS(7894), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10308), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184023] = 4, - ACTIONS(8559), 1, - anon_sym_SEMI, - ACTIONS(8561), 1, - sym__newline, - STATE(4865), 1, - aux_sym__simple_statements_repeat1, + [148207] = 4, + ACTIONS(9676), 1, + anon_sym_COMMA, + ACTIONS(10310), 1, + anon_sym_RBRACK, + STATE(5847), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184037] = 4, - ACTIONS(6500), 1, + [148221] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8563), 1, + ACTIONS(10312), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184051] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_COLON, - ACTIONS(8569), 1, + [148235] = 4, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(10314), 1, + anon_sym_RBRACK, + STATE(6087), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [148249] = 4, + ACTIONS(10316), 1, + anon_sym_SEMI, + ACTIONS(10319), 1, sym__newline, + STATE(5885), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184065] = 4, - ACTIONS(8571), 1, + [148263] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8574), 1, + ACTIONS(10321), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184079] = 4, - ACTIONS(6500), 1, + [148277] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8576), 1, + ACTIONS(10323), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184093] = 4, - ACTIONS(6500), 1, + [148291] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8578), 1, + ACTIONS(10325), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184107] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8580), 1, + [148305] = 4, + ACTIONS(10327), 1, + anon_sym_SEMI, + ACTIONS(10329), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5897), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184121] = 4, - ACTIONS(6500), 1, + [148319] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8582), 1, + ACTIONS(10331), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184135] = 4, - ACTIONS(7730), 1, + [148333] = 4, + ACTIONS(7498), 1, anon_sym_RPAREN, - ACTIONS(8584), 1, + ACTIONS(7500), 1, anon_sym_COMMA, - STATE(4784), 1, + STATE(5976), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184149] = 4, - ACTIONS(6500), 1, + [148347] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8587), 1, + ACTIONS(10333), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184163] = 4, - ACTIONS(6500), 1, + [148361] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8589), 1, + ACTIONS(10335), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184177] = 4, - ACTIONS(8591), 1, - anon_sym_COMMA, - ACTIONS(8594), 1, + [148375] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10337), 1, anon_sym_COLON, - STATE(4787), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184191] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8596), 1, + ACTIONS(10339), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184205] = 4, - ACTIONS(6500), 1, + [148389] = 4, + ACTIONS(8572), 1, anon_sym_COMMA, - ACTIONS(8598), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8574), 1, + anon_sym_RBRACE, + STATE(5898), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184219] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8600), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [148403] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10341), 1, + anon_sym_GT, + ACTIONS(10343), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184233] = 4, - ACTIONS(8602), 1, + [148417] = 4, + ACTIONS(1559), 1, sym__newline, - ACTIONS(8604), 1, - sym__indent, - STATE(1501), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184247] = 3, - ACTIONS(5978), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5974), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [184259] = 4, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(6605), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10345), 1, + anon_sym_SEMI, + STATE(5885), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184273] = 4, - ACTIONS(3483), 1, - anon_sym_COLON, - ACTIONS(8606), 1, + [148431] = 4, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(10347), 1, anon_sym_COMMA, - STATE(5271), 1, - aux_sym_with_clause_repeat1, + STATE(5838), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184287] = 4, - ACTIONS(5299), 1, + [148445] = 4, + ACTIONS(10349), 1, anon_sym_RPAREN, - ACTIONS(8608), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184301] = 4, - ACTIONS(8610), 1, + ACTIONS(10351), 1, anon_sym_COMMA, - ACTIONS(8612), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + STATE(5899), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184315] = 4, - ACTIONS(5313), 1, - anon_sym_RBRACK, - ACTIONS(8614), 1, + [148459] = 4, + ACTIONS(7522), 1, + anon_sym_RPAREN, + ACTIONS(7524), 1, anon_sym_COMMA, - STATE(4902), 1, - aux_sym_case_clause_repeat1, + STATE(5907), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184329] = 4, - ACTIONS(6500), 1, + [148473] = 4, + ACTIONS(10354), 1, + anon_sym_RPAREN, + ACTIONS(10356), 1, anon_sym_COMMA, - ACTIONS(8616), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5909), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184343] = 4, - ACTIONS(8618), 1, - anon_sym_COMMA, - ACTIONS(8620), 1, + [148487] = 4, + ACTIONS(2447), 1, anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10358), 1, + anon_sym_COMMA, + STATE(6193), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184357] = 4, - ACTIONS(8622), 1, + [148501] = 4, + ACTIONS(8178), 1, anon_sym_COMMA, - ACTIONS(8624), 1, + ACTIONS(8180), 1, anon_sym_RBRACK, - STATE(4833), 1, + STATE(5912), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184371] = 4, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8628), 1, - anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184385] = 4, - ACTIONS(8630), 1, + [148515] = 4, + ACTIONS(10360), 1, anon_sym_COMMA, - ACTIONS(8632), 1, + ACTIONS(10362), 1, anon_sym_RBRACE, - STATE(4872), 1, + STATE(5987), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184399] = 4, - ACTIONS(6500), 1, + [148529] = 4, + ACTIONS(9602), 1, + anon_sym_RBRACK, + ACTIONS(9911), 1, anon_sym_COMMA, - ACTIONS(8634), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5914), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184413] = 4, - ACTIONS(8636), 1, - anon_sym_COLON, - ACTIONS(8638), 1, - anon_sym_LBRACK, - STATE(5761), 1, - sym_external_definition, + [148543] = 3, + ACTIONS(10366), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184427] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8640), 1, - anon_sym_COLON, - ACTIONS(8642), 1, + ACTIONS(10364), 2, sym__newline, + anon_sym_COMMA, + [148555] = 4, + ACTIONS(2327), 1, + anon_sym_RPAREN, + ACTIONS(10368), 1, + anon_sym_COMMA, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184441] = 4, - ACTIONS(6500), 1, + [148569] = 4, + ACTIONS(10370), 1, anon_sym_COMMA, - ACTIONS(8644), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10373), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184455] = 4, - ACTIONS(6500), 1, + [148583] = 4, + ACTIONS(2329), 1, + anon_sym_RPAREN, + ACTIONS(10375), 1, anon_sym_COMMA, - ACTIONS(8646), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184469] = 4, - ACTIONS(6500), 1, + [148597] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - ACTIONS(8648), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10377), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184483] = 4, - ACTIONS(8474), 1, + [148611] = 4, + ACTIONS(10379), 1, anon_sym_COMMA, - ACTIONS(8650), 1, - anon_sym_in, - STATE(4715), 1, - aux_sym__patterns_repeat1, + ACTIONS(10381), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184497] = 4, - ACTIONS(6500), 1, + [148625] = 4, + ACTIONS(10383), 1, anon_sym_COMMA, - ACTIONS(8652), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10385), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184511] = 4, - ACTIONS(6500), 1, + [148639] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(8654), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10387), 1, + anon_sym_RBRACK, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184525] = 4, - ACTIONS(6500), 1, + [148653] = 4, + ACTIONS(9911), 1, anon_sym_COMMA, - ACTIONS(8656), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10387), 1, + anon_sym_RBRACK, + STATE(6101), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184539] = 4, - ACTIONS(3956), 1, - sym_string_start, - ACTIONS(8658), 1, - anon_sym_LT, - STATE(5434), 1, - sym_string, + [148667] = 4, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(10389), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184553] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8660), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [148681] = 3, + ACTIONS(2666), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184567] = 4, - ACTIONS(6500), 1, + ACTIONS(2664), 2, + anon_sym_except_STAR, + anon_sym_finally, + [148693] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(8662), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10391), 1, + anon_sym_RBRACK, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184581] = 3, - ACTIONS(8666), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8664), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184593] = 4, - ACTIONS(7972), 1, - anon_sym_COLON, - ACTIONS(8668), 1, - anon_sym_RBRACE, - STATE(5605), 1, - sym_format_specifier, + [148707] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184607] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(8670), 1, + ACTIONS(10393), 3, + sym__newline, anon_sym_COLON, - STATE(5706), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184621] = 4, - ACTIONS(3103), 1, - anon_sym_RPAREN, - ACTIONS(8672), 1, - anon_sym_COMMA, - STATE(4784), 1, - aux_sym__collection_elements_repeat1, + anon_sym_nogil, + [148717] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10395), 1, + anon_sym_COLON, + ACTIONS(10397), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184635] = 4, - ACTIONS(5303), 1, - anon_sym_RPAREN, - ACTIONS(8674), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, + [148731] = 4, + ACTIONS(10399), 1, + anon_sym_SEMI, + ACTIONS(10401), 1, + sym__newline, + STATE(5928), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184649] = 4, - ACTIONS(7339), 1, + [148745] = 4, + ACTIONS(9339), 1, + anon_sym_RBRACK, + ACTIONS(10403), 1, anon_sym_COMMA, - ACTIONS(7341), 1, - anon_sym_RBRACE, - STATE(4928), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184663] = 4, - ACTIONS(7518), 1, - sym_identifier, - STATE(4655), 1, - sym_dotted_name, - STATE(5069), 1, - sym_aliased_import, + STATE(5921), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184677] = 4, - ACTIONS(7245), 1, + [148759] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(8676), 1, + ACTIONS(10406), 1, anon_sym_RBRACK, - STATE(5179), 1, + STATE(6087), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184691] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8678), 1, - anon_sym_COLON, - ACTIONS(8680), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184705] = 4, - ACTIONS(3992), 1, - anon_sym_RPAREN, - ACTIONS(8682), 1, + [148773] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - STATE(5171), 1, - aux_sym__patterns_repeat1, + ACTIONS(7587), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184719] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8684), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [148787] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184733] = 4, - ACTIONS(6500), 1, + ACTIONS(4606), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8686), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_EQ, + [148797] = 4, + ACTIONS(8592), 1, + anon_sym_COMMA, + ACTIONS(8594), 1, + anon_sym_RBRACE, + STATE(5929), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184747] = 4, - ACTIONS(6500), 1, + [148811] = 4, + ACTIONS(10408), 1, anon_sym_COMMA, - ACTIONS(8688), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10411), 1, + anon_sym_RBRACK, + STATE(5926), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184761] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8690), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [148825] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10413), 1, + anon_sym_GT, + ACTIONS(10415), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184775] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8692), 1, - anon_sym_COLON, - ACTIONS(8694), 1, + [148839] = 4, + ACTIONS(1563), 1, sym__newline, + ACTIONS(10417), 1, + anon_sym_SEMI, + STATE(5885), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184789] = 4, - ACTIONS(6500), 1, + [148853] = 4, + ACTIONS(2596), 1, + anon_sym_RBRACE, + ACTIONS(10419), 1, anon_sym_COMMA, - ACTIONS(8696), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5838), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184803] = 4, - ACTIONS(6500), 1, + [148867] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8698), 1, + ACTIONS(10421), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184817] = 4, - ACTIONS(8700), 1, + [148881] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8703), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + ACTIONS(10423), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184831] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8705), 1, - anon_sym_COLON, - ACTIONS(8707), 1, + [148895] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10425), 1, sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184845] = 4, - ACTIONS(8474), 1, + [148909] = 4, + ACTIONS(7597), 1, + anon_sym_RPAREN, + ACTIONS(7599), 1, anon_sym_COMMA, - ACTIONS(8709), 1, - anon_sym_in, - STATE(4715), 1, - aux_sym__patterns_repeat1, + STATE(5939), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184859] = 4, - ACTIONS(6500), 1, + [148923] = 4, + ACTIONS(10427), 1, + anon_sym_RPAREN, + ACTIONS(10429), 1, anon_sym_COMMA, - ACTIONS(8711), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5941), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184873] = 4, - ACTIONS(8565), 1, + [148937] = 4, + ACTIONS(9917), 1, anon_sym_LPAREN, - ACTIONS(8713), 1, + ACTIONS(10431), 1, anon_sym_COLON, - ACTIONS(8715), 1, + ACTIONS(10433), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184887] = 4, - ACTIONS(6500), 1, + [148951] = 4, + ACTIONS(8185), 1, anon_sym_COMMA, - ACTIONS(8717), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8187), 1, + anon_sym_RBRACK, + STATE(5944), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184901] = 4, - ACTIONS(6500), 1, + [148965] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8719), 1, + ACTIONS(10435), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184915] = 4, - ACTIONS(6500), 1, + [148979] = 3, + ACTIONS(8909), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8911), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148991] = 4, + ACTIONS(2347), 1, + anon_sym_RPAREN, + ACTIONS(10437), 1, anon_sym_COMMA, - ACTIONS(8721), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184929] = 4, - ACTIONS(7694), 1, - anon_sym_LPAREN, - ACTIONS(8723), 1, - anon_sym_GT, - ACTIONS(8725), 1, - anon_sym_QMARK, - ACTIONS(3), 2, + [149005] = 3, + ACTIONS(8913), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [184943] = 4, - ACTIONS(6500), 1, + ACTIONS(8915), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [149017] = 4, + ACTIONS(2349), 1, + anon_sym_RPAREN, + ACTIONS(10439), 1, anon_sym_COMMA, - ACTIONS(8727), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184957] = 4, - ACTIONS(6500), 1, + [149031] = 3, + ACTIONS(8917), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8919), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [149043] = 4, + ACTIONS(10441), 1, anon_sym_COMMA, - ACTIONS(8729), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10443), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184971] = 4, - ACTIONS(6994), 1, + [149057] = 4, + ACTIONS(10445), 1, anon_sym_COMMA, - ACTIONS(6996), 1, + ACTIONS(10447), 1, anon_sym_RBRACK, - STATE(4800), 1, + STATE(5908), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184985] = 4, - ACTIONS(6500), 1, + [149071] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8731), 1, + ACTIONS(10449), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184999] = 4, - ACTIONS(6500), 1, + [149085] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8733), 1, + ACTIONS(10451), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185013] = 4, - ACTIONS(6500), 1, + [149099] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8735), 1, + ACTIONS(10453), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185027] = 3, - ACTIONS(8739), 1, - anon_sym_as, + [149113] = 4, + ACTIONS(2628), 1, + anon_sym_RPAREN, + ACTIONS(10455), 1, + anon_sym_COMMA, + STATE(5821), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8737), 2, + [149127] = 4, + ACTIONS(2143), 1, + anon_sym_RBRACK, + ACTIONS(10457), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [185039] = 4, - ACTIONS(6500), 1, + STATE(5921), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [149141] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8741), 1, + ACTIONS(10459), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185053] = 4, - ACTIONS(6500), 1, + [149155] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8743), 1, + ACTIONS(10461), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185067] = 4, - ACTIONS(6500), 1, + [149169] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8745), 1, + ACTIONS(10463), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185081] = 4, - ACTIONS(8747), 1, + [149183] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8750), 1, - anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10465), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185095] = 3, - ACTIONS(8338), 1, - anon_sym_as, + [149197] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10467), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8299), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [185107] = 4, - ACTIONS(6500), 1, + [149211] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8752), 1, + ACTIONS(10469), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185121] = 2, + [149225] = 4, + ACTIONS(10471), 1, + anon_sym_SEMI, + ACTIONS(10473), 1, + sym__newline, + STATE(5965), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8431), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [185131] = 4, - ACTIONS(6500), 1, + [149239] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8754), 1, + ACTIONS(10475), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185145] = 4, - ACTIONS(5317), 1, - anon_sym_RPAREN, - ACTIONS(8756), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185159] = 4, - ACTIONS(8758), 1, - anon_sym_SEMI, - ACTIONS(8760), 1, - sym__newline, - STATE(4864), 1, - aux_sym__simple_statements_repeat1, + [149253] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185173] = 4, - ACTIONS(6563), 1, + ACTIONS(8969), 3, anon_sym_RPAREN, - ACTIONS(6565), 1, anon_sym_COMMA, - STATE(4819), 1, + anon_sym_as, + [149263] = 4, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(7619), 1, + anon_sym_RPAREN, + STATE(5976), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185187] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8762), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [149277] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10114), 1, + anon_sym_PIPE, + ACTIONS(10477), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185201] = 4, - ACTIONS(7211), 1, + [149291] = 4, + ACTIONS(8612), 1, anon_sym_COMMA, - ACTIONS(7213), 1, + ACTIONS(8614), 1, anon_sym_RBRACE, - STATE(4867), 1, + STATE(5968), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185215] = 4, - ACTIONS(8299), 1, - anon_sym_RPAREN, - ACTIONS(8764), 1, + [149305] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10479), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185229] = 4, - ACTIONS(7694), 1, + [149319] = 4, + ACTIONS(9107), 1, anon_sym_LPAREN, - ACTIONS(8767), 1, + ACTIONS(10481), 1, anon_sym_GT, - ACTIONS(8769), 1, + ACTIONS(10483), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185243] = 4, - ACTIONS(1319), 1, - sym__newline, - ACTIONS(8771), 1, - anon_sym_SEMI, - STATE(5248), 1, - aux_sym__simple_statements_repeat1, + [149333] = 4, + ACTIONS(10485), 1, + anon_sym_COMMA, + ACTIONS(10487), 1, + anon_sym_RBRACK, + STATE(6289), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185257] = 4, - ACTIONS(1339), 1, + [149347] = 4, + ACTIONS(1567), 1, sym__newline, - ACTIONS(8773), 1, + ACTIONS(10489), 1, anon_sym_SEMI, - STATE(5248), 1, + STATE(5885), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185271] = 4, - ACTIONS(5311), 1, - anon_sym_RPAREN, - ACTIONS(8775), 1, + [149361] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10491), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185285] = 4, - ACTIONS(3213), 1, - anon_sym_RBRACE, - ACTIONS(8777), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym_dictionary_repeat1, + [149375] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10114), 1, + anon_sym_PIPE, + ACTIONS(10493), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185299] = 4, - ACTIONS(7241), 1, - anon_sym_COMMA, - ACTIONS(7243), 1, + [149389] = 4, + ACTIONS(2567), 1, anon_sym_RBRACE, - STATE(4923), 1, + ACTIONS(10495), 1, + anon_sym_COMMA, + STATE(5838), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185313] = 4, - ACTIONS(5323), 1, - anon_sym_RBRACK, - ACTIONS(8779), 1, - anon_sym_COMMA, - STATE(4902), 1, - aux_sym_case_clause_repeat1, + [149403] = 4, + ACTIONS(10497), 1, + anon_sym_LPAREN, + ACTIONS(10499), 1, + anon_sym_COLON, + ACTIONS(10501), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185327] = 4, - ACTIONS(6569), 1, + [149417] = 4, + ACTIONS(8814), 1, anon_sym_RPAREN, - ACTIONS(6571), 1, + ACTIONS(8816), 1, anon_sym_COMMA, - STATE(4880), 1, + STATE(5978), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185341] = 4, - ACTIONS(8781), 1, + [149431] = 4, + ACTIONS(10503), 1, anon_sym_RPAREN, - ACTIONS(8783), 1, + ACTIONS(10505), 1, anon_sym_COMMA, - STATE(4882), 1, + STATE(5979), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185355] = 4, - ACTIONS(8785), 1, - anon_sym_COMMA, - ACTIONS(8787), 1, - anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185369] = 4, - ACTIONS(6500), 1, + [149445] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8789), 1, + ACTIONS(10507), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185383] = 4, - ACTIONS(6950), 1, + [149459] = 4, + ACTIONS(8198), 1, anon_sym_COMMA, - ACTIONS(6954), 1, + ACTIONS(8200), 1, anon_sym_RBRACK, - STATE(4885), 1, + STATE(5982), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185397] = 4, - ACTIONS(8791), 1, - sym__newline, - ACTIONS(8793), 1, - sym__indent, - STATE(1592), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185411] = 4, - ACTIONS(8795), 1, + [149473] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8797), 1, - anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10509), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185425] = 4, - ACTIONS(8799), 1, - anon_sym_COMMA, - ACTIONS(8801), 1, + [149487] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10511), 1, anon_sym_COLON, - STATE(4794), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185439] = 4, - ACTIONS(7897), 1, - anon_sym_RBRACK, - ACTIONS(8803), 1, - anon_sym_COMMA, - STATE(4887), 1, - aux_sym_type_index_repeat2, + STATE(6927), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185453] = 4, - ACTIONS(6364), 1, + [149501] = 4, + ACTIONS(2447), 1, anon_sym_RPAREN, - ACTIONS(6565), 1, + ACTIONS(10513), 1, anon_sym_COMMA, - STATE(4819), 1, + STATE(6130), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185467] = 4, - ACTIONS(2991), 1, + [149515] = 4, + ACTIONS(5422), 1, anon_sym_RPAREN, - ACTIONS(8805), 1, + ACTIONS(10515), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + STATE(6234), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185481] = 4, - ACTIONS(8807), 1, + [149529] = 4, + ACTIONS(2361), 1, anon_sym_RPAREN, - ACTIONS(8809), 1, + ACTIONS(10517), 1, anon_sym_COMMA, - STATE(4825), 1, - aux_sym__patterns_repeat1, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185495] = 4, - ACTIONS(2869), 1, + [149543] = 4, + ACTIONS(2363), 1, anon_sym_RPAREN, - ACTIONS(8811), 1, + ACTIONS(10519), 1, anon_sym_COMMA, - STATE(4986), 1, + STATE(5752), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185509] = 4, - ACTIONS(6352), 1, + [149557] = 4, + ACTIONS(5424), 1, + anon_sym_RBRACK, + ACTIONS(10521), 1, anon_sym_COMMA, - ACTIONS(6364), 1, - anon_sym_RBRACE, - STATE(5001), 1, - aux_sym__collection_elements_repeat1, + STATE(6275), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185523] = 4, - ACTIONS(8813), 1, + [149571] = 4, + ACTIONS(10523), 1, anon_sym_COMMA, - ACTIONS(8815), 1, + ACTIONS(10525), 1, anon_sym_RBRACK, - STATE(4833), 1, + STATE(5908), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185537] = 4, - ACTIONS(8817), 1, + [149585] = 4, + ACTIONS(10527), 1, anon_sym_COMMA, - ACTIONS(8819), 1, + ACTIONS(10529), 1, anon_sym_RBRACK, - STATE(4833), 1, + STATE(5908), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185551] = 4, - ACTIONS(7245), 1, + [149599] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8821), 1, - anon_sym_RBRACK, - STATE(5179), 1, - aux_sym_type_index_repeat1, + ACTIONS(10531), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185565] = 4, - ACTIONS(8803), 1, + [149613] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8969), 3, anon_sym_COMMA, - ACTIONS(8821), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(5185), 1, - aux_sym_type_index_repeat2, + [149623] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10533), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185579] = 4, - ACTIONS(8305), 1, - anon_sym_COMMA, - ACTIONS(8823), 1, + [149637] = 4, + ACTIONS(7659), 1, anon_sym_RPAREN, - STATE(5206), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(7661), 1, + anon_sym_COMMA, + STATE(5762), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185593] = 4, - ACTIONS(6500), 1, + [149651] = 4, + ACTIONS(10535), 1, anon_sym_COMMA, - ACTIONS(8825), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10537), 1, + anon_sym_RBRACE, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185607] = 4, - ACTIONS(6500), 1, + [149665] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8827), 1, + ACTIONS(10539), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185621] = 4, - ACTIONS(8315), 1, + [149679] = 4, + ACTIONS(10541), 1, + anon_sym_RPAREN, + ACTIONS(10543), 1, anon_sym_COMMA, - ACTIONS(8829), 1, - anon_sym_RBRACK, - STATE(5223), 1, - aux_sym_external_definition_repeat1, + STATE(5767), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185635] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8831), 1, - anon_sym_COLON, - ACTIONS(8833), 1, - sym__newline, + [149693] = 4, + ACTIONS(10545), 1, + anon_sym_COMMA, + ACTIONS(10547), 1, + anon_sym_RBRACE, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185649] = 4, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(8835), 1, + [149707] = 4, + ACTIONS(9277), 1, anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9684), 1, + anon_sym_COMMA, + STATE(5769), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185663] = 4, - ACTIONS(6565), 1, + [149721] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10549), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185677] = 4, - ACTIONS(8839), 1, - anon_sym_COMMA, - ACTIONS(8841), 1, - anon_sym_RBRACE, - STATE(4903), 1, - aux_sym_dict_pattern_repeat1, + [149735] = 4, + ACTIONS(10551), 1, + anon_sym_SEMI, + ACTIONS(10553), 1, + sym__newline, + STATE(5996), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185691] = 4, - ACTIONS(6500), 1, + [149749] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8843), 1, + ACTIONS(10555), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185705] = 4, - ACTIONS(7245), 1, - anon_sym_COMMA, - ACTIONS(8845), 1, - anon_sym_RBRACK, - STATE(5179), 1, - aux_sym_type_index_repeat1, + [149763] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10557), 1, + anon_sym_GT, + ACTIONS(10559), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185719] = 3, - ACTIONS(8354), 1, - anon_sym_as, + [149777] = 4, + ACTIONS(1571), 1, + sym__newline, + ACTIONS(10561), 1, + anon_sym_SEMI, + STATE(5885), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8299), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [185731] = 4, - ACTIONS(5225), 1, + [149791] = 4, + ACTIONS(6347), 1, anon_sym_RPAREN, - ACTIONS(8847), 1, + ACTIONS(10563), 1, anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, + STATE(5732), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185745] = 2, + [149805] = 3, + ACTIONS(6959), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8431), 3, + ACTIONS(6955), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [185755] = 4, - ACTIONS(5237), 1, - anon_sym_RBRACK, - ACTIONS(8849), 1, + [149817] = 4, + ACTIONS(7625), 1, + anon_sym_RPAREN, + ACTIONS(7627), 1, anon_sym_COMMA, - STATE(4902), 1, - aux_sym_case_clause_repeat1, + STATE(6006), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185769] = 4, - ACTIONS(8299), 1, - anon_sym_RBRACK, - ACTIONS(8851), 1, + [149831] = 4, + ACTIONS(10565), 1, + anon_sym_RPAREN, + ACTIONS(10567), 1, anon_sym_COMMA, - STATE(4902), 1, - aux_sym_case_clause_repeat1, + STATE(6008), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185783] = 4, - ACTIONS(8854), 1, + [149845] = 4, + ACTIONS(9676), 1, anon_sym_COMMA, - ACTIONS(8856), 1, - anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10569), 1, + anon_sym_RBRACK, + STATE(5847), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185797] = 4, - ACTIONS(6500), 1, + [149859] = 4, + ACTIONS(8219), 1, anon_sym_COMMA, - ACTIONS(8858), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8221), 1, + anon_sym_RBRACK, + STATE(6011), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185811] = 4, - ACTIONS(8860), 1, + [149873] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8862), 1, - anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10571), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185825] = 4, - ACTIONS(6500), 1, + [149887] = 4, + ACTIONS(10573), 1, anon_sym_COMMA, - ACTIONS(8864), 1, + ACTIONS(10576), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185839] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(8866), 1, - anon_sym_COLON, - STATE(5632), 1, - sym_external_definition, + [149901] = 4, + ACTIONS(7342), 1, + anon_sym_RPAREN, + ACTIONS(7500), 1, + anon_sym_COMMA, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185853] = 4, - ACTIONS(6500), 1, + [149915] = 4, + ACTIONS(2375), 1, + anon_sym_RPAREN, + ACTIONS(10578), 1, anon_sym_COMMA, - ACTIONS(8868), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185867] = 4, - ACTIONS(5279), 1, - anon_sym_RPAREN, - ACTIONS(8870), 1, + [149929] = 4, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, + STATE(5793), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185881] = 4, - ACTIONS(6500), 1, + [149943] = 4, + ACTIONS(2377), 1, + anon_sym_RPAREN, + ACTIONS(10580), 1, anon_sym_COMMA, - ACTIONS(8872), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185895] = 4, - ACTIONS(8602), 1, - sym__newline, - ACTIONS(8604), 1, - sym__indent, - STATE(1519), 1, - sym__match_block, + [149957] = 4, + ACTIONS(10582), 1, + anon_sym_COMMA, + ACTIONS(10584), 1, + anon_sym_RBRACK, + STATE(5802), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185909] = 4, - ACTIONS(8874), 1, + [149971] = 4, + ACTIONS(10586), 1, anon_sym_COMMA, - ACTIONS(8876), 1, - anon_sym_COLON, - STATE(5142), 1, - aux_sym_match_statement_repeat1, + ACTIONS(10588), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185923] = 4, - ACTIONS(6500), 1, + [149985] = 4, + ACTIONS(10590), 1, anon_sym_COMMA, - ACTIONS(8878), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10592), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185937] = 4, - ACTIONS(8880), 1, - anon_sym_SEMI, - ACTIONS(8882), 1, + [149999] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10594), 1, + anon_sym_COLON, + ACTIONS(10596), 1, sym__newline, - STATE(4921), 1, - aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185951] = 4, - ACTIONS(6500), 1, + [150013] = 4, + ACTIONS(10598), 1, + anon_sym_STAR, + ACTIONS(10600), 1, + sym_string_start, + STATE(3437), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [150027] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8884), 1, + ACTIONS(10602), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185965] = 4, - ACTIONS(6565), 1, + [150041] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6587), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10604), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185979] = 4, - ACTIONS(6500), 1, + [150055] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8886), 1, + ACTIONS(10606), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185993] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8888), 1, + [150069] = 4, + ACTIONS(10608), 1, + anon_sym_SEMI, + ACTIONS(10610), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(6021), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186007] = 4, - ACTIONS(7268), 1, + [150083] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7270), 1, - anon_sym_RBRACE, - STATE(4924), 1, - aux_sym_dictionary_repeat1, + ACTIONS(10612), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186021] = 4, - ACTIONS(7694), 1, + [150097] = 4, + ACTIONS(9107), 1, anon_sym_LPAREN, - ACTIONS(8890), 1, + ACTIONS(10614), 1, anon_sym_GT, - ACTIONS(8892), 1, + ACTIONS(10616), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186035] = 4, - ACTIONS(1323), 1, + [150111] = 3, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9941), 2, + anon_sym_COMMA, + anon_sym_COLON, + [150123] = 4, + ACTIONS(1575), 1, sym__newline, - ACTIONS(8894), 1, + ACTIONS(10618), 1, anon_sym_SEMI, - STATE(5248), 1, + STATE(5885), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186049] = 2, + [150137] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10620), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8416), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [186059] = 4, - ACTIONS(3221), 1, - anon_sym_RBRACE, - ACTIONS(8896), 1, + [150151] = 4, + ACTIONS(8598), 1, + anon_sym_RPAREN, + ACTIONS(8600), 1, anon_sym_COMMA, - STATE(5177), 1, - aux_sym_dictionary_repeat1, + STATE(6027), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186073] = 4, - ACTIONS(3217), 1, - anon_sym_RBRACE, - ACTIONS(8898), 1, + [150165] = 4, + ACTIONS(10622), 1, + anon_sym_RPAREN, + ACTIONS(10624), 1, anon_sym_COMMA, - STATE(5177), 1, - aux_sym_dictionary_repeat1, + STATE(6029), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186087] = 4, - ACTIONS(7951), 1, + [150179] = 4, + ACTIONS(8230), 1, + anon_sym_COMMA, + ACTIONS(8232), 1, anon_sym_RBRACK, - ACTIONS(8900), 1, + STATE(6031), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [150193] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4925), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(10626), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186101] = 4, - ACTIONS(6601), 1, + [150207] = 4, + ACTIONS(2383), 1, anon_sym_RPAREN, - ACTIONS(6603), 1, + ACTIONS(10628), 1, anon_sym_COMMA, - STATE(4932), 1, + STATE(5752), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186115] = 4, - ACTIONS(8903), 1, + [150221] = 4, + ACTIONS(4313), 1, anon_sym_RPAREN, - ACTIONS(8905), 1, + ACTIONS(10630), 1, + anon_sym_COMMA, + STATE(6072), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [150235] = 4, + ACTIONS(2385), 1, + anon_sym_RPAREN, + ACTIONS(10632), 1, anon_sym_COMMA, - STATE(4934), 1, + STATE(5752), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186129] = 4, - ACTIONS(3229), 1, - anon_sym_RBRACE, - ACTIONS(8907), 1, + [150249] = 4, + ACTIONS(10634), 1, anon_sym_COMMA, - STATE(5177), 1, - aux_sym_dictionary_repeat1, + ACTIONS(10636), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186143] = 4, - ACTIONS(6978), 1, + [150263] = 4, + ACTIONS(10638), 1, anon_sym_COMMA, - ACTIONS(6980), 1, + ACTIONS(10640), 1, anon_sym_RBRACK, - STATE(4936), 1, + STATE(5908), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186157] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8909), 1, + [150277] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10642), 1, anon_sym_COLON, - ACTIONS(8911), 1, - sym__newline, + STATE(6885), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186171] = 4, - ACTIONS(5283), 1, + [150291] = 4, + ACTIONS(10584), 1, anon_sym_RPAREN, - ACTIONS(8913), 1, + ACTIONS(10644), 1, anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, + STATE(6028), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186185] = 4, - ACTIONS(3001), 1, - anon_sym_RPAREN, - ACTIONS(8915), 1, + [150305] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10646), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186199] = 4, - ACTIONS(6500), 1, + [150319] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(8917), 1, + ACTIONS(10648), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186213] = 4, - ACTIONS(3003), 1, - anon_sym_RPAREN, - ACTIONS(8919), 1, - anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + [150333] = 4, + ACTIONS(10650), 1, + anon_sym_SEMI, + ACTIONS(10652), 1, + sym__newline, + STATE(6039), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186227] = 4, - ACTIONS(8921), 1, + [150347] = 4, + ACTIONS(8234), 1, anon_sym_COMMA, - ACTIONS(8923), 1, + ACTIONS(8236), 1, anon_sym_RBRACK, - STATE(4833), 1, + STATE(5790), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186241] = 4, - ACTIONS(8925), 1, - anon_sym_COMMA, - ACTIONS(8927), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + [150361] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10654), 1, + anon_sym_GT, + ACTIONS(10656), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186255] = 4, - ACTIONS(1343), 1, + [150375] = 4, + ACTIONS(1579), 1, sym__newline, - ACTIONS(8929), 1, + ACTIONS(10658), 1, anon_sym_SEMI, - STATE(5248), 1, + STATE(5885), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186269] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8931), 1, + [150389] = 4, + ACTIONS(10660), 1, + anon_sym_SEMI, + ACTIONS(10662), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(6214), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186283] = 3, - ACTIONS(1480), 1, - anon_sym_except, + [150403] = 4, + ACTIONS(8680), 1, + anon_sym_RPAREN, + ACTIONS(8682), 1, + anon_sym_COMMA, + STATE(6046), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1482), 2, - anon_sym_except_STAR, - anon_sym_finally, - [186295] = 4, - ACTIONS(6500), 1, + [150417] = 4, + ACTIONS(10664), 1, + anon_sym_RPAREN, + ACTIONS(10666), 1, anon_sym_COMMA, - ACTIONS(8933), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(6048), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186309] = 4, - ACTIONS(6565), 1, + [150431] = 4, + ACTIONS(8238), 1, anon_sym_COMMA, - ACTIONS(6629), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8240), 1, + anon_sym_RBRACK, + STATE(6051), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186323] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8935), 1, - anon_sym_COLON, - ACTIONS(8937), 1, + [150445] = 4, + ACTIONS(7900), 1, sym__newline, + ACTIONS(10668), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186337] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(8939), 1, - anon_sym_COLON, - STATE(5754), 1, - sym_external_definition, + [150459] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10670), 1, + anon_sym_GT, + ACTIONS(10672), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186351] = 4, - ACTIONS(8941), 1, - anon_sym_SEMI, - ACTIONS(8943), 1, - sym__newline, - STATE(4954), 1, - aux_sym__simple_statements_repeat1, + [150473] = 4, + ACTIONS(2391), 1, + anon_sym_RPAREN, + ACTIONS(10674), 1, + anon_sym_COMMA, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186365] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8945), 1, - anon_sym_COLON, - ACTIONS(8947), 1, - sym__newline, + [150487] = 4, + ACTIONS(7500), 1, + anon_sym_COMMA, + ACTIONS(7601), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186379] = 4, - ACTIONS(6762), 1, - anon_sym_RBRACK, - ACTIONS(8949), 1, + [150501] = 4, + ACTIONS(2393), 1, + anon_sym_RPAREN, + ACTIONS(10676), 1, anon_sym_COMMA, - STATE(4946), 1, - aux_sym_assert_statement_repeat1, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186393] = 4, - ACTIONS(6500), 1, + [150515] = 4, + ACTIONS(9953), 1, + anon_sym_COLON, + ACTIONS(10678), 1, anon_sym_COMMA, - ACTIONS(8952), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(6049), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186407] = 4, - ACTIONS(6565), 1, + [150529] = 4, + ACTIONS(10681), 1, anon_sym_COMMA, - ACTIONS(6615), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10683), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186421] = 4, - ACTIONS(6500), 1, + [150543] = 4, + ACTIONS(10685), 1, anon_sym_COMMA, - ACTIONS(8954), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10687), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186435] = 4, - ACTIONS(6500), 1, + [150557] = 4, + ACTIONS(7953), 1, + anon_sym_RBRACK, + ACTIONS(10689), 1, anon_sym_COMMA, - ACTIONS(8956), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(6052), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186449] = 4, - ACTIONS(7305), 1, - anon_sym_COMMA, - ACTIONS(7307), 1, - anon_sym_RBRACE, - STATE(4956), 1, - aux_sym_dictionary_repeat1, + [150571] = 3, + ACTIONS(10694), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186463] = 4, - ACTIONS(6500), 1, + ACTIONS(10692), 2, + sym__newline, anon_sym_COMMA, - ACTIONS(8958), 1, + [150583] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10696), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186477] = 4, - ACTIONS(7694), 1, - anon_sym_LPAREN, - ACTIONS(8960), 1, - anon_sym_GT, - ACTIONS(8962), 1, - anon_sym_QMARK, + [150597] = 4, + ACTIONS(5430), 1, + anon_sym_RPAREN, + ACTIONS(10698), 1, + anon_sym_COMMA, + STATE(6234), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186491] = 4, - ACTIONS(1327), 1, - sym__newline, - ACTIONS(8964), 1, - anon_sym_SEMI, - STATE(5248), 1, - aux_sym__simple_statements_repeat1, + [150611] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186505] = 4, - ACTIONS(6500), 1, + ACTIONS(9853), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(8966), 1, + [150621] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10700), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186519] = 4, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(8968), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym_dictionary_repeat1, + [150635] = 3, + ACTIONS(2656), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186533] = 4, - ACTIONS(6500), 1, + ACTIONS(2658), 2, + anon_sym_except_STAR, + anon_sym_finally, + [150647] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(8970), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10702), 1, + anon_sym_RBRACK, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186547] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8972), 1, - anon_sym_COLON, - ACTIONS(8974), 1, - anon_sym_PIPE, + [150661] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10704), 1, + anon_sym_GT, + ACTIONS(10706), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186561] = 4, - ACTIONS(6617), 1, - anon_sym_RPAREN, - ACTIONS(6619), 1, + [150675] = 4, + ACTIONS(7804), 1, + sym__newline, + ACTIONS(10708), 1, anon_sym_COMMA, - STATE(4965), 1, - aux_sym_argument_list_repeat1, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186575] = 4, - ACTIONS(8976), 1, + [150689] = 4, + ACTIONS(5643), 1, anon_sym_RPAREN, - ACTIONS(8978), 1, + ACTIONS(10710), 1, anon_sym_COMMA, - STATE(4967), 1, - aux_sym_argument_list_repeat1, + STATE(6234), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186589] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(8980), 1, + [150703] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10712), 1, + anon_sym_COLON, + ACTIONS(10714), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186603] = 4, - ACTIONS(6990), 1, + [150717] = 4, + ACTIONS(8242), 1, anon_sym_COMMA, - ACTIONS(6992), 1, + ACTIONS(8244), 1, anon_sym_RBRACK, - STATE(4970), 1, + STATE(6067), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186617] = 4, - ACTIONS(6500), 1, + [150731] = 4, + ACTIONS(9911), 1, anon_sym_COMMA, - ACTIONS(8982), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10702), 1, + anon_sym_RBRACK, + STATE(6101), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186631] = 3, - ACTIONS(7889), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7891), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [186643] = 4, - ACTIONS(3013), 1, - anon_sym_RPAREN, - ACTIONS(8984), 1, + [150745] = 4, + ACTIONS(10716), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10718), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186657] = 4, - ACTIONS(6500), 1, + [150759] = 4, + ACTIONS(10720), 1, anon_sym_COMMA, - ACTIONS(8986), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10722), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186671] = 4, - ACTIONS(3015), 1, + [150773] = 4, + ACTIONS(5604), 1, anon_sym_RPAREN, - ACTIONS(8988), 1, + ACTIONS(10724), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + STATE(6234), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [150787] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186685] = 4, - ACTIONS(8990), 1, + ACTIONS(5251), 3, anon_sym_LPAREN, - ACTIONS(8992), 1, - anon_sym_COLON, - ACTIONS(8994), 1, + anon_sym_LBRACK, + sym_identifier, + [150797] = 4, + ACTIONS(10364), 1, sym__newline, + ACTIONS(10726), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186699] = 4, - ACTIONS(8996), 1, - anon_sym_COMMA, - ACTIONS(8998), 1, + [150811] = 4, + ACTIONS(5606), 1, anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + ACTIONS(10729), 1, + anon_sym_COMMA, + STATE(6275), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186713] = 4, - ACTIONS(9000), 1, + [150825] = 4, + ACTIONS(6749), 1, + anon_sym_RPAREN, + ACTIONS(10731), 1, anon_sym_COMMA, - ACTIONS(9002), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + STATE(6072), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186727] = 4, - ACTIONS(3103), 1, - anon_sym_RBRACK, - ACTIONS(9004), 1, - anon_sym_COMMA, - STATE(5066), 1, - aux_sym__collection_elements_repeat1, + [150839] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10734), 1, + anon_sym_GT, + ACTIONS(10736), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186741] = 4, - ACTIONS(6500), 1, + [150853] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9006), 1, + ACTIONS(10738), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186755] = 3, - ACTIONS(9010), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9008), 2, - sym__newline, - anon_sym_SEMI, - [186767] = 4, - ACTIONS(8043), 1, - anon_sym_COLON, - ACTIONS(8047), 1, + [150867] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10740), 1, sym__newline, - ACTIONS(9012), 1, - sym_identifier, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186781] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9014), 1, - anon_sym_COLON, - ACTIONS(9016), 1, - sym__newline, + [150881] = 4, + ACTIONS(10742), 1, + anon_sym_COMMA, + ACTIONS(10744), 1, + anon_sym_RBRACE, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186795] = 4, - ACTIONS(6500), 1, + [150895] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9018), 1, + ACTIONS(10746), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186809] = 4, - ACTIONS(6500), 1, + [150909] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9020), 1, + ACTIONS(10748), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186823] = 4, - ACTIONS(2751), 1, - anon_sym_RBRACK, - ACTIONS(9022), 1, + [150923] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4925), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(10750), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186837] = 4, - ACTIONS(6500), 1, + [150937] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9024), 1, + ACTIONS(10752), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186851] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9026), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [150951] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186865] = 4, - ACTIONS(9028), 1, - anon_sym_SEMI, - ACTIONS(9030), 1, + ACTIONS(10754), 3, sym__newline, - STATE(4989), 1, - aux_sym__simple_statements_repeat1, + anon_sym_COLON, + anon_sym_nogil, + [150961] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186879] = 4, - ACTIONS(8047), 1, - sym__newline, - ACTIONS(9032), 1, + ACTIONS(5174), 3, anon_sym_LPAREN, - ACTIONS(9034), 1, - anon_sym_COLON, + anon_sym_LBRACK, + sym_identifier, + [150971] = 4, + ACTIONS(10756), 1, + anon_sym_COMMA, + ACTIONS(10758), 1, + anon_sym_RBRACE, + STATE(5750), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186893] = 4, - ACTIONS(6500), 1, + [150985] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9036), 1, + ACTIONS(10760), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186907] = 4, - ACTIONS(6565), 1, + [150999] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(6637), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10762), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186921] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8974), 1, - anon_sym_PIPE, - ACTIONS(9038), 1, - anon_sym_COLON, + [151013] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10764), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186935] = 4, - ACTIONS(7672), 1, - anon_sym_RPAREN, - ACTIONS(9040), 1, + [151027] = 4, + ACTIONS(9802), 1, + anon_sym_RBRACK, + ACTIONS(10766), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186949] = 4, - ACTIONS(7325), 1, + [151041] = 4, + ACTIONS(6749), 1, + anon_sym_RBRACK, + ACTIONS(10769), 1, anon_sym_COMMA, - ACTIONS(7327), 1, - anon_sym_RBRACE, - STATE(4991), 1, - aux_sym_dictionary_repeat1, + STATE(6088), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186963] = 4, - ACTIONS(7694), 1, - anon_sym_LPAREN, - ACTIONS(9043), 1, - anon_sym_GT, - ACTIONS(9045), 1, - anon_sym_QMARK, + [151055] = 4, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(10772), 1, + anon_sym_RBRACK, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186977] = 4, - ACTIONS(1329), 1, - sym__newline, - ACTIONS(9047), 1, - anon_sym_SEMI, - STATE(5248), 1, - aux_sym__simple_statements_repeat1, + [151069] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10774), 1, + anon_sym_COLON, + STATE(6910), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186991] = 3, - ACTIONS(8488), 1, - anon_sym_as, + [151083] = 4, + ACTIONS(7953), 1, + anon_sym_COLON, + ACTIONS(10776), 1, + anon_sym_COMMA, + STATE(6091), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8399), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [187003] = 4, - ACTIONS(3235), 1, + [151097] = 4, + ACTIONS(9433), 1, + anon_sym_COLON, + ACTIONS(10779), 1, anon_sym_RBRACE, - ACTIONS(9049), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym_dictionary_repeat1, + STATE(6652), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187017] = 4, - ACTIONS(9051), 1, + [151111] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10781), 1, anon_sym_COLON, - ACTIONS(9053), 1, - anon_sym_nogil, - ACTIONS(9055), 1, + ACTIONS(10783), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187031] = 4, - ACTIONS(6500), 1, + [151125] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9057), 1, + ACTIONS(10785), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187045] = 4, - ACTIONS(6866), 1, - sym__newline, - ACTIONS(6868), 1, + [151139] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(10787), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187059] = 4, - ACTIONS(6650), 1, - anon_sym_RPAREN, - ACTIONS(6652), 1, + [151153] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5000), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10789), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187073] = 4, - ACTIONS(9059), 1, - anon_sym_RPAREN, - ACTIONS(9061), 1, + [151167] = 4, + ACTIONS(9664), 1, anon_sym_COMMA, - STATE(5002), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187087] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5856), 3, + ACTIONS(10791), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [187097] = 4, - ACTIONS(6998), 1, - anon_sym_COMMA, - ACTIONS(7000), 1, - anon_sym_RBRACK, - STATE(5004), 1, - aux_sym_subscript_repeat1, + STATE(6116), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187111] = 4, - ACTIONS(8791), 1, + [151181] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10793), 1, sym__newline, - ACTIONS(8793), 1, - sym__indent, - STATE(1443), 1, - sym__match_block, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187125] = 4, - ACTIONS(3023), 1, - anon_sym_RPAREN, - ACTIONS(9063), 1, - anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + [151195] = 3, + ACTIONS(8871), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [187139] = 4, - ACTIONS(3103), 1, + ACTIONS(8873), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(9065), 1, - anon_sym_COMMA, - STATE(5086), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187153] = 4, - ACTIONS(3025), 1, - anon_sym_RPAREN, - ACTIONS(9067), 1, - anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187167] = 4, - ACTIONS(9069), 1, - anon_sym_COMMA, - ACTIONS(9071), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + [151207] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_COLON, + ACTIONS(10797), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187181] = 4, - ACTIONS(9073), 1, + [151221] = 4, + ACTIONS(10799), 1, anon_sym_COMMA, - ACTIONS(9075), 1, + ACTIONS(10802), 1, anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + STATE(6101), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187195] = 4, - ACTIONS(5263), 1, - anon_sym_RPAREN, - ACTIONS(9077), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_case_clause_repeat1, + [151235] = 4, + ACTIONS(10086), 1, + sym__newline, + ACTIONS(10804), 1, + sym_identifier, + ACTIONS(10806), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187209] = 4, - ACTIONS(7623), 1, - anon_sym_PIPE, - ACTIONS(9079), 1, + [151249] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10808), 1, anon_sym_COLON, - STATE(4335), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(10810), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187223] = 4, - ACTIONS(9081), 1, - anon_sym_COMMA, - ACTIONS(9083), 1, - anon_sym_RBRACE, - STATE(5021), 1, - aux_sym_dict_pattern_repeat1, + [151263] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187237] = 4, - ACTIONS(9085), 1, + ACTIONS(9878), 3, + sym__newline, anon_sym_SEMI, - ACTIONS(9087), 1, + anon_sym_COMMA, + [151273] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(10812), 1, sym__newline, - STATE(5014), 1, - aux_sym__simple_statements_repeat1, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187251] = 4, - ACTIONS(5273), 1, - anon_sym_RBRACK, - ACTIONS(9089), 1, + [151287] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4902), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10814), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187265] = 4, - ACTIONS(6565), 1, - anon_sym_COMMA, - ACTIONS(6668), 1, + [151301] = 4, + ACTIONS(2827), 1, anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10816), 1, + anon_sym_COMMA, + STATE(6198), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187279] = 4, - ACTIONS(7343), 1, + [151315] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7345), 1, - anon_sym_RBRACE, - STATE(5015), 1, - aux_sym_dictionary_repeat1, + ACTIONS(10818), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187293] = 4, - ACTIONS(6589), 1, - anon_sym_RPAREN, - ACTIONS(6591), 1, + [151329] = 4, + ACTIONS(7904), 1, + sym__newline, + ACTIONS(8608), 1, anon_sym_COMMA, - STATE(5121), 1, - aux_sym_argument_list_repeat1, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187307] = 4, - ACTIONS(7694), 1, + [151343] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9091), 1, - anon_sym_GT, - ACTIONS(9093), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187321] = 4, - ACTIONS(1335), 1, - sym__newline, - ACTIONS(9095), 1, - anon_sym_SEMI, - STATE(5248), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(10820), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [151355] = 4, + ACTIONS(10822), 1, + anon_sym_RPAREN, + ACTIONS(10824), 1, + anon_sym_COMMA, + STATE(5997), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187335] = 4, - ACTIONS(3245), 1, - anon_sym_RBRACE, - ACTIONS(9097), 1, + [151369] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5177), 1, - aux_sym_dictionary_repeat1, + ACTIONS(10826), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187349] = 2, + [151383] = 3, + ACTIONS(6957), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4058), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [187359] = 4, - ACTIONS(9099), 1, + ACTIONS(6955), 2, anon_sym_RPAREN, - ACTIONS(9101), 1, anon_sym_COMMA, - STATE(5176), 1, - aux_sym__typedargslist_repeat1, + [151395] = 4, + ACTIONS(10828), 1, + anon_sym_SEMI, + ACTIONS(10830), 1, + sym__newline, + STATE(6215), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187373] = 4, - ACTIONS(9103), 1, - anon_sym_RPAREN, - ACTIONS(9105), 1, - anon_sym_COMMA, - STATE(5132), 1, - aux_sym_argument_list_repeat1, + [151409] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187387] = 4, - ACTIONS(7229), 1, + ACTIONS(10832), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [151419] = 4, + ACTIONS(10820), 1, anon_sym_RPAREN, - ACTIONS(7231), 1, + ACTIONS(10834), 1, anon_sym_COMMA, - STATE(5025), 1, - aux_sym_argument_list_repeat1, + STATE(6116), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187401] = 4, - ACTIONS(9107), 1, - anon_sym_RPAREN, - ACTIONS(9109), 1, + [151433] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5027), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10837), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187415] = 4, - ACTIONS(9111), 1, + [151447] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9113), 1, - anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10839), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187429] = 4, - ACTIONS(7010), 1, - anon_sym_COMMA, - ACTIONS(7012), 1, - anon_sym_RBRACK, - STATE(5029), 1, - aux_sym_subscript_repeat1, + [151461] = 3, + ACTIONS(9068), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9070), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151473] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10841), 1, + anon_sym_COLON, + STATE(6829), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187443] = 4, - ACTIONS(8407), 1, - anon_sym_RPAREN, - ACTIONS(9115), 1, - anon_sym_COMMA, - STATE(5023), 1, - aux_sym__import_list_repeat1, + [151487] = 4, + ACTIONS(7175), 1, + sym_identifier, + ACTIONS(10843), 1, + anon_sym_DOT, + STATE(6229), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187457] = 4, - ACTIONS(7694), 1, - anon_sym_LPAREN, - ACTIONS(9118), 1, - anon_sym_GT, - ACTIONS(9120), 1, - anon_sym_QMARK, + [151501] = 4, + ACTIONS(10600), 1, + sym_string_start, + ACTIONS(10845), 1, + anon_sym_STAR, + STATE(3440), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187471] = 4, - ACTIONS(3033), 1, - anon_sym_RPAREN, - ACTIONS(9122), 1, + [151515] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7638), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187485] = 4, - ACTIONS(7082), 1, - anon_sym_COMMA, - ACTIONS(7084), 1, - anon_sym_RBRACK, - STATE(5141), 1, - aux_sym_subscript_repeat1, + [151529] = 3, + ACTIONS(9686), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187499] = 4, - ACTIONS(3035), 1, + ACTIONS(9878), 2, anon_sym_RPAREN, - ACTIONS(9124), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187513] = 4, - ACTIONS(9126), 1, + [151541] = 4, + ACTIONS(10222), 1, anon_sym_COMMA, - ACTIONS(9128), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + ACTIONS(10847), 1, + anon_sym_in, + STATE(6217), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187527] = 4, - ACTIONS(9130), 1, + [151555] = 4, + ACTIONS(9888), 1, + anon_sym_RPAREN, + ACTIONS(10849), 1, anon_sym_COMMA, - ACTIONS(9132), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + STATE(6126), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187541] = 4, - ACTIONS(6500), 1, + [151569] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9134), 1, + ACTIONS(10852), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187555] = 4, - ACTIONS(7972), 1, + [151583] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10854), 1, anon_sym_COLON, - ACTIONS(9136), 1, - anon_sym_RBRACE, - STATE(5572), 1, - sym_format_specifier, + STATE(6877), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187569] = 3, - ACTIONS(8301), 1, + [151597] = 3, + ACTIONS(9177), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9138), 2, + ACTIONS(10856), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [151609] = 4, + ACTIONS(8838), 1, anon_sym_RPAREN, + ACTIONS(10858), 1, anon_sym_COMMA, - [187581] = 4, - ACTIONS(8602), 1, - sym__newline, - ACTIONS(8604), 1, - sym__indent, - STATE(1429), 1, - sym__match_block, + STATE(6130), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187595] = 4, - ACTIONS(8638), 1, + [151623] = 4, + ACTIONS(10042), 1, anon_sym_LBRACK, - ACTIONS(9140), 1, + ACTIONS(10861), 1, anon_sym_COLON, - STATE(5737), 1, + STATE(6897), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187609] = 4, - ACTIONS(7972), 1, - anon_sym_COLON, - ACTIONS(9142), 1, - anon_sym_RBRACE, - STATE(5858), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187623] = 4, - ACTIONS(7245), 1, + [151637] = 4, + ACTIONS(10222), 1, anon_sym_COMMA, - ACTIONS(9144), 1, - anon_sym_RBRACK, - STATE(5179), 1, - aux_sym_type_index_repeat1, + ACTIONS(10863), 1, + anon_sym_in, + STATE(6217), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187637] = 4, - ACTIONS(7694), 1, - anon_sym_LPAREN, - ACTIONS(9146), 1, - anon_sym_GT, - ACTIONS(9148), 1, - anon_sym_QMARK, + [151651] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10114), 1, + anon_sym_PIPE, + ACTIONS(10865), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187651] = 4, - ACTIONS(8803), 1, - anon_sym_COMMA, - ACTIONS(9144), 1, + [151665] = 4, + ACTIONS(8838), 1, anon_sym_RBRACK, - STATE(5185), 1, - aux_sym_type_index_repeat2, + ACTIONS(10867), 1, + anon_sym_COMMA, + STATE(6134), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187665] = 4, - ACTIONS(6672), 1, - anon_sym_RPAREN, - ACTIONS(6674), 1, - anon_sym_COMMA, - STATE(5044), 1, - aux_sym_argument_list_repeat1, + [151679] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10870), 1, + anon_sym_COLON, + STATE(6934), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187679] = 4, - ACTIONS(9150), 1, - anon_sym_RPAREN, - ACTIONS(9152), 1, - anon_sym_COMMA, - STATE(5046), 1, - aux_sym_argument_list_repeat1, + [151693] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10114), 1, + anon_sym_PIPE, + ACTIONS(10872), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187693] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_RBRACE, - STATE(4852), 1, - aux_sym_dict_pattern_repeat1, + [151707] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10114), 1, + anon_sym_PIPE, + ACTIONS(10874), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187707] = 4, - ACTIONS(7024), 1, - anon_sym_COMMA, - ACTIONS(7026), 1, - anon_sym_RBRACK, - STATE(5048), 1, - aux_sym_subscript_repeat1, + [151721] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10876), 1, + anon_sym_COLON, + STATE(6955), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187721] = 4, - ACTIONS(8315), 1, - anon_sym_COMMA, - ACTIONS(9158), 1, - anon_sym_RBRACK, - STATE(5223), 1, - aux_sym_external_definition_repeat1, + [151735] = 4, + ACTIONS(10878), 1, + anon_sym_SEMI, + ACTIONS(10880), 1, + sym__newline, + STATE(6167), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187735] = 4, - ACTIONS(3041), 1, - anon_sym_RPAREN, - ACTIONS(9160), 1, - anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + [151749] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187749] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9162), 1, + ACTIONS(8969), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [151759] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10114), 1, + anon_sym_PIPE, + ACTIONS(10882), 1, anon_sym_COLON, - ACTIONS(9164), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187763] = 4, - ACTIONS(3043), 1, - anon_sym_RPAREN, - ACTIONS(9166), 1, - anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + [151773] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10884), 1, + anon_sym_COLON, + STATE(6973), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187777] = 4, - ACTIONS(9168), 1, - anon_sym_COMMA, - ACTIONS(9170), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + [151787] = 4, + ACTIONS(10886), 1, + anon_sym_SEMI, + ACTIONS(10888), 1, + sym__newline, + STATE(6184), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187791] = 4, - ACTIONS(9172), 1, - anon_sym_COMMA, - ACTIONS(9174), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + [151801] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10890), 1, + anon_sym_COLON, + STATE(6982), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187805] = 4, - ACTIONS(6500), 1, + [151815] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - ACTIONS(9176), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7595), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187819] = 2, + [151829] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10892), 1, + anon_sym_COLON, + STATE(6986), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9178), 3, - sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [187829] = 2, + [151843] = 4, + ACTIONS(10222), 1, + anon_sym_COMMA, + ACTIONS(10894), 1, + anon_sym_in, + STATE(6217), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4058), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [187839] = 4, - ACTIONS(6500), 1, + [151857] = 4, + ACTIONS(8728), 1, anon_sym_COMMA, - ACTIONS(9180), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8730), 1, + anon_sym_RBRACE, + STATE(6186), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187853] = 4, - ACTIONS(6500), 1, + [151871] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - ACTIONS(9182), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7591), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187867] = 4, - ACTIONS(7335), 1, - anon_sym_RPAREN, - ACTIONS(7337), 1, - anon_sym_COMMA, - STATE(5059), 1, - aux_sym_argument_list_repeat1, + [151885] = 4, + ACTIONS(10195), 1, + sym__newline, + ACTIONS(10197), 1, + sym__indent, + STATE(2074), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187881] = 4, - ACTIONS(9184), 1, - anon_sym_RPAREN, - ACTIONS(9186), 1, - anon_sym_COMMA, - STATE(5061), 1, - aux_sym_argument_list_repeat1, + [151899] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10896), 1, + anon_sym_COLON, + STATE(6633), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187895] = 4, - ACTIONS(5725), 1, - anon_sym_RBRACK, - ACTIONS(9188), 1, - anon_sym_COMMA, - STATE(5056), 1, - aux_sym__patterns_repeat1, + [151913] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10898), 1, + anon_sym_GT, + ACTIONS(10900), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187909] = 4, - ACTIONS(7042), 1, - anon_sym_COMMA, - ACTIONS(7044), 1, - anon_sym_RBRACK, - STATE(5064), 1, - aux_sym_subscript_repeat1, + [151927] = 4, + ACTIONS(10600), 1, + sym_string_start, + ACTIONS(10902), 1, + anon_sym_STAR, + STATE(3445), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187923] = 4, - ACTIONS(6897), 1, + [151941] = 4, + ACTIONS(10260), 1, sym__newline, - ACTIONS(9191), 1, - anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(10262), 1, + sym__indent, + STATE(2065), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187937] = 4, - ACTIONS(3049), 1, - anon_sym_RPAREN, - ACTIONS(9193), 1, + [151955] = 4, + ACTIONS(6749), 1, + anon_sym_in, + ACTIONS(10904), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + STATE(6155), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187951] = 4, - ACTIONS(8305), 1, + [151969] = 4, + ACTIONS(10222), 1, anon_sym_COMMA, - ACTIONS(9195), 1, - anon_sym_RPAREN, - STATE(5206), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(10907), 1, + anon_sym_in, + STATE(6217), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187965] = 4, - ACTIONS(3051), 1, - anon_sym_RPAREN, - ACTIONS(9197), 1, + [151983] = 4, + ACTIONS(8788), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8790), 1, + anon_sym_RBRACE, + STATE(6231), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187979] = 3, - ACTIONS(9201), 1, - anon_sym_EQ, + [151997] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_COLON, + STATE(6644), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9199), 2, - sym__newline, - anon_sym_COMMA, - [187991] = 4, - ACTIONS(9203), 1, + [152011] = 4, + ACTIONS(10911), 1, anon_sym_COMMA, - ACTIONS(9205), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + ACTIONS(10913), 1, + anon_sym_COLON, + STATE(6202), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188005] = 4, - ACTIONS(9207), 1, - anon_sym_COMMA, - ACTIONS(9209), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + [152025] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10915), 1, + anon_sym_COLON, + STATE(6651), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188019] = 4, - ACTIONS(6500), 1, + [152039] = 4, + ACTIONS(10222), 1, anon_sym_COMMA, - ACTIONS(9211), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10917), 1, + anon_sym_in, + STATE(6217), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188033] = 4, - ACTIONS(7730), 1, - anon_sym_RBRACK, - ACTIONS(9213), 1, - anon_sym_COMMA, - STATE(5066), 1, - aux_sym__collection_elements_repeat1, + [152053] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(10919), 1, + anon_sym_COLON, + ACTIONS(10921), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188047] = 4, - ACTIONS(8638), 1, + [152067] = 4, + ACTIONS(10042), 1, anon_sym_LBRACK, - ACTIONS(9216), 1, + ACTIONS(10923), 1, anon_sym_COLON, - STATE(5860), 1, + STATE(6660), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188061] = 4, - ACTIONS(5337), 1, + [152081] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10925), 1, anon_sym_COLON, - ACTIONS(9218), 1, + STATE(6662), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [152095] = 4, + ACTIONS(8774), 1, anon_sym_COMMA, - STATE(4787), 1, - aux_sym__parameters_repeat1, + ACTIONS(8776), 1, + anon_sym_RBRACE, + STATE(6203), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188075] = 2, + [152109] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10927), 1, + anon_sym_COLON, + STATE(6671), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8399), 3, + [152123] = 4, + ACTIONS(1565), 1, sym__newline, + ACTIONS(10929), 1, anon_sym_SEMI, - anon_sym_COMMA, - [188085] = 4, - ACTIONS(7383), 1, - anon_sym_RPAREN, - ACTIONS(7385), 1, - anon_sym_COMMA, - STATE(5075), 1, - aux_sym_argument_list_repeat1, + STATE(5885), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188099] = 4, - ACTIONS(9220), 1, - anon_sym_RPAREN, - ACTIONS(9222), 1, + [152137] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5076), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10931), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188113] = 4, - ACTIONS(8114), 1, - anon_sym_RBRACK, - ACTIONS(8803), 1, - anon_sym_COMMA, - STATE(5181), 1, - aux_sym_type_index_repeat2, + [152151] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10933), 1, + anon_sym_GT, + ACTIONS(10935), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188127] = 4, - ACTIONS(7052), 1, - anon_sym_COMMA, - ACTIONS(7054), 1, - anon_sym_RBRACK, - STATE(5078), 1, - aux_sym_subscript_repeat1, + [152165] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10937), 1, + anon_sym_COLON, + STATE(6676), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188141] = 4, - ACTIONS(6175), 1, - sym_identifier, - ACTIONS(9224), 1, - anon_sym_DOT, - STATE(5182), 1, - aux_sym_type_qualifier_repeat1, + [152179] = 4, + ACTIONS(10260), 1, + sym__newline, + ACTIONS(10262), 1, + sym__indent, + STATE(2168), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188155] = 4, - ACTIONS(3057), 1, - anon_sym_RPAREN, - ACTIONS(9226), 1, - anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + [152193] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10939), 1, + anon_sym_COLON, + STATE(6679), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188169] = 4, - ACTIONS(3059), 1, - anon_sym_RPAREN, - ACTIONS(9228), 1, + [152207] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10941), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188183] = 4, - ACTIONS(9230), 1, + [152221] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - ACTIONS(9232), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + ACTIONS(10943), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188197] = 4, - ACTIONS(9234), 1, + [152235] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - ACTIONS(9236), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188211] = 4, - ACTIONS(9238), 1, + ACTIONS(10945), 1, anon_sym_RPAREN, - ACTIONS(9240), 1, - anon_sym_COMMA, - STATE(5079), 1, - aux_sym__typedargslist_repeat1, + STATE(5976), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188225] = 4, - ACTIONS(7056), 1, - anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_RBRACK, - STATE(5083), 1, - aux_sym_subscript_repeat1, + [152249] = 4, + ACTIONS(9107), 1, + anon_sym_LPAREN, + ACTIONS(10947), 1, + anon_sym_GT, + ACTIONS(10949), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188239] = 4, - ACTIONS(9243), 1, - anon_sym_COMMA, - ACTIONS(9245), 1, - anon_sym_COLON, - STATE(5068), 1, - aux_sym__parameters_repeat1, + [152263] = 4, + ACTIONS(10195), 1, + sym__newline, + ACTIONS(10197), 1, + sym__indent, + STATE(2060), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188253] = 4, - ACTIONS(9247), 1, + [152277] = 4, + ACTIONS(10951), 1, anon_sym_COMMA, - ACTIONS(9249), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + ACTIONS(10953), 1, + anon_sym_COLON, + STATE(6202), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188267] = 4, - ACTIONS(9251), 1, - anon_sym_COMMA, - ACTIONS(9253), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + [152291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188281] = 4, - ACTIONS(5974), 1, + ACTIONS(4606), 3, anon_sym_COMMA, - ACTIONS(6013), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6023), 1, + [152301] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10955), 1, anon_sym_COLON, + STATE(6705), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188295] = 4, - ACTIONS(9255), 1, - anon_sym_COMMA, - ACTIONS(9257), 1, - anon_sym_RBRACK, - STATE(5251), 1, - aux_sym_template_params_repeat1, + [152315] = 4, + ACTIONS(10600), 1, + sym_string_start, + ACTIONS(10957), 1, + anon_sym_STAR, + STATE(3439), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188309] = 4, - ACTIONS(7730), 1, - anon_sym_RBRACE, - ACTIONS(9259), 1, + [152329] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5086), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10959), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188323] = 4, - ACTIONS(3247), 1, - anon_sym_RBRACK, - ACTIONS(9262), 1, - anon_sym_COMMA, - STATE(4946), 1, - aux_sym_assert_statement_repeat1, + [152343] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10961), 1, + anon_sym_COLON, + STATE(6713), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188337] = 4, - ACTIONS(9264), 1, - anon_sym_SEMI, - ACTIONS(9266), 1, + [152357] = 4, + ACTIONS(1553), 1, sym__newline, - STATE(4937), 1, + ACTIONS(10963), 1, + anon_sym_SEMI, + STATE(5885), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188351] = 4, - ACTIONS(6793), 1, - sym__newline, - ACTIONS(6797), 1, - anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + [152371] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10965), 1, + anon_sym_COLON, + STATE(6720), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188365] = 4, - ACTIONS(6500), 1, + [152385] = 4, + ACTIONS(2633), 1, + anon_sym_RBRACE, + ACTIONS(10967), 1, anon_sym_COMMA, - ACTIONS(9268), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(5838), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188379] = 4, - ACTIONS(9270), 1, + [152399] = 4, + ACTIONS(9917), 1, anon_sym_LPAREN, - ACTIONS(9272), 1, - anon_sym_COLON, - ACTIONS(9274), 1, + ACTIONS(10501), 1, sym__newline, + ACTIONS(10969), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188393] = 3, - ACTIONS(7710), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [152413] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10971), 1, + anon_sym_COLON, + STATE(6728), 1, + sym_external_definition, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7712), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188405] = 4, - ACTIONS(9276), 1, + [152427] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10973), 1, anon_sym_COLON, - ACTIONS(9278), 1, - anon_sym_nogil, - ACTIONS(9280), 1, - sym__newline, + STATE(6596), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188419] = 4, - ACTIONS(8602), 1, - sym__newline, - ACTIONS(8604), 1, - sym__indent, - STATE(1435), 1, - sym__match_block, + [152441] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10975), 1, + anon_sym_COLON, + STATE(6738), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188433] = 4, - ACTIONS(3992), 1, - anon_sym_RBRACK, - ACTIONS(9282), 1, + [152455] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5056), 1, - aux_sym__patterns_repeat1, + ACTIONS(10977), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188447] = 4, - ACTIONS(9255), 1, + [152469] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9284), 1, - anon_sym_RBRACK, - STATE(5198), 1, - aux_sym_template_params_repeat1, + ACTIONS(10979), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188461] = 4, - ACTIONS(9286), 1, + [152483] = 4, + ACTIONS(8838), 1, + anon_sym_RBRACE, + ACTIONS(10981), 1, anon_sym_COMMA, - ACTIONS(9289), 1, - anon_sym_RBRACK, - STATE(5097), 1, - aux_sym_template_params_repeat1, + STATE(6193), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188475] = 4, - ACTIONS(9274), 1, - sym__newline, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9293), 1, + [152497] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10984), 1, anon_sym_COLON, + STATE(6743), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188489] = 4, - ACTIONS(6876), 1, - sym__newline, - ACTIONS(7451), 1, + [152511] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(10986), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188503] = 4, - ACTIONS(9295), 1, - anon_sym_SEMI, - ACTIONS(9297), 1, - sym__newline, - STATE(5123), 1, - aux_sym__simple_statements_repeat1, + [152525] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(10988), 1, + anon_sym_COLON, + STATE(6746), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188517] = 4, - ACTIONS(8791), 1, + [152539] = 4, + ACTIONS(10260), 1, sym__newline, - ACTIONS(8793), 1, + ACTIONS(10262), 1, sym__indent, - STATE(1504), 1, + STATE(2175), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188531] = 3, - ACTIONS(1496), 1, - anon_sym_except, + [152553] = 4, + ACTIONS(10246), 1, + anon_sym_RPAREN, + ACTIONS(10990), 1, + anon_sym_COMMA, + STATE(6198), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 2, - anon_sym_except_STAR, - anon_sym_finally, - [188543] = 4, - ACTIONS(6500), 1, + [152567] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9299), 1, + ACTIONS(10993), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188557] = 4, - ACTIONS(6532), 1, - anon_sym_RPAREN, - ACTIONS(6565), 1, - anon_sym_COMMA, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188571] = 4, - ACTIONS(9199), 1, + [152581] = 4, + ACTIONS(9510), 1, + anon_sym_COLON, + ACTIONS(9514), 1, sym__newline, - ACTIONS(9301), 1, - anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(10995), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188585] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9304), 1, + [152595] = 4, + ACTIONS(9514), 1, + sym__newline, + ACTIONS(10997), 1, + anon_sym_LPAREN, + ACTIONS(10999), 1, anon_sym_COLON, - STATE(5794), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188599] = 4, - ACTIONS(6240), 1, - sym_identifier, - ACTIONS(9224), 1, - anon_sym_DOT, - STATE(5074), 1, - aux_sym_type_qualifier_repeat1, + [152609] = 4, + ACTIONS(11001), 1, + anon_sym_COMMA, + ACTIONS(11004), 1, + anon_sym_COLON, + STATE(6202), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188613] = 2, + [152623] = 4, + ACTIONS(2565), 1, + anon_sym_RBRACE, + ACTIONS(11006), 1, + anon_sym_COMMA, + STATE(5838), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9306), 3, + [152637] = 4, + ACTIONS(7965), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7967), 1, anon_sym_COMMA, - [188623] = 4, - ACTIONS(7016), 1, - sym_string_start, - ACTIONS(9308), 1, - anon_sym_STAR, - STATE(2849), 1, - sym_string, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188637] = 4, - ACTIONS(7016), 1, - sym_string_start, - ACTIONS(9310), 1, - anon_sym_STAR, - STATE(2878), 1, - sym_string, + [152651] = 3, + ACTIONS(7004), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188651] = 4, - ACTIONS(9312), 1, - anon_sym_LPAREN, - ACTIONS(9314), 1, + ACTIONS(6955), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(9316), 1, + [152663] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(11008), 1, sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188665] = 4, - ACTIONS(8474), 1, + [152677] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9318), 1, - anon_sym_in, - STATE(4715), 1, - aux_sym__patterns_repeat1, + ACTIONS(11010), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188679] = 4, + [152691] = 4, ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(7471), 1, - anon_sym_RBRACE, - STATE(5136), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188693] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9320), 1, - anon_sym_COLON, - STATE(5855), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188707] = 4, - ACTIONS(7694), 1, - anon_sym_LPAREN, - ACTIONS(9322), 1, - anon_sym_GT, - ACTIONS(9324), 1, - anon_sym_QMARK, + ACTIONS(11012), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188721] = 4, - ACTIONS(3247), 1, + [152705] = 4, + ACTIONS(7557), 1, anon_sym_RPAREN, - ACTIONS(9326), 1, + ACTIONS(7559), 1, anon_sym_COMMA, - STATE(5157), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188735] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9328), 1, - anon_sym_COLON, - STATE(5873), 1, - sym_external_definition, + STATE(6251), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188749] = 4, - ACTIONS(8474), 1, + [152719] = 4, + ACTIONS(11014), 1, + anon_sym_RPAREN, + ACTIONS(11016), 1, anon_sym_COMMA, - ACTIONS(9330), 1, - anon_sym_in, - STATE(4715), 1, - aux_sym__patterns_repeat1, + STATE(6252), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188763] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8974), 1, - anon_sym_PIPE, - ACTIONS(9332), 1, + [152733] = 4, + ACTIONS(9530), 1, anon_sym_COLON, + ACTIONS(9534), 1, + sym__newline, + ACTIONS(11018), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188777] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8974), 1, - anon_sym_PIPE, - ACTIONS(9334), 1, + [152747] = 4, + ACTIONS(9534), 1, + sym__newline, + ACTIONS(11020), 1, + anon_sym_LPAREN, + ACTIONS(11022), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188791] = 4, - ACTIONS(2923), 1, - anon_sym_RPAREN, - ACTIONS(9336), 1, + [152761] = 4, + ACTIONS(8309), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8311), 1, + anon_sym_RBRACK, + STATE(6254), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188805] = 4, - ACTIONS(8994), 1, + [152775] = 4, + ACTIONS(1551), 1, sym__newline, - ACTIONS(9338), 1, - sym_identifier, - ACTIONS(9340), 1, - anon_sym_COLON, + ACTIONS(11024), 1, + anon_sym_SEMI, + STATE(5885), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188819] = 4, - ACTIONS(1315), 1, + [152789] = 4, + ACTIONS(1549), 1, sym__newline, - ACTIONS(9342), 1, + ACTIONS(11026), 1, anon_sym_SEMI, - STATE(5248), 1, + STATE(5885), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188833] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9344), 1, + [152803] = 4, + ACTIONS(9433), 1, anon_sym_COLON, - STATE(5535), 1, - sym_external_definition, + ACTIONS(11028), 1, + anon_sym_RBRACE, + STATE(6884), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188847] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8974), 1, - anon_sym_PIPE, - ACTIONS(9346), 1, + [152817] = 4, + ACTIONS(2207), 1, + anon_sym_in, + ACTIONS(11030), 1, + anon_sym_COMMA, + STATE(6155), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [152831] = 4, + ACTIONS(10822), 1, anon_sym_COLON, + ACTIONS(11032), 1, + anon_sym_COMMA, + STATE(5714), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [152845] = 4, + ACTIONS(10195), 1, + sym__newline, + ACTIONS(10197), 1, + sym__indent, + STATE(2072), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188861] = 4, - ACTIONS(6803), 1, + [152859] = 4, + ACTIONS(7919), 1, sym__newline, - ACTIONS(7363), 1, + ACTIONS(7921), 1, anon_sym_COMMA, - STATE(5105), 1, + STATE(6070), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188875] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8974), 1, - anon_sym_PIPE, - ACTIONS(9348), 1, + [152873] = 4, + ACTIONS(6955), 1, + anon_sym_COMMA, + ACTIONS(7004), 1, + anon_sym_EQ, + ACTIONS(7012), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188889] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9350), 1, - anon_sym_COLON, - STATE(5541), 1, - sym_external_definition, + [152887] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(11034), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188903] = 4, - ACTIONS(6565), 1, + [152901] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - ACTIONS(9352), 1, + ACTIONS(11036), 1, anon_sym_RPAREN, - STATE(4819), 1, + STATE(5976), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188917] = 4, - ACTIONS(6565), 1, + [152915] = 4, + ACTIONS(7500), 1, anon_sym_COMMA, - ACTIONS(9354), 1, + ACTIONS(11038), 1, anon_sym_RPAREN, - STATE(4819), 1, + STATE(5976), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188931] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8974), 1, - anon_sym_PIPE, - ACTIONS(9356), 1, - anon_sym_COLON, + [152929] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(11040), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188945] = 4, - ACTIONS(2925), 1, + [152943] = 4, + ACTIONS(7518), 1, anon_sym_RPAREN, - ACTIONS(9358), 1, + ACTIONS(7520), 1, anon_sym_COMMA, - STATE(4986), 1, + STATE(6278), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188959] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9360), 1, - anon_sym_COLON, - STATE(5550), 1, - sym_external_definition, + [152957] = 4, + ACTIONS(11042), 1, + anon_sym_RPAREN, + ACTIONS(11044), 1, + anon_sym_COMMA, + STATE(6280), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188973] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9362), 1, - anon_sym_COLON, - STATE(5852), 1, - sym_external_definition, + [152971] = 4, + ACTIONS(9550), 1, + anon_sym_RBRACK, + ACTIONS(9911), 1, + anon_sym_COMMA, + STATE(6291), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [152985] = 4, + ACTIONS(7152), 1, + sym_identifier, + ACTIONS(10843), 1, + anon_sym_DOT, + STATE(6292), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188987] = 4, - ACTIONS(9364), 1, + [152999] = 4, + ACTIONS(8051), 1, anon_sym_COMMA, - ACTIONS(9366), 1, + ACTIONS(8055), 1, anon_sym_RBRACK, - STATE(4833), 1, + STATE(6283), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189001] = 4, - ACTIONS(3177), 1, + [153013] = 4, + ACTIONS(2559), 1, anon_sym_RBRACE, - ACTIONS(9368), 1, + ACTIONS(11046), 1, anon_sym_COMMA, - STATE(5177), 1, + STATE(5838), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189015] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_COLON, - STATE(5555), 1, - sym_external_definition, + [153027] = 3, + ACTIONS(9637), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189029] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9316), 1, - sym__newline, - ACTIONS(9372), 1, - anon_sym_COLON, + ACTIONS(9837), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [153039] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189043] = 4, - ACTIONS(8791), 1, - sym__newline, - ACTIONS(8793), 1, - sym__indent, - STATE(1557), 1, - sym__match_block, + ACTIONS(9839), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [153049] = 4, + ACTIONS(9837), 1, + anon_sym_RPAREN, + ACTIONS(11048), 1, + anon_sym_COMMA, + STATE(6234), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189057] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9374), 1, - anon_sym_COLON, - STATE(5558), 1, - sym_external_definition, + [153063] = 3, + ACTIONS(2652), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189071] = 4, - ACTIONS(9376), 1, - anon_sym_COMMA, - ACTIONS(9378), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + ACTIONS(2654), 2, + anon_sym_except_STAR, + anon_sym_finally, + [153075] = 4, + ACTIONS(11051), 1, + anon_sym_LPAREN, + ACTIONS(11053), 1, + anon_sym_COLON, + ACTIONS(11055), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189085] = 4, - ACTIONS(9380), 1, - anon_sym_COMMA, - ACTIONS(9383), 1, + [153089] = 4, + ACTIONS(11057), 1, anon_sym_COLON, - STATE(5142), 1, - aux_sym_match_statement_repeat1, + ACTIONS(11059), 1, + anon_sym_nogil, + ACTIONS(11061), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189099] = 4, - ACTIONS(7987), 1, - anon_sym_RPAREN, - ACTIONS(8486), 1, + [153103] = 4, + ACTIONS(9375), 1, + anon_sym_RBRACK, + ACTIONS(9911), 1, anon_sym_COMMA, - STATE(5203), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189113] = 4, - ACTIONS(7972), 1, - anon_sym_COLON, - ACTIONS(9385), 1, - anon_sym_RBRACE, - STATE(5762), 1, - sym_format_specifier, + STATE(6296), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189127] = 4, - ACTIONS(9387), 1, - anon_sym_RPAREN, - ACTIONS(9389), 1, + [153117] = 4, + ACTIONS(10485), 1, anon_sym_COMMA, - STATE(5145), 1, - aux_sym_with_clause_repeat1, + ACTIONS(11063), 1, + anon_sym_RBRACK, + STATE(6305), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189141] = 4, - ACTIONS(7960), 1, + [153131] = 4, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(11065), 1, anon_sym_COLON, - ACTIONS(7964), 1, + ACTIONS(11067), 1, sym__newline, - ACTIONS(9392), 1, - sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189155] = 4, - ACTIONS(7964), 1, + [153145] = 4, + ACTIONS(11055), 1, sym__newline, - ACTIONS(9394), 1, - anon_sym_LPAREN, - ACTIONS(9396), 1, + ACTIONS(11069), 1, + sym_identifier, + ACTIONS(11071), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189169] = 3, - ACTIONS(6013), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5974), 2, + [153159] = 4, + ACTIONS(7971), 1, + sym__newline, + ACTIONS(8778), 1, anon_sym_COMMA, - anon_sym_COLON, - [189181] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9398), 1, - anon_sym_COLON, - STATE(5598), 1, - sym_external_definition, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189195] = 4, - ACTIONS(7016), 1, - sym_string_start, - ACTIONS(9400), 1, - anon_sym_STAR, - STATE(2844), 1, - sym_string, + [153173] = 4, + ACTIONS(9761), 1, + anon_sym_DOT, + ACTIONS(10114), 1, + anon_sym_PIPE, + ACTIONS(11073), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189209] = 4, - ACTIONS(6813), 1, + [153187] = 4, + ACTIONS(11075), 1, + anon_sym_LPAREN, + ACTIONS(11077), 1, + anon_sym_COLON, + ACTIONS(11079), 1, sym__newline, - ACTIONS(6815), 1, - anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189223] = 4, - ACTIONS(8474), 1, + [153201] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9402), 1, - anon_sym_in, - STATE(4715), 1, - aux_sym__patterns_repeat1, + ACTIONS(11081), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189237] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9404), 1, - anon_sym_COLON, - STATE(5609), 1, - sym_external_definition, + [153215] = 3, + ACTIONS(9643), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189251] = 4, - ACTIONS(6364), 1, + ACTIONS(9837), 2, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(6484), 1, + [153227] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4971), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(11083), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189265] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9406), 1, + [153241] = 4, + ACTIONS(11085), 1, anon_sym_COLON, - STATE(5616), 1, - sym_external_definition, + ACTIONS(11087), 1, + anon_sym_nogil, + ACTIONS(11089), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189279] = 4, - ACTIONS(8474), 1, + [153255] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9408), 1, - anon_sym_in, - STATE(4715), 1, - aux_sym__patterns_repeat1, + ACTIONS(11091), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189293] = 4, - ACTIONS(6762), 1, + [153269] = 4, + ACTIONS(6565), 1, anon_sym_RPAREN, - ACTIONS(9410), 1, + ACTIONS(11093), 1, anon_sym_COMMA, - STATE(5157), 1, - aux_sym_assert_statement_repeat1, + STATE(5899), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189307] = 4, - ACTIONS(8807), 1, - anon_sym_RBRACK, - ACTIONS(9413), 1, + [153283] = 4, + ACTIONS(2371), 1, + anon_sym_RPAREN, + ACTIONS(11095), 1, anon_sym_COMMA, - STATE(5095), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189321] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9415), 3, - sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [189331] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9417), 1, - anon_sym_COLON, - STATE(5625), 1, - sym_external_definition, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189345] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9419), 1, - anon_sym_COLON, - STATE(5627), 1, - sym_external_definition, + [153297] = 4, + ACTIONS(2373), 1, + anon_sym_RPAREN, + ACTIONS(11097), 1, + anon_sym_COMMA, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189359] = 4, - ACTIONS(6500), 1, + [153311] = 4, + ACTIONS(11099), 1, anon_sym_COMMA, - ACTIONS(9421), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(11101), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189373] = 4, - ACTIONS(2775), 1, - anon_sym_RBRACK, - ACTIONS(9423), 1, + [153325] = 4, + ACTIONS(11103), 1, anon_sym_COMMA, - STATE(4925), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(11105), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189387] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9425), 1, + [153339] = 4, + ACTIONS(8905), 1, anon_sym_COLON, - STATE(5636), 1, - sym_external_definition, + ACTIONS(9931), 1, + anon_sym_PIPE, + STATE(6257), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189401] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9427), 1, - anon_sym_COLON, - STATE(5641), 1, - sym_external_definition, + [153353] = 3, + STATE(6255), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189415] = 4, - ACTIONS(6595), 1, - anon_sym_RPAREN, - ACTIONS(6597), 1, - anon_sym_COMMA, - STATE(5197), 1, - aux_sym_argument_list_repeat1, + ACTIONS(9072), 2, + anon_sym_COLON, + anon_sym_PIPE, + [153365] = 4, + ACTIONS(9072), 1, + anon_sym_COLON, + ACTIONS(11107), 1, + anon_sym_PIPE, + STATE(6257), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189429] = 4, - ACTIONS(9429), 1, - anon_sym_RPAREN, - ACTIONS(9431), 1, + [153379] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5199), 1, - aux_sym_argument_list_repeat1, + ACTIONS(11110), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189443] = 4, - ACTIONS(6821), 1, + [153393] = 4, + ACTIONS(9311), 1, + anon_sym_COLON, + ACTIONS(9315), 1, sym__newline, - ACTIONS(9433), 1, - anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(11112), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189457] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9435), 1, + [153407] = 4, + ACTIONS(9433), 1, anon_sym_COLON, - STATE(5644), 1, - sym_external_definition, + ACTIONS(11114), 1, + anon_sym_RBRACE, + STATE(6824), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189471] = 4, - ACTIONS(7060), 1, - anon_sym_COMMA, - ACTIONS(7062), 1, - anon_sym_RBRACK, - STATE(5202), 1, - aux_sym_subscript_repeat1, + [153421] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189485] = 4, - ACTIONS(5725), 1, - anon_sym_RPAREN, - ACTIONS(9437), 1, + ACTIONS(9839), 3, anon_sym_COMMA, - STATE(5171), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [153431] = 4, + ACTIONS(9315), 1, + sym__newline, + ACTIONS(11116), 1, + anon_sym_LPAREN, + ACTIONS(11118), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189499] = 3, - ACTIONS(7893), 1, + [153445] = 4, + ACTIONS(9917), 1, anon_sym_LPAREN, + ACTIONS(11120), 1, + anon_sym_COLON, + ACTIONS(11122), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9440), 2, + [153459] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [189511] = 3, - ACTIONS(9444), 1, - anon_sym_EQ, + ACTIONS(11124), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9442), 2, + [153473] = 4, + ACTIONS(11079), 1, sym__newline, - anon_sym_COMMA, - [189523] = 4, - ACTIONS(9446), 1, - anon_sym_COMMA, - ACTIONS(9448), 1, + ACTIONS(11126), 1, + sym_identifier, + ACTIONS(11128), 1, anon_sym_COLON, - STATE(5142), 1, - aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189537] = 4, - ACTIONS(8217), 1, - anon_sym_COLON, - ACTIONS(8221), 1, + [153487] = 4, + ACTIONS(7925), 1, sym__newline, - ACTIONS(9450), 1, - sym_identifier, + ACTIONS(8818), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189551] = 4, - ACTIONS(5545), 1, - anon_sym_RPAREN, - ACTIONS(9452), 1, + [153501] = 4, + ACTIONS(7953), 1, + anon_sym_RBRACE, + ACTIONS(11130), 1, anon_sym_COMMA, - STATE(5079), 1, - aux_sym__typedargslist_repeat1, + STATE(6267), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189565] = 4, - ACTIONS(9454), 1, + [153515] = 4, + ACTIONS(7973), 1, + sym__newline, + ACTIONS(8552), 1, anon_sym_COMMA, - ACTIONS(9457), 1, - anon_sym_RBRACE, - STATE(5177), 1, - aux_sym_dictionary_repeat1, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189579] = 4, - ACTIONS(8150), 1, - anon_sym_RBRACK, - ACTIONS(8803), 1, + [153529] = 4, + ACTIONS(7872), 1, + sym__newline, + ACTIONS(7874), 1, anon_sym_COMMA, - STATE(5215), 1, - aux_sym_type_index_repeat2, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189593] = 4, - ACTIONS(8517), 1, - anon_sym_RBRACK, - ACTIONS(9459), 1, + [153543] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(5179), 1, - aux_sym_type_index_repeat1, + ACTIONS(11133), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [153557] = 4, + ACTIONS(10042), 1, + anon_sym_LBRACK, + ACTIONS(11135), 1, + anon_sym_COLON, + STATE(6762), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189607] = 4, - ACTIONS(7245), 1, + [153571] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9462), 1, - anon_sym_RBRACK, - STATE(5179), 1, - aux_sym_type_index_repeat1, + ACTIONS(11137), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189621] = 4, - ACTIONS(8803), 1, + [153585] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9462), 1, - anon_sym_RBRACK, - STATE(5185), 1, - aux_sym_type_index_repeat2, + ACTIONS(11139), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189635] = 4, - ACTIONS(6157), 1, - sym_identifier, - ACTIONS(9464), 1, - anon_sym_DOT, - STATE(5182), 1, - aux_sym_type_qualifier_repeat1, + [153599] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(11141), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189649] = 4, - ACTIONS(8305), 1, + [153613] = 4, + ACTIONS(9837), 1, + anon_sym_RBRACK, + ACTIONS(11143), 1, anon_sym_COMMA, - ACTIONS(9467), 1, - anon_sym_RPAREN, - STATE(5206), 1, - aux_sym_function_pointer_type_repeat1, + STATE(6275), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189663] = 4, - ACTIONS(9469), 1, - anon_sym_LPAREN, - ACTIONS(9471), 1, - anon_sym_COLON, - ACTIONS(9473), 1, - sym__newline, + [153627] = 4, + ACTIONS(4538), 1, + sym_string_start, + ACTIONS(11146), 1, + anon_sym_LT, + STATE(6524), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189677] = 4, - ACTIONS(9475), 1, + [153641] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9478), 1, - anon_sym_RBRACK, - STATE(5185), 1, - aux_sym_type_index_repeat2, + ACTIONS(11148), 1, + sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189691] = 4, - ACTIONS(9480), 1, - anon_sym_COLON, - ACTIONS(9482), 1, - anon_sym_nogil, - ACTIONS(9484), 1, - sym__newline, + [153655] = 4, + ACTIONS(2429), 1, + anon_sym_RPAREN, + ACTIONS(11150), 1, + anon_sym_COMMA, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189705] = 4, - ACTIONS(6500), 1, + [153669] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9486), 1, + ACTIONS(11152), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189719] = 4, - ACTIONS(5337), 1, + [153683] = 4, + ACTIONS(2431), 1, anon_sym_RPAREN, - ACTIONS(9488), 1, + ACTIONS(11154), 1, anon_sym_COMMA, - STATE(5278), 1, - aux_sym__parameters_repeat1, + STATE(5752), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189733] = 4, - ACTIONS(9473), 1, - sym__newline, - ACTIONS(9490), 1, - sym_identifier, - ACTIONS(9492), 1, - anon_sym_COLON, + [153697] = 4, + ACTIONS(2183), 1, + anon_sym_RBRACK, + ACTIONS(11156), 1, + anon_sym_COMMA, + STATE(5921), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189747] = 4, - ACTIONS(6819), 1, - sym__newline, - ACTIONS(7311), 1, + [153711] = 4, + ACTIONS(11158), 1, anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(11160), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189761] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9494), 1, - anon_sym_COLON, - ACTIONS(9496), 1, - sym__newline, + [153725] = 4, + ACTIONS(11162), 1, + anon_sym_COMMA, + ACTIONS(11164), 1, + anon_sym_RBRACK, + STATE(5908), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189775] = 4, - ACTIONS(6500), 1, + [153739] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9498), 1, + ACTIONS(11166), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189789] = 3, - ACTIONS(1500), 1, - anon_sym_except, + [153753] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1502), 2, - anon_sym_except_STAR, - anon_sym_finally, - [189801] = 4, - ACTIONS(6500), 1, + ACTIONS(9839), 3, anon_sym_COMMA, - ACTIONS(9500), 1, + anon_sym_as, + anon_sym_RBRACE, + [153763] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(11168), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189815] = 4, - ACTIONS(6882), 1, - sym__newline, - ACTIONS(7490), 1, + [153777] = 4, + ACTIONS(7703), 1, + anon_sym_RPAREN, + ACTIONS(7705), 1, anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + STATE(5754), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189829] = 4, - ACTIONS(6500), 1, + [153791] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9502), 1, + ACTIONS(11170), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189843] = 4, - ACTIONS(2969), 1, - anon_sym_RPAREN, - ACTIONS(9504), 1, + [153805] = 4, + ACTIONS(10485), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + ACTIONS(11172), 1, + anon_sym_RBRACK, + STATE(5926), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189857] = 4, - ACTIONS(9255), 1, + [153819] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(9506), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, - STATE(5097), 1, - aux_sym_template_params_repeat1, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189871] = 4, - ACTIONS(2971), 1, - anon_sym_RPAREN, - ACTIONS(9508), 1, + [153833] = 4, + ACTIONS(9911), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + ACTIONS(11174), 1, + anon_sym_RBRACK, + STATE(6101), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189885] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, + [153847] = 4, + ACTIONS(7133), 1, + sym_identifier, + ACTIONS(11176), 1, + anon_sym_DOT, + STATE(6292), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9510), 2, + [153861] = 4, + ACTIONS(11179), 1, anon_sym_RPAREN, + ACTIONS(11181), 1, anon_sym_COMMA, - [189897] = 4, - ACTIONS(9512), 1, - anon_sym_COMMA, - ACTIONS(9514), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + STATE(5756), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189911] = 4, - ACTIONS(9516), 1, + [153875] = 4, + ACTIONS(9664), 1, anon_sym_COMMA, - ACTIONS(9518), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + ACTIONS(11183), 1, + anon_sym_RPAREN, + STATE(6116), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189925] = 4, - ACTIONS(8319), 1, - anon_sym_RPAREN, - ACTIONS(9520), 1, + [153889] = 4, + ACTIONS(8404), 1, anon_sym_COMMA, - STATE(5023), 1, - aux_sym__import_list_repeat1, + ACTIONS(11185), 1, + anon_sym_RBRACK, + STATE(6087), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189939] = 4, - ACTIONS(8186), 1, - anon_sym_RBRACK, - ACTIONS(8803), 1, + [153903] = 4, + ACTIONS(9911), 1, anon_sym_COMMA, - STATE(5038), 1, + ACTIONS(11185), 1, + anon_sym_RBRACK, + STATE(6101), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189953] = 4, - ACTIONS(2745), 1, - anon_sym_RBRACK, - ACTIONS(9522), 1, + [153917] = 4, + ACTIONS(9664), 1, anon_sym_COMMA, - STATE(4925), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(11187), 1, + anon_sym_RPAREN, + STATE(6116), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189967] = 4, - ACTIONS(9510), 1, - anon_sym_RPAREN, - ACTIONS(9524), 1, + [153931] = 4, + ACTIONS(8073), 1, anon_sym_COMMA, - STATE(5206), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(8075), 1, + anon_sym_RBRACK, + STATE(5758), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189981] = 4, - ACTIONS(9496), 1, - sym__newline, - ACTIONS(9527), 1, - anon_sym_LPAREN, - ACTIONS(9529), 1, - anon_sym_COLON, + [153945] = 4, + ACTIONS(11189), 1, + anon_sym_RPAREN, + ACTIONS(11191), 1, + anon_sym_COMMA, + STATE(6107), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189995] = 4, - ACTIONS(8221), 1, - sym__newline, - ACTIONS(9531), 1, + [153959] = 4, + ACTIONS(9917), 1, anon_sym_LPAREN, - ACTIONS(9533), 1, + ACTIONS(11193), 1, anon_sym_COLON, + ACTIONS(11195), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190009] = 3, - ACTIONS(7792), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7794), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [190021] = 4, - ACTIONS(6500), 1, + [153973] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9535), 1, + ACTIONS(11197), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190035] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9537), 1, + [153987] = 4, + ACTIONS(9397), 1, + anon_sym_COLON, + ACTIONS(9401), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(11199), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190049] = 3, - ACTIONS(7808), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7810), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [190061] = 3, - ACTIONS(9541), 1, - anon_sym_EQ, + [154001] = 4, + ACTIONS(9903), 1, + sym__newline, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(11201), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9539), 2, + [154015] = 4, + ACTIONS(7975), 1, sym__newline, + ACTIONS(8834), 1, anon_sym_COMMA, - [190073] = 4, - ACTIONS(7245), 1, - anon_sym_COMMA, - ACTIONS(9543), 1, - anon_sym_RBRACK, - STATE(5179), 1, - aux_sym_type_index_repeat1, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190087] = 4, - ACTIONS(8803), 1, + [154029] = 4, + ACTIONS(10485), 1, anon_sym_COMMA, - ACTIONS(9543), 1, + ACTIONS(11203), 1, anon_sym_RBRACK, - STATE(5185), 1, - aux_sym_type_index_repeat2, + STATE(5926), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190101] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9545), 1, + [154043] = 4, + ACTIONS(9401), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(11205), 1, + anon_sym_LPAREN, + ACTIONS(11207), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190115] = 3, - ACTIONS(7812), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7814), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [190127] = 4, - ACTIONS(8305), 1, - anon_sym_COMMA, - ACTIONS(9547), 1, + [154057] = 4, + ACTIONS(5588), 1, anon_sym_RPAREN, - STATE(5206), 1, - aux_sym_function_pointer_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190141] = 4, - ACTIONS(6500), 1, + ACTIONS(11209), 1, anon_sym_COMMA, - ACTIONS(9549), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + STATE(6234), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190155] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8974), 1, - anon_sym_PIPE, - ACTIONS(9551), 1, - anon_sym_COLON, + [154071] = 3, + ACTIONS(11213), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190169] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9553), 1, - anon_sym_COLON, - ACTIONS(9555), 1, + ACTIONS(11211), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [154083] = 4, + ACTIONS(7469), 1, + anon_sym_COMMA, + ACTIONS(11215), 1, sym__newline, + STATE(6004), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190183] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9557), 1, + [154097] = 4, + ACTIONS(7927), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8384), 1, + anon_sym_COMMA, + STATE(6070), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190197] = 4, - ACTIONS(9559), 1, + [154111] = 4, + ACTIONS(2628), 1, + anon_sym_RBRACE, + ACTIONS(11217), 1, anon_sym_COMMA, - ACTIONS(9562), 1, - anon_sym_RBRACK, - STATE(5223), 1, - aux_sym_external_definition_repeat1, + STATE(6267), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190211] = 4, - ACTIONS(9245), 1, - anon_sym_RPAREN, - ACTIONS(9564), 1, - anon_sym_COMMA, - STATE(5188), 1, - aux_sym__parameters_repeat1, + [154125] = 4, + ACTIONS(11195), 1, + sym__newline, + ACTIONS(11219), 1, + anon_sym_LPAREN, + ACTIONS(11221), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190225] = 4, - ACTIONS(6500), 1, + [154139] = 4, + ACTIONS(7469), 1, anon_sym_COMMA, - ACTIONS(9566), 1, + ACTIONS(11223), 1, sym__newline, - STATE(4779), 1, + STATE(6004), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190239] = 3, - ACTIONS(5976), 1, - anon_sym_COLON, + [154153] = 3, + ACTIONS(7846), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5974), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [190251] = 4, - ACTIONS(6823), 1, + ACTIONS(7844), 2, sym__newline, - ACTIONS(7403), 1, - anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + anon_sym_SEMI, + [154165] = 3, + ACTIONS(11225), 1, + sym_identifier, + STATE(6355), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190265] = 4, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8974), 1, - anon_sym_PIPE, - ACTIONS(9568), 1, - anon_sym_COLON, + [154176] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190279] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACK, - ACTIONS(9570), 1, - anon_sym_COLON, - STATE(5655), 1, - sym_external_definition, + ACTIONS(11227), 2, + sym__dedent, + anon_sym_case, + [154185] = 3, + ACTIONS(11229), 1, + anon_sym_LPAREN, + STATE(2866), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190293] = 2, + [154196] = 3, + ACTIONS(7834), 1, + anon_sym_LPAREN, + STATE(4876), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [190303] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9572), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [154207] = 3, + ACTIONS(11231), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190317] = 4, - ACTIONS(9555), 1, + [154218] = 3, + ACTIONS(10026), 1, sym__newline, - ACTIONS(9574), 1, - anon_sym_LPAREN, - ACTIONS(9576), 1, + ACTIONS(11233), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190331] = 4, - ACTIONS(6895), 1, - sym__newline, - ACTIONS(7586), 1, - anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + [154229] = 3, + ACTIONS(11235), 1, + anon_sym_COLON, + ACTIONS(11237), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190345] = 3, - ACTIONS(6846), 1, - anon_sym_from, + [154240] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6844), 2, + ACTIONS(11239), 2, sym__newline, anon_sym_SEMI, - [190357] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9578), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [154249] = 3, + ACTIONS(11241), 1, + anon_sym_LPAREN, + STATE(4722), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190371] = 4, - ACTIONS(6500), 1, + [154260] = 3, + ACTIONS(6569), 1, + anon_sym_RPAREN, + ACTIONS(11243), 1, anon_sym_COMMA, - ACTIONS(9580), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190385] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9582), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [154271] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190399] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9584), 1, + ACTIONS(11245), 2, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [154280] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190413] = 3, - ACTIONS(7871), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(11247), 2, + anon_sym_import, + anon_sym_cimport, + [154289] = 3, + ACTIONS(11249), 1, + aux_sym_integer_token1, + STATE(4593), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7873), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [190425] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9586), 1, + [154300] = 3, + ACTIONS(6331), 1, anon_sym_COLON, - ACTIONS(9588), 1, - sym__newline, + STATE(6348), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190439] = 4, - ACTIONS(6762), 1, - anon_sym_RBRACE, - ACTIONS(9590), 1, - anon_sym_COMMA, - STATE(5241), 1, - aux_sym_assert_statement_repeat1, + [154311] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190453] = 3, - ACTIONS(7879), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7881), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [190465] = 4, - ACTIONS(7245), 1, + ACTIONS(10349), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(9593), 1, - anon_sym_RBRACK, - STATE(5179), 1, - aux_sym_type_index_repeat1, + [154320] = 3, + ACTIONS(9573), 1, + anon_sym_RPAREN, + ACTIONS(9831), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190479] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9595), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [154331] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190493] = 3, - ACTIONS(7883), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(9064), 2, + sym__newline, + anon_sym_COLON, + [154340] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7885), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [190505] = 4, - ACTIONS(8401), 1, - sym_identifier, - STATE(4990), 1, - sym_dotted_name, - STATE(5426), 1, - sym_aliased_import, + ACTIONS(6749), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [154349] = 3, + ACTIONS(11251), 1, + anon_sym_RPAREN, + ACTIONS(11253), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190519] = 3, - ACTIONS(1546), 1, - anon_sym_except, + [154360] = 3, + ACTIONS(11255), 1, + aux_sym_integer_token1, + STATE(4588), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1548), 2, - anon_sym_except_STAR, - anon_sym_finally, - [190531] = 4, - ACTIONS(9597), 1, - anon_sym_SEMI, - ACTIONS(9600), 1, - sym__newline, - STATE(5248), 1, - aux_sym__simple_statements_repeat1, + [154371] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190545] = 4, - ACTIONS(6500), 1, + ACTIONS(6828), 2, anon_sym_COMMA, - ACTIONS(9602), 1, + anon_sym_RBRACK, + [154380] = 3, + ACTIONS(9586), 1, + anon_sym_COLON, + ACTIONS(9588), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190559] = 2, + [154391] = 3, + ACTIONS(11257), 1, + aux_sym_integer_token1, + STATE(4507), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 3, + [154402] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11259), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [190569] = 4, - ACTIONS(9255), 1, - anon_sym_COMMA, - ACTIONS(9604), 1, - anon_sym_RBRACK, - STATE(5097), 1, - aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190583] = 4, - ACTIONS(8315), 1, - anon_sym_COMMA, - ACTIONS(9606), 1, - anon_sym_RBRACK, - STATE(5223), 1, - aux_sym_external_definition_repeat1, + [154413] = 3, + ACTIONS(10339), 1, + sym__newline, + ACTIONS(11261), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190597] = 4, - ACTIONS(8319), 1, - anon_sym_RPAREN, - ACTIONS(9608), 1, - anon_sym_COMMA, - STATE(5023), 1, - aux_sym__import_list_repeat1, + [154424] = 3, + ACTIONS(11263), 1, + aux_sym_integer_token3, + STATE(2440), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190611] = 3, - ACTIONS(1476), 1, - anon_sym_except, + [154435] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1478), 2, - anon_sym_except_STAR, - anon_sym_finally, - [190623] = 4, - ACTIONS(8315), 1, + ACTIONS(9953), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(9610), 1, - anon_sym_RBRACK, - STATE(5223), 1, - aux_sym_external_definition_repeat1, + [154444] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190637] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9612), 1, + ACTIONS(11265), 2, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [154453] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190651] = 4, - ACTIONS(2881), 1, - anon_sym_RPAREN, - ACTIONS(9614), 1, + ACTIONS(6749), 2, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_argument_list_repeat1, + anon_sym_RBRACK, + [154462] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11267), 2, + sym__newline, + anon_sym_SEMI, + [154471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190665] = 2, + ACTIONS(11269), 2, + anon_sym_type, + anon_sym_object, + [154480] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8431), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [190675] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9616), 1, - anon_sym_COLON, - ACTIONS(9618), 1, - sym__newline, + ACTIONS(11271), 2, + sym__dedent, + anon_sym_case, + [154489] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190689] = 4, - ACTIONS(3477), 1, + ACTIONS(9144), 2, anon_sym_RPAREN, - ACTIONS(9620), 1, anon_sym_COMMA, - STATE(5145), 1, - aux_sym_with_clause_repeat1, + [154498] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190703] = 4, - ACTIONS(6565), 1, + ACTIONS(10802), 2, anon_sym_COMMA, - ACTIONS(9622), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + anon_sym_RBRACK, + [154507] = 3, + ACTIONS(11273), 1, + anon_sym_COLON, + ACTIONS(11275), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190717] = 4, - ACTIONS(6833), 1, + [154518] = 3, + ACTIONS(10052), 1, sym__newline, - ACTIONS(9624), 1, - anon_sym_COMMA, - STATE(5105), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(11277), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190731] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9626), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [154529] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190745] = 4, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9628), 1, - anon_sym_COLON, - ACTIONS(9630), 1, + ACTIONS(11279), 2, sym__newline, + anon_sym_SEMI, + [154538] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190759] = 4, - ACTIONS(6500), 1, + ACTIONS(11281), 2, anon_sym_COMMA, - ACTIONS(9632), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [154547] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190773] = 4, - ACTIONS(6565), 1, + ACTIONS(11283), 2, anon_sym_COMMA, - ACTIONS(9634), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym__collection_elements_repeat1, + anon_sym_RBRACK, + [154556] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190787] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9636), 1, + ACTIONS(9159), 2, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [154565] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190801] = 4, - ACTIONS(6500), 1, + ACTIONS(10411), 2, anon_sym_COMMA, - ACTIONS(9638), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACK, + [154574] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11285), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190815] = 4, - ACTIONS(6623), 1, - anon_sym_RPAREN, - ACTIONS(6625), 1, - anon_sym_COMMA, - STATE(5257), 1, - aux_sym_argument_list_repeat1, + [154585] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190829] = 4, - ACTIONS(6500), 1, + ACTIONS(11287), 2, anon_sym_COMMA, - ACTIONS(9640), 1, + anon_sym_COLON, + [154594] = 3, + ACTIONS(9917), 1, + anon_sym_LPAREN, + ACTIONS(11289), 1, sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190843] = 4, - ACTIONS(9387), 1, - anon_sym_COLON, - ACTIONS(9642), 1, - anon_sym_COMMA, - STATE(5271), 1, - aux_sym_with_clause_repeat1, + [154605] = 3, + ACTIONS(11291), 1, + aux_sym_integer_token1, + STATE(2471), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190857] = 4, - ACTIONS(6500), 1, - anon_sym_COMMA, - ACTIONS(9645), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + [154616] = 3, + ACTIONS(11293), 1, + aux_sym_integer_token2, + STATE(2656), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190871] = 3, - ACTIONS(7694), 1, - anon_sym_LPAREN, + [154627] = 3, + ACTIONS(11295), 1, + aux_sym_integer_token3, + STATE(2659), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9138), 2, - anon_sym_COMMA, + [154638] = 3, + ACTIONS(10233), 1, anon_sym_COLON, - [190883] = 2, + ACTIONS(10237), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [190893] = 4, - ACTIONS(3247), 1, - anon_sym_RBRACE, - ACTIONS(9647), 1, - anon_sym_COMMA, - STATE(5241), 1, - aux_sym_assert_statement_repeat1, + [154649] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190907] = 4, - ACTIONS(6500), 1, + ACTIONS(11297), 2, anon_sym_COMMA, - ACTIONS(9649), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + [154658] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190921] = 4, - ACTIONS(9651), 1, + ACTIONS(11281), 2, anon_sym_RPAREN, - ACTIONS(9653), 1, anon_sym_COMMA, - STATE(5260), 1, - aux_sym_with_clause_repeat1, + [154667] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190935] = 4, - ACTIONS(8594), 1, + ACTIONS(6955), 2, anon_sym_RPAREN, - ACTIONS(9655), 1, anon_sym_COMMA, - STATE(5278), 1, - aux_sym__parameters_repeat1, + [154676] = 3, + ACTIONS(11299), 1, + aux_sym_integer_token1, + STATE(3943), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190949] = 2, + [154687] = 3, + ACTIONS(11301), 1, + aux_sym_integer_token2, + STATE(2478), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9658), 2, - sym__newline, - anon_sym_SEMI, - [190958] = 3, - ACTIONS(6956), 1, + [154698] = 3, + ACTIONS(8260), 1, anon_sym_COLON, - ACTIONS(6958), 1, - sym__newline, + ACTIONS(8262), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190969] = 3, - ACTIONS(9660), 1, - anon_sym_COLON, - ACTIONS(9662), 1, - anon_sym_DASH_GT, + [154709] = 3, + ACTIONS(11303), 1, + aux_sym_integer_token3, + STATE(2479), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [154720] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190980] = 3, - ACTIONS(5565), 1, + ACTIONS(11305), 2, + sym__dedent, + anon_sym_case, + [154729] = 3, + ACTIONS(10433), 1, + sym__newline, + ACTIONS(11307), 1, anon_sym_COLON, - STATE(5427), 1, - sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190991] = 3, - ACTIONS(9664), 1, - sym_integer, - ACTIONS(9666), 1, - sym_float, + [154740] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191002] = 2, + ACTIONS(7786), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [154749] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9668), 2, - sym__newline, - anon_sym_SEMI, - [191011] = 3, - ACTIONS(9670), 1, - anon_sym_LPAREN, - STATE(2216), 1, - sym_argument_list, + ACTIONS(11309), 2, + sym__dedent, + anon_sym_case, + [154758] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191022] = 2, + ACTIONS(11311), 2, + sym__newline, + anon_sym_SEMI, + [154767] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9672), 2, - anon_sym_type, - anon_sym_object, - [191031] = 2, + ACTIONS(11313), 2, + sym__newline, + anon_sym_SEMI, + [154776] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9674), 2, - sym__dedent, - anon_sym_case, - [191040] = 2, + ACTIONS(11315), 2, + sym__newline, + anon_sym_SEMI, + [154785] = 3, + ACTIONS(8264), 1, + anon_sym_COLON, + ACTIONS(8266), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9676), 2, - sym__dedent, - anon_sym_case, - [191049] = 2, + [154796] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9678), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191058] = 2, + ACTIONS(11317), 2, + sym__newline, + anon_sym_SEMI, + [154805] = 3, + ACTIONS(9958), 1, + anon_sym_COLON, + ACTIONS(9962), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9680), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191067] = 3, - ACTIONS(9682), 1, + [154816] = 3, + ACTIONS(11319), 1, anon_sym_COLON, - ACTIONS(9684), 1, + ACTIONS(11321), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191078] = 2, + [154827] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11323), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191087] = 3, - ACTIONS(9686), 1, - anon_sym_LPAREN, - STATE(2441), 1, - sym_argument_list, + [154838] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191098] = 2, + ACTIONS(11325), 2, + anon_sym__, + sym_identifier, + [154847] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8594), 2, + ACTIONS(11327), 2, anon_sym_RPAREN, anon_sym_COMMA, - [191107] = 2, + [154856] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5725), 2, + ACTIONS(11329), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [191116] = 3, - ACTIONS(9688), 1, + [154865] = 3, + ACTIONS(11331), 1, anon_sym_LPAREN, - STATE(2510), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191127] = 2, + STATE(6559), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9690), 2, - sym__dedent, - anon_sym_case, - [191136] = 3, - ACTIONS(9692), 1, + [154876] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN, - STATE(2670), 1, + STATE(3407), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191147] = 3, - ACTIONS(9694), 1, - sym_integer, - ACTIONS(9696), 1, - sym_float, + [154887] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191158] = 2, + ACTIONS(8838), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [154896] = 3, + ACTIONS(11225), 1, + sym_identifier, + STATE(6239), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9698), 2, - anon_sym_COMMA, - anon_sym_COLON, - [191167] = 3, - ACTIONS(8162), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, + [154907] = 3, + ACTIONS(7834), 1, anon_sym_LPAREN, + STATE(4913), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191178] = 2, + [154918] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9700), 2, + ACTIONS(9878), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [191187] = 2, + [154927] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9702), 2, - anon_sym_import, - anon_sym_cimport, - [191196] = 3, - ACTIONS(9704), 1, - anon_sym_LPAREN, - STATE(2516), 1, - sym_argument_list, + ACTIONS(11335), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [154936] = 3, + ACTIONS(10124), 1, + sym__newline, + ACTIONS(11337), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191207] = 3, - ACTIONS(9706), 1, + [154947] = 3, + ACTIONS(11339), 1, anon_sym_COLON, - ACTIONS(9708), 1, - sym__newline, + ACTIONS(11341), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191218] = 2, + [154958] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9710), 2, - anon_sym_RPAREN, + ACTIONS(11343), 2, anon_sym_COMMA, - [191227] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9712), 1, - anon_sym_RPAREN, + anon_sym_COLON, + [154967] = 3, + ACTIONS(8268), 1, + anon_sym_COLON, + ACTIONS(8270), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191238] = 3, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(9714), 1, - anon_sym_COMMA, + [154978] = 3, + ACTIONS(11345), 1, + anon_sym_COLON, + ACTIONS(11347), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191249] = 2, + [154989] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11349), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9238), 2, + [155000] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11351), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [191258] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9716), 2, - sym__dedent, - anon_sym_case, - [191267] = 2, + [155011] = 3, + ACTIONS(10600), 1, + sym_string_start, + STATE(3487), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9718), 2, - sym__newline, - anon_sym_SEMI, - [191276] = 2, + [155022] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9720), 2, - sym__dedent, - anon_sym_case, - [191285] = 2, + ACTIONS(10832), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [155031] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9722), 2, - sym__dedent, - anon_sym_case, - [191294] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9724), 1, - anon_sym_RPAREN, + ACTIONS(11327), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [155040] = 3, + ACTIONS(11353), 1, + anon_sym_COMMA, + STATE(5157), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191305] = 2, + [155051] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9726), 2, + ACTIONS(11327), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [191314] = 3, - ACTIONS(9728), 1, + anon_sym_RBRACK, + [155060] = 3, + ACTIONS(8272), 1, anon_sym_COLON, - ACTIONS(9730), 1, - anon_sym_DASH_GT, + ACTIONS(8274), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191325] = 2, + [155071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5974), 2, + ACTIONS(11329), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [155080] = 3, + ACTIONS(11355), 1, anon_sym_COLON, - [191334] = 2, + ACTIONS(11357), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9680), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [191343] = 2, + [155091] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7730), 2, + ACTIONS(8838), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [191352] = 3, - ACTIONS(8301), 1, + anon_sym_RBRACK, + [155100] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9732), 1, + ACTIONS(11359), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191363] = 3, - ACTIONS(9734), 1, - anon_sym_COMMA, - STATE(4364), 1, - aux_sym__patterns_repeat1, + [155111] = 3, + ACTIONS(11067), 1, + sym__newline, + ACTIONS(11361), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191374] = 2, + [155122] = 3, + ACTIONS(10600), 1, + sym_string_start, + STATE(3656), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6755), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191383] = 3, - ACTIONS(8301), 1, + [155133] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9736), 1, + ACTIONS(11363), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191394] = 3, - ACTIONS(9738), 1, - anon_sym_COLON, - ACTIONS(9740), 1, - sym__newline, + [155144] = 3, + ACTIONS(11365), 1, + aux_sym_integer_token1, + STATE(2491), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191405] = 2, + [155155] = 3, + ACTIONS(11367), 1, + aux_sym_integer_token2, + STATE(2509), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9742), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191414] = 2, + [155166] = 3, + ACTIONS(11369), 1, + aux_sym_integer_token3, + STATE(2513), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9744), 2, - anon_sym_nogil, - anon_sym_gil, - [191423] = 2, + [155177] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11371), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9289), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191432] = 2, + [155188] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3797), 2, + sym__newline, + anon_sym_SEMI, + [155197] = 3, + ACTIONS(11373), 1, + aux_sym_integer_token1, + STATE(2506), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9746), 2, + [155208] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11375), 2, + anon_sym_import, + anon_sym_cimport, + [155217] = 3, + ACTIONS(9197), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [191441] = 3, - ACTIONS(7016), 1, - sym_string_start, - STATE(2883), 1, - sym_string, + ACTIONS(9831), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191452] = 3, - ACTIONS(8301), 1, + [155228] = 3, + ACTIONS(11377), 1, + aux_sym_integer_token2, + STATE(2507), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [155239] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9748), 1, + ACTIONS(11379), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191463] = 3, - ACTIONS(9276), 1, + [155250] = 3, + ACTIONS(8346), 1, anon_sym_COLON, - ACTIONS(9280), 1, + ACTIONS(8348), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191474] = 2, + [155261] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11381), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9750), 2, - sym__dedent, - anon_sym_case, - [191483] = 3, - ACTIONS(9752), 1, - anon_sym_LPAREN, - STATE(2636), 1, - sym_argument_list, + [155272] = 3, + ACTIONS(11383), 1, + aux_sym_integer_token3, + STATE(2483), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191494] = 2, + [155283] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5870), 2, - anon_sym_RPAREN, + ACTIONS(11329), 2, anon_sym_COMMA, - [191503] = 2, + anon_sym_RBRACE, + [155292] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11385), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9754), 2, - sym__newline, - anon_sym_SEMI, - [191512] = 3, - ACTIONS(7078), 1, - anon_sym_COLON, - ACTIONS(7080), 1, - anon_sym_by, + [155303] = 3, + ACTIONS(10600), 1, + sym_string_start, + STATE(6677), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191523] = 2, + [155314] = 3, + ACTIONS(11387), 1, + aux_sym_integer_token1, + STATE(2438), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9756), 2, - anon_sym_nogil, - anon_sym_gil, - [191532] = 2, + [155325] = 3, + ACTIONS(11389), 1, + anon_sym_COLON, + ACTIONS(11391), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9758), 2, + [155336] = 3, + ACTIONS(11393), 1, + anon_sym_COLON, + ACTIONS(11395), 1, sym__newline, - anon_sym_SEMI, - [191541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9600), 2, - sym__newline, - anon_sym_SEMI, - [191550] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9760), 1, - anon_sym_RPAREN, + [155347] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191561] = 3, - ACTIONS(7192), 1, - anon_sym_COLON, - ACTIONS(7194), 1, - anon_sym_by, + ACTIONS(8838), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [155356] = 3, + ACTIONS(11397), 1, + anon_sym_LPAREN, + STATE(3085), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191572] = 3, - ACTIONS(9762), 1, - anon_sym_COLON, - ACTIONS(9764), 1, - anon_sym_DASH_GT, + [155367] = 3, + ACTIONS(11399), 1, + anon_sym_LPAREN, + STATE(3953), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191583] = 3, - ACTIONS(8301), 1, + [155378] = 3, + ACTIONS(11401), 1, anon_sym_LPAREN, - ACTIONS(9766), 1, - anon_sym_RPAREN, + STATE(3202), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191594] = 3, - ACTIONS(8947), 1, - sym__newline, - ACTIONS(9768), 1, - anon_sym_COLON, + [155389] = 3, + ACTIONS(11403), 1, + anon_sym_LPAREN, + STATE(3017), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191605] = 3, - ACTIONS(8301), 1, + [155400] = 3, + ACTIONS(11405), 1, anon_sym_LPAREN, - ACTIONS(9770), 1, - anon_sym_RPAREN, + STATE(4722), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191616] = 3, - ACTIONS(9772), 1, - sym_identifier, - STATE(5096), 1, - sym_template_param, + [155411] = 3, + ACTIONS(11407), 1, + anon_sym_LPAREN, + STATE(3407), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191627] = 3, - ACTIONS(6795), 1, + [155422] = 3, + ACTIONS(11409), 1, anon_sym_LPAREN, - STATE(4049), 1, - sym_c_parameters, + STATE(3251), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191638] = 2, + [155433] = 3, + ACTIONS(11411), 1, + anon_sym_COLON, + ACTIONS(11413), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5974), 2, - anon_sym_COMMA, - anon_sym_COLON, - [191647] = 3, - ACTIONS(9774), 1, - anon_sym_COLON, - ACTIONS(9776), 1, - anon_sym_DASH_GT, + [155444] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191658] = 3, - ACTIONS(7098), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_by, + ACTIONS(8148), 2, + sym__newline, + anon_sym_SEMI, + [155453] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11415), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191669] = 2, + [155464] = 3, + ACTIONS(7834), 1, + anon_sym_LPAREN, + STATE(4823), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3920), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191678] = 2, + [155475] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9387), 2, + ACTIONS(6838), 2, anon_sym_RPAREN, anon_sym_COMMA, - [191687] = 3, - ACTIONS(9778), 1, - anon_sym_COLON, - ACTIONS(9780), 1, - anon_sym_DASH_GT, + [155484] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11417), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191698] = 3, - ACTIONS(8301), 1, + [155495] = 3, + ACTIONS(11419), 1, + aux_sym_integer_token1, + STATE(2496), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [155506] = 3, + ACTIONS(11421), 1, + aux_sym_integer_token2, + STATE(2475), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [155517] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9782), 1, + ACTIONS(11423), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191709] = 3, - ACTIONS(8301), 1, + [155528] = 3, + ACTIONS(11425), 1, + aux_sym_integer_token3, + STATE(2476), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [155539] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9784), 1, + ACTIONS(11427), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191720] = 2, + [155550] = 3, + ACTIONS(10600), 1, + sym_string_start, + STATE(3670), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5725), 2, + [155561] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11429), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [191729] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3920), 2, - anon_sym_RPAREN, + [155572] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7786), 2, anon_sym_COMMA, - [191738] = 3, - ACTIONS(9786), 1, + anon_sym_RBRACK, + [155581] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3970), 1, - sym_argument_list, + ACTIONS(11431), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191749] = 2, + [155592] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9788), 2, + ACTIONS(11433), 2, sym__dedent, anon_sym_case, - [191758] = 3, - ACTIONS(7102), 1, - anon_sym_COLON, - ACTIONS(7104), 1, - anon_sym_by, + [155601] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11435), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191769] = 2, + [155612] = 3, + ACTIONS(11437), 1, + anon_sym_LPAREN, + STATE(3085), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9790), 2, - sym__newline, - anon_sym_SEMI, - [191778] = 3, - ACTIONS(9792), 1, + [155623] = 3, + ACTIONS(8291), 1, anon_sym_COLON, - ACTIONS(9794), 1, - anon_sym_DASH_GT, + ACTIONS(8293), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191789] = 3, - ACTIONS(9796), 1, + [155634] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3179), 1, - sym_argument_list, + ACTIONS(11439), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191800] = 3, - ACTIONS(8301), 1, + [155645] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9798), 1, + ACTIONS(11441), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191811] = 3, - ACTIONS(8707), 1, - sym__newline, - ACTIONS(9800), 1, + [155656] = 3, + ACTIONS(11443), 1, anon_sym_COLON, + ACTIONS(11445), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191822] = 3, - ACTIONS(7016), 1, - sym_string_start, - STATE(2887), 1, - sym_string, + [155667] = 3, + ACTIONS(11447), 1, + aux_sym_integer_token1, + STATE(2652), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191833] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9802), 1, - anon_sym_RPAREN, + [155678] = 3, + ACTIONS(11449), 1, + aux_sym_integer_token2, + STATE(2552), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191844] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9804), 1, - anon_sym_RPAREN, + [155689] = 3, + ACTIONS(11451), 1, + aux_sym_integer_token3, + STATE(2517), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191855] = 3, - ACTIONS(8301), 1, + [155700] = 3, + ACTIONS(11453), 1, anon_sym_LPAREN, - ACTIONS(9806), 1, - anon_sym_RPAREN, + STATE(3953), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191866] = 3, - ACTIONS(7949), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, - anon_sym_LPAREN, + [155711] = 3, + ACTIONS(10921), 1, + sym__newline, + ACTIONS(11455), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191877] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9808), 1, - anon_sym_RPAREN, + [155722] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191888] = 3, - ACTIONS(9810), 1, - sym_integer, - ACTIONS(9812), 1, - sym_float, + ACTIONS(9719), 2, + anon_sym_from, + anon_sym_in, + [155731] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191899] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9814), 1, + ACTIONS(4506), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [155740] = 3, + ACTIONS(11457), 1, + anon_sym_LPAREN, + STATE(3202), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191910] = 3, - ACTIONS(8227), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, + [155751] = 3, + ACTIONS(7834), 1, anon_sym_LPAREN, + STATE(4808), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191921] = 3, - ACTIONS(8301), 1, + [155762] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9816), 1, + ACTIONS(11459), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191932] = 3, - ACTIONS(9818), 1, + [155773] = 3, + ACTIONS(11461), 1, anon_sym_COLON, - ACTIONS(9820), 1, + ACTIONS(11463), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191943] = 3, - ACTIONS(8301), 1, + [155784] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9822), 1, + ACTIONS(11465), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191954] = 3, - ACTIONS(8053), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, + [155795] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, + ACTIONS(11467), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191965] = 3, - ACTIONS(8348), 1, - anon_sym_LPAREN, - STATE(5291), 1, - sym_parameters, + [155806] = 3, + ACTIONS(10600), 1, + sym_string_start, + STATE(3460), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191976] = 3, - ACTIONS(9824), 1, + [155817] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2670), 1, - sym_argument_list, + ACTIONS(11469), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191987] = 3, - ACTIONS(9826), 1, + [155828] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3179), 1, - sym_argument_list, + ACTIONS(11471), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191998] = 3, - ACTIONS(9828), 1, + [155839] = 3, + ACTIONS(11473), 1, anon_sym_LPAREN, - STATE(2636), 1, + STATE(3251), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192009] = 3, - ACTIONS(9830), 1, + [155850] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2441), 1, - sym_argument_list, + ACTIONS(11475), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192020] = 3, - ACTIONS(9832), 1, + [155861] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3970), 1, - sym_argument_list, + ACTIONS(11477), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192031] = 3, - ACTIONS(9834), 1, + [155872] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2752), 1, - sym_argument_list, + ACTIONS(11479), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192042] = 3, - ACTIONS(9836), 1, + [155883] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2708), 1, - sym_argument_list, + ACTIONS(11481), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192053] = 3, - ACTIONS(8642), 1, - sym__newline, - ACTIONS(9838), 1, - anon_sym_COLON, + [155894] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192064] = 2, + ACTIONS(11483), 2, + anon_sym__, + sym_identifier, + [155903] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9840), 2, - anon_sym__, - sym_identifier, - [192073] = 3, - ACTIONS(8025), 1, + ACTIONS(10246), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [155912] = 3, + ACTIONS(11485), 1, anon_sym_COLON, - ACTIONS(8027), 1, + ACTIONS(11487), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192084] = 2, + [155923] = 3, + ACTIONS(11489), 1, + anon_sym_LPAREN, + STATE(3017), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9842), 2, + [155934] = 3, + ACTIONS(9295), 1, + anon_sym_COLON, + ACTIONS(9297), 1, sym__newline, - anon_sym_SEMI, - [192093] = 3, - ACTIONS(8301), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [155945] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9844), 1, + ACTIONS(11491), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192104] = 2, + [155956] = 3, + ACTIONS(9248), 1, + anon_sym_RPAREN, + ACTIONS(9831), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7802), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [192113] = 3, - ACTIONS(8301), 1, + [155967] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9846), 1, + ACTIONS(11493), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192124] = 2, + [155978] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6207), 2, - anon_sym_RPAREN, + ACTIONS(6838), 2, anon_sym_COMMA, - [192133] = 3, - ACTIONS(6795), 1, + anon_sym_RBRACK, + [155987] = 3, + ACTIONS(9518), 1, + anon_sym_RPAREN, + ACTIONS(9831), 1, anon_sym_LPAREN, - STATE(4035), 1, - sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192144] = 2, + [155998] = 3, + ACTIONS(11495), 1, + anon_sym_LPAREN, + STATE(3953), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156009] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9848), 2, + ACTIONS(11497), 2, anon_sym_COLON, anon_sym_DASH_GT, - [192153] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9850), 1, - anon_sym_RPAREN, + [156018] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192164] = 3, - ACTIONS(9852), 1, + ACTIONS(8160), 2, + sym__newline, + anon_sym_SEMI, + [156027] = 3, + ACTIONS(9968), 1, + sym__newline, + ACTIONS(11499), 1, anon_sym_COLON, - ACTIONS(9854), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192175] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9856), 1, - anon_sym_RPAREN, + [156038] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192186] = 3, - ACTIONS(8348), 1, + ACTIONS(10246), 2, + anon_sym_COMMA, + anon_sym_COLON, + [156047] = 3, + ACTIONS(9737), 1, anon_sym_LPAREN, - STATE(5281), 1, + STATE(6321), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192197] = 2, + [156058] = 3, + ACTIONS(10272), 1, + sym__newline, + ACTIONS(11501), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7096), 2, - sym__newline, - anon_sym_SEMI, - [192206] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9858), 1, - anon_sym_RPAREN, + [156069] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192217] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9860), 1, + ACTIONS(11503), 2, + sym__dedent, + anon_sym_case, + [156078] = 3, + ACTIONS(9500), 1, anon_sym_RPAREN, + ACTIONS(9831), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192228] = 3, - ACTIONS(7016), 1, - sym_string_start, - STATE(2904), 1, - sym_string, + [156089] = 3, + ACTIONS(9559), 1, + anon_sym_RPAREN, + ACTIONS(9831), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192239] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9862), 1, - anon_sym_RPAREN, + [156100] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192250] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9864), 1, - anon_sym_RPAREN, + ACTIONS(6955), 2, + anon_sym_COMMA, + anon_sym_COLON, + [156109] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192261] = 3, - ACTIONS(9866), 1, + ACTIONS(6955), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(9868), 1, - sym__newline, + [156118] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192272] = 3, - ACTIONS(9870), 1, - anon_sym_COLON, - ACTIONS(9872), 1, - sym__newline, + ACTIONS(11505), 2, + anon_sym_type, + anon_sym_object, + [156127] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192283] = 2, + ACTIONS(9062), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [156136] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9874), 2, - sym__newline, - anon_sym_SEMI, - [192292] = 3, - ACTIONS(8301), 1, + ACTIONS(11507), 2, + sym__dedent, + anon_sym_case, + [156145] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9876), 1, + ACTIONS(11509), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192303] = 2, + [156156] = 3, + ACTIONS(8154), 1, + anon_sym_COLON, + ACTIONS(8156), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156167] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9878), 2, + ACTIONS(11511), 2, sym__dedent, anon_sym_case, - [192312] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9880), 1, - anon_sym_RPAREN, + [156176] = 3, + ACTIONS(11513), 1, + anon_sym_COLON, + ACTIONS(11515), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192323] = 3, - ACTIONS(8301), 1, + [156187] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8796), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [156196] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9882), 1, + ACTIONS(11517), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192334] = 3, - ACTIONS(7016), 1, - sym_string_start, - STATE(5557), 1, - sym_string, + [156207] = 3, + ACTIONS(7997), 1, + anon_sym_COLON, + ACTIONS(7999), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192345] = 2, + [156218] = 3, + ACTIONS(11519), 1, + anon_sym_COLON, + ACTIONS(11521), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6755), 2, - sym__newline, - anon_sym_SEMI, - [192354] = 2, + [156229] = 3, + ACTIONS(11523), 1, + aux_sym_integer_token1, + STATE(2573), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7737), 2, - sym__newline, + [156240] = 3, + ACTIONS(11525), 1, anon_sym_COLON, - [192363] = 3, - ACTIONS(9688), 1, - anon_sym_LPAREN, - STATE(3179), 1, - sym_argument_list, + ACTIONS(11527), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192374] = 2, + [156251] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9700), 2, + ACTIONS(11287), 2, anon_sym_RPAREN, anon_sym_COMMA, - [192383] = 2, + [156260] = 3, + ACTIONS(9737), 1, + anon_sym_LPAREN, + STATE(6551), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9457), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [192392] = 3, - ACTIONS(9884), 1, - anon_sym_COLON, - ACTIONS(9886), 1, - sym__newline, + [156271] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192403] = 3, - ACTIONS(9051), 1, + ACTIONS(11529), 2, + sym__dedent, + anon_sym_case, + [156280] = 3, + ACTIONS(11057), 1, anon_sym_COLON, - ACTIONS(9055), 1, + ACTIONS(11061), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192414] = 3, - ACTIONS(7167), 1, - anon_sym_COLON, - ACTIONS(7169), 1, - anon_sym_by, + [156291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192425] = 2, + ACTIONS(11531), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [156300] = 3, + ACTIONS(11533), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7796), 2, + [156311] = 3, + ACTIONS(10062), 1, sym__newline, + ACTIONS(11535), 1, anon_sym_COLON, - [192434] = 3, - ACTIONS(9888), 1, - anon_sym_LPAREN, - STATE(2752), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192445] = 3, - ACTIONS(8301), 1, + [156322] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11537), 2, + sym__newline, + anon_sym_SEMI, + [156331] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9890), 1, + ACTIONS(11539), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192456] = 2, + [156342] = 3, + ACTIONS(9737), 1, + anon_sym_LPAREN, + STATE(6396), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8399), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [192465] = 2, + [156353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9478), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [192474] = 3, - ACTIONS(9892), 1, + ACTIONS(11541), 2, + anon_sym_nogil, + anon_sym_gil, + [156362] = 3, + ACTIONS(11543), 1, anon_sym_COLON, - ACTIONS(9894), 1, + ACTIONS(11545), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192485] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7672), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [192494] = 3, - ACTIONS(9896), 1, - anon_sym_RPAREN, - ACTIONS(9898), 1, - anon_sym_COMMA, + [156373] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192505] = 3, - ACTIONS(9480), 1, + ACTIONS(11547), 2, + anon_sym_type, + anon_sym_object, + [156382] = 3, + ACTIONS(11549), 1, anon_sym_COLON, - ACTIONS(9484), 1, + ACTIONS(11551), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192516] = 3, - ACTIONS(6944), 1, - anon_sym_COLON, - ACTIONS(6946), 1, - anon_sym_by, + [156393] = 3, + ACTIONS(11553), 1, + anon_sym_LPAREN, + STATE(2605), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192527] = 2, + [156404] = 3, + ACTIONS(9737), 1, + anon_sym_LPAREN, + STATE(6406), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9900), 2, - anon_sym_import, - anon_sym_cimport, - [192536] = 2, + [156415] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9902), 2, + ACTIONS(11555), 2, sym__newline, anon_sym_SEMI, - [192545] = 3, - ACTIONS(9772), 1, - sym_identifier, - STATE(5085), 1, - sym_template_param, + [156424] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192556] = 3, - ACTIONS(9904), 1, + ACTIONS(11557), 2, + sym__newline, + anon_sym_SEMI, + [156433] = 3, + ACTIONS(9621), 1, anon_sym_COLON, - ACTIONS(9906), 1, + ACTIONS(9623), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192567] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9908), 2, - anon_sym__, - sym_identifier, - [192576] = 3, - ACTIONS(8284), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, - anon_sym_LPAREN, + [156444] = 3, + ACTIONS(11085), 1, + anon_sym_COLON, + ACTIONS(11089), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192587] = 3, - ACTIONS(9910), 1, + [156455] = 3, + ACTIONS(11559), 1, anon_sym_COLON, - ACTIONS(9912), 1, + ACTIONS(11561), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192598] = 3, - ACTIONS(9914), 1, - sym_integer, - ACTIONS(9916), 1, - sym_float, + [156466] = 3, + ACTIONS(8174), 1, + anon_sym_COLON, + ACTIONS(8176), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192609] = 2, + [156477] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9918), 2, + ACTIONS(9755), 2, + anon_sym_from, + anon_sym_in, + [156486] = 3, + ACTIONS(11563), 1, + anon_sym_COLON, + ACTIONS(11565), 1, sym__newline, - anon_sym_SEMI, - [192618] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4610), 2, + [156497] = 3, + ACTIONS(9492), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [192627] = 3, - ACTIONS(8569), 1, - sym__newline, - ACTIONS(9920), 1, - anon_sym_COLON, + ACTIONS(9831), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192638] = 3, - ACTIONS(7145), 1, - anon_sym_COLON, - ACTIONS(7147), 1, - sym__newline, + [156508] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11567), 2, + sym__dedent, + anon_sym_case, + [156517] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11569), 2, + sym__dedent, + anon_sym_case, + [156526] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192649] = 3, - ACTIONS(9922), 1, + ACTIONS(9941), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [156535] = 3, + ACTIONS(11571), 1, anon_sym_COLON, - ACTIONS(9924), 1, - sym__newline, + ACTIONS(11573), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192660] = 3, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(9926), 1, + [156546] = 3, + ACTIONS(10397), 1, sym__newline, + ACTIONS(11575), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192671] = 3, - ACTIONS(9928), 1, - sym_integer, - ACTIONS(9930), 1, - sym_float, + [156557] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192682] = 2, + ACTIONS(11577), 2, + anon_sym__, + sym_identifier, + [156566] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6948), 2, + ACTIONS(10319), 2, sym__newline, anon_sym_SEMI, - [192691] = 3, - ACTIONS(8833), 1, + [156575] = 3, + ACTIONS(10596), 1, sym__newline, - ACTIONS(9932), 1, + ACTIONS(11579), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192702] = 2, + [156586] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5856), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [192711] = 3, - ACTIONS(9934), 1, - sym_integer, - ACTIONS(9936), 1, - sym_float, + ACTIONS(11581), 2, + anon_sym_nogil, + anon_sym_gil, + [156595] = 3, + ACTIONS(11583), 1, + anon_sym_COLON, + ACTIONS(11585), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192722] = 2, + [156606] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6660), 2, - sym__newline, - anon_sym_SEMI, - [192731] = 3, - ACTIONS(9938), 1, - sym_integer, - ACTIONS(9940), 1, - sym_float, + ACTIONS(11587), 2, + sym__dedent, + anon_sym_case, + [156615] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192742] = 2, + ACTIONS(9941), 2, + anon_sym_COMMA, + anon_sym_COLON, + [156624] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4646), 2, + ACTIONS(5251), 2, anon_sym_RPAREN, anon_sym_COMMA, - [192751] = 2, + [156633] = 3, + ACTIONS(11589), 1, + aux_sym_integer_token1, + STATE(2781), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9942), 2, + [156644] = 3, + ACTIONS(9617), 1, + anon_sym_COLON, + ACTIONS(9619), 1, sym__newline, - anon_sym_SEMI, - [192760] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9698), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [192769] = 3, - ACTIONS(8059), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, + [156655] = 3, + ACTIONS(11453), 1, anon_sym_LPAREN, + STATE(2988), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192780] = 3, - ACTIONS(9944), 1, + [156666] = 3, + ACTIONS(9379), 1, + anon_sym_RPAREN, + ACTIONS(9831), 1, anon_sym_LPAREN, - STATE(3539), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192791] = 2, + [156677] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9138), 2, + ACTIONS(11591), 2, anon_sym_RPAREN, anon_sym_COMMA, - [192800] = 3, - ACTIONS(8348), 1, + [156686] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(5353), 1, - sym_parameters, + ACTIONS(11593), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192811] = 3, - ACTIONS(9946), 1, - anon_sym_COLON, - ACTIONS(9948), 1, - sym__newline, + [156697] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192822] = 2, + ACTIONS(11595), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [156706] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9950), 2, + ACTIONS(11597), 2, anon_sym_type, anon_sym_object, - [192831] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5974), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [192840] = 3, - ACTIONS(8348), 1, + [156715] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(5362), 1, - sym_parameters, + ACTIONS(11599), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192851] = 3, - ACTIONS(9952), 1, - sym_integer, - ACTIONS(9954), 1, - sym_float, + [156726] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11601), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192862] = 2, + [156737] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9956), 2, + ACTIONS(7689), 2, sym__newline, anon_sym_SEMI, - [192871] = 2, + [156746] = 3, + ACTIONS(11225), 1, + sym_identifier, + STATE(5964), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6755), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [192880] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9958), 1, - anon_sym_RPAREN, + [156757] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192891] = 3, - ACTIONS(7151), 1, - anon_sym_COLON, - ACTIONS(7153), 1, + ACTIONS(11603), 2, sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192902] = 3, - ACTIONS(9960), 1, + anon_sym_SEMI, + [156766] = 3, + ACTIONS(8342), 1, anon_sym_COLON, - ACTIONS(9962), 1, - sym__newline, + ACTIONS(8344), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192913] = 2, + [156777] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9964), 2, - sym__dedent, - anon_sym_case, - [192922] = 2, + ACTIONS(11605), 2, + anon_sym_type, + anon_sym_object, + [156786] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9966), 2, - sym__dedent, - anon_sym_case, - [192931] = 3, - ACTIONS(9968), 1, - sym_integer, - ACTIONS(9970), 1, - sym_float, + ACTIONS(7786), 2, + sym__newline, + anon_sym_SEMI, + [156795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192942] = 2, + ACTIONS(11607), 2, + anon_sym_type, + anon_sym_object, + [156804] = 3, + ACTIONS(11609), 1, + aux_sym_integer_token1, + STATE(2463), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9972), 2, - anon_sym__, - sym_identifier, - [192951] = 2, + [156815] = 3, + ACTIONS(11611), 1, + aux_sym_integer_token2, + STATE(2464), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9974), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [192960] = 3, - ACTIONS(9976), 1, - sym_integer, - ACTIONS(9978), 1, - sym_float, + [156826] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192971] = 2, + ACTIONS(4506), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [156835] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7369), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [192980] = 2, + ACTIONS(9872), 2, + anon_sym_from, + anon_sym_in, + [156844] = 3, + ACTIONS(11613), 1, + aux_sym_integer_token3, + STATE(2465), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9980), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [192989] = 2, + [156855] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9710), 2, + ACTIONS(7157), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [156864] = 3, + ACTIONS(11615), 1, anon_sym_COLON, - [192998] = 3, - ACTIONS(9982), 1, - anon_sym_LPAREN, - STATE(2708), 1, - sym_argument_list, + ACTIONS(11617), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193009] = 2, + [156875] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9984), 2, + ACTIONS(11619), 2, sym__newline, anon_sym_SEMI, - [193018] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(9986), 1, - anon_sym_RPAREN, + [156884] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193029] = 3, - ACTIONS(9772), 1, - sym_identifier, - STATE(5327), 1, - sym_template_param, + ACTIONS(9629), 2, + anon_sym_from, + anon_sym_in, + [156893] = 3, + ACTIONS(11621), 1, + aux_sym_integer_token2, + STATE(2436), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156904] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11623), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193040] = 2, + [156915] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9988), 2, + ACTIONS(11625), 2, sym__dedent, anon_sym_case, - [193049] = 2, + [156924] = 3, + ACTIONS(11627), 1, + anon_sym_COLON, + ACTIONS(11629), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8472), 2, - anon_sym_from, - anon_sym_in, - [193058] = 2, + [156935] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(11631), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9990), 2, - sym__dedent, - anon_sym_case, - [193067] = 2, + [156946] = 3, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8352), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8498), 2, - anon_sym_from, - anon_sym_in, - [193076] = 2, + [156957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9992), 2, - anon_sym__, - sym_identifier, - [193085] = 3, - ACTIONS(9994), 1, - sym_integer, - ACTIONS(9996), 1, - sym_float, + ACTIONS(11343), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [156966] = 3, + ACTIONS(11633), 1, + anon_sym_COLON, + ACTIONS(11635), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193096] = 3, - ACTIONS(9588), 1, - sym__newline, - ACTIONS(9998), 1, + [156977] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5174), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [156986] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9953), 2, + anon_sym_COMMA, anon_sym_COLON, + [156995] = 3, + ACTIONS(11637), 1, + aux_sym_integer_token1, + STATE(5221), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193107] = 3, - ACTIONS(10000), 1, - anon_sym_LPAREN, - STATE(5328), 1, - sym_c_parameters, + [157006] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193118] = 3, - ACTIONS(7923), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, + ACTIONS(11639), 2, + anon_sym__, + sym_identifier, + [157015] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, + ACTIONS(11641), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193129] = 2, + [157026] = 3, + ACTIONS(8101), 1, + anon_sym_COLON, + ACTIONS(8103), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5870), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [193138] = 2, + [157037] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8594), 2, + ACTIONS(10206), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [157046] = 2, + ACTIONS(11643), 1, anon_sym_COLON, - [193147] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10002), 2, - sym__newline, - anon_sym_SEMI, - [193156] = 2, + [157054] = 2, + ACTIONS(11645), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10004), 2, - anon_sym_type, - anon_sym_object, - [193165] = 2, + [157062] = 2, + ACTIONS(11647), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10006), 2, - anon_sym_type, - anon_sym_object, - [193174] = 2, + [157070] = 2, + ACTIONS(10754), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9726), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [193183] = 3, - ACTIONS(9618), 1, - sym__newline, - ACTIONS(10008), 1, - anon_sym_COLON, + [157078] = 2, + ACTIONS(11649), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193194] = 2, + [157086] = 2, + ACTIONS(11651), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9680), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [193203] = 2, + [157094] = 2, + ACTIONS(11653), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7730), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [193212] = 2, + [157102] = 2, + ACTIONS(11655), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10010), 2, - anon_sym_type, - anon_sym_object, - [193221] = 2, + [157110] = 2, + ACTIONS(11657), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8508), 2, - anon_sym_from, - anon_sym_in, - [193230] = 3, - ACTIONS(8152), 1, - anon_sym_COLON, - ACTIONS(8154), 1, - sym__newline, + [157118] = 2, + ACTIONS(11659), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193241] = 2, + [157126] = 2, + ACTIONS(11661), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9387), 2, - anon_sym_COMMA, + [157134] = 2, + ACTIONS(11663), 1, anon_sym_COLON, - [193250] = 3, - ACTIONS(10012), 1, - anon_sym_LPAREN, - STATE(3539), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193261] = 3, - ACTIONS(6960), 1, + [157142] = 2, + ACTIONS(7012), 1, anon_sym_COLON, - ACTIONS(6962), 1, - anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193272] = 2, + [157150] = 2, + ACTIONS(8730), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [193281] = 3, - ACTIONS(9630), 1, - sym__newline, - ACTIONS(10014), 1, - anon_sym_COLON, + [157158] = 2, + ACTIONS(11665), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193292] = 2, + [157166] = 2, + ACTIONS(11667), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8512), 2, - anon_sym_from, - anon_sym_in, - [193301] = 2, + [157174] = 2, + ACTIONS(11669), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9138), 2, - anon_sym_COMMA, - anon_sym_COLON, - [193310] = 2, + [157182] = 2, + ACTIONS(11671), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1985), 2, - sym__newline, - anon_sym_SEMI, - [193319] = 3, - ACTIONS(10016), 1, - sym_integer, - ACTIONS(10018), 1, - sym_float, + [157190] = 2, + ACTIONS(11673), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193330] = 3, - ACTIONS(8694), 1, - sym__newline, - ACTIONS(10020), 1, - anon_sym_COLON, + [157198] = 2, + ACTIONS(11675), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193341] = 3, - ACTIONS(7188), 1, - anon_sym_COLON, - ACTIONS(7190), 1, - anon_sym_by, + [157206] = 2, + ACTIONS(11677), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193352] = 3, - ACTIONS(8237), 1, - anon_sym_COLON, - ACTIONS(8239), 1, - sym__newline, + [157214] = 2, + ACTIONS(11679), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193363] = 2, + [157222] = 2, + ACTIONS(11681), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9726), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [193372] = 2, + [157230] = 2, + ACTIONS(6512), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10022), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [193381] = 3, - ACTIONS(8301), 1, - anon_sym_LPAREN, - ACTIONS(10024), 1, + [157238] = 2, + ACTIONS(11683), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193392] = 3, - ACTIONS(6795), 1, - anon_sym_LPAREN, - STATE(4065), 1, - sym_c_parameters, + [157246] = 2, + ACTIONS(11685), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193403] = 3, - ACTIONS(8102), 1, - anon_sym_RPAREN, - ACTIONS(8510), 1, + [157254] = 2, + ACTIONS(9177), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193414] = 2, - ACTIONS(10026), 1, - anon_sym_RBRACK, + [157262] = 2, + ACTIONS(11687), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193422] = 2, - ACTIONS(10028), 1, - sym_identifier, + [157270] = 2, + ACTIONS(11689), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193430] = 2, - ACTIONS(10030), 1, - anon_sym_COLON, + [157278] = 2, + ACTIONS(8790), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193438] = 2, - ACTIONS(7439), 1, - anon_sym_COLON, + [157286] = 2, + ACTIONS(11691), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193446] = 2, - ACTIONS(10032), 1, - anon_sym_RBRACE, + [157294] = 2, + ACTIONS(11693), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193454] = 2, - ACTIONS(10034), 1, - anon_sym_RBRACE, + [157302] = 2, + ACTIONS(11695), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193462] = 2, - ACTIONS(10036), 1, - anon_sym_GT, + [157310] = 2, + ACTIONS(11697), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193470] = 2, - ACTIONS(10038), 1, - sym_identifier, + [157318] = 2, + ACTIONS(10907), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193478] = 2, - ACTIONS(10040), 1, - sym_identifier, + [157326] = 2, + ACTIONS(11699), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193486] = 2, - ACTIONS(7949), 1, + [157334] = 2, + ACTIONS(9573), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193494] = 2, - ACTIONS(10042), 1, + [157342] = 2, + ACTIONS(11701), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193502] = 2, - ACTIONS(10044), 1, + [157350] = 2, + ACTIONS(11251), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193510] = 2, - ACTIONS(6023), 1, - anon_sym_COLON, + [157358] = 2, + ACTIONS(11703), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193518] = 2, - ACTIONS(10046), 1, + [157366] = 2, + ACTIONS(11705), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193526] = 2, - ACTIONS(10048), 1, - anon_sym_COLON, + [157374] = 2, + ACTIONS(11707), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193534] = 2, - ACTIONS(7443), 1, - anon_sym_COLON, + [157382] = 2, + ACTIONS(11709), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193542] = 2, - ACTIONS(10050), 1, - sym_identifier, + [157390] = 2, + ACTIONS(11711), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193550] = 2, - ACTIONS(10052), 1, - anon_sym_COLON_EQ, + [157398] = 2, + ACTIONS(11713), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193558] = 2, - ACTIONS(8227), 1, - anon_sym_RPAREN, + [157406] = 2, + ACTIONS(11715), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193566] = 2, - ACTIONS(10054), 1, - anon_sym_COLON, + [157414] = 2, + ACTIONS(10917), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193574] = 2, - ACTIONS(10056), 1, + [157422] = 2, + ACTIONS(11717), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193582] = 2, - ACTIONS(10058), 1, - sym_identifier, + [157430] = 2, + ACTIONS(11719), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193590] = 2, - ACTIONS(10060), 1, - anon_sym_COLON, + [157438] = 2, + ACTIONS(11721), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193598] = 2, - ACTIONS(10062), 1, - anon_sym_RBRACK, + [157446] = 2, + ACTIONS(11723), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193606] = 2, - ACTIONS(6617), 1, - anon_sym_RPAREN, + [157454] = 2, + ACTIONS(11725), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193614] = 2, - ACTIONS(10064), 1, - anon_sym_for, + [157462] = 2, + ACTIONS(11727), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193622] = 2, - ACTIONS(10066), 1, - anon_sym_RBRACE, + [157470] = 2, + ACTIONS(7790), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193630] = 2, - ACTIONS(6569), 1, - anon_sym_RPAREN, + [157478] = 2, + ACTIONS(11729), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193638] = 2, - ACTIONS(10068), 1, + [157486] = 2, + ACTIONS(11731), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193646] = 2, - ACTIONS(10070), 1, + [157494] = 2, + ACTIONS(11733), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193654] = 2, - ACTIONS(10072), 1, - sym_identifier, + [157502] = 2, + ACTIONS(8776), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193662] = 2, - ACTIONS(10074), 1, - sym_identifier, + [157510] = 2, + ACTIONS(11735), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193670] = 2, - ACTIONS(10076), 1, - anon_sym_LPAREN, + [157518] = 2, + ACTIONS(7522), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193678] = 2, - ACTIONS(10078), 1, - anon_sym_COLON, + [157526] = 2, + ACTIONS(11737), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193686] = 2, - ACTIONS(10080), 1, - anon_sym_RPAREN, + [157534] = 2, + ACTIONS(9181), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193694] = 2, - ACTIONS(10082), 1, - anon_sym_GT, + [157542] = 2, + ACTIONS(11739), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193702] = 2, - ACTIONS(10084), 1, + [157550] = 2, + ACTIONS(8610), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193710] = 2, - ACTIONS(6729), 1, - sym_identifier, + [157558] = 2, + ACTIONS(11741), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193718] = 2, - ACTIONS(10086), 1, + [157566] = 2, + ACTIONS(11743), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193726] = 2, - ACTIONS(10088), 1, - anon_sym_COLON_EQ, + [157574] = 2, + ACTIONS(11745), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193734] = 2, - ACTIONS(10090), 1, + [157582] = 2, + ACTIONS(7659), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193742] = 2, - ACTIONS(10092), 1, - anon_sym_RBRACE, + [157590] = 2, + ACTIONS(11747), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193750] = 2, - ACTIONS(10094), 1, - anon_sym_RBRACE, + [157598] = 2, + ACTIONS(11749), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193758] = 2, - ACTIONS(7213), 1, - anon_sym_RBRACE, + [157606] = 2, + ACTIONS(11751), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193766] = 2, - ACTIONS(10096), 1, - sym_identifier, + [157614] = 2, + ACTIONS(11753), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193774] = 2, - ACTIONS(10098), 1, - anon_sym_COLON_EQ, + [157622] = 2, + ACTIONS(11755), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193782] = 2, - ACTIONS(10100), 1, - sym__indent, + [157630] = 2, + ACTIONS(2829), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193790] = 2, - ACTIONS(10102), 1, - sym_identifier, + [157638] = 2, + ACTIONS(11757), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193798] = 2, - ACTIONS(10104), 1, - anon_sym_RPAREN, + [157646] = 2, + ACTIONS(11759), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193806] = 2, - ACTIONS(10106), 1, + [157654] = 2, + ACTIONS(11761), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193814] = 2, - ACTIONS(10108), 1, - anon_sym_RBRACE, + [157662] = 2, + ACTIONS(11763), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193822] = 2, - ACTIONS(10110), 1, - anon_sym_GT, + [157670] = 2, + ACTIONS(11765), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193830] = 2, - ACTIONS(10112), 1, - sym_identifier, + [157678] = 2, + ACTIONS(11767), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193838] = 2, - ACTIONS(10114), 1, + [157686] = 2, + ACTIONS(11769), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193846] = 2, - ACTIONS(10116), 1, - anon_sym_COLON, + [157694] = 2, + ACTIONS(11771), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193854] = 2, - ACTIONS(10118), 1, - sym_identifier, + [157702] = 2, + ACTIONS(11773), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193862] = 2, - ACTIONS(10120), 1, - sym_identifier, + [157710] = 2, + ACTIONS(11775), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193870] = 2, - ACTIONS(10122), 1, + [157718] = 2, + ACTIONS(11777), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193878] = 2, - ACTIONS(10124), 1, - anon_sym_RBRACE, + [157726] = 2, + ACTIONS(11779), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193886] = 2, - ACTIONS(10126), 1, - anon_sym_COLON, + [157734] = 2, + ACTIONS(11781), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193894] = 2, - ACTIONS(10128), 1, + [157742] = 2, + ACTIONS(11783), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193902] = 2, - ACTIONS(10130), 1, + [157750] = 2, + ACTIONS(11785), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193910] = 2, - ACTIONS(10132), 1, + [157758] = 2, + ACTIONS(11787), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193918] = 2, - ACTIONS(10134), 1, + [157766] = 2, + ACTIONS(11789), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193926] = 2, - ACTIONS(10136), 1, - anon_sym_COLON, + [157774] = 2, + ACTIONS(11791), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193934] = 2, - ACTIONS(10138), 1, - anon_sym_import, + [157782] = 2, + ACTIONS(11793), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193942] = 2, - ACTIONS(7893), 1, - anon_sym_LPAREN, + [157790] = 2, + ACTIONS(11795), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193950] = 2, - ACTIONS(7897), 1, - anon_sym_RBRACK, + [157798] = 2, + ACTIONS(11797), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193958] = 2, - ACTIONS(10140), 1, - anon_sym_None, + [157806] = 2, + ACTIONS(11799), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193966] = 2, - ACTIONS(10142), 1, - sym_identifier, + [157814] = 2, + ACTIONS(11801), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193974] = 2, - ACTIONS(10144), 1, - anon_sym_RBRACE, + [157822] = 2, + ACTIONS(11803), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193982] = 2, - ACTIONS(10146), 1, + [157830] = 2, + ACTIONS(11805), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193990] = 2, - ACTIONS(10148), 1, - anon_sym_RPAREN, + [157838] = 2, + ACTIONS(11807), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193998] = 2, - ACTIONS(9402), 1, - anon_sym_in, + [157846] = 2, + ACTIONS(11809), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194006] = 2, - ACTIONS(10150), 1, - anon_sym_COLON_EQ, + [157854] = 2, + ACTIONS(9917), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194014] = 2, - ACTIONS(10152), 1, + [157862] = 2, + ACTIONS(11811), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194022] = 2, - ACTIONS(10154), 1, + [157870] = 2, + ACTIONS(11813), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194030] = 2, - ACTIONS(10156), 1, - anon_sym_RPAREN, + [157878] = 2, + ACTIONS(11815), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194038] = 2, - ACTIONS(10158), 1, - sym_identifier, + [157886] = 2, + ACTIONS(11817), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194046] = 2, - ACTIONS(10160), 1, - anon_sym_RBRACK, + [157894] = 2, + ACTIONS(11819), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194054] = 2, - ACTIONS(10162), 1, - sym__indent, + [157902] = 2, + ACTIONS(11821), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194062] = 2, - ACTIONS(10164), 1, + [157910] = 2, + ACTIONS(11823), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194070] = 2, - ACTIONS(7447), 1, + [157918] = 2, + ACTIONS(11825), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194078] = 2, - ACTIONS(10166), 1, + [157926] = 2, + ACTIONS(8614), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194086] = 2, - ACTIONS(10168), 1, - anon_sym_RPAREN, + [157934] = 2, + ACTIONS(11827), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194094] = 2, - ACTIONS(9408), 1, - anon_sym_in, + [157942] = 2, + ACTIONS(11829), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194102] = 2, - ACTIONS(7335), 1, - anon_sym_RPAREN, + [157950] = 2, + ACTIONS(8541), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194110] = 2, - ACTIONS(10170), 1, - anon_sym_COLON, + [157958] = 2, + ACTIONS(11831), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194118] = 2, - ACTIONS(10172), 1, - anon_sym_COLON, + [157966] = 2, + ACTIONS(11833), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194126] = 2, - ACTIONS(10174), 1, - anon_sym_COLON_EQ, + [157974] = 2, + ACTIONS(11835), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194134] = 2, - ACTIONS(10176), 1, + [157982] = 2, + ACTIONS(11837), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194142] = 2, - ACTIONS(10178), 1, - anon_sym_RPAREN, + [157990] = 2, + ACTIONS(11839), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194150] = 2, - ACTIONS(10180), 1, - anon_sym_COLON, + [157998] = 2, + ACTIONS(11841), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194158] = 2, - ACTIONS(10182), 1, + [158006] = 2, + ACTIONS(11843), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194166] = 2, - ACTIONS(10184), 1, - anon_sym_COLON, + [158014] = 2, + ACTIONS(11845), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194174] = 2, - ACTIONS(10186), 1, - anon_sym_RBRACE, + [158022] = 2, + ACTIONS(6510), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194182] = 2, - ACTIONS(10188), 1, + [158030] = 2, + ACTIONS(11847), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194190] = 2, - ACTIONS(10190), 1, + [158038] = 2, + ACTIONS(11849), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194198] = 2, - ACTIONS(10192), 1, - anon_sym_RPAREN, + [158046] = 2, + ACTIONS(11851), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194206] = 2, - ACTIONS(7694), 1, - anon_sym_LPAREN, + [158054] = 2, + ACTIONS(11853), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194214] = 2, - ACTIONS(1581), 1, - anon_sym_COLON, + [158062] = 2, + ACTIONS(11855), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194222] = 2, - ACTIONS(10194), 1, - anon_sym_COLON_EQ, + [158070] = 2, + ACTIONS(11857), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194230] = 2, - ACTIONS(10196), 1, - anon_sym_COLON, + [158078] = 2, + ACTIONS(11859), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194238] = 2, - ACTIONS(10198), 1, - anon_sym_COLON, + [158086] = 2, + ACTIONS(11861), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194246] = 2, - ACTIONS(10200), 1, + [158094] = 2, + ACTIONS(11863), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194254] = 2, - ACTIONS(10202), 1, + [158102] = 2, + ACTIONS(11865), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194262] = 2, - ACTIONS(10204), 1, + [158110] = 2, + ACTIONS(11867), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194270] = 2, - ACTIONS(8053), 1, - anon_sym_RPAREN, + [158118] = 2, + ACTIONS(11869), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194278] = 2, - ACTIONS(8102), 1, - anon_sym_RPAREN, + [158126] = 2, + ACTIONS(11871), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194286] = 2, - ACTIONS(10206), 1, + [158134] = 2, + ACTIONS(11873), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194294] = 2, - ACTIONS(10208), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [194302] = 2, - ACTIONS(10210), 1, - anon_sym_RBRACK, + [158142] = 2, + ACTIONS(11875), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194310] = 2, - ACTIONS(6595), 1, - anon_sym_RPAREN, + [158150] = 2, + ACTIONS(11877), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194318] = 2, - ACTIONS(10212), 1, - anon_sym_RPAREN, + [158158] = 2, + ACTIONS(11879), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194326] = 2, - ACTIONS(10214), 1, + [158166] = 2, + ACTIONS(11881), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194334] = 2, - ACTIONS(10216), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [194342] = 2, - ACTIONS(10218), 1, + [158174] = 2, + ACTIONS(11883), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194350] = 2, - ACTIONS(10220), 1, - anon_sym_RPAREN, + [158182] = 2, + ACTIONS(11885), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194358] = 2, - ACTIONS(10222), 1, - anon_sym_STAR, + [158190] = 2, + ACTIONS(8594), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194366] = 2, - ACTIONS(10224), 1, - anon_sym_COLON, + [158198] = 2, + ACTIONS(11887), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194374] = 2, - ACTIONS(8709), 1, - anon_sym_in, + [158206] = 2, + ACTIONS(11889), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194382] = 2, - ACTIONS(9896), 1, + [158214] = 2, + ACTIONS(11891), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194390] = 2, - ACTIONS(10226), 1, + [158222] = 2, + ACTIONS(11893), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194398] = 2, - ACTIONS(10228), 1, - sym__indent, + [158230] = 2, + ACTIONS(11895), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194406] = 2, - ACTIONS(10230), 1, - anon_sym_RPAREN, + [158238] = 2, + ACTIONS(11897), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194414] = 2, - ACTIONS(7482), 1, + [158246] = 2, + ACTIONS(11899), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194422] = 2, - ACTIONS(7327), 1, - anon_sym_RBRACE, + [158254] = 2, + ACTIONS(11901), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194430] = 2, - ACTIONS(10232), 1, + [158262] = 2, + ACTIONS(11903), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194438] = 2, - ACTIONS(10234), 1, - sym__newline, + [158270] = 2, + ACTIONS(11905), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194446] = 2, - ACTIONS(10236), 1, - anon_sym_RBRACE, + [158278] = 2, + ACTIONS(7764), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194454] = 2, - ACTIONS(10238), 1, + [158286] = 2, + ACTIONS(11907), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194462] = 2, - ACTIONS(10240), 1, + [158294] = 2, + ACTIONS(11909), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194470] = 2, - ACTIONS(10242), 1, + [158302] = 2, + ACTIONS(11911), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194478] = 2, - ACTIONS(10244), 1, - anon_sym_COLON, + [158310] = 2, + ACTIONS(11913), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194486] = 2, - ACTIONS(8565), 1, - anon_sym_LPAREN, + [158318] = 2, + ACTIONS(11915), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194494] = 2, - ACTIONS(10246), 1, - anon_sym_COLON_EQ, + [158326] = 2, + ACTIONS(11917), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194502] = 2, - ACTIONS(10248), 1, - anon_sym_RBRACK, + [158334] = 2, + ACTIONS(11919), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194510] = 2, - ACTIONS(10250), 1, - sym_identifier, + [158342] = 2, + ACTIONS(11921), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194518] = 2, - ACTIONS(8150), 1, - anon_sym_RBRACK, + [158350] = 2, + ACTIONS(11923), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194526] = 2, - ACTIONS(10252), 1, - anon_sym_COLON, + [158358] = 2, + ACTIONS(11925), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194534] = 2, - ACTIONS(4306), 1, - sym__dedent, + [158366] = 2, + ACTIONS(11927), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194542] = 2, - ACTIONS(10254), 1, - sym_identifier, + [158374] = 2, + ACTIONS(11929), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194550] = 2, - ACTIONS(10256), 1, - anon_sym_EQ, + [158382] = 2, + ACTIONS(9248), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194558] = 2, - ACTIONS(10258), 1, + [158390] = 2, + ACTIONS(11931), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158398] = 2, + ACTIONS(11933), 1, anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194566] = 2, - ACTIONS(10260), 1, - anon_sym_COLON, + [158406] = 2, + ACTIONS(11935), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194574] = 2, - ACTIONS(10262), 1, - sym_identifier, + [158414] = 2, + ACTIONS(11937), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194582] = 2, - ACTIONS(10264), 1, + [158422] = 2, + ACTIONS(9518), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194590] = 2, - ACTIONS(7243), 1, - anon_sym_RBRACE, + [158430] = 2, + ACTIONS(9602), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194598] = 2, - ACTIONS(1585), 1, - anon_sym_COLON, + [158438] = 2, + ACTIONS(8814), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194606] = 2, - ACTIONS(10266), 1, + [158446] = 2, + ACTIONS(7557), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194614] = 2, - ACTIONS(10268), 1, - anon_sym_RPAREN, + [158454] = 2, + ACTIONS(11939), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194622] = 2, - ACTIONS(10270), 1, + [158462] = 2, + ACTIONS(11941), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194630] = 2, - ACTIONS(10272), 1, - anon_sym_None, + [158470] = 2, + ACTIONS(11943), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194638] = 2, - ACTIONS(10274), 1, - anon_sym_RBRACK, + [158478] = 2, + ACTIONS(11945), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194646] = 2, - ACTIONS(10276), 1, - anon_sym_RBRACK, + [158486] = 2, + ACTIONS(11947), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194654] = 2, - ACTIONS(10278), 1, - anon_sym_RPAREN, + [158494] = 2, + ACTIONS(11949), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194662] = 2, - ACTIONS(9178), 1, + [158502] = 2, + ACTIONS(9660), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194670] = 2, - ACTIONS(3968), 1, - anon_sym_def, + [158510] = 2, + ACTIONS(11951), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194678] = 2, - ACTIONS(10280), 1, + [158518] = 2, + ACTIONS(11953), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194686] = 2, - ACTIONS(10282), 1, + [158526] = 2, + ACTIONS(11955), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194694] = 2, - ACTIONS(4308), 1, - sym__dedent, + [158534] = 2, + ACTIONS(11957), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194702] = 2, - ACTIONS(10284), 1, - anon_sym_RPAREN, + [158542] = 2, + ACTIONS(11959), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194710] = 2, - ACTIONS(7270), 1, - anon_sym_RBRACE, + [158550] = 2, + ACTIONS(11961), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194718] = 2, - ACTIONS(10286), 1, - anon_sym_COLON, + [158558] = 2, + ACTIONS(11963), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194726] = 2, - ACTIONS(10288), 1, + [158566] = 2, + ACTIONS(11965), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194734] = 2, - ACTIONS(10290), 1, + [158574] = 2, + ACTIONS(11967), 1, anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194742] = 2, - ACTIONS(10292), 1, + [158582] = 2, + ACTIONS(11969), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194750] = 2, - ACTIONS(10294), 1, + [158590] = 2, + ACTIONS(11971), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194758] = 2, - ACTIONS(8186), 1, - anon_sym_RBRACK, + [158598] = 2, + ACTIONS(11973), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194766] = 2, - ACTIONS(10296), 1, + [158606] = 2, + ACTIONS(11975), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194774] = 2, - ACTIONS(8284), 1, + [158614] = 2, + ACTIONS(11977), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194782] = 2, - ACTIONS(10298), 1, - anon_sym_COLON, + [158622] = 2, + ACTIONS(6544), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194790] = 2, - ACTIONS(10300), 1, - sym_identifier, + [158630] = 2, + ACTIONS(4544), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194798] = 2, - ACTIONS(10302), 1, - anon_sym_in, + [158638] = 2, + ACTIONS(9559), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194806] = 2, - ACTIONS(10304), 1, - ts_builtin_sym_end, + [158646] = 2, + ACTIONS(11979), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194814] = 2, - ACTIONS(6650), 1, + [158654] = 2, + ACTIONS(9500), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194822] = 2, - ACTIONS(10306), 1, - anon_sym_COLON, + [158662] = 2, + ACTIONS(11981), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194830] = 2, - ACTIONS(10308), 1, + [158670] = 2, + ACTIONS(11983), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194838] = 2, - ACTIONS(10310), 1, - sym__indent, + [158678] = 2, + ACTIONS(7518), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158686] = 2, + ACTIONS(11985), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194846] = 2, - ACTIONS(7266), 1, + [158694] = 2, + ACTIONS(8546), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194854] = 2, - ACTIONS(10312), 1, + [158702] = 2, + ACTIONS(9550), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194862] = 2, - ACTIONS(10314), 1, - sym_identifier, + [158710] = 2, + ACTIONS(11987), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194870] = 2, - ACTIONS(10316), 1, - sym_identifier, + [158718] = 2, + ACTIONS(11989), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194878] = 2, - ACTIONS(10318), 1, + [158726] = 2, + ACTIONS(11991), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194886] = 2, - ACTIONS(10320), 1, + [158734] = 2, + ACTIONS(7634), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158742] = 2, + ACTIONS(11993), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158750] = 2, + ACTIONS(11995), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194894] = 2, - ACTIONS(10322), 1, - anon_sym_RPAREN, + [158758] = 2, + ACTIONS(10847), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194902] = 2, - ACTIONS(10324), 1, - anon_sym_COLON_EQ, + [158766] = 2, + ACTIONS(11997), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194910] = 2, - ACTIONS(10326), 1, - anon_sym_COLON_EQ, + [158774] = 2, + ACTIONS(8708), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194918] = 2, - ACTIONS(10328), 1, + [158782] = 2, + ACTIONS(11999), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194926] = 2, - ACTIONS(10330), 1, - sym_identifier, + [158790] = 2, + ACTIONS(12001), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194934] = 2, - ACTIONS(10332), 1, - anon_sym_RPAREN, + [158798] = 2, + ACTIONS(12003), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194942] = 2, - ACTIONS(10334), 1, + [158806] = 2, + ACTIONS(12005), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194950] = 2, - ACTIONS(8162), 1, - anon_sym_RPAREN, + [158814] = 2, + ACTIONS(12007), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194958] = 2, - ACTIONS(10336), 1, + [158822] = 2, + ACTIONS(12009), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194966] = 2, - ACTIONS(10338), 1, - sym_identifier, + [158830] = 2, + ACTIONS(12011), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194974] = 2, - ACTIONS(8650), 1, - anon_sym_in, + [158838] = 2, + ACTIONS(12013), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194982] = 2, - ACTIONS(10340), 1, + [158846] = 2, + ACTIONS(12015), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194990] = 2, - ACTIONS(10342), 1, - anon_sym_RPAREN, + [158854] = 2, + ACTIONS(12017), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194998] = 2, - ACTIONS(10344), 1, + [158862] = 2, + ACTIONS(12019), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195006] = 2, - ACTIONS(10346), 1, + [158870] = 2, + ACTIONS(12021), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195014] = 2, - ACTIONS(10348), 1, + [158878] = 2, + ACTIONS(12023), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195022] = 2, - ACTIONS(10350), 1, + [158886] = 2, + ACTIONS(12025), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195030] = 2, - ACTIONS(10352), 1, - anon_sym_GT, + [158894] = 2, + ACTIONS(2961), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195038] = 2, - ACTIONS(10354), 1, + [158902] = 2, + ACTIONS(12027), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195046] = 2, - ACTIONS(8059), 1, - anon_sym_RPAREN, + [158910] = 2, + ACTIONS(12029), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195054] = 2, - ACTIONS(10356), 1, + [158918] = 2, + ACTIONS(12031), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195062] = 2, - ACTIONS(10358), 1, + [158926] = 2, + ACTIONS(12033), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195070] = 2, - ACTIONS(10360), 1, - anon_sym_LPAREN, + [158934] = 2, + ACTIONS(12035), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195078] = 2, - ACTIONS(5507), 1, - sym__dedent, + [158942] = 2, + ACTIONS(9375), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195086] = 2, - ACTIONS(4304), 1, - sym__dedent, + [158950] = 2, + ACTIONS(12037), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195094] = 2, - ACTIONS(10362), 1, + [158958] = 2, + ACTIONS(12039), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195102] = 2, - ACTIONS(10364), 1, + [158966] = 2, + ACTIONS(12041), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195110] = 2, - ACTIONS(10366), 1, + [158974] = 2, + ACTIONS(12043), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195118] = 2, - ACTIONS(10368), 1, - anon_sym_GT, + [158982] = 2, + ACTIONS(12045), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195126] = 2, - ACTIONS(10370), 1, + [158990] = 2, + ACTIONS(12047), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195134] = 2, - ACTIONS(10372), 1, - anon_sym_COLON, + [158998] = 2, + ACTIONS(12049), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195142] = 2, - ACTIONS(10374), 1, - sym_identifier, + [159006] = 2, + ACTIONS(12051), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195150] = 2, - ACTIONS(10376), 1, - anon_sym_None, + [159014] = 2, + ACTIONS(12053), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195158] = 2, - ACTIONS(10378), 1, - anon_sym_RBRACE, + [159022] = 2, + ACTIONS(12055), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195166] = 2, - ACTIONS(6623), 1, - anon_sym_RPAREN, + [159030] = 2, + ACTIONS(12057), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195174] = 2, - ACTIONS(6589), 1, - anon_sym_RPAREN, + [159038] = 2, + ACTIONS(12059), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195182] = 2, - ACTIONS(10380), 1, - anon_sym_RBRACE, + [159046] = 2, + ACTIONS(12061), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195190] = 2, - ACTIONS(8301), 1, - anon_sym_LPAREN, + [159054] = 2, + ACTIONS(12063), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195198] = 2, - ACTIONS(10382), 1, - sym_identifier, + [159062] = 2, + ACTIONS(12065), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195206] = 2, - ACTIONS(10384), 1, + [159070] = 2, + ACTIONS(12067), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195214] = 2, - ACTIONS(10386), 1, + [159078] = 2, + ACTIONS(12069), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195222] = 2, - ACTIONS(10388), 1, + [159086] = 2, + ACTIONS(12071), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195230] = 2, - ACTIONS(10390), 1, + [159094] = 2, + ACTIONS(12073), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195238] = 2, - ACTIONS(10392), 1, - sym__indent, + [159102] = 2, + ACTIONS(12075), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195246] = 2, - ACTIONS(10394), 1, - anon_sym_COLON_EQ, + [159110] = 2, + ACTIONS(12077), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195254] = 2, - ACTIONS(10396), 1, - anon_sym_RBRACK, + [159118] = 2, + ACTIONS(10863), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195262] = 2, - ACTIONS(10398), 1, - sym_identifier, + [159126] = 2, + ACTIONS(12079), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195270] = 2, - ACTIONS(10400), 1, - anon_sym_COLON, + [159134] = 2, + ACTIONS(12081), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195278] = 2, - ACTIONS(10402), 1, - anon_sym_COLON_EQ, + [159142] = 2, + ACTIONS(8714), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195286] = 2, - ACTIONS(7307), 1, - anon_sym_RBRACE, + [159150] = 2, + ACTIONS(9526), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195294] = 2, - ACTIONS(10404), 1, - anon_sym_RBRACK, + [159158] = 2, + ACTIONS(12083), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195302] = 2, - ACTIONS(10406), 1, - anon_sym_COLON, + [159166] = 2, + ACTIONS(12085), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195310] = 2, - ACTIONS(10408), 1, + [159174] = 2, + ACTIONS(12087), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195318] = 2, - ACTIONS(10410), 1, + [159182] = 2, + ACTIONS(12089), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195326] = 2, - ACTIONS(10412), 1, + [159190] = 2, + ACTIONS(12091), 1, + aux_sym_run_directive_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [159198] = 2, + ACTIONS(12093), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195334] = 2, - ACTIONS(10414), 1, - anon_sym_RBRACE, + [159206] = 2, + ACTIONS(12095), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195342] = 2, - ACTIONS(10416), 1, - anon_sym_RPAREN, + [159214] = 2, + ACTIONS(12097), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195350] = 2, - ACTIONS(10418), 1, + [159222] = 2, + ACTIONS(12099), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195358] = 2, - ACTIONS(10420), 1, + [159230] = 2, + ACTIONS(7625), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159238] = 2, + ACTIONS(12101), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195366] = 2, - ACTIONS(10422), 1, - anon_sym_COLON, + [159246] = 2, + ACTIONS(8680), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195374] = 2, - ACTIONS(10424), 1, - anon_sym_RBRACK, + [159254] = 2, + ACTIONS(12103), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195382] = 2, - ACTIONS(10426), 1, - anon_sym_RBRACK, + [159262] = 2, + ACTIONS(12105), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159270] = 2, + ACTIONS(8800), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159278] = 2, + ACTIONS(12107), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195390] = 2, - ACTIONS(7345), 1, + [159286] = 2, + ACTIONS(8522), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195398] = 2, - ACTIONS(10428), 1, - sym__indent, + [159294] = 2, + ACTIONS(12109), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195406] = 2, - ACTIONS(10430), 1, - anon_sym_RBRACK, + [159302] = 2, + ACTIONS(9492), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195414] = 2, - ACTIONS(10432), 1, - aux_sym_run_directive_token1, - ACTIONS(5), 2, + [159310] = 2, + ACTIONS(12111), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195422] = 2, - ACTIONS(9318), 1, + [159318] = 2, + ACTIONS(12113), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159326] = 2, + ACTIONS(12115), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159334] = 2, + ACTIONS(10224), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195430] = 2, - ACTIONS(10434), 1, + [159342] = 2, + ACTIONS(12117), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195438] = 2, - ACTIONS(10436), 1, - sym_identifier, + [159350] = 2, + ACTIONS(12119), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195446] = 2, - ACTIONS(7427), 1, + [159358] = 2, + ACTIONS(12121), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195454] = 2, - ACTIONS(10438), 1, + [159366] = 2, + ACTIONS(12123), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195462] = 2, - ACTIONS(10440), 1, - anon_sym_STAR, + [159374] = 2, + ACTIONS(12125), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195470] = 2, - ACTIONS(7471), 1, - anon_sym_RBRACE, + [159382] = 2, + ACTIONS(12127), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195478] = 2, - ACTIONS(8114), 1, - anon_sym_RBRACK, + [159390] = 2, + ACTIONS(12129), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195486] = 2, - ACTIONS(10442), 1, + [159398] = 2, + ACTIONS(2921), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195494] = 2, - ACTIONS(10444), 1, + [159406] = 2, + ACTIONS(12131), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159414] = 2, + ACTIONS(12133), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195502] = 2, - ACTIONS(7383), 1, - anon_sym_RPAREN, + [159422] = 2, + ACTIONS(12135), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195510] = 2, - ACTIONS(10446), 1, - anon_sym_COLON, + [159430] = 2, + ACTIONS(12137), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195518] = 2, - ACTIONS(7341), 1, + [159438] = 2, + ACTIONS(12139), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195526] = 2, - ACTIONS(6601), 1, - anon_sym_RPAREN, + [159446] = 2, + ACTIONS(12141), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195534] = 2, - ACTIONS(10448), 1, - sym_identifier, + [159454] = 2, + ACTIONS(12143), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195542] = 2, - ACTIONS(10450), 1, - anon_sym_RPAREN, + [159462] = 2, + ACTIONS(12145), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195550] = 2, - ACTIONS(10452), 1, - anon_sym_RPAREN, + [159470] = 2, + ACTIONS(12147), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195558] = 2, - ACTIONS(10454), 1, + [159478] = 2, + ACTIONS(12149), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195566] = 2, - ACTIONS(10456), 1, - anon_sym_RPAREN, + [159486] = 2, + ACTIONS(12151), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195574] = 2, - ACTIONS(10458), 1, + [159494] = 2, + ACTIONS(12153), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195582] = 2, - ACTIONS(10460), 1, - anon_sym_COLON, + [159502] = 2, + ACTIONS(12155), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195590] = 2, - ACTIONS(10462), 1, - anon_sym_COLON, + [159510] = 2, + ACTIONS(12157), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195598] = 2, - ACTIONS(9415), 1, - anon_sym_LPAREN, + [159518] = 2, + ACTIONS(12159), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195606] = 2, - ACTIONS(10464), 1, - anon_sym_RBRACE, + [159526] = 2, + ACTIONS(4742), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195614] = 2, - ACTIONS(10466), 1, - anon_sym_RBRACE, + [159534] = 2, + ACTIONS(12161), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195622] = 2, - ACTIONS(10468), 1, - anon_sym_RBRACE, + [159542] = 2, + ACTIONS(8722), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195630] = 2, - ACTIONS(10470), 1, - anon_sym_RBRACE, + [159550] = 2, + ACTIONS(8466), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195638] = 2, - ACTIONS(10472), 1, + [159558] = 2, + ACTIONS(12163), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195646] = 2, - ACTIONS(10474), 1, + [159566] = 2, + ACTIONS(12165), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195654] = 2, - ACTIONS(10476), 1, - anon_sym_GT, + [159574] = 2, + ACTIONS(12167), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195662] = 2, - ACTIONS(10478), 1, - anon_sym_RBRACE, + [159582] = 2, + ACTIONS(12169), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195670] = 2, - ACTIONS(10480), 1, - anon_sym_GT, + [159590] = 2, + ACTIONS(12171), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159598] = 2, + ACTIONS(12173), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195678] = 2, - ACTIONS(10482), 1, + [159606] = 2, + ACTIONS(9379), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195686] = 2, - ACTIONS(10484), 1, - sym_identifier, + [159614] = 2, + ACTIONS(12175), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195694] = 2, - ACTIONS(10486), 1, + [159622] = 2, + ACTIONS(12177), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195702] = 2, - ACTIONS(10488), 1, + [159630] = 2, + ACTIONS(12179), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159638] = 2, + ACTIONS(12181), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195710] = 2, - ACTIONS(10490), 1, - sym_identifier, + [159646] = 2, + ACTIONS(12183), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195718] = 2, - ACTIONS(7923), 1, + [159654] = 2, + ACTIONS(7703), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195726] = 2, - ACTIONS(10492), 1, - anon_sym_RBRACK, + [159662] = 2, + ACTIONS(12185), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195734] = 2, - ACTIONS(10494), 1, - sym__indent, + [159670] = 2, + ACTIONS(12187), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195742] = 2, - ACTIONS(10496), 1, - anon_sym_COLON_EQ, + [159678] = 2, + ACTIONS(12189), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195750] = 2, - ACTIONS(10498), 1, - anon_sym_COLON, + [159686] = 2, + ACTIONS(8598), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195758] = 2, - ACTIONS(10500), 1, + [159694] = 2, + ACTIONS(12191), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195766] = 2, - ACTIONS(10502), 1, + [159702] = 2, + ACTIONS(10393), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159710] = 2, + ACTIONS(12193), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195774] = 2, - ACTIONS(10504), 1, + [159718] = 2, + ACTIONS(9197), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159726] = 2, + ACTIONS(12195), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195782] = 2, - ACTIONS(10506), 1, - anon_sym_LPAREN, + [159734] = 2, + ACTIONS(12197), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195790] = 2, - ACTIONS(5475), 1, - sym__dedent, + [159742] = 2, + ACTIONS(12199), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195798] = 2, - ACTIONS(7229), 1, - anon_sym_RPAREN, + [159750] = 2, + ACTIONS(12201), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195806] = 2, - ACTIONS(10508), 1, - anon_sym_GT, + [159758] = 2, + ACTIONS(12203), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195814] = 2, - ACTIONS(9330), 1, - anon_sym_in, + [159766] = 2, + ACTIONS(9107), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195822] = 2, - ACTIONS(10510), 1, - anon_sym_COLON, + [159774] = 2, + ACTIONS(12205), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195830] = 2, - ACTIONS(10512), 1, - sym_identifier, + [159782] = 2, + ACTIONS(12207), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195838] = 2, - ACTIONS(7249), 1, + [159790] = 2, + ACTIONS(8724), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195846] = 2, - ACTIONS(10514), 1, + [159798] = 2, + ACTIONS(12209), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195854] = 2, - ACTIONS(3479), 1, - anon_sym_COLON, + [159806] = 2, + ACTIONS(12211), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195862] = 2, - ACTIONS(7433), 1, + [159814] = 2, + ACTIONS(12213), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195870] = 2, - ACTIONS(10516), 1, - anon_sym_None, + [159822] = 2, + ACTIONS(12215), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195878] = 2, - ACTIONS(10518), 1, - anon_sym_RBRACK, + [159830] = 2, + ACTIONS(12217), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195886] = 2, - ACTIONS(10520), 1, - anon_sym_LPAREN, + [159838] = 2, + ACTIONS(12219), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195894] = 2, - ACTIONS(10522), 1, - anon_sym_RPAREN, + [159846] = 2, + ACTIONS(4738), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195902] = 2, - ACTIONS(10524), 1, + [159854] = 2, + ACTIONS(12221), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195910] = 2, - ACTIONS(10526), 1, + [159862] = 2, + ACTIONS(6514), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159870] = 2, + ACTIONS(12223), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195918] = 2, - ACTIONS(10528), 1, + [159878] = 2, + ACTIONS(12225), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195926] = 2, - ACTIONS(10530), 1, + [159886] = 2, + ACTIONS(12227), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195934] = 2, - ACTIONS(10532), 1, - anon_sym_RPAREN, + [159894] = 2, + ACTIONS(12229), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195942] = 2, - ACTIONS(10534), 1, + [159902] = 2, + ACTIONS(12231), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195950] = 2, - ACTIONS(10536), 1, + [159910] = 2, + ACTIONS(12233), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195958] = 2, - ACTIONS(10538), 1, - sym_identifier, + [159918] = 2, + ACTIONS(12235), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195966] = 2, - ACTIONS(10540), 1, + [159926] = 2, + ACTIONS(12237), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195974] = 2, - ACTIONS(5505), 1, - sym__dedent, + [159934] = 2, + ACTIONS(7597), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195982] = 2, - ACTIONS(10542), 1, - anon_sym_RBRACK, + [159942] = 2, + ACTIONS(12239), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195990] = 2, - ACTIONS(10544), 1, - sym_identifier, + [159950] = 2, + ACTIONS(4740), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195998] = 2, - ACTIONS(10546), 1, - sym_identifier, + [159958] = 2, + ACTIONS(12241), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196006] = 2, - ACTIONS(10548), 1, + [159966] = 2, + ACTIONS(12243), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196014] = 2, - ACTIONS(10550), 1, - anon_sym_COLON, + [159974] = 2, + ACTIONS(12245), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196022] = 2, - ACTIONS(10552), 1, + [159982] = 2, + ACTIONS(12247), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196030] = 2, - ACTIONS(10554), 1, - anon_sym_RBRACE, + [159990] = 2, + ACTIONS(12249), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196038] = 2, - ACTIONS(10556), 1, - sym_identifier, + [159998] = 2, + ACTIONS(12251), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196046] = 2, - ACTIONS(10558), 1, + [160006] = 2, + ACTIONS(12253), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196054] = 2, - ACTIONS(10560), 1, - anon_sym_COLON, + [160014] = 2, + ACTIONS(12255), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196062] = 2, - ACTIONS(3962), 1, + [160022] = 2, + ACTIONS(4534), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196070] = 2, - ACTIONS(10562), 1, + [160030] = 2, + ACTIONS(12257), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196078] = 2, - ACTIONS(10564), 1, - anon_sym_COLON, + [160038] = 2, + ACTIONS(4736), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196086] = 2, - ACTIONS(10566), 1, - anon_sym_COLON, + [160046] = 2, + ACTIONS(12259), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196094] = 2, - ACTIONS(10568), 1, - anon_sym_COLON, + [160054] = 2, + ACTIONS(12261), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196102] = 2, - ACTIONS(10570), 1, - anon_sym_RBRACE, + [160062] = 2, + ACTIONS(12263), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196110] = 2, - ACTIONS(10572), 1, + [160070] = 2, + ACTIONS(12265), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196118] = 2, - ACTIONS(10574), 1, - anon_sym_COLON, + [160078] = 2, + ACTIONS(12267), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196126] = 2, - ACTIONS(10576), 1, - anon_sym_COLON, + [160086] = 2, + ACTIONS(12269), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196134] = 2, - ACTIONS(10578), 1, - sym_identifier, + [160094] = 2, + ACTIONS(12271), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196142] = 2, - ACTIONS(10580), 1, - anon_sym_COLON_EQ, + [160102] = 2, + ACTIONS(12273), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196150] = 2, - ACTIONS(10582), 1, + [160110] = 2, + ACTIONS(8574), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160118] = 2, + ACTIONS(12275), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196158] = 2, - ACTIONS(10584), 1, - anon_sym_RBRACE, + [160126] = 2, + ACTIONS(12277), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196166] = 2, - ACTIONS(10586), 1, + [160134] = 2, + ACTIONS(12279), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196174] = 2, - ACTIONS(10588), 1, - anon_sym_RPAREN, + [160142] = 2, + ACTIONS(9264), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196182] = 2, - ACTIONS(6739), 1, + [160150] = 2, + ACTIONS(12281), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196190] = 2, - ACTIONS(10590), 1, - sym_identifier, + [160158] = 2, + ACTIONS(12283), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196198] = 2, - ACTIONS(10592), 1, - anon_sym_RBRACK, + [160166] = 2, + ACTIONS(12285), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196206] = 2, - ACTIONS(10594), 1, - anon_sym_RBRACK, + [160174] = 2, + ACTIONS(12287), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196214] = 2, - ACTIONS(6672), 1, - anon_sym_RPAREN, + [160182] = 2, + ACTIONS(10894), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196222] = 2, - ACTIONS(10596), 1, - anon_sym_COLON, + [160190] = 2, + ACTIONS(12289), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196230] = 2, - ACTIONS(10598), 1, + [160198] = 2, + ACTIONS(12291), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196238] = 2, - ACTIONS(10600), 1, + [160206] = 2, + ACTIONS(12293), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196246] = 2, - ACTIONS(10602), 1, - anon_sym_RBRACE, + [160214] = 2, + ACTIONS(12295), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196254] = 2, - ACTIONS(10604), 1, - anon_sym_RPAREN, + [160222] = 2, + ACTIONS(12297), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196262] = 2, - ACTIONS(10606), 1, + [160230] = 2, + ACTIONS(12299), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160238] = 2, + ACTIONS(12301), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196270] = 2, - ACTIONS(10608), 1, + [160246] = 2, + ACTIONS(12303), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196278] = 2, - ACTIONS(10610), 1, + [160254] = 2, + ACTIONS(12305), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196286] = 2, - ACTIONS(10612), 1, + [160262] = 2, + ACTIONS(12307), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196294] = 2, - ACTIONS(10614), 1, - sym__indent, + [160270] = 2, + ACTIONS(12309), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [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)] = 141740, - [SMALL_STATE(3175)] = 141801, - [SMALL_STATE(3176)] = 141862, - [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)] = 142196, - [SMALL_STATE(3184)] = 142256, - [SMALL_STATE(3185)] = 142290, - [SMALL_STATE(3186)] = 142350, - [SMALL_STATE(3187)] = 142384, - [SMALL_STATE(3188)] = 142444, - [SMALL_STATE(3189)] = 142504, - [SMALL_STATE(3190)] = 142538, - [SMALL_STATE(3191)] = 142591, - [SMALL_STATE(3192)] = 142636, - [SMALL_STATE(3193)] = 142681, - [SMALL_STATE(3194)] = 142746, - [SMALL_STATE(3195)] = 142801, - [SMALL_STATE(3196)] = 142866, - [SMALL_STATE(3197)] = 142899, - [SMALL_STATE(3198)] = 142932, - [SMALL_STATE(3199)] = 142991, - [SMALL_STATE(3200)] = 143034, - [SMALL_STATE(3201)] = 143077, - [SMALL_STATE(3202)] = 143136, - [SMALL_STATE(3203)] = 143177, - [SMALL_STATE(3204)] = 143218, - [SMALL_STATE(3205)] = 143261, - [SMALL_STATE(3206)] = 143304, - [SMALL_STATE(3207)] = 143336, - [SMALL_STATE(3208)] = 143392, - [SMALL_STATE(3209)] = 143422, - [SMALL_STATE(3210)] = 143452, - [SMALL_STATE(3211)] = 143508, - [SMALL_STATE(3212)] = 143540, - [SMALL_STATE(3213)] = 143582, - [SMALL_STATE(3214)] = 143614, - [SMALL_STATE(3215)] = 143644, - [SMALL_STATE(3216)] = 143676, - [SMALL_STATE(3217)] = 143718, - [SMALL_STATE(3218)] = 143750, - [SMALL_STATE(3219)] = 143782, - [SMALL_STATE(3220)] = 143814, - [SMALL_STATE(3221)] = 143846, - [SMALL_STATE(3222)] = 143902, - [SMALL_STATE(3223)] = 143934, - [SMALL_STATE(3224)] = 143966, - [SMALL_STATE(3225)] = 143996, - [SMALL_STATE(3226)] = 144052, - [SMALL_STATE(3227)] = 144082, - [SMALL_STATE(3228)] = 144124, - [SMALL_STATE(3229)] = 144166, - [SMALL_STATE(3230)] = 144198, - [SMALL_STATE(3231)] = 144230, - [SMALL_STATE(3232)] = 144260, - [SMALL_STATE(3233)] = 144290, - [SMALL_STATE(3234)] = 144343, - [SMALL_STATE(3235)] = 144380, - [SMALL_STATE(3236)] = 144431, - [SMALL_STATE(3237)] = 144482, - [SMALL_STATE(3238)] = 144513, - [SMALL_STATE(3239)] = 144550, - [SMALL_STATE(3240)] = 144587, - [SMALL_STATE(3241)] = 144618, - [SMALL_STATE(3242)] = 144671, - [SMALL_STATE(3243)] = 144722, - [SMALL_STATE(3244)] = 144773, - [SMALL_STATE(3245)] = 144810, - [SMALL_STATE(3246)] = 144863, - [SMALL_STATE(3247)] = 144916, - [SMALL_STATE(3248)] = 144967, - [SMALL_STATE(3249)] = 145020, - [SMALL_STATE(3250)] = 145051, - [SMALL_STATE(3251)] = 145088, - [SMALL_STATE(3252)] = 145119, - [SMALL_STATE(3253)] = 145172, - [SMALL_STATE(3254)] = 145209, - [SMALL_STATE(3255)] = 145260, - [SMALL_STATE(3256)] = 145311, - [SMALL_STATE(3257)] = 145362, - [SMALL_STATE(3258)] = 145395, - [SMALL_STATE(3259)] = 145448, - [SMALL_STATE(3260)] = 145499, - [SMALL_STATE(3261)] = 145534, - [SMALL_STATE(3262)] = 145585, - [SMALL_STATE(3263)] = 145622, - [SMALL_STATE(3264)] = 145673, - [SMALL_STATE(3265)] = 145704, - [SMALL_STATE(3266)] = 145754, - [SMALL_STATE(3267)] = 145804, - [SMALL_STATE(3268)] = 145834, - [SMALL_STATE(3269)] = 145884, - [SMALL_STATE(3270)] = 145916, - [SMALL_STATE(3271)] = 145966, - [SMALL_STATE(3272)] = 146016, - [SMALL_STATE(3273)] = 146054, - [SMALL_STATE(3274)] = 146092, - [SMALL_STATE(3275)] = 146122, - [SMALL_STATE(3276)] = 146152, - [SMALL_STATE(3277)] = 146182, - [SMALL_STATE(3278)] = 146212, - [SMALL_STATE(3279)] = 146262, - [SMALL_STATE(3280)] = 146314, - [SMALL_STATE(3281)] = 146364, - [SMALL_STATE(3282)] = 146414, - [SMALL_STATE(3283)] = 146464, - [SMALL_STATE(3284)] = 146514, - [SMALL_STATE(3285)] = 146544, - [SMALL_STATE(3286)] = 146596, - [SMALL_STATE(3287)] = 146626, - [SMALL_STATE(3288)] = 146676, - [SMALL_STATE(3289)] = 146726, - [SMALL_STATE(3290)] = 146776, - [SMALL_STATE(3291)] = 146826, - [SMALL_STATE(3292)] = 146876, - [SMALL_STATE(3293)] = 146926, - [SMALL_STATE(3294)] = 146951, - [SMALL_STATE(3295)] = 146998, - [SMALL_STATE(3296)] = 147027, - [SMALL_STATE(3297)] = 147056, - [SMALL_STATE(3298)] = 147085, - [SMALL_STATE(3299)] = 147114, - [SMALL_STATE(3300)] = 147161, - [SMALL_STATE(3301)] = 147186, - [SMALL_STATE(3302)] = 147227, - [SMALL_STATE(3303)] = 147274, - [SMALL_STATE(3304)] = 147299, - [SMALL_STATE(3305)] = 147324, - [SMALL_STATE(3306)] = 147353, - [SMALL_STATE(3307)] = 147390, - [SMALL_STATE(3308)] = 147427, - [SMALL_STATE(3309)] = 147456, - [SMALL_STATE(3310)] = 147485, - [SMALL_STATE(3311)] = 147522, - [SMALL_STATE(3312)] = 147563, - [SMALL_STATE(3313)] = 147600, - [SMALL_STATE(3314)] = 147639, - [SMALL_STATE(3315)] = 147686, - [SMALL_STATE(3316)] = 147731, - [SMALL_STATE(3317)] = 147774, - [SMALL_STATE(3318)] = 147821, - [SMALL_STATE(3319)] = 147850, - [SMALL_STATE(3320)] = 147879, - [SMALL_STATE(3321)] = 147906, - [SMALL_STATE(3322)] = 147947, - [SMALL_STATE(3323)] = 147994, - [SMALL_STATE(3324)] = 148019, - [SMALL_STATE(3325)] = 148066, - [SMALL_STATE(3326)] = 148101, - [SMALL_STATE(3327)] = 148130, - [SMALL_STATE(3328)] = 148177, - [SMALL_STATE(3329)] = 148202, - [SMALL_STATE(3330)] = 148231, - [SMALL_STATE(3331)] = 148278, - [SMALL_STATE(3332)] = 148303, - [SMALL_STATE(3333)] = 148350, - [SMALL_STATE(3334)] = 148397, - [SMALL_STATE(3335)] = 148444, - [SMALL_STATE(3336)] = 148491, - [SMALL_STATE(3337)] = 148538, - [SMALL_STATE(3338)] = 148585, - [SMALL_STATE(3339)] = 148632, - [SMALL_STATE(3340)] = 148679, - [SMALL_STATE(3341)] = 148704, - [SMALL_STATE(3342)] = 148748, - [SMALL_STATE(3343)] = 148790, - [SMALL_STATE(3344)] = 148832, - [SMALL_STATE(3345)] = 148876, - [SMALL_STATE(3346)] = 148904, - [SMALL_STATE(3347)] = 148946, - [SMALL_STATE(3348)] = 148974, - [SMALL_STATE(3349)] = 149018, - [SMALL_STATE(3350)] = 149048, - [SMALL_STATE(3351)] = 149090, - [SMALL_STATE(3352)] = 149134, - [SMALL_STATE(3353)] = 149178, - [SMALL_STATE(3354)] = 149220, - [SMALL_STATE(3355)] = 149250, - [SMALL_STATE(3356)] = 149294, - [SMALL_STATE(3357)] = 149336, - [SMALL_STATE(3358)] = 149380, - [SMALL_STATE(3359)] = 149424, - [SMALL_STATE(3360)] = 149468, - [SMALL_STATE(3361)] = 149510, - [SMALL_STATE(3362)] = 149552, - [SMALL_STATE(3363)] = 149596, - [SMALL_STATE(3364)] = 149626, - [SMALL_STATE(3365)] = 149668, - [SMALL_STATE(3366)] = 149710, - [SMALL_STATE(3367)] = 149752, - [SMALL_STATE(3368)] = 149794, - [SMALL_STATE(3369)] = 149836, - [SMALL_STATE(3370)] = 149878, - [SMALL_STATE(3371)] = 149920, - [SMALL_STATE(3372)] = 149964, - [SMALL_STATE(3373)] = 149996, - [SMALL_STATE(3374)] = 150040, - [SMALL_STATE(3375)] = 150084, - [SMALL_STATE(3376)] = 150128, - [SMALL_STATE(3377)] = 150170, - [SMALL_STATE(3378)] = 150214, - [SMALL_STATE(3379)] = 150258, - [SMALL_STATE(3380)] = 150302, - [SMALL_STATE(3381)] = 150346, - [SMALL_STATE(3382)] = 150390, - [SMALL_STATE(3383)] = 150434, - [SMALL_STATE(3384)] = 150478, - [SMALL_STATE(3385)] = 150520, - [SMALL_STATE(3386)] = 150564, - [SMALL_STATE(3387)] = 150608, - [SMALL_STATE(3388)] = 150652, - [SMALL_STATE(3389)] = 150694, - [SMALL_STATE(3390)] = 150738, - [SMALL_STATE(3391)] = 150782, - [SMALL_STATE(3392)] = 150830, - [SMALL_STATE(3393)] = 150874, - [SMALL_STATE(3394)] = 150918, - [SMALL_STATE(3395)] = 150950, - [SMALL_STATE(3396)] = 150994, - [SMALL_STATE(3397)] = 151036, - [SMALL_STATE(3398)] = 151078, - [SMALL_STATE(3399)] = 151122, - [SMALL_STATE(3400)] = 151166, - [SMALL_STATE(3401)] = 151208, - [SMALL_STATE(3402)] = 151250, - [SMALL_STATE(3403)] = 151292, - [SMALL_STATE(3404)] = 151334, - [SMALL_STATE(3405)] = 151376, - [SMALL_STATE(3406)] = 151420, - [SMALL_STATE(3407)] = 151464, - [SMALL_STATE(3408)] = 151506, - [SMALL_STATE(3409)] = 151550, - [SMALL_STATE(3410)] = 151594, - [SMALL_STATE(3411)] = 151638, - [SMALL_STATE(3412)] = 151682, - [SMALL_STATE(3413)] = 151726, - [SMALL_STATE(3414)] = 151770, - [SMALL_STATE(3415)] = 151814, - [SMALL_STATE(3416)] = 151858, - [SMALL_STATE(3417)] = 151902, - [SMALL_STATE(3418)] = 151946, - [SMALL_STATE(3419)] = 151990, - [SMALL_STATE(3420)] = 152034, - [SMALL_STATE(3421)] = 152076, - [SMALL_STATE(3422)] = 152120, - [SMALL_STATE(3423)] = 152164, - [SMALL_STATE(3424)] = 152206, - [SMALL_STATE(3425)] = 152250, - [SMALL_STATE(3426)] = 152294, - [SMALL_STATE(3427)] = 152338, - [SMALL_STATE(3428)] = 152382, - [SMALL_STATE(3429)] = 152410, - [SMALL_STATE(3430)] = 152454, - [SMALL_STATE(3431)] = 152498, - [SMALL_STATE(3432)] = 152542, - [SMALL_STATE(3433)] = 152584, - [SMALL_STATE(3434)] = 152612, - [SMALL_STATE(3435)] = 152656, - [SMALL_STATE(3436)] = 152700, - [SMALL_STATE(3437)] = 152744, - [SMALL_STATE(3438)] = 152788, - [SMALL_STATE(3439)] = 152832, - [SMALL_STATE(3440)] = 152876, - [SMALL_STATE(3441)] = 152920, - [SMALL_STATE(3442)] = 152964, - [SMALL_STATE(3443)] = 153008, - [SMALL_STATE(3444)] = 153052, - [SMALL_STATE(3445)] = 153096, - [SMALL_STATE(3446)] = 153140, - [SMALL_STATE(3447)] = 153184, - [SMALL_STATE(3448)] = 153228, - [SMALL_STATE(3449)] = 153272, - [SMALL_STATE(3450)] = 153316, - [SMALL_STATE(3451)] = 153360, - [SMALL_STATE(3452)] = 153402, - [SMALL_STATE(3453)] = 153427, - [SMALL_STATE(3454)] = 153454, - [SMALL_STATE(3455)] = 153495, - [SMALL_STATE(3456)] = 153520, - [SMALL_STATE(3457)] = 153547, - [SMALL_STATE(3458)] = 153586, - [SMALL_STATE(3459)] = 153631, - [SMALL_STATE(3460)] = 153670, - [SMALL_STATE(3461)] = 153711, - [SMALL_STATE(3462)] = 153736, - [SMALL_STATE(3463)] = 153783, - [SMALL_STATE(3464)] = 153816, - [SMALL_STATE(3465)] = 153857, - [SMALL_STATE(3466)] = 153898, - [SMALL_STATE(3467)] = 153939, - [SMALL_STATE(3468)] = 153980, - [SMALL_STATE(3469)] = 154021, - [SMALL_STATE(3470)] = 154062, - [SMALL_STATE(3471)] = 154089, - [SMALL_STATE(3472)] = 154116, - [SMALL_STATE(3473)] = 154157, - [SMALL_STATE(3474)] = 154198, - [SMALL_STATE(3475)] = 154239, - [SMALL_STATE(3476)] = 154280, - [SMALL_STATE(3477)] = 154309, - [SMALL_STATE(3478)] = 154350, - [SMALL_STATE(3479)] = 154391, - [SMALL_STATE(3480)] = 154418, - [SMALL_STATE(3481)] = 154445, - [SMALL_STATE(3482)] = 154470, - [SMALL_STATE(3483)] = 154511, - [SMALL_STATE(3484)] = 154549, - [SMALL_STATE(3485)] = 154583, - [SMALL_STATE(3486)] = 154623, - [SMALL_STATE(3487)] = 154647, - [SMALL_STATE(3488)] = 154671, - [SMALL_STATE(3489)] = 154697, - [SMALL_STATE(3490)] = 154721, - [SMALL_STATE(3491)] = 154747, - [SMALL_STATE(3492)] = 154771, - [SMALL_STATE(3493)] = 154795, - [SMALL_STATE(3494)] = 154819, - [SMALL_STATE(3495)] = 154855, - [SMALL_STATE(3496)] = 154879, - [SMALL_STATE(3497)] = 154915, - [SMALL_STATE(3498)] = 154949, - [SMALL_STATE(3499)] = 154973, - [SMALL_STATE(3500)] = 155011, - [SMALL_STATE(3501)] = 155049, - [SMALL_STATE(3502)] = 155085, - [SMALL_STATE(3503)] = 155113, - [SMALL_STATE(3504)] = 155137, - [SMALL_STATE(3505)] = 155177, - [SMALL_STATE(3506)] = 155213, - [SMALL_STATE(3507)] = 155237, - [SMALL_STATE(3508)] = 155273, - [SMALL_STATE(3509)] = 155311, - [SMALL_STATE(3510)] = 155347, - [SMALL_STATE(3511)] = 155387, - [SMALL_STATE(3512)] = 155427, - [SMALL_STATE(3513)] = 155455, - [SMALL_STATE(3514)] = 155482, - [SMALL_STATE(3515)] = 155517, - [SMALL_STATE(3516)] = 155544, - [SMALL_STATE(3517)] = 155577, - [SMALL_STATE(3518)] = 155604, - [SMALL_STATE(3519)] = 155631, - [SMALL_STATE(3520)] = 155654, - [SMALL_STATE(3521)] = 155681, - [SMALL_STATE(3522)] = 155714, - [SMALL_STATE(3523)] = 155737, - [SMALL_STATE(3524)] = 155774, - [SMALL_STATE(3525)] = 155813, - [SMALL_STATE(3526)] = 155834, - [SMALL_STATE(3527)] = 155867, - [SMALL_STATE(3528)] = 155906, - [SMALL_STATE(3529)] = 155939, - [SMALL_STATE(3530)] = 155962, - [SMALL_STATE(3531)] = 155989, - [SMALL_STATE(3532)] = 156022, - [SMALL_STATE(3533)] = 156055, - [SMALL_STATE(3534)] = 156076, - [SMALL_STATE(3535)] = 156109, - [SMALL_STATE(3536)] = 156132, - [SMALL_STATE(3537)] = 156171, - [SMALL_STATE(3538)] = 156198, - [SMALL_STATE(3539)] = 156231, - [SMALL_STATE(3540)] = 156252, - [SMALL_STATE(3541)] = 156275, - [SMALL_STATE(3542)] = 156298, - [SMALL_STATE(3543)] = 156321, - [SMALL_STATE(3544)] = 156356, - [SMALL_STATE(3545)] = 156381, - [SMALL_STATE(3546)] = 156402, - [SMALL_STATE(3547)] = 156435, - [SMALL_STATE(3548)] = 156462, - [SMALL_STATE(3549)] = 156489, - [SMALL_STATE(3550)] = 156514, - [SMALL_STATE(3551)] = 156541, - [SMALL_STATE(3552)] = 156573, - [SMALL_STATE(3553)] = 156599, - [SMALL_STATE(3554)] = 156631, - [SMALL_STATE(3555)] = 156661, - [SMALL_STATE(3556)] = 156693, - [SMALL_STATE(3557)] = 156719, - [SMALL_STATE(3558)] = 156749, - [SMALL_STATE(3559)] = 156779, - [SMALL_STATE(3560)] = 156811, - [SMALL_STATE(3561)] = 156833, - [SMALL_STATE(3562)] = 156865, - [SMALL_STATE(3563)] = 156895, - [SMALL_STATE(3564)] = 156927, - [SMALL_STATE(3565)] = 156959, - [SMALL_STATE(3566)] = 156991, - [SMALL_STATE(3567)] = 157021, - [SMALL_STATE(3568)] = 157043, - [SMALL_STATE(3569)] = 157083, - [SMALL_STATE(3570)] = 157115, - [SMALL_STATE(3571)] = 157153, - [SMALL_STATE(3572)] = 157181, - [SMALL_STATE(3573)] = 157203, - [SMALL_STATE(3574)] = 157243, - [SMALL_STATE(3575)] = 157281, - [SMALL_STATE(3576)] = 157319, - [SMALL_STATE(3577)] = 157357, - [SMALL_STATE(3578)] = 157395, - [SMALL_STATE(3579)] = 157417, - [SMALL_STATE(3580)] = 157449, - [SMALL_STATE(3581)] = 157473, - [SMALL_STATE(3582)] = 157507, - [SMALL_STATE(3583)] = 157539, - [SMALL_STATE(3584)] = 157569, - [SMALL_STATE(3585)] = 157595, - [SMALL_STATE(3586)] = 157635, - [SMALL_STATE(3587)] = 157657, - [SMALL_STATE(3588)] = 157679, - [SMALL_STATE(3589)] = 157701, - [SMALL_STATE(3590)] = 157727, - [SMALL_STATE(3591)] = 157749, - [SMALL_STATE(3592)] = 157789, - [SMALL_STATE(3593)] = 157811, - [SMALL_STATE(3594)] = 157851, - [SMALL_STATE(3595)] = 157891, - [SMALL_STATE(3596)] = 157923, - [SMALL_STATE(3597)] = 157953, - [SMALL_STATE(3598)] = 157983, - [SMALL_STATE(3599)] = 158007, - [SMALL_STATE(3600)] = 158039, - [SMALL_STATE(3601)] = 158065, - [SMALL_STATE(3602)] = 158101, - [SMALL_STATE(3603)] = 158129, - [SMALL_STATE(3604)] = 158153, - [SMALL_STATE(3605)] = 158191, - [SMALL_STATE(3606)] = 158229, - [SMALL_STATE(3607)] = 158253, - [SMALL_STATE(3608)] = 158285, - [SMALL_STATE(3609)] = 158317, - [SMALL_STATE(3610)] = 158351, - [SMALL_STATE(3611)] = 158385, - [SMALL_STATE(3612)] = 158413, - [SMALL_STATE(3613)] = 158443, - [SMALL_STATE(3614)] = 158473, - [SMALL_STATE(3615)] = 158495, - [SMALL_STATE(3616)] = 158529, - [SMALL_STATE(3617)] = 158559, - [SMALL_STATE(3618)] = 158588, - [SMALL_STATE(3619)] = 158619, - [SMALL_STATE(3620)] = 158648, - [SMALL_STATE(3621)] = 158677, - [SMALL_STATE(3622)] = 158706, - [SMALL_STATE(3623)] = 158735, - [SMALL_STATE(3624)] = 158766, - [SMALL_STATE(3625)] = 158795, - [SMALL_STATE(3626)] = 158824, - [SMALL_STATE(3627)] = 158855, - [SMALL_STATE(3628)] = 158884, - [SMALL_STATE(3629)] = 158925, - [SMALL_STATE(3630)] = 158954, - [SMALL_STATE(3631)] = 158983, - [SMALL_STATE(3632)] = 159012, - [SMALL_STATE(3633)] = 159033, - [SMALL_STATE(3634)] = 159062, - [SMALL_STATE(3635)] = 159091, - [SMALL_STATE(3636)] = 159122, - [SMALL_STATE(3637)] = 159151, - [SMALL_STATE(3638)] = 159172, - [SMALL_STATE(3639)] = 159203, - [SMALL_STATE(3640)] = 159224, - [SMALL_STATE(3641)] = 159245, - [SMALL_STATE(3642)] = 159274, - [SMALL_STATE(3643)] = 159303, - [SMALL_STATE(3644)] = 159332, - [SMALL_STATE(3645)] = 159353, - [SMALL_STATE(3646)] = 159374, - [SMALL_STATE(3647)] = 159395, - [SMALL_STATE(3648)] = 159424, - [SMALL_STATE(3649)] = 159455, - [SMALL_STATE(3650)] = 159478, - [SMALL_STATE(3651)] = 159507, - [SMALL_STATE(3652)] = 159536, - [SMALL_STATE(3653)] = 159565, - [SMALL_STATE(3654)] = 159594, - [SMALL_STATE(3655)] = 159623, - [SMALL_STATE(3656)] = 159652, - [SMALL_STATE(3657)] = 159681, - [SMALL_STATE(3658)] = 159722, - [SMALL_STATE(3659)] = 159751, - [SMALL_STATE(3660)] = 159780, - [SMALL_STATE(3661)] = 159809, - [SMALL_STATE(3662)] = 159838, - [SMALL_STATE(3663)] = 159867, - [SMALL_STATE(3664)] = 159898, - [SMALL_STATE(3665)] = 159927, - [SMALL_STATE(3666)] = 159956, - [SMALL_STATE(3667)] = 159977, - [SMALL_STATE(3668)] = 160010, - [SMALL_STATE(3669)] = 160039, - [SMALL_STATE(3670)] = 160062, - [SMALL_STATE(3671)] = 160091, - [SMALL_STATE(3672)] = 160122, - [SMALL_STATE(3673)] = 160151, - [SMALL_STATE(3674)] = 160182, - [SMALL_STATE(3675)] = 160223, - [SMALL_STATE(3676)] = 160252, - [SMALL_STATE(3677)] = 160283, - [SMALL_STATE(3678)] = 160312, - [SMALL_STATE(3679)] = 160341, - [SMALL_STATE(3680)] = 160370, - [SMALL_STATE(3681)] = 160399, - [SMALL_STATE(3682)] = 160428, - [SMALL_STATE(3683)] = 160457, - [SMALL_STATE(3684)] = 160486, - [SMALL_STATE(3685)] = 160517, - [SMALL_STATE(3686)] = 160548, - [SMALL_STATE(3687)] = 160579, - [SMALL_STATE(3688)] = 160600, - [SMALL_STATE(3689)] = 160621, - [SMALL_STATE(3690)] = 160650, - [SMALL_STATE(3691)] = 160691, - [SMALL_STATE(3692)] = 160720, - [SMALL_STATE(3693)] = 160749, - [SMALL_STATE(3694)] = 160790, - [SMALL_STATE(3695)] = 160821, - [SMALL_STATE(3696)] = 160850, - [SMALL_STATE(3697)] = 160891, - [SMALL_STATE(3698)] = 160920, - [SMALL_STATE(3699)] = 160949, - [SMALL_STATE(3700)] = 160990, - [SMALL_STATE(3701)] = 161019, - [SMALL_STATE(3702)] = 161048, - [SMALL_STATE(3703)] = 161089, - [SMALL_STATE(3704)] = 161120, - [SMALL_STATE(3705)] = 161151, - [SMALL_STATE(3706)] = 161180, - [SMALL_STATE(3707)] = 161209, - [SMALL_STATE(3708)] = 161238, - [SMALL_STATE(3709)] = 161267, - [SMALL_STATE(3710)] = 161296, - [SMALL_STATE(3711)] = 161325, - [SMALL_STATE(3712)] = 161356, - [SMALL_STATE(3713)] = 161385, - [SMALL_STATE(3714)] = 161416, - [SMALL_STATE(3715)] = 161445, - [SMALL_STATE(3716)] = 161474, - [SMALL_STATE(3717)] = 161507, - [SMALL_STATE(3718)] = 161538, - [SMALL_STATE(3719)] = 161569, - [SMALL_STATE(3720)] = 161598, - [SMALL_STATE(3721)] = 161629, - [SMALL_STATE(3722)] = 161660, - [SMALL_STATE(3723)] = 161691, - [SMALL_STATE(3724)] = 161720, - [SMALL_STATE(3725)] = 161751, - [SMALL_STATE(3726)] = 161780, - [SMALL_STATE(3727)] = 161818, - [SMALL_STATE(3728)] = 161852, - [SMALL_STATE(3729)] = 161880, - [SMALL_STATE(3730)] = 161910, - [SMALL_STATE(3731)] = 161940, - [SMALL_STATE(3732)] = 161972, - [SMALL_STATE(3733)] = 162002, - [SMALL_STATE(3734)] = 162032, - [SMALL_STATE(3735)] = 162062, - [SMALL_STATE(3736)] = 162100, - [SMALL_STATE(3737)] = 162138, - [SMALL_STATE(3738)] = 162170, - [SMALL_STATE(3739)] = 162204, - [SMALL_STATE(3740)] = 162232, - [SMALL_STATE(3741)] = 162262, - [SMALL_STATE(3742)] = 162292, - [SMALL_STATE(3743)] = 162330, - [SMALL_STATE(3744)] = 162358, - [SMALL_STATE(3745)] = 162388, - [SMALL_STATE(3746)] = 162418, - [SMALL_STATE(3747)] = 162448, - [SMALL_STATE(3748)] = 162478, - [SMALL_STATE(3749)] = 162508, - [SMALL_STATE(3750)] = 162536, - [SMALL_STATE(3751)] = 162560, - [SMALL_STATE(3752)] = 162598, - [SMALL_STATE(3753)] = 162628, - [SMALL_STATE(3754)] = 162656, - [SMALL_STATE(3755)] = 162694, - [SMALL_STATE(3756)] = 162724, - [SMALL_STATE(3757)] = 162754, - [SMALL_STATE(3758)] = 162788, - [SMALL_STATE(3759)] = 162822, - [SMALL_STATE(3760)] = 162852, - [SMALL_STATE(3761)] = 162890, - [SMALL_STATE(3762)] = 162928, - [SMALL_STATE(3763)] = 162946, - [SMALL_STATE(3764)] = 162984, - [SMALL_STATE(3765)] = 163014, - [SMALL_STATE(3766)] = 163052, - [SMALL_STATE(3767)] = 163090, - [SMALL_STATE(3768)] = 163110, - [SMALL_STATE(3769)] = 163142, - [SMALL_STATE(3770)] = 163172, - [SMALL_STATE(3771)] = 163202, - [SMALL_STATE(3772)] = 163240, - [SMALL_STATE(3773)] = 163278, - [SMALL_STATE(3774)] = 163316, - [SMALL_STATE(3775)] = 163346, - [SMALL_STATE(3776)] = 163384, - [SMALL_STATE(3777)] = 163422, - [SMALL_STATE(3778)] = 163452, - [SMALL_STATE(3779)] = 163490, - [SMALL_STATE(3780)] = 163528, - [SMALL_STATE(3781)] = 163562, - [SMALL_STATE(3782)] = 163592, - [SMALL_STATE(3783)] = 163616, - [SMALL_STATE(3784)] = 163644, - [SMALL_STATE(3785)] = 163682, - [SMALL_STATE(3786)] = 163720, - [SMALL_STATE(3787)] = 163750, - [SMALL_STATE(3788)] = 163780, - [SMALL_STATE(3789)] = 163818, - [SMALL_STATE(3790)] = 163856, - [SMALL_STATE(3791)] = 163888, - [SMALL_STATE(3792)] = 163918, - [SMALL_STATE(3793)] = 163946, - [SMALL_STATE(3794)] = 163976, - [SMALL_STATE(3795)] = 164008, - [SMALL_STATE(3796)] = 164036, - [SMALL_STATE(3797)] = 164066, - [SMALL_STATE(3798)] = 164104, - [SMALL_STATE(3799)] = 164134, - [SMALL_STATE(3800)] = 164164, - [SMALL_STATE(3801)] = 164202, - [SMALL_STATE(3802)] = 164232, - [SMALL_STATE(3803)] = 164260, - [SMALL_STATE(3804)] = 164288, - [SMALL_STATE(3805)] = 164318, - [SMALL_STATE(3806)] = 164346, - [SMALL_STATE(3807)] = 164384, - [SMALL_STATE(3808)] = 164408, - [SMALL_STATE(3809)] = 164440, - [SMALL_STATE(3810)] = 164470, - [SMALL_STATE(3811)] = 164500, - [SMALL_STATE(3812)] = 164530, - [SMALL_STATE(3813)] = 164562, - [SMALL_STATE(3814)] = 164586, - [SMALL_STATE(3815)] = 164616, - [SMALL_STATE(3816)] = 164646, - [SMALL_STATE(3817)] = 164678, - [SMALL_STATE(3818)] = 164710, - [SMALL_STATE(3819)] = 164744, - [SMALL_STATE(3820)] = 164763, - [SMALL_STATE(3821)] = 164788, - [SMALL_STATE(3822)] = 164809, - [SMALL_STATE(3823)] = 164828, - [SMALL_STATE(3824)] = 164853, - [SMALL_STATE(3825)] = 164872, - [SMALL_STATE(3826)] = 164897, - [SMALL_STATE(3827)] = 164920, - [SMALL_STATE(3828)] = 164941, - [SMALL_STATE(3829)] = 164960, - [SMALL_STATE(3830)] = 164989, - [SMALL_STATE(3831)] = 165018, - [SMALL_STATE(3832)] = 165043, - [SMALL_STATE(3833)] = 165064, - [SMALL_STATE(3834)] = 165083, - [SMALL_STATE(3835)] = 165112, - [SMALL_STATE(3836)] = 165141, - [SMALL_STATE(3837)] = 165164, - [SMALL_STATE(3838)] = 165187, - [SMALL_STATE(3839)] = 165216, - [SMALL_STATE(3840)] = 165245, - [SMALL_STATE(3841)] = 165274, - [SMALL_STATE(3842)] = 165295, - [SMALL_STATE(3843)] = 165312, - [SMALL_STATE(3844)] = 165329, - [SMALL_STATE(3845)] = 165360, - [SMALL_STATE(3846)] = 165379, - [SMALL_STATE(3847)] = 165396, - [SMALL_STATE(3848)] = 165413, - [SMALL_STATE(3849)] = 165430, - [SMALL_STATE(3850)] = 165447, - [SMALL_STATE(3851)] = 165466, - [SMALL_STATE(3852)] = 165495, - [SMALL_STATE(3853)] = 165526, - [SMALL_STATE(3854)] = 165549, - [SMALL_STATE(3855)] = 165574, - [SMALL_STATE(3856)] = 165603, - [SMALL_STATE(3857)] = 165632, - [SMALL_STATE(3858)] = 165655, - [SMALL_STATE(3859)] = 165680, - [SMALL_STATE(3860)] = 165709, - [SMALL_STATE(3861)] = 165734, - [SMALL_STATE(3862)] = 165763, - [SMALL_STATE(3863)] = 165788, - [SMALL_STATE(3864)] = 165817, - [SMALL_STATE(3865)] = 165846, - [SMALL_STATE(3866)] = 165877, - [SMALL_STATE(3867)] = 165906, - [SMALL_STATE(3868)] = 165937, - [SMALL_STATE(3869)] = 165956, - [SMALL_STATE(3870)] = 165975, - [SMALL_STATE(3871)] = 165998, - [SMALL_STATE(3872)] = 166027, - [SMALL_STATE(3873)] = 166056, - [SMALL_STATE(3874)] = 166085, - [SMALL_STATE(3875)] = 166114, - [SMALL_STATE(3876)] = 166137, - [SMALL_STATE(3877)] = 166166, - [SMALL_STATE(3878)] = 166191, - [SMALL_STATE(3879)] = 166216, - [SMALL_STATE(3880)] = 166245, - [SMALL_STATE(3881)] = 166264, - [SMALL_STATE(3882)] = 166283, - [SMALL_STATE(3883)] = 166302, - [SMALL_STATE(3884)] = 166321, - [SMALL_STATE(3885)] = 166340, - [SMALL_STATE(3886)] = 166371, - [SMALL_STATE(3887)] = 166400, - [SMALL_STATE(3888)] = 166425, - [SMALL_STATE(3889)] = 166454, - [SMALL_STATE(3890)] = 166473, - [SMALL_STATE(3891)] = 166498, - [SMALL_STATE(3892)] = 166527, - [SMALL_STATE(3893)] = 166558, - [SMALL_STATE(3894)] = 166577, - [SMALL_STATE(3895)] = 166608, - [SMALL_STATE(3896)] = 166629, - [SMALL_STATE(3897)] = 166658, - [SMALL_STATE(3898)] = 166683, - [SMALL_STATE(3899)] = 166706, - [SMALL_STATE(3900)] = 166727, - [SMALL_STATE(3901)] = 166746, - [SMALL_STATE(3902)] = 166771, - [SMALL_STATE(3903)] = 166794, - [SMALL_STATE(3904)] = 166818, - [SMALL_STATE(3905)] = 166842, - [SMALL_STATE(3906)] = 166870, - [SMALL_STATE(3907)] = 166898, - [SMALL_STATE(3908)] = 166922, - [SMALL_STATE(3909)] = 166940, - [SMALL_STATE(3910)] = 166962, - [SMALL_STATE(3911)] = 166982, - [SMALL_STATE(3912)] = 167006, - [SMALL_STATE(3913)] = 167024, - [SMALL_STATE(3914)] = 167042, - [SMALL_STATE(3915)] = 167066, - [SMALL_STATE(3916)] = 167090, - [SMALL_STATE(3917)] = 167120, - [SMALL_STATE(3918)] = 167144, - [SMALL_STATE(3919)] = 167168, - [SMALL_STATE(3920)] = 167186, - [SMALL_STATE(3921)] = 167214, - [SMALL_STATE(3922)] = 167246, - [SMALL_STATE(3923)] = 167264, - [SMALL_STATE(3924)] = 167288, - [SMALL_STATE(3925)] = 167316, - [SMALL_STATE(3926)] = 167338, - [SMALL_STATE(3927)] = 167354, - [SMALL_STATE(3928)] = 167370, - [SMALL_STATE(3929)] = 167394, - [SMALL_STATE(3930)] = 167410, - [SMALL_STATE(3931)] = 167442, - [SMALL_STATE(3932)] = 167458, - [SMALL_STATE(3933)] = 167482, - [SMALL_STATE(3934)] = 167498, - [SMALL_STATE(3935)] = 167514, - [SMALL_STATE(3936)] = 167542, - [SMALL_STATE(3937)] = 167574, - [SMALL_STATE(3938)] = 167592, - [SMALL_STATE(3939)] = 167620, - [SMALL_STATE(3940)] = 167650, - [SMALL_STATE(3941)] = 167678, - [SMALL_STATE(3942)] = 167708, - [SMALL_STATE(3943)] = 167736, - [SMALL_STATE(3944)] = 167766, - [SMALL_STATE(3945)] = 167796, - [SMALL_STATE(3946)] = 167824, - [SMALL_STATE(3947)] = 167854, - [SMALL_STATE(3948)] = 167882, - [SMALL_STATE(3949)] = 167898, - [SMALL_STATE(3950)] = 167920, - [SMALL_STATE(3951)] = 167950, - [SMALL_STATE(3952)] = 167980, - [SMALL_STATE(3953)] = 168012, - [SMALL_STATE(3954)] = 168044, - [SMALL_STATE(3955)] = 168066, - [SMALL_STATE(3956)] = 168094, - [SMALL_STATE(3957)] = 168126, - [SMALL_STATE(3958)] = 168148, - [SMALL_STATE(3959)] = 168168, - [SMALL_STATE(3960)] = 168184, - [SMALL_STATE(3961)] = 168202, - [SMALL_STATE(3962)] = 168220, - [SMALL_STATE(3963)] = 168248, - [SMALL_STATE(3964)] = 168278, - [SMALL_STATE(3965)] = 168308, - [SMALL_STATE(3966)] = 168336, - [SMALL_STATE(3967)] = 168354, - [SMALL_STATE(3968)] = 168384, - [SMALL_STATE(3969)] = 168414, - [SMALL_STATE(3970)] = 168438, - [SMALL_STATE(3971)] = 168454, - [SMALL_STATE(3972)] = 168476, - [SMALL_STATE(3973)] = 168496, - [SMALL_STATE(3974)] = 168512, - [SMALL_STATE(3975)] = 168530, - [SMALL_STATE(3976)] = 168558, - [SMALL_STATE(3977)] = 168576, - [SMALL_STATE(3978)] = 168604, - [SMALL_STATE(3979)] = 168622, - [SMALL_STATE(3980)] = 168652, - [SMALL_STATE(3981)] = 168674, - [SMALL_STATE(3982)] = 168693, - [SMALL_STATE(3983)] = 168722, - [SMALL_STATE(3984)] = 168743, - [SMALL_STATE(3985)] = 168764, - [SMALL_STATE(3986)] = 168779, - [SMALL_STATE(3987)] = 168794, - [SMALL_STATE(3988)] = 168809, - [SMALL_STATE(3989)] = 168824, - [SMALL_STATE(3990)] = 168853, - [SMALL_STATE(3991)] = 168882, - [SMALL_STATE(3992)] = 168903, - [SMALL_STATE(3993)] = 168918, - [SMALL_STATE(3994)] = 168933, - [SMALL_STATE(3995)] = 168962, - [SMALL_STATE(3996)] = 168985, - [SMALL_STATE(3997)] = 169012, - [SMALL_STATE(3998)] = 169041, - [SMALL_STATE(3999)] = 169062, - [SMALL_STATE(4000)] = 169091, - [SMALL_STATE(4001)] = 169120, - [SMALL_STATE(4002)] = 169149, - [SMALL_STATE(4003)] = 169172, - [SMALL_STATE(4004)] = 169201, - [SMALL_STATE(4005)] = 169230, - [SMALL_STATE(4006)] = 169259, - [SMALL_STATE(4007)] = 169284, - [SMALL_STATE(4008)] = 169305, - [SMALL_STATE(4009)] = 169326, - [SMALL_STATE(4010)] = 169355, - [SMALL_STATE(4011)] = 169376, - [SMALL_STATE(4012)] = 169405, - [SMALL_STATE(4013)] = 169434, - [SMALL_STATE(4014)] = 169463, - [SMALL_STATE(4015)] = 169492, - [SMALL_STATE(4016)] = 169521, - [SMALL_STATE(4017)] = 169544, - [SMALL_STATE(4018)] = 169573, - [SMALL_STATE(4019)] = 169598, - [SMALL_STATE(4020)] = 169627, - [SMALL_STATE(4021)] = 169654, - [SMALL_STATE(4022)] = 169683, - [SMALL_STATE(4023)] = 169712, - [SMALL_STATE(4024)] = 169741, - [SMALL_STATE(4025)] = 169764, - [SMALL_STATE(4026)] = 169793, - [SMALL_STATE(4027)] = 169822, - [SMALL_STATE(4028)] = 169851, - [SMALL_STATE(4029)] = 169880, - [SMALL_STATE(4030)] = 169909, - [SMALL_STATE(4031)] = 169928, - [SMALL_STATE(4032)] = 169957, - [SMALL_STATE(4033)] = 169986, - [SMALL_STATE(4034)] = 170015, - [SMALL_STATE(4035)] = 170044, - [SMALL_STATE(4036)] = 170073, - [SMALL_STATE(4037)] = 170100, - [SMALL_STATE(4038)] = 170127, - [SMALL_STATE(4039)] = 170156, - [SMALL_STATE(4040)] = 170185, - [SMALL_STATE(4041)] = 170210, - [SMALL_STATE(4042)] = 170237, - [SMALL_STATE(4043)] = 170266, - [SMALL_STATE(4044)] = 170291, - [SMALL_STATE(4045)] = 170310, - [SMALL_STATE(4046)] = 170333, - [SMALL_STATE(4047)] = 170354, - [SMALL_STATE(4048)] = 170375, - [SMALL_STATE(4049)] = 170394, - [SMALL_STATE(4050)] = 170423, - [SMALL_STATE(4051)] = 170452, - [SMALL_STATE(4052)] = 170481, - [SMALL_STATE(4053)] = 170510, - [SMALL_STATE(4054)] = 170539, - [SMALL_STATE(4055)] = 170562, - [SMALL_STATE(4056)] = 170591, - [SMALL_STATE(4057)] = 170618, - [SMALL_STATE(4058)] = 170639, - [SMALL_STATE(4059)] = 170662, - [SMALL_STATE(4060)] = 170683, - [SMALL_STATE(4061)] = 170704, - [SMALL_STATE(4062)] = 170733, - [SMALL_STATE(4063)] = 170762, - [SMALL_STATE(4064)] = 170783, - [SMALL_STATE(4065)] = 170806, - [SMALL_STATE(4066)] = 170835, - [SMALL_STATE(4067)] = 170858, - [SMALL_STATE(4068)] = 170881, - [SMALL_STATE(4069)] = 170910, - [SMALL_STATE(4070)] = 170939, - [SMALL_STATE(4071)] = 170966, - [SMALL_STATE(4072)] = 170987, - [SMALL_STATE(4073)] = 171010, - [SMALL_STATE(4074)] = 171033, - [SMALL_STATE(4075)] = 171056, - [SMALL_STATE(4076)] = 171085, - [SMALL_STATE(4077)] = 171106, - [SMALL_STATE(4078)] = 171133, - [SMALL_STATE(4079)] = 171162, - [SMALL_STATE(4080)] = 171187, - [SMALL_STATE(4081)] = 171210, - [SMALL_STATE(4082)] = 171231, - [SMALL_STATE(4083)] = 171250, - [SMALL_STATE(4084)] = 171267, - [SMALL_STATE(4085)] = 171290, - [SMALL_STATE(4086)] = 171313, - [SMALL_STATE(4087)] = 171336, - [SMALL_STATE(4088)] = 171355, - [SMALL_STATE(4089)] = 171384, - [SMALL_STATE(4090)] = 171405, - [SMALL_STATE(4091)] = 171434, - [SMALL_STATE(4092)] = 171458, - [SMALL_STATE(4093)] = 171478, - [SMALL_STATE(4094)] = 171500, - [SMALL_STATE(4095)] = 171518, - [SMALL_STATE(4096)] = 171544, - [SMALL_STATE(4097)] = 171570, - [SMALL_STATE(4098)] = 171596, - [SMALL_STATE(4099)] = 171620, - [SMALL_STATE(4100)] = 171642, - [SMALL_STATE(4101)] = 171664, - [SMALL_STATE(4102)] = 171690, - [SMALL_STATE(4103)] = 171708, - [SMALL_STATE(4104)] = 171734, - [SMALL_STATE(4105)] = 171760, - [SMALL_STATE(4106)] = 171786, - [SMALL_STATE(4107)] = 171804, - [SMALL_STATE(4108)] = 171826, - [SMALL_STATE(4109)] = 171850, - [SMALL_STATE(4110)] = 171870, - [SMALL_STATE(4111)] = 171894, - [SMALL_STATE(4112)] = 171916, - [SMALL_STATE(4113)] = 171942, - [SMALL_STATE(4114)] = 171968, - [SMALL_STATE(4115)] = 171994, - [SMALL_STATE(4116)] = 172020, - [SMALL_STATE(4117)] = 172044, - [SMALL_STATE(4118)] = 172068, - [SMALL_STATE(4119)] = 172092, - [SMALL_STATE(4120)] = 172116, - [SMALL_STATE(4121)] = 172142, - [SMALL_STATE(4122)] = 172166, - [SMALL_STATE(4123)] = 172190, - [SMALL_STATE(4124)] = 172214, - [SMALL_STATE(4125)] = 172234, - [SMALL_STATE(4126)] = 172260, - [SMALL_STATE(4127)] = 172282, - [SMALL_STATE(4128)] = 172304, - [SMALL_STATE(4129)] = 172330, - [SMALL_STATE(4130)] = 172356, - [SMALL_STATE(4131)] = 172382, - [SMALL_STATE(4132)] = 172404, - [SMALL_STATE(4133)] = 172430, - [SMALL_STATE(4134)] = 172456, - [SMALL_STATE(4135)] = 172482, - [SMALL_STATE(4136)] = 172504, - [SMALL_STATE(4137)] = 172530, - [SMALL_STATE(4138)] = 172554, - [SMALL_STATE(4139)] = 172580, - [SMALL_STATE(4140)] = 172606, - [SMALL_STATE(4141)] = 172630, - [SMALL_STATE(4142)] = 172656, - [SMALL_STATE(4143)] = 172682, - [SMALL_STATE(4144)] = 172708, - [SMALL_STATE(4145)] = 172732, - [SMALL_STATE(4146)] = 172758, - [SMALL_STATE(4147)] = 172784, - [SMALL_STATE(4148)] = 172808, - [SMALL_STATE(4149)] = 172832, - [SMALL_STATE(4150)] = 172856, - [SMALL_STATE(4151)] = 172882, - [SMALL_STATE(4152)] = 172906, - [SMALL_STATE(4153)] = 172932, - [SMALL_STATE(4154)] = 172956, - [SMALL_STATE(4155)] = 172974, - [SMALL_STATE(4156)] = 172998, - [SMALL_STATE(4157)] = 173024, - [SMALL_STATE(4158)] = 173050, - [SMALL_STATE(4159)] = 173072, - [SMALL_STATE(4160)] = 173098, - [SMALL_STATE(4161)] = 173120, - [SMALL_STATE(4162)] = 173146, - [SMALL_STATE(4163)] = 173172, - [SMALL_STATE(4164)] = 173186, - [SMALL_STATE(4165)] = 173204, - [SMALL_STATE(4166)] = 173230, - [SMALL_STATE(4167)] = 173246, - [SMALL_STATE(4168)] = 173272, - [SMALL_STATE(4169)] = 173298, - [SMALL_STATE(4170)] = 173324, - [SMALL_STATE(4171)] = 173348, - [SMALL_STATE(4172)] = 173372, - [SMALL_STATE(4173)] = 173396, - [SMALL_STATE(4174)] = 173420, - [SMALL_STATE(4175)] = 173446, - [SMALL_STATE(4176)] = 173468, - [SMALL_STATE(4177)] = 173494, - [SMALL_STATE(4178)] = 173520, - [SMALL_STATE(4179)] = 173544, - [SMALL_STATE(4180)] = 173568, - [SMALL_STATE(4181)] = 173584, - [SMALL_STATE(4182)] = 173598, - [SMALL_STATE(4183)] = 173616, - [SMALL_STATE(4184)] = 173642, - [SMALL_STATE(4185)] = 173668, - [SMALL_STATE(4186)] = 173694, - [SMALL_STATE(4187)] = 173720, - [SMALL_STATE(4188)] = 173738, - [SMALL_STATE(4189)] = 173764, - [SMALL_STATE(4190)] = 173788, - [SMALL_STATE(4191)] = 173814, - [SMALL_STATE(4192)] = 173840, - [SMALL_STATE(4193)] = 173866, - [SMALL_STATE(4194)] = 173892, - [SMALL_STATE(4195)] = 173918, - [SMALL_STATE(4196)] = 173944, - [SMALL_STATE(4197)] = 173966, - [SMALL_STATE(4198)] = 173992, - [SMALL_STATE(4199)] = 174018, - [SMALL_STATE(4200)] = 174044, - [SMALL_STATE(4201)] = 174070, - [SMALL_STATE(4202)] = 174094, - [SMALL_STATE(4203)] = 174118, - [SMALL_STATE(4204)] = 174142, - [SMALL_STATE(4205)] = 174166, - [SMALL_STATE(4206)] = 174190, - [SMALL_STATE(4207)] = 174214, - [SMALL_STATE(4208)] = 174238, - [SMALL_STATE(4209)] = 174264, - [SMALL_STATE(4210)] = 174282, - [SMALL_STATE(4211)] = 174308, - [SMALL_STATE(4212)] = 174334, - [SMALL_STATE(4213)] = 174358, - [SMALL_STATE(4214)] = 174376, - [SMALL_STATE(4215)] = 174402, - [SMALL_STATE(4216)] = 174428, - [SMALL_STATE(4217)] = 174454, - [SMALL_STATE(4218)] = 174480, - [SMALL_STATE(4219)] = 174506, - [SMALL_STATE(4220)] = 174532, - [SMALL_STATE(4221)] = 174558, - [SMALL_STATE(4222)] = 174582, - [SMALL_STATE(4223)] = 174606, - [SMALL_STATE(4224)] = 174632, - [SMALL_STATE(4225)] = 174656, - [SMALL_STATE(4226)] = 174682, - [SMALL_STATE(4227)] = 174708, - [SMALL_STATE(4228)] = 174732, - [SMALL_STATE(4229)] = 174756, - [SMALL_STATE(4230)] = 174780, - [SMALL_STATE(4231)] = 174804, - [SMALL_STATE(4232)] = 174830, - [SMALL_STATE(4233)] = 174856, - [SMALL_STATE(4234)] = 174882, - [SMALL_STATE(4235)] = 174908, - [SMALL_STATE(4236)] = 174934, - [SMALL_STATE(4237)] = 174958, - [SMALL_STATE(4238)] = 174982, - [SMALL_STATE(4239)] = 175008, - [SMALL_STATE(4240)] = 175034, - [SMALL_STATE(4241)] = 175056, - [SMALL_STATE(4242)] = 175082, - [SMALL_STATE(4243)] = 175100, - [SMALL_STATE(4244)] = 175126, - [SMALL_STATE(4245)] = 175152, - [SMALL_STATE(4246)] = 175178, - [SMALL_STATE(4247)] = 175204, - [SMALL_STATE(4248)] = 175228, - [SMALL_STATE(4249)] = 175254, - [SMALL_STATE(4250)] = 175280, - [SMALL_STATE(4251)] = 175306, - [SMALL_STATE(4252)] = 175332, - [SMALL_STATE(4253)] = 175358, - [SMALL_STATE(4254)] = 175384, - [SMALL_STATE(4255)] = 175408, - [SMALL_STATE(4256)] = 175432, - [SMALL_STATE(4257)] = 175456, - [SMALL_STATE(4258)] = 175480, - [SMALL_STATE(4259)] = 175506, - [SMALL_STATE(4260)] = 175528, - [SMALL_STATE(4261)] = 175554, - [SMALL_STATE(4262)] = 175580, - [SMALL_STATE(4263)] = 175606, - [SMALL_STATE(4264)] = 175630, - [SMALL_STATE(4265)] = 175647, - [SMALL_STATE(4266)] = 175662, - [SMALL_STATE(4267)] = 175679, - [SMALL_STATE(4268)] = 175700, - [SMALL_STATE(4269)] = 175713, - [SMALL_STATE(4270)] = 175734, - [SMALL_STATE(4271)] = 175757, - [SMALL_STATE(4272)] = 175774, - [SMALL_STATE(4273)] = 175795, - [SMALL_STATE(4274)] = 175816, - [SMALL_STATE(4275)] = 175833, - [SMALL_STATE(4276)] = 175854, - [SMALL_STATE(4277)] = 175871, - [SMALL_STATE(4278)] = 175894, - [SMALL_STATE(4279)] = 175907, - [SMALL_STATE(4280)] = 175928, - [SMALL_STATE(4281)] = 175949, - [SMALL_STATE(4282)] = 175970, - [SMALL_STATE(4283)] = 175993, - [SMALL_STATE(4284)] = 176014, - [SMALL_STATE(4285)] = 176035, - [SMALL_STATE(4286)] = 176056, - [SMALL_STATE(4287)] = 176071, - [SMALL_STATE(4288)] = 176094, - [SMALL_STATE(4289)] = 176115, - [SMALL_STATE(4290)] = 176132, - [SMALL_STATE(4291)] = 176153, - [SMALL_STATE(4292)] = 176174, - [SMALL_STATE(4293)] = 176197, - [SMALL_STATE(4294)] = 176216, - [SMALL_STATE(4295)] = 176233, - [SMALL_STATE(4296)] = 176250, - [SMALL_STATE(4297)] = 176271, - [SMALL_STATE(4298)] = 176292, - [SMALL_STATE(4299)] = 176315, - [SMALL_STATE(4300)] = 176336, - [SMALL_STATE(4301)] = 176359, - [SMALL_STATE(4302)] = 176374, - [SMALL_STATE(4303)] = 176391, - [SMALL_STATE(4304)] = 176412, - [SMALL_STATE(4305)] = 176429, - [SMALL_STATE(4306)] = 176452, - [SMALL_STATE(4307)] = 176475, - [SMALL_STATE(4308)] = 176492, - [SMALL_STATE(4309)] = 176509, - [SMALL_STATE(4310)] = 176526, - [SMALL_STATE(4311)] = 176543, - [SMALL_STATE(4312)] = 176556, - [SMALL_STATE(4313)] = 176577, - [SMALL_STATE(4314)] = 176594, - [SMALL_STATE(4315)] = 176615, - [SMALL_STATE(4316)] = 176630, - [SMALL_STATE(4317)] = 176651, - [SMALL_STATE(4318)] = 176672, - [SMALL_STATE(4319)] = 176693, - [SMALL_STATE(4320)] = 176714, - [SMALL_STATE(4321)] = 176731, - [SMALL_STATE(4322)] = 176752, - [SMALL_STATE(4323)] = 176773, - [SMALL_STATE(4324)] = 176786, - [SMALL_STATE(4325)] = 176799, - [SMALL_STATE(4326)] = 176822, - [SMALL_STATE(4327)] = 176843, - [SMALL_STATE(4328)] = 176864, - [SMALL_STATE(4329)] = 176885, - [SMALL_STATE(4330)] = 176908, - [SMALL_STATE(4331)] = 176931, - [SMALL_STATE(4332)] = 176954, - [SMALL_STATE(4333)] = 176975, - [SMALL_STATE(4334)] = 176990, - [SMALL_STATE(4335)] = 177007, - [SMALL_STATE(4336)] = 177024, - [SMALL_STATE(4337)] = 177041, - [SMALL_STATE(4338)] = 177062, - [SMALL_STATE(4339)] = 177079, - [SMALL_STATE(4340)] = 177100, - [SMALL_STATE(4341)] = 177117, - [SMALL_STATE(4342)] = 177138, - [SMALL_STATE(4343)] = 177155, - [SMALL_STATE(4344)] = 177176, - [SMALL_STATE(4345)] = 177197, - [SMALL_STATE(4346)] = 177212, - [SMALL_STATE(4347)] = 177233, - [SMALL_STATE(4348)] = 177254, - [SMALL_STATE(4349)] = 177277, - [SMALL_STATE(4350)] = 177298, - [SMALL_STATE(4351)] = 177311, - [SMALL_STATE(4352)] = 177334, - [SMALL_STATE(4353)] = 177355, - [SMALL_STATE(4354)] = 177372, - [SMALL_STATE(4355)] = 177389, - [SMALL_STATE(4356)] = 177402, - [SMALL_STATE(4357)] = 177425, - [SMALL_STATE(4358)] = 177438, - [SMALL_STATE(4359)] = 177455, - [SMALL_STATE(4360)] = 177478, - [SMALL_STATE(4361)] = 177495, - [SMALL_STATE(4362)] = 177512, - [SMALL_STATE(4363)] = 177529, - [SMALL_STATE(4364)] = 177552, - [SMALL_STATE(4365)] = 177569, - [SMALL_STATE(4366)] = 177582, - [SMALL_STATE(4367)] = 177603, - [SMALL_STATE(4368)] = 177626, - [SMALL_STATE(4369)] = 177649, - [SMALL_STATE(4370)] = 177662, - [SMALL_STATE(4371)] = 177681, - [SMALL_STATE(4372)] = 177704, - [SMALL_STATE(4373)] = 177725, - [SMALL_STATE(4374)] = 177746, - [SMALL_STATE(4375)] = 177769, - [SMALL_STATE(4376)] = 177784, - [SMALL_STATE(4377)] = 177799, - [SMALL_STATE(4378)] = 177822, - [SMALL_STATE(4379)] = 177835, - [SMALL_STATE(4380)] = 177848, - [SMALL_STATE(4381)] = 177869, - [SMALL_STATE(4382)] = 177882, - [SMALL_STATE(4383)] = 177903, - [SMALL_STATE(4384)] = 177924, - [SMALL_STATE(4385)] = 177941, - [SMALL_STATE(4386)] = 177956, - [SMALL_STATE(4387)] = 177977, - [SMALL_STATE(4388)] = 177996, - [SMALL_STATE(4389)] = 178013, - [SMALL_STATE(4390)] = 178028, - [SMALL_STATE(4391)] = 178049, - [SMALL_STATE(4392)] = 178070, - [SMALL_STATE(4393)] = 178091, - [SMALL_STATE(4394)] = 178112, - [SMALL_STATE(4395)] = 178129, - [SMALL_STATE(4396)] = 178146, - [SMALL_STATE(4397)] = 178169, - [SMALL_STATE(4398)] = 178186, - [SMALL_STATE(4399)] = 178203, - [SMALL_STATE(4400)] = 178220, - [SMALL_STATE(4401)] = 178241, - [SMALL_STATE(4402)] = 178258, - [SMALL_STATE(4403)] = 178278, - [SMALL_STATE(4404)] = 178298, - [SMALL_STATE(4405)] = 178318, - [SMALL_STATE(4406)] = 178330, - [SMALL_STATE(4407)] = 178342, - [SMALL_STATE(4408)] = 178354, - [SMALL_STATE(4409)] = 178374, - [SMALL_STATE(4410)] = 178386, - [SMALL_STATE(4411)] = 178398, - [SMALL_STATE(4412)] = 178410, - [SMALL_STATE(4413)] = 178422, - [SMALL_STATE(4414)] = 178434, - [SMALL_STATE(4415)] = 178454, - [SMALL_STATE(4416)] = 178470, - [SMALL_STATE(4417)] = 178490, - [SMALL_STATE(4418)] = 178510, - [SMALL_STATE(4419)] = 178530, - [SMALL_STATE(4420)] = 178548, - [SMALL_STATE(4421)] = 178568, - [SMALL_STATE(4422)] = 178586, - [SMALL_STATE(4423)] = 178600, - [SMALL_STATE(4424)] = 178616, - [SMALL_STATE(4425)] = 178636, - [SMALL_STATE(4426)] = 178654, - [SMALL_STATE(4427)] = 178674, - [SMALL_STATE(4428)] = 178686, - [SMALL_STATE(4429)] = 178698, - [SMALL_STATE(4430)] = 178718, - [SMALL_STATE(4431)] = 178734, - [SMALL_STATE(4432)] = 178750, - [SMALL_STATE(4433)] = 178762, - [SMALL_STATE(4434)] = 178774, - [SMALL_STATE(4435)] = 178792, - [SMALL_STATE(4436)] = 178812, - [SMALL_STATE(4437)] = 178832, - [SMALL_STATE(4438)] = 178844, - [SMALL_STATE(4439)] = 178856, - [SMALL_STATE(4440)] = 178868, - [SMALL_STATE(4441)] = 178888, - [SMALL_STATE(4442)] = 178908, - [SMALL_STATE(4443)] = 178924, - [SMALL_STATE(4444)] = 178944, - [SMALL_STATE(4445)] = 178956, - [SMALL_STATE(4446)] = 178968, - [SMALL_STATE(4447)] = 178980, - [SMALL_STATE(4448)] = 179000, - [SMALL_STATE(4449)] = 179012, - [SMALL_STATE(4450)] = 179032, - [SMALL_STATE(4451)] = 179052, - [SMALL_STATE(4452)] = 179072, - [SMALL_STATE(4453)] = 179092, - [SMALL_STATE(4454)] = 179112, - [SMALL_STATE(4455)] = 179124, - [SMALL_STATE(4456)] = 179136, - [SMALL_STATE(4457)] = 179148, - [SMALL_STATE(4458)] = 179168, - [SMALL_STATE(4459)] = 179186, - [SMALL_STATE(4460)] = 179206, - [SMALL_STATE(4461)] = 179226, - [SMALL_STATE(4462)] = 179246, - [SMALL_STATE(4463)] = 179266, - [SMALL_STATE(4464)] = 179286, - [SMALL_STATE(4465)] = 179306, - [SMALL_STATE(4466)] = 179326, - [SMALL_STATE(4467)] = 179346, - [SMALL_STATE(4468)] = 179366, - [SMALL_STATE(4469)] = 179386, - [SMALL_STATE(4470)] = 179404, - [SMALL_STATE(4471)] = 179424, - [SMALL_STATE(4472)] = 179440, - [SMALL_STATE(4473)] = 179460, - [SMALL_STATE(4474)] = 179472, - [SMALL_STATE(4475)] = 179492, - [SMALL_STATE(4476)] = 179512, - [SMALL_STATE(4477)] = 179524, - [SMALL_STATE(4478)] = 179544, - [SMALL_STATE(4479)] = 179564, - [SMALL_STATE(4480)] = 179584, - [SMALL_STATE(4481)] = 179602, - [SMALL_STATE(4482)] = 179620, - [SMALL_STATE(4483)] = 179640, - [SMALL_STATE(4484)] = 179652, - [SMALL_STATE(4485)] = 179666, - [SMALL_STATE(4486)] = 179686, - [SMALL_STATE(4487)] = 179706, - [SMALL_STATE(4488)] = 179722, - [SMALL_STATE(4489)] = 179742, - [SMALL_STATE(4490)] = 179762, - [SMALL_STATE(4491)] = 179782, - [SMALL_STATE(4492)] = 179802, - [SMALL_STATE(4493)] = 179818, - [SMALL_STATE(4494)] = 179838, - [SMALL_STATE(4495)] = 179858, - [SMALL_STATE(4496)] = 179878, - [SMALL_STATE(4497)] = 179898, - [SMALL_STATE(4498)] = 179918, - [SMALL_STATE(4499)] = 179936, - [SMALL_STATE(4500)] = 179956, - [SMALL_STATE(4501)] = 179976, - [SMALL_STATE(4502)] = 179988, - [SMALL_STATE(4503)] = 180008, - [SMALL_STATE(4504)] = 180028, - [SMALL_STATE(4505)] = 180040, - [SMALL_STATE(4506)] = 180058, - [SMALL_STATE(4507)] = 180078, - [SMALL_STATE(4508)] = 180090, - [SMALL_STATE(4509)] = 180110, - [SMALL_STATE(4510)] = 180130, - [SMALL_STATE(4511)] = 180144, - [SMALL_STATE(4512)] = 180164, - [SMALL_STATE(4513)] = 180180, - [SMALL_STATE(4514)] = 180192, - [SMALL_STATE(4515)] = 180212, - [SMALL_STATE(4516)] = 180224, - [SMALL_STATE(4517)] = 180244, - [SMALL_STATE(4518)] = 180262, - [SMALL_STATE(4519)] = 180274, - [SMALL_STATE(4520)] = 180286, - [SMALL_STATE(4521)] = 180298, - [SMALL_STATE(4522)] = 180318, - [SMALL_STATE(4523)] = 180336, - [SMALL_STATE(4524)] = 180356, - [SMALL_STATE(4525)] = 180376, - [SMALL_STATE(4526)] = 180396, - [SMALL_STATE(4527)] = 180412, - [SMALL_STATE(4528)] = 180432, - [SMALL_STATE(4529)] = 180452, - [SMALL_STATE(4530)] = 180472, - [SMALL_STATE(4531)] = 180488, - [SMALL_STATE(4532)] = 180500, - [SMALL_STATE(4533)] = 180520, - [SMALL_STATE(4534)] = 180532, - [SMALL_STATE(4535)] = 180544, - [SMALL_STATE(4536)] = 180564, - [SMALL_STATE(4537)] = 180584, - [SMALL_STATE(4538)] = 180604, - [SMALL_STATE(4539)] = 180624, - [SMALL_STATE(4540)] = 180636, - [SMALL_STATE(4541)] = 180654, - [SMALL_STATE(4542)] = 180674, - [SMALL_STATE(4543)] = 180686, - [SMALL_STATE(4544)] = 180706, - [SMALL_STATE(4545)] = 180726, - [SMALL_STATE(4546)] = 180744, - [SMALL_STATE(4547)] = 180764, - [SMALL_STATE(4548)] = 180782, - [SMALL_STATE(4549)] = 180802, - [SMALL_STATE(4550)] = 180822, - [SMALL_STATE(4551)] = 180842, - [SMALL_STATE(4552)] = 180858, - [SMALL_STATE(4553)] = 180874, - [SMALL_STATE(4554)] = 180892, - [SMALL_STATE(4555)] = 180906, - [SMALL_STATE(4556)] = 180922, - [SMALL_STATE(4557)] = 180942, - [SMALL_STATE(4558)] = 180962, - [SMALL_STATE(4559)] = 180982, - [SMALL_STATE(4560)] = 180996, - [SMALL_STATE(4561)] = 181016, - [SMALL_STATE(4562)] = 181036, - [SMALL_STATE(4563)] = 181056, - [SMALL_STATE(4564)] = 181076, - [SMALL_STATE(4565)] = 181092, - [SMALL_STATE(4566)] = 181112, - [SMALL_STATE(4567)] = 181124, - [SMALL_STATE(4568)] = 181144, - [SMALL_STATE(4569)] = 181156, - [SMALL_STATE(4570)] = 181168, - [SMALL_STATE(4571)] = 181184, - [SMALL_STATE(4572)] = 181196, - [SMALL_STATE(4573)] = 181208, - [SMALL_STATE(4574)] = 181220, - [SMALL_STATE(4575)] = 181232, - [SMALL_STATE(4576)] = 181252, - [SMALL_STATE(4577)] = 181264, - [SMALL_STATE(4578)] = 181276, - [SMALL_STATE(4579)] = 181296, - [SMALL_STATE(4580)] = 181316, - [SMALL_STATE(4581)] = 181332, - [SMALL_STATE(4582)] = 181346, - [SMALL_STATE(4583)] = 181364, - [SMALL_STATE(4584)] = 181380, - [SMALL_STATE(4585)] = 181392, - [SMALL_STATE(4586)] = 181404, - [SMALL_STATE(4587)] = 181424, - [SMALL_STATE(4588)] = 181440, - [SMALL_STATE(4589)] = 181460, - [SMALL_STATE(4590)] = 181478, - [SMALL_STATE(4591)] = 181496, - [SMALL_STATE(4592)] = 181516, - [SMALL_STATE(4593)] = 181528, - [SMALL_STATE(4594)] = 181539, - [SMALL_STATE(4595)] = 181550, - [SMALL_STATE(4596)] = 181567, - [SMALL_STATE(4597)] = 181584, - [SMALL_STATE(4598)] = 181599, - [SMALL_STATE(4599)] = 181614, - [SMALL_STATE(4600)] = 181631, - [SMALL_STATE(4601)] = 181642, - [SMALL_STATE(4602)] = 181653, - [SMALL_STATE(4603)] = 181664, - [SMALL_STATE(4604)] = 181675, - [SMALL_STATE(4605)] = 181692, - [SMALL_STATE(4606)] = 181703, - [SMALL_STATE(4607)] = 181714, - [SMALL_STATE(4608)] = 181725, - [SMALL_STATE(4609)] = 181736, - [SMALL_STATE(4610)] = 181747, - [SMALL_STATE(4611)] = 181758, - [SMALL_STATE(4612)] = 181769, - [SMALL_STATE(4613)] = 181780, - [SMALL_STATE(4614)] = 181791, - [SMALL_STATE(4615)] = 181802, - [SMALL_STATE(4616)] = 181817, - [SMALL_STATE(4617)] = 181830, - [SMALL_STATE(4618)] = 181841, - [SMALL_STATE(4619)] = 181858, - [SMALL_STATE(4620)] = 181873, - [SMALL_STATE(4621)] = 181890, - [SMALL_STATE(4622)] = 181907, - [SMALL_STATE(4623)] = 181922, - [SMALL_STATE(4624)] = 181939, - [SMALL_STATE(4625)] = 181954, - [SMALL_STATE(4626)] = 181971, - [SMALL_STATE(4627)] = 181982, - [SMALL_STATE(4628)] = 181997, - [SMALL_STATE(4629)] = 182008, - [SMALL_STATE(4630)] = 182025, - [SMALL_STATE(4631)] = 182036, - [SMALL_STATE(4632)] = 182053, - [SMALL_STATE(4633)] = 182068, - [SMALL_STATE(4634)] = 182079, - [SMALL_STATE(4635)] = 182094, - [SMALL_STATE(4636)] = 182109, - [SMALL_STATE(4637)] = 182126, - [SMALL_STATE(4638)] = 182143, - [SMALL_STATE(4639)] = 182158, - [SMALL_STATE(4640)] = 182175, - [SMALL_STATE(4641)] = 182186, - [SMALL_STATE(4642)] = 182203, - [SMALL_STATE(4643)] = 182214, - [SMALL_STATE(4644)] = 182225, - [SMALL_STATE(4645)] = 182242, - [SMALL_STATE(4646)] = 182257, - [SMALL_STATE(4647)] = 182268, - [SMALL_STATE(4648)] = 182279, - [SMALL_STATE(4649)] = 182294, - [SMALL_STATE(4650)] = 182309, - [SMALL_STATE(4651)] = 182320, - [SMALL_STATE(4652)] = 182333, - [SMALL_STATE(4653)] = 182348, - [SMALL_STATE(4654)] = 182359, - [SMALL_STATE(4655)] = 182370, - [SMALL_STATE(4656)] = 182383, - [SMALL_STATE(4657)] = 182394, - [SMALL_STATE(4658)] = 182411, - [SMALL_STATE(4659)] = 182422, - [SMALL_STATE(4660)] = 182439, - [SMALL_STATE(4661)] = 182454, - [SMALL_STATE(4662)] = 182471, - [SMALL_STATE(4663)] = 182482, - [SMALL_STATE(4664)] = 182497, - [SMALL_STATE(4665)] = 182514, - [SMALL_STATE(4666)] = 182531, - [SMALL_STATE(4667)] = 182542, - [SMALL_STATE(4668)] = 182553, - [SMALL_STATE(4669)] = 182564, - [SMALL_STATE(4670)] = 182581, - [SMALL_STATE(4671)] = 182592, - [SMALL_STATE(4672)] = 182603, - [SMALL_STATE(4673)] = 182620, - [SMALL_STATE(4674)] = 182637, - [SMALL_STATE(4675)] = 182648, - [SMALL_STATE(4676)] = 182659, - [SMALL_STATE(4677)] = 182674, - [SMALL_STATE(4678)] = 182685, - [SMALL_STATE(4679)] = 182700, - [SMALL_STATE(4680)] = 182713, - [SMALL_STATE(4681)] = 182724, - [SMALL_STATE(4682)] = 182735, - [SMALL_STATE(4683)] = 182746, - [SMALL_STATE(4684)] = 182761, - [SMALL_STATE(4685)] = 182778, - [SMALL_STATE(4686)] = 182795, - [SMALL_STATE(4687)] = 182806, - [SMALL_STATE(4688)] = 182821, - [SMALL_STATE(4689)] = 182838, - [SMALL_STATE(4690)] = 182855, - [SMALL_STATE(4691)] = 182872, - [SMALL_STATE(4692)] = 182883, - [SMALL_STATE(4693)] = 182894, - [SMALL_STATE(4694)] = 182909, - [SMALL_STATE(4695)] = 182924, - [SMALL_STATE(4696)] = 182941, - [SMALL_STATE(4697)] = 182956, - [SMALL_STATE(4698)] = 182967, - [SMALL_STATE(4699)] = 182984, - [SMALL_STATE(4700)] = 183001, - [SMALL_STATE(4701)] = 183016, - [SMALL_STATE(4702)] = 183033, - [SMALL_STATE(4703)] = 183048, - [SMALL_STATE(4704)] = 183065, - [SMALL_STATE(4705)] = 183076, - [SMALL_STATE(4706)] = 183091, - [SMALL_STATE(4707)] = 183106, - [SMALL_STATE(4708)] = 183123, - [SMALL_STATE(4709)] = 183134, - [SMALL_STATE(4710)] = 183151, - [SMALL_STATE(4711)] = 183162, - [SMALL_STATE(4712)] = 183179, - [SMALL_STATE(4713)] = 183196, - [SMALL_STATE(4714)] = 183213, - [SMALL_STATE(4715)] = 183228, - [SMALL_STATE(4716)] = 183243, - [SMALL_STATE(4717)] = 183254, - [SMALL_STATE(4718)] = 183265, - [SMALL_STATE(4719)] = 183280, - [SMALL_STATE(4720)] = 183291, - [SMALL_STATE(4721)] = 183304, - [SMALL_STATE(4722)] = 183315, - [SMALL_STATE(4723)] = 183326, - [SMALL_STATE(4724)] = 183337, - [SMALL_STATE(4725)] = 183348, - [SMALL_STATE(4726)] = 183359, - [SMALL_STATE(4727)] = 183370, - [SMALL_STATE(4728)] = 183381, - [SMALL_STATE(4729)] = 183392, - [SMALL_STATE(4730)] = 183409, - [SMALL_STATE(4731)] = 183424, - [SMALL_STATE(4732)] = 183435, - [SMALL_STATE(4733)] = 183450, - [SMALL_STATE(4734)] = 183461, - [SMALL_STATE(4735)] = 183472, - [SMALL_STATE(4736)] = 183489, - [SMALL_STATE(4737)] = 183500, - [SMALL_STATE(4738)] = 183517, - [SMALL_STATE(4739)] = 183532, - [SMALL_STATE(4740)] = 183549, - [SMALL_STATE(4741)] = 183560, - [SMALL_STATE(4742)] = 183571, - [SMALL_STATE(4743)] = 183582, - [SMALL_STATE(4744)] = 183593, - [SMALL_STATE(4745)] = 183604, - [SMALL_STATE(4746)] = 183615, - [SMALL_STATE(4747)] = 183630, - [SMALL_STATE(4748)] = 183645, - [SMALL_STATE(4749)] = 183656, - [SMALL_STATE(4750)] = 183667, - [SMALL_STATE(4751)] = 183678, - [SMALL_STATE(4752)] = 183693, - [SMALL_STATE(4753)] = 183710, - [SMALL_STATE(4754)] = 183725, - [SMALL_STATE(4755)] = 183736, - [SMALL_STATE(4756)] = 183751, - [SMALL_STATE(4757)] = 183768, - [SMALL_STATE(4758)] = 183779, - [SMALL_STATE(4759)] = 183790, - [SMALL_STATE(4760)] = 183807, - [SMALL_STATE(4761)] = 183818, - [SMALL_STATE(4762)] = 183829, - [SMALL_STATE(4763)] = 183840, - [SMALL_STATE(4764)] = 183851, - [SMALL_STATE(4765)] = 183868, - [SMALL_STATE(4766)] = 183883, - [SMALL_STATE(4767)] = 183897, - [SMALL_STATE(4768)] = 183911, - [SMALL_STATE(4769)] = 183925, - [SMALL_STATE(4770)] = 183939, - [SMALL_STATE(4771)] = 183953, - [SMALL_STATE(4772)] = 183967, - [SMALL_STATE(4773)] = 183981, - [SMALL_STATE(4774)] = 183995, - [SMALL_STATE(4775)] = 184009, - [SMALL_STATE(4776)] = 184023, - [SMALL_STATE(4777)] = 184037, - [SMALL_STATE(4778)] = 184051, - [SMALL_STATE(4779)] = 184065, - [SMALL_STATE(4780)] = 184079, - [SMALL_STATE(4781)] = 184093, - [SMALL_STATE(4782)] = 184107, - [SMALL_STATE(4783)] = 184121, - [SMALL_STATE(4784)] = 184135, - [SMALL_STATE(4785)] = 184149, - [SMALL_STATE(4786)] = 184163, - [SMALL_STATE(4787)] = 184177, - [SMALL_STATE(4788)] = 184191, - [SMALL_STATE(4789)] = 184205, - [SMALL_STATE(4790)] = 184219, - [SMALL_STATE(4791)] = 184233, - [SMALL_STATE(4792)] = 184247, - [SMALL_STATE(4793)] = 184259, - [SMALL_STATE(4794)] = 184273, - [SMALL_STATE(4795)] = 184287, - [SMALL_STATE(4796)] = 184301, - [SMALL_STATE(4797)] = 184315, - [SMALL_STATE(4798)] = 184329, - [SMALL_STATE(4799)] = 184343, - [SMALL_STATE(4800)] = 184357, - [SMALL_STATE(4801)] = 184371, - [SMALL_STATE(4802)] = 184385, - [SMALL_STATE(4803)] = 184399, - [SMALL_STATE(4804)] = 184413, - [SMALL_STATE(4805)] = 184427, - [SMALL_STATE(4806)] = 184441, - [SMALL_STATE(4807)] = 184455, - [SMALL_STATE(4808)] = 184469, - [SMALL_STATE(4809)] = 184483, - [SMALL_STATE(4810)] = 184497, - [SMALL_STATE(4811)] = 184511, - [SMALL_STATE(4812)] = 184525, - [SMALL_STATE(4813)] = 184539, - [SMALL_STATE(4814)] = 184553, - [SMALL_STATE(4815)] = 184567, - [SMALL_STATE(4816)] = 184581, - [SMALL_STATE(4817)] = 184593, - [SMALL_STATE(4818)] = 184607, - [SMALL_STATE(4819)] = 184621, - [SMALL_STATE(4820)] = 184635, - [SMALL_STATE(4821)] = 184649, - [SMALL_STATE(4822)] = 184663, - [SMALL_STATE(4823)] = 184677, - [SMALL_STATE(4824)] = 184691, - [SMALL_STATE(4825)] = 184705, - [SMALL_STATE(4826)] = 184719, - [SMALL_STATE(4827)] = 184733, - [SMALL_STATE(4828)] = 184747, - [SMALL_STATE(4829)] = 184761, - [SMALL_STATE(4830)] = 184775, - [SMALL_STATE(4831)] = 184789, - [SMALL_STATE(4832)] = 184803, - [SMALL_STATE(4833)] = 184817, - [SMALL_STATE(4834)] = 184831, - [SMALL_STATE(4835)] = 184845, - [SMALL_STATE(4836)] = 184859, - [SMALL_STATE(4837)] = 184873, - [SMALL_STATE(4838)] = 184887, - [SMALL_STATE(4839)] = 184901, - [SMALL_STATE(4840)] = 184915, - [SMALL_STATE(4841)] = 184929, - [SMALL_STATE(4842)] = 184943, - [SMALL_STATE(4843)] = 184957, - [SMALL_STATE(4844)] = 184971, - [SMALL_STATE(4845)] = 184985, - [SMALL_STATE(4846)] = 184999, - [SMALL_STATE(4847)] = 185013, - [SMALL_STATE(4848)] = 185027, - [SMALL_STATE(4849)] = 185039, - [SMALL_STATE(4850)] = 185053, - [SMALL_STATE(4851)] = 185067, - [SMALL_STATE(4852)] = 185081, - [SMALL_STATE(4853)] = 185095, - [SMALL_STATE(4854)] = 185107, - [SMALL_STATE(4855)] = 185121, - [SMALL_STATE(4856)] = 185131, - [SMALL_STATE(4857)] = 185145, - [SMALL_STATE(4858)] = 185159, - [SMALL_STATE(4859)] = 185173, - [SMALL_STATE(4860)] = 185187, - [SMALL_STATE(4861)] = 185201, - [SMALL_STATE(4862)] = 185215, - [SMALL_STATE(4863)] = 185229, - [SMALL_STATE(4864)] = 185243, - [SMALL_STATE(4865)] = 185257, - [SMALL_STATE(4866)] = 185271, - [SMALL_STATE(4867)] = 185285, - [SMALL_STATE(4868)] = 185299, - [SMALL_STATE(4869)] = 185313, - [SMALL_STATE(4870)] = 185327, - [SMALL_STATE(4871)] = 185341, - [SMALL_STATE(4872)] = 185355, - [SMALL_STATE(4873)] = 185369, - [SMALL_STATE(4874)] = 185383, - [SMALL_STATE(4875)] = 185397, - [SMALL_STATE(4876)] = 185411, - [SMALL_STATE(4877)] = 185425, - [SMALL_STATE(4878)] = 185439, - [SMALL_STATE(4879)] = 185453, - [SMALL_STATE(4880)] = 185467, - [SMALL_STATE(4881)] = 185481, - [SMALL_STATE(4882)] = 185495, - [SMALL_STATE(4883)] = 185509, - [SMALL_STATE(4884)] = 185523, - [SMALL_STATE(4885)] = 185537, - [SMALL_STATE(4886)] = 185551, - [SMALL_STATE(4887)] = 185565, - [SMALL_STATE(4888)] = 185579, - [SMALL_STATE(4889)] = 185593, - [SMALL_STATE(4890)] = 185607, - [SMALL_STATE(4891)] = 185621, - [SMALL_STATE(4892)] = 185635, - [SMALL_STATE(4893)] = 185649, - [SMALL_STATE(4894)] = 185663, - [SMALL_STATE(4895)] = 185677, - [SMALL_STATE(4896)] = 185691, - [SMALL_STATE(4897)] = 185705, - [SMALL_STATE(4898)] = 185719, - [SMALL_STATE(4899)] = 185731, - [SMALL_STATE(4900)] = 185745, - [SMALL_STATE(4901)] = 185755, - [SMALL_STATE(4902)] = 185769, - [SMALL_STATE(4903)] = 185783, - [SMALL_STATE(4904)] = 185797, - [SMALL_STATE(4905)] = 185811, - [SMALL_STATE(4906)] = 185825, - [SMALL_STATE(4907)] = 185839, - [SMALL_STATE(4908)] = 185853, - [SMALL_STATE(4909)] = 185867, - [SMALL_STATE(4910)] = 185881, - [SMALL_STATE(4911)] = 185895, - [SMALL_STATE(4912)] = 185909, - [SMALL_STATE(4913)] = 185923, - [SMALL_STATE(4914)] = 185937, - [SMALL_STATE(4915)] = 185951, - [SMALL_STATE(4916)] = 185965, - [SMALL_STATE(4917)] = 185979, - [SMALL_STATE(4918)] = 185993, - [SMALL_STATE(4919)] = 186007, - [SMALL_STATE(4920)] = 186021, - [SMALL_STATE(4921)] = 186035, - [SMALL_STATE(4922)] = 186049, - [SMALL_STATE(4923)] = 186059, - [SMALL_STATE(4924)] = 186073, - [SMALL_STATE(4925)] = 186087, - [SMALL_STATE(4926)] = 186101, - [SMALL_STATE(4927)] = 186115, - [SMALL_STATE(4928)] = 186129, - [SMALL_STATE(4929)] = 186143, - [SMALL_STATE(4930)] = 186157, - [SMALL_STATE(4931)] = 186171, - [SMALL_STATE(4932)] = 186185, - [SMALL_STATE(4933)] = 186199, - [SMALL_STATE(4934)] = 186213, - [SMALL_STATE(4935)] = 186227, - [SMALL_STATE(4936)] = 186241, - [SMALL_STATE(4937)] = 186255, - [SMALL_STATE(4938)] = 186269, - [SMALL_STATE(4939)] = 186283, - [SMALL_STATE(4940)] = 186295, - [SMALL_STATE(4941)] = 186309, - [SMALL_STATE(4942)] = 186323, - [SMALL_STATE(4943)] = 186337, - [SMALL_STATE(4944)] = 186351, - [SMALL_STATE(4945)] = 186365, - [SMALL_STATE(4946)] = 186379, - [SMALL_STATE(4947)] = 186393, - [SMALL_STATE(4948)] = 186407, - [SMALL_STATE(4949)] = 186421, - [SMALL_STATE(4950)] = 186435, - [SMALL_STATE(4951)] = 186449, - [SMALL_STATE(4952)] = 186463, - [SMALL_STATE(4953)] = 186477, - [SMALL_STATE(4954)] = 186491, - [SMALL_STATE(4955)] = 186505, - [SMALL_STATE(4956)] = 186519, - [SMALL_STATE(4957)] = 186533, - [SMALL_STATE(4958)] = 186547, - [SMALL_STATE(4959)] = 186561, - [SMALL_STATE(4960)] = 186575, - [SMALL_STATE(4961)] = 186589, - [SMALL_STATE(4962)] = 186603, - [SMALL_STATE(4963)] = 186617, - [SMALL_STATE(4964)] = 186631, - [SMALL_STATE(4965)] = 186643, - [SMALL_STATE(4966)] = 186657, - [SMALL_STATE(4967)] = 186671, - [SMALL_STATE(4968)] = 186685, - [SMALL_STATE(4969)] = 186699, - [SMALL_STATE(4970)] = 186713, - [SMALL_STATE(4971)] = 186727, - [SMALL_STATE(4972)] = 186741, - [SMALL_STATE(4973)] = 186755, - [SMALL_STATE(4974)] = 186767, - [SMALL_STATE(4975)] = 186781, - [SMALL_STATE(4976)] = 186795, - [SMALL_STATE(4977)] = 186809, - [SMALL_STATE(4978)] = 186823, - [SMALL_STATE(4979)] = 186837, - [SMALL_STATE(4980)] = 186851, - [SMALL_STATE(4981)] = 186865, - [SMALL_STATE(4982)] = 186879, - [SMALL_STATE(4983)] = 186893, - [SMALL_STATE(4984)] = 186907, - [SMALL_STATE(4985)] = 186921, - [SMALL_STATE(4986)] = 186935, - [SMALL_STATE(4987)] = 186949, - [SMALL_STATE(4988)] = 186963, - [SMALL_STATE(4989)] = 186977, - [SMALL_STATE(4990)] = 186991, - [SMALL_STATE(4991)] = 187003, - [SMALL_STATE(4992)] = 187017, - [SMALL_STATE(4993)] = 187031, - [SMALL_STATE(4994)] = 187045, - [SMALL_STATE(4995)] = 187059, - [SMALL_STATE(4996)] = 187073, - [SMALL_STATE(4997)] = 187087, - [SMALL_STATE(4998)] = 187097, - [SMALL_STATE(4999)] = 187111, - [SMALL_STATE(5000)] = 187125, - [SMALL_STATE(5001)] = 187139, - [SMALL_STATE(5002)] = 187153, - [SMALL_STATE(5003)] = 187167, - [SMALL_STATE(5004)] = 187181, - [SMALL_STATE(5005)] = 187195, - [SMALL_STATE(5006)] = 187209, - [SMALL_STATE(5007)] = 187223, - [SMALL_STATE(5008)] = 187237, - [SMALL_STATE(5009)] = 187251, - [SMALL_STATE(5010)] = 187265, - [SMALL_STATE(5011)] = 187279, - [SMALL_STATE(5012)] = 187293, - [SMALL_STATE(5013)] = 187307, - [SMALL_STATE(5014)] = 187321, - [SMALL_STATE(5015)] = 187335, - [SMALL_STATE(5016)] = 187349, - [SMALL_STATE(5017)] = 187359, - [SMALL_STATE(5018)] = 187373, - [SMALL_STATE(5019)] = 187387, - [SMALL_STATE(5020)] = 187401, - [SMALL_STATE(5021)] = 187415, - [SMALL_STATE(5022)] = 187429, - [SMALL_STATE(5023)] = 187443, - [SMALL_STATE(5024)] = 187457, - [SMALL_STATE(5025)] = 187471, - [SMALL_STATE(5026)] = 187485, - [SMALL_STATE(5027)] = 187499, - [SMALL_STATE(5028)] = 187513, - [SMALL_STATE(5029)] = 187527, - [SMALL_STATE(5030)] = 187541, - [SMALL_STATE(5031)] = 187555, - [SMALL_STATE(5032)] = 187569, - [SMALL_STATE(5033)] = 187581, - [SMALL_STATE(5034)] = 187595, - [SMALL_STATE(5035)] = 187609, - [SMALL_STATE(5036)] = 187623, - [SMALL_STATE(5037)] = 187637, - [SMALL_STATE(5038)] = 187651, - [SMALL_STATE(5039)] = 187665, - [SMALL_STATE(5040)] = 187679, - [SMALL_STATE(5041)] = 187693, - [SMALL_STATE(5042)] = 187707, - [SMALL_STATE(5043)] = 187721, - [SMALL_STATE(5044)] = 187735, - [SMALL_STATE(5045)] = 187749, - [SMALL_STATE(5046)] = 187763, - [SMALL_STATE(5047)] = 187777, - [SMALL_STATE(5048)] = 187791, - [SMALL_STATE(5049)] = 187805, - [SMALL_STATE(5050)] = 187819, - [SMALL_STATE(5051)] = 187829, - [SMALL_STATE(5052)] = 187839, - [SMALL_STATE(5053)] = 187853, - [SMALL_STATE(5054)] = 187867, - [SMALL_STATE(5055)] = 187881, - [SMALL_STATE(5056)] = 187895, - [SMALL_STATE(5057)] = 187909, - [SMALL_STATE(5058)] = 187923, - [SMALL_STATE(5059)] = 187937, - [SMALL_STATE(5060)] = 187951, - [SMALL_STATE(5061)] = 187965, - [SMALL_STATE(5062)] = 187979, - [SMALL_STATE(5063)] = 187991, - [SMALL_STATE(5064)] = 188005, - [SMALL_STATE(5065)] = 188019, - [SMALL_STATE(5066)] = 188033, - [SMALL_STATE(5067)] = 188047, - [SMALL_STATE(5068)] = 188061, - [SMALL_STATE(5069)] = 188075, - [SMALL_STATE(5070)] = 188085, - [SMALL_STATE(5071)] = 188099, - [SMALL_STATE(5072)] = 188113, - [SMALL_STATE(5073)] = 188127, - [SMALL_STATE(5074)] = 188141, - [SMALL_STATE(5075)] = 188155, - [SMALL_STATE(5076)] = 188169, - [SMALL_STATE(5077)] = 188183, - [SMALL_STATE(5078)] = 188197, - [SMALL_STATE(5079)] = 188211, - [SMALL_STATE(5080)] = 188225, - [SMALL_STATE(5081)] = 188239, - [SMALL_STATE(5082)] = 188253, - [SMALL_STATE(5083)] = 188267, - [SMALL_STATE(5084)] = 188281, - [SMALL_STATE(5085)] = 188295, - [SMALL_STATE(5086)] = 188309, - [SMALL_STATE(5087)] = 188323, - [SMALL_STATE(5088)] = 188337, - [SMALL_STATE(5089)] = 188351, - [SMALL_STATE(5090)] = 188365, - [SMALL_STATE(5091)] = 188379, - [SMALL_STATE(5092)] = 188393, - [SMALL_STATE(5093)] = 188405, - [SMALL_STATE(5094)] = 188419, - [SMALL_STATE(5095)] = 188433, - [SMALL_STATE(5096)] = 188447, - [SMALL_STATE(5097)] = 188461, - [SMALL_STATE(5098)] = 188475, - [SMALL_STATE(5099)] = 188489, - [SMALL_STATE(5100)] = 188503, - [SMALL_STATE(5101)] = 188517, - [SMALL_STATE(5102)] = 188531, - [SMALL_STATE(5103)] = 188543, - [SMALL_STATE(5104)] = 188557, - [SMALL_STATE(5105)] = 188571, - [SMALL_STATE(5106)] = 188585, - [SMALL_STATE(5107)] = 188599, - [SMALL_STATE(5108)] = 188613, - [SMALL_STATE(5109)] = 188623, - [SMALL_STATE(5110)] = 188637, - [SMALL_STATE(5111)] = 188651, - [SMALL_STATE(5112)] = 188665, - [SMALL_STATE(5113)] = 188679, - [SMALL_STATE(5114)] = 188693, - [SMALL_STATE(5115)] = 188707, - [SMALL_STATE(5116)] = 188721, - [SMALL_STATE(5117)] = 188735, - [SMALL_STATE(5118)] = 188749, - [SMALL_STATE(5119)] = 188763, - [SMALL_STATE(5120)] = 188777, - [SMALL_STATE(5121)] = 188791, - [SMALL_STATE(5122)] = 188805, - [SMALL_STATE(5123)] = 188819, - [SMALL_STATE(5124)] = 188833, - [SMALL_STATE(5125)] = 188847, - [SMALL_STATE(5126)] = 188861, - [SMALL_STATE(5127)] = 188875, - [SMALL_STATE(5128)] = 188889, - [SMALL_STATE(5129)] = 188903, - [SMALL_STATE(5130)] = 188917, - [SMALL_STATE(5131)] = 188931, - [SMALL_STATE(5132)] = 188945, - [SMALL_STATE(5133)] = 188959, - [SMALL_STATE(5134)] = 188973, - [SMALL_STATE(5135)] = 188987, - [SMALL_STATE(5136)] = 189001, - [SMALL_STATE(5137)] = 189015, - [SMALL_STATE(5138)] = 189029, - [SMALL_STATE(5139)] = 189043, - [SMALL_STATE(5140)] = 189057, - [SMALL_STATE(5141)] = 189071, - [SMALL_STATE(5142)] = 189085, - [SMALL_STATE(5143)] = 189099, - [SMALL_STATE(5144)] = 189113, - [SMALL_STATE(5145)] = 189127, - [SMALL_STATE(5146)] = 189141, - [SMALL_STATE(5147)] = 189155, - [SMALL_STATE(5148)] = 189169, - [SMALL_STATE(5149)] = 189181, - [SMALL_STATE(5150)] = 189195, - [SMALL_STATE(5151)] = 189209, - [SMALL_STATE(5152)] = 189223, - [SMALL_STATE(5153)] = 189237, - [SMALL_STATE(5154)] = 189251, - [SMALL_STATE(5155)] = 189265, - [SMALL_STATE(5156)] = 189279, - [SMALL_STATE(5157)] = 189293, - [SMALL_STATE(5158)] = 189307, - [SMALL_STATE(5159)] = 189321, - [SMALL_STATE(5160)] = 189331, - [SMALL_STATE(5161)] = 189345, - [SMALL_STATE(5162)] = 189359, - [SMALL_STATE(5163)] = 189373, - [SMALL_STATE(5164)] = 189387, - [SMALL_STATE(5165)] = 189401, - [SMALL_STATE(5166)] = 189415, - [SMALL_STATE(5167)] = 189429, - [SMALL_STATE(5168)] = 189443, - [SMALL_STATE(5169)] = 189457, - [SMALL_STATE(5170)] = 189471, - [SMALL_STATE(5171)] = 189485, - [SMALL_STATE(5172)] = 189499, - [SMALL_STATE(5173)] = 189511, - [SMALL_STATE(5174)] = 189523, - [SMALL_STATE(5175)] = 189537, - [SMALL_STATE(5176)] = 189551, - [SMALL_STATE(5177)] = 189565, - [SMALL_STATE(5178)] = 189579, - [SMALL_STATE(5179)] = 189593, - [SMALL_STATE(5180)] = 189607, - [SMALL_STATE(5181)] = 189621, - [SMALL_STATE(5182)] = 189635, - [SMALL_STATE(5183)] = 189649, - [SMALL_STATE(5184)] = 189663, - [SMALL_STATE(5185)] = 189677, - [SMALL_STATE(5186)] = 189691, - [SMALL_STATE(5187)] = 189705, - [SMALL_STATE(5188)] = 189719, - [SMALL_STATE(5189)] = 189733, - [SMALL_STATE(5190)] = 189747, - [SMALL_STATE(5191)] = 189761, - [SMALL_STATE(5192)] = 189775, - [SMALL_STATE(5193)] = 189789, - [SMALL_STATE(5194)] = 189801, - [SMALL_STATE(5195)] = 189815, - [SMALL_STATE(5196)] = 189829, - [SMALL_STATE(5197)] = 189843, - [SMALL_STATE(5198)] = 189857, - [SMALL_STATE(5199)] = 189871, - [SMALL_STATE(5200)] = 189885, - [SMALL_STATE(5201)] = 189897, - [SMALL_STATE(5202)] = 189911, - [SMALL_STATE(5203)] = 189925, - [SMALL_STATE(5204)] = 189939, - [SMALL_STATE(5205)] = 189953, - [SMALL_STATE(5206)] = 189967, - [SMALL_STATE(5207)] = 189981, - [SMALL_STATE(5208)] = 189995, - [SMALL_STATE(5209)] = 190009, - [SMALL_STATE(5210)] = 190021, - [SMALL_STATE(5211)] = 190035, - [SMALL_STATE(5212)] = 190049, - [SMALL_STATE(5213)] = 190061, - [SMALL_STATE(5214)] = 190073, - [SMALL_STATE(5215)] = 190087, - [SMALL_STATE(5216)] = 190101, - [SMALL_STATE(5217)] = 190115, - [SMALL_STATE(5218)] = 190127, - [SMALL_STATE(5219)] = 190141, - [SMALL_STATE(5220)] = 190155, - [SMALL_STATE(5221)] = 190169, - [SMALL_STATE(5222)] = 190183, - [SMALL_STATE(5223)] = 190197, - [SMALL_STATE(5224)] = 190211, - [SMALL_STATE(5225)] = 190225, - [SMALL_STATE(5226)] = 190239, - [SMALL_STATE(5227)] = 190251, - [SMALL_STATE(5228)] = 190265, - [SMALL_STATE(5229)] = 190279, - [SMALL_STATE(5230)] = 190293, - [SMALL_STATE(5231)] = 190303, - [SMALL_STATE(5232)] = 190317, - [SMALL_STATE(5233)] = 190331, - [SMALL_STATE(5234)] = 190345, - [SMALL_STATE(5235)] = 190357, - [SMALL_STATE(5236)] = 190371, - [SMALL_STATE(5237)] = 190385, - [SMALL_STATE(5238)] = 190399, - [SMALL_STATE(5239)] = 190413, - [SMALL_STATE(5240)] = 190425, - [SMALL_STATE(5241)] = 190439, - [SMALL_STATE(5242)] = 190453, - [SMALL_STATE(5243)] = 190465, - [SMALL_STATE(5244)] = 190479, - [SMALL_STATE(5245)] = 190493, - [SMALL_STATE(5246)] = 190505, - [SMALL_STATE(5247)] = 190519, - [SMALL_STATE(5248)] = 190531, - [SMALL_STATE(5249)] = 190545, - [SMALL_STATE(5250)] = 190559, - [SMALL_STATE(5251)] = 190569, - [SMALL_STATE(5252)] = 190583, - [SMALL_STATE(5253)] = 190597, - [SMALL_STATE(5254)] = 190611, - [SMALL_STATE(5255)] = 190623, - [SMALL_STATE(5256)] = 190637, - [SMALL_STATE(5257)] = 190651, - [SMALL_STATE(5258)] = 190665, - [SMALL_STATE(5259)] = 190675, - [SMALL_STATE(5260)] = 190689, - [SMALL_STATE(5261)] = 190703, - [SMALL_STATE(5262)] = 190717, - [SMALL_STATE(5263)] = 190731, - [SMALL_STATE(5264)] = 190745, - [SMALL_STATE(5265)] = 190759, - [SMALL_STATE(5266)] = 190773, - [SMALL_STATE(5267)] = 190787, - [SMALL_STATE(5268)] = 190801, - [SMALL_STATE(5269)] = 190815, - [SMALL_STATE(5270)] = 190829, - [SMALL_STATE(5271)] = 190843, - [SMALL_STATE(5272)] = 190857, - [SMALL_STATE(5273)] = 190871, - [SMALL_STATE(5274)] = 190883, - [SMALL_STATE(5275)] = 190893, - [SMALL_STATE(5276)] = 190907, - [SMALL_STATE(5277)] = 190921, - [SMALL_STATE(5278)] = 190935, - [SMALL_STATE(5279)] = 190949, - [SMALL_STATE(5280)] = 190958, - [SMALL_STATE(5281)] = 190969, - [SMALL_STATE(5282)] = 190980, - [SMALL_STATE(5283)] = 190991, - [SMALL_STATE(5284)] = 191002, - [SMALL_STATE(5285)] = 191011, - [SMALL_STATE(5286)] = 191022, - [SMALL_STATE(5287)] = 191031, - [SMALL_STATE(5288)] = 191040, - [SMALL_STATE(5289)] = 191049, - [SMALL_STATE(5290)] = 191058, - [SMALL_STATE(5291)] = 191067, - [SMALL_STATE(5292)] = 191078, - [SMALL_STATE(5293)] = 191087, - [SMALL_STATE(5294)] = 191098, - [SMALL_STATE(5295)] = 191107, - [SMALL_STATE(5296)] = 191116, - [SMALL_STATE(5297)] = 191127, - [SMALL_STATE(5298)] = 191136, - [SMALL_STATE(5299)] = 191147, - [SMALL_STATE(5300)] = 191158, - [SMALL_STATE(5301)] = 191167, - [SMALL_STATE(5302)] = 191178, - [SMALL_STATE(5303)] = 191187, - [SMALL_STATE(5304)] = 191196, - [SMALL_STATE(5305)] = 191207, - [SMALL_STATE(5306)] = 191218, - [SMALL_STATE(5307)] = 191227, - [SMALL_STATE(5308)] = 191238, - [SMALL_STATE(5309)] = 191249, - [SMALL_STATE(5310)] = 191258, - [SMALL_STATE(5311)] = 191267, - [SMALL_STATE(5312)] = 191276, - [SMALL_STATE(5313)] = 191285, - [SMALL_STATE(5314)] = 191294, - [SMALL_STATE(5315)] = 191305, - [SMALL_STATE(5316)] = 191314, - [SMALL_STATE(5317)] = 191325, - [SMALL_STATE(5318)] = 191334, - [SMALL_STATE(5319)] = 191343, - [SMALL_STATE(5320)] = 191352, - [SMALL_STATE(5321)] = 191363, - [SMALL_STATE(5322)] = 191374, - [SMALL_STATE(5323)] = 191383, - [SMALL_STATE(5324)] = 191394, - [SMALL_STATE(5325)] = 191405, - [SMALL_STATE(5326)] = 191414, - [SMALL_STATE(5327)] = 191423, - [SMALL_STATE(5328)] = 191432, - [SMALL_STATE(5329)] = 191441, - [SMALL_STATE(5330)] = 191452, - [SMALL_STATE(5331)] = 191463, - [SMALL_STATE(5332)] = 191474, - [SMALL_STATE(5333)] = 191483, - [SMALL_STATE(5334)] = 191494, - [SMALL_STATE(5335)] = 191503, - [SMALL_STATE(5336)] = 191512, - [SMALL_STATE(5337)] = 191523, - [SMALL_STATE(5338)] = 191532, - [SMALL_STATE(5339)] = 191541, - [SMALL_STATE(5340)] = 191550, - [SMALL_STATE(5341)] = 191561, - [SMALL_STATE(5342)] = 191572, - [SMALL_STATE(5343)] = 191583, - [SMALL_STATE(5344)] = 191594, - [SMALL_STATE(5345)] = 191605, - [SMALL_STATE(5346)] = 191616, - [SMALL_STATE(5347)] = 191627, - [SMALL_STATE(5348)] = 191638, - [SMALL_STATE(5349)] = 191647, - [SMALL_STATE(5350)] = 191658, - [SMALL_STATE(5351)] = 191669, - [SMALL_STATE(5352)] = 191678, - [SMALL_STATE(5353)] = 191687, - [SMALL_STATE(5354)] = 191698, - [SMALL_STATE(5355)] = 191709, - [SMALL_STATE(5356)] = 191720, - [SMALL_STATE(5357)] = 191729, - [SMALL_STATE(5358)] = 191738, - [SMALL_STATE(5359)] = 191749, - [SMALL_STATE(5360)] = 191758, - [SMALL_STATE(5361)] = 191769, - [SMALL_STATE(5362)] = 191778, - [SMALL_STATE(5363)] = 191789, - [SMALL_STATE(5364)] = 191800, - [SMALL_STATE(5365)] = 191811, - [SMALL_STATE(5366)] = 191822, - [SMALL_STATE(5367)] = 191833, - [SMALL_STATE(5368)] = 191844, - [SMALL_STATE(5369)] = 191855, - [SMALL_STATE(5370)] = 191866, - [SMALL_STATE(5371)] = 191877, - [SMALL_STATE(5372)] = 191888, - [SMALL_STATE(5373)] = 191899, - [SMALL_STATE(5374)] = 191910, - [SMALL_STATE(5375)] = 191921, - [SMALL_STATE(5376)] = 191932, - [SMALL_STATE(5377)] = 191943, - [SMALL_STATE(5378)] = 191954, - [SMALL_STATE(5379)] = 191965, - [SMALL_STATE(5380)] = 191976, - [SMALL_STATE(5381)] = 191987, - [SMALL_STATE(5382)] = 191998, - [SMALL_STATE(5383)] = 192009, - [SMALL_STATE(5384)] = 192020, - [SMALL_STATE(5385)] = 192031, - [SMALL_STATE(5386)] = 192042, - [SMALL_STATE(5387)] = 192053, - [SMALL_STATE(5388)] = 192064, - [SMALL_STATE(5389)] = 192073, - [SMALL_STATE(5390)] = 192084, - [SMALL_STATE(5391)] = 192093, - [SMALL_STATE(5392)] = 192104, - [SMALL_STATE(5393)] = 192113, - [SMALL_STATE(5394)] = 192124, - [SMALL_STATE(5395)] = 192133, - [SMALL_STATE(5396)] = 192144, - [SMALL_STATE(5397)] = 192153, - [SMALL_STATE(5398)] = 192164, - [SMALL_STATE(5399)] = 192175, - [SMALL_STATE(5400)] = 192186, - [SMALL_STATE(5401)] = 192197, - [SMALL_STATE(5402)] = 192206, - [SMALL_STATE(5403)] = 192217, - [SMALL_STATE(5404)] = 192228, - [SMALL_STATE(5405)] = 192239, - [SMALL_STATE(5406)] = 192250, - [SMALL_STATE(5407)] = 192261, - [SMALL_STATE(5408)] = 192272, - [SMALL_STATE(5409)] = 192283, - [SMALL_STATE(5410)] = 192292, - [SMALL_STATE(5411)] = 192303, - [SMALL_STATE(5412)] = 192312, - [SMALL_STATE(5413)] = 192323, - [SMALL_STATE(5414)] = 192334, - [SMALL_STATE(5415)] = 192345, - [SMALL_STATE(5416)] = 192354, - [SMALL_STATE(5417)] = 192363, - [SMALL_STATE(5418)] = 192374, - [SMALL_STATE(5419)] = 192383, - [SMALL_STATE(5420)] = 192392, - [SMALL_STATE(5421)] = 192403, - [SMALL_STATE(5422)] = 192414, - [SMALL_STATE(5423)] = 192425, - [SMALL_STATE(5424)] = 192434, - [SMALL_STATE(5425)] = 192445, - [SMALL_STATE(5426)] = 192456, - [SMALL_STATE(5427)] = 192465, - [SMALL_STATE(5428)] = 192474, - [SMALL_STATE(5429)] = 192485, - [SMALL_STATE(5430)] = 192494, - [SMALL_STATE(5431)] = 192505, - [SMALL_STATE(5432)] = 192516, - [SMALL_STATE(5433)] = 192527, - [SMALL_STATE(5434)] = 192536, - [SMALL_STATE(5435)] = 192545, - [SMALL_STATE(5436)] = 192556, - [SMALL_STATE(5437)] = 192567, - [SMALL_STATE(5438)] = 192576, - [SMALL_STATE(5439)] = 192587, - [SMALL_STATE(5440)] = 192598, - [SMALL_STATE(5441)] = 192609, - [SMALL_STATE(5442)] = 192618, - [SMALL_STATE(5443)] = 192627, - [SMALL_STATE(5444)] = 192638, - [SMALL_STATE(5445)] = 192649, - [SMALL_STATE(5446)] = 192660, - [SMALL_STATE(5447)] = 192671, - [SMALL_STATE(5448)] = 192682, - [SMALL_STATE(5449)] = 192691, - [SMALL_STATE(5450)] = 192702, - [SMALL_STATE(5451)] = 192711, - [SMALL_STATE(5452)] = 192722, - [SMALL_STATE(5453)] = 192731, - [SMALL_STATE(5454)] = 192742, - [SMALL_STATE(5455)] = 192751, - [SMALL_STATE(5456)] = 192760, - [SMALL_STATE(5457)] = 192769, - [SMALL_STATE(5458)] = 192780, - [SMALL_STATE(5459)] = 192791, - [SMALL_STATE(5460)] = 192800, - [SMALL_STATE(5461)] = 192811, - [SMALL_STATE(5462)] = 192822, - [SMALL_STATE(5463)] = 192831, - [SMALL_STATE(5464)] = 192840, - [SMALL_STATE(5465)] = 192851, - [SMALL_STATE(5466)] = 192862, - [SMALL_STATE(5467)] = 192871, - [SMALL_STATE(5468)] = 192880, - [SMALL_STATE(5469)] = 192891, - [SMALL_STATE(5470)] = 192902, - [SMALL_STATE(5471)] = 192913, - [SMALL_STATE(5472)] = 192922, - [SMALL_STATE(5473)] = 192931, - [SMALL_STATE(5474)] = 192942, - [SMALL_STATE(5475)] = 192951, - [SMALL_STATE(5476)] = 192960, - [SMALL_STATE(5477)] = 192971, - [SMALL_STATE(5478)] = 192980, - [SMALL_STATE(5479)] = 192989, - [SMALL_STATE(5480)] = 192998, - [SMALL_STATE(5481)] = 193009, - [SMALL_STATE(5482)] = 193018, - [SMALL_STATE(5483)] = 193029, - [SMALL_STATE(5484)] = 193040, - [SMALL_STATE(5485)] = 193049, - [SMALL_STATE(5486)] = 193058, - [SMALL_STATE(5487)] = 193067, - [SMALL_STATE(5488)] = 193076, - [SMALL_STATE(5489)] = 193085, - [SMALL_STATE(5490)] = 193096, - [SMALL_STATE(5491)] = 193107, - [SMALL_STATE(5492)] = 193118, - [SMALL_STATE(5493)] = 193129, - [SMALL_STATE(5494)] = 193138, - [SMALL_STATE(5495)] = 193147, - [SMALL_STATE(5496)] = 193156, - [SMALL_STATE(5497)] = 193165, - [SMALL_STATE(5498)] = 193174, - [SMALL_STATE(5499)] = 193183, - [SMALL_STATE(5500)] = 193194, - [SMALL_STATE(5501)] = 193203, - [SMALL_STATE(5502)] = 193212, - [SMALL_STATE(5503)] = 193221, - [SMALL_STATE(5504)] = 193230, - [SMALL_STATE(5505)] = 193241, - [SMALL_STATE(5506)] = 193250, - [SMALL_STATE(5507)] = 193261, - [SMALL_STATE(5508)] = 193272, - [SMALL_STATE(5509)] = 193281, - [SMALL_STATE(5510)] = 193292, - [SMALL_STATE(5511)] = 193301, - [SMALL_STATE(5512)] = 193310, - [SMALL_STATE(5513)] = 193319, - [SMALL_STATE(5514)] = 193330, - [SMALL_STATE(5515)] = 193341, - [SMALL_STATE(5516)] = 193352, - [SMALL_STATE(5517)] = 193363, - [SMALL_STATE(5518)] = 193372, - [SMALL_STATE(5519)] = 193381, - [SMALL_STATE(5520)] = 193392, - [SMALL_STATE(5521)] = 193403, - [SMALL_STATE(5522)] = 193414, - [SMALL_STATE(5523)] = 193422, - [SMALL_STATE(5524)] = 193430, - [SMALL_STATE(5525)] = 193438, - [SMALL_STATE(5526)] = 193446, - [SMALL_STATE(5527)] = 193454, - [SMALL_STATE(5528)] = 193462, - [SMALL_STATE(5529)] = 193470, - [SMALL_STATE(5530)] = 193478, - [SMALL_STATE(5531)] = 193486, - [SMALL_STATE(5532)] = 193494, - [SMALL_STATE(5533)] = 193502, - [SMALL_STATE(5534)] = 193510, - [SMALL_STATE(5535)] = 193518, - [SMALL_STATE(5536)] = 193526, - [SMALL_STATE(5537)] = 193534, - [SMALL_STATE(5538)] = 193542, - [SMALL_STATE(5539)] = 193550, - [SMALL_STATE(5540)] = 193558, - [SMALL_STATE(5541)] = 193566, - [SMALL_STATE(5542)] = 193574, - [SMALL_STATE(5543)] = 193582, - [SMALL_STATE(5544)] = 193590, - [SMALL_STATE(5545)] = 193598, - [SMALL_STATE(5546)] = 193606, - [SMALL_STATE(5547)] = 193614, - [SMALL_STATE(5548)] = 193622, - [SMALL_STATE(5549)] = 193630, - [SMALL_STATE(5550)] = 193638, - [SMALL_STATE(5551)] = 193646, - [SMALL_STATE(5552)] = 193654, - [SMALL_STATE(5553)] = 193662, - [SMALL_STATE(5554)] = 193670, - [SMALL_STATE(5555)] = 193678, - [SMALL_STATE(5556)] = 193686, - [SMALL_STATE(5557)] = 193694, - [SMALL_STATE(5558)] = 193702, - [SMALL_STATE(5559)] = 193710, - [SMALL_STATE(5560)] = 193718, - [SMALL_STATE(5561)] = 193726, - [SMALL_STATE(5562)] = 193734, - [SMALL_STATE(5563)] = 193742, - [SMALL_STATE(5564)] = 193750, - [SMALL_STATE(5565)] = 193758, - [SMALL_STATE(5566)] = 193766, - [SMALL_STATE(5567)] = 193774, - [SMALL_STATE(5568)] = 193782, - [SMALL_STATE(5569)] = 193790, - [SMALL_STATE(5570)] = 193798, - [SMALL_STATE(5571)] = 193806, - [SMALL_STATE(5572)] = 193814, - [SMALL_STATE(5573)] = 193822, - [SMALL_STATE(5574)] = 193830, - [SMALL_STATE(5575)] = 193838, - [SMALL_STATE(5576)] = 193846, - [SMALL_STATE(5577)] = 193854, - [SMALL_STATE(5578)] = 193862, - [SMALL_STATE(5579)] = 193870, - [SMALL_STATE(5580)] = 193878, - [SMALL_STATE(5581)] = 193886, - [SMALL_STATE(5582)] = 193894, - [SMALL_STATE(5583)] = 193902, - [SMALL_STATE(5584)] = 193910, - [SMALL_STATE(5585)] = 193918, - [SMALL_STATE(5586)] = 193926, - [SMALL_STATE(5587)] = 193934, - [SMALL_STATE(5588)] = 193942, - [SMALL_STATE(5589)] = 193950, - [SMALL_STATE(5590)] = 193958, - [SMALL_STATE(5591)] = 193966, - [SMALL_STATE(5592)] = 193974, - [SMALL_STATE(5593)] = 193982, - [SMALL_STATE(5594)] = 193990, - [SMALL_STATE(5595)] = 193998, - [SMALL_STATE(5596)] = 194006, - [SMALL_STATE(5597)] = 194014, - [SMALL_STATE(5598)] = 194022, - [SMALL_STATE(5599)] = 194030, - [SMALL_STATE(5600)] = 194038, - [SMALL_STATE(5601)] = 194046, - [SMALL_STATE(5602)] = 194054, - [SMALL_STATE(5603)] = 194062, - [SMALL_STATE(5604)] = 194070, - [SMALL_STATE(5605)] = 194078, - [SMALL_STATE(5606)] = 194086, - [SMALL_STATE(5607)] = 194094, - [SMALL_STATE(5608)] = 194102, - [SMALL_STATE(5609)] = 194110, - [SMALL_STATE(5610)] = 194118, - [SMALL_STATE(5611)] = 194126, - [SMALL_STATE(5612)] = 194134, - [SMALL_STATE(5613)] = 194142, - [SMALL_STATE(5614)] = 194150, - [SMALL_STATE(5615)] = 194158, - [SMALL_STATE(5616)] = 194166, - [SMALL_STATE(5617)] = 194174, - [SMALL_STATE(5618)] = 194182, - [SMALL_STATE(5619)] = 194190, - [SMALL_STATE(5620)] = 194198, - [SMALL_STATE(5621)] = 194206, - [SMALL_STATE(5622)] = 194214, - [SMALL_STATE(5623)] = 194222, - [SMALL_STATE(5624)] = 194230, - [SMALL_STATE(5625)] = 194238, - [SMALL_STATE(5626)] = 194246, - [SMALL_STATE(5627)] = 194254, - [SMALL_STATE(5628)] = 194262, - [SMALL_STATE(5629)] = 194270, - [SMALL_STATE(5630)] = 194278, - [SMALL_STATE(5631)] = 194286, - [SMALL_STATE(5632)] = 194294, - [SMALL_STATE(5633)] = 194302, - [SMALL_STATE(5634)] = 194310, - [SMALL_STATE(5635)] = 194318, - [SMALL_STATE(5636)] = 194326, - [SMALL_STATE(5637)] = 194334, - [SMALL_STATE(5638)] = 194342, - [SMALL_STATE(5639)] = 194350, - [SMALL_STATE(5640)] = 194358, - [SMALL_STATE(5641)] = 194366, - [SMALL_STATE(5642)] = 194374, - [SMALL_STATE(5643)] = 194382, - [SMALL_STATE(5644)] = 194390, - [SMALL_STATE(5645)] = 194398, - [SMALL_STATE(5646)] = 194406, - [SMALL_STATE(5647)] = 194414, - [SMALL_STATE(5648)] = 194422, - [SMALL_STATE(5649)] = 194430, - [SMALL_STATE(5650)] = 194438, - [SMALL_STATE(5651)] = 194446, - [SMALL_STATE(5652)] = 194454, - [SMALL_STATE(5653)] = 194462, - [SMALL_STATE(5654)] = 194470, - [SMALL_STATE(5655)] = 194478, - [SMALL_STATE(5656)] = 194486, - [SMALL_STATE(5657)] = 194494, - [SMALL_STATE(5658)] = 194502, - [SMALL_STATE(5659)] = 194510, - [SMALL_STATE(5660)] = 194518, - [SMALL_STATE(5661)] = 194526, - [SMALL_STATE(5662)] = 194534, - [SMALL_STATE(5663)] = 194542, - [SMALL_STATE(5664)] = 194550, - [SMALL_STATE(5665)] = 194558, - [SMALL_STATE(5666)] = 194566, - [SMALL_STATE(5667)] = 194574, - [SMALL_STATE(5668)] = 194582, - [SMALL_STATE(5669)] = 194590, - [SMALL_STATE(5670)] = 194598, - [SMALL_STATE(5671)] = 194606, - [SMALL_STATE(5672)] = 194614, - [SMALL_STATE(5673)] = 194622, - [SMALL_STATE(5674)] = 194630, - [SMALL_STATE(5675)] = 194638, - [SMALL_STATE(5676)] = 194646, - [SMALL_STATE(5677)] = 194654, - [SMALL_STATE(5678)] = 194662, - [SMALL_STATE(5679)] = 194670, - [SMALL_STATE(5680)] = 194678, - [SMALL_STATE(5681)] = 194686, - [SMALL_STATE(5682)] = 194694, - [SMALL_STATE(5683)] = 194702, - [SMALL_STATE(5684)] = 194710, - [SMALL_STATE(5685)] = 194718, - [SMALL_STATE(5686)] = 194726, - [SMALL_STATE(5687)] = 194734, - [SMALL_STATE(5688)] = 194742, - [SMALL_STATE(5689)] = 194750, - [SMALL_STATE(5690)] = 194758, - [SMALL_STATE(5691)] = 194766, - [SMALL_STATE(5692)] = 194774, - [SMALL_STATE(5693)] = 194782, - [SMALL_STATE(5694)] = 194790, - [SMALL_STATE(5695)] = 194798, - [SMALL_STATE(5696)] = 194806, - [SMALL_STATE(5697)] = 194814, - [SMALL_STATE(5698)] = 194822, - [SMALL_STATE(5699)] = 194830, - [SMALL_STATE(5700)] = 194838, - [SMALL_STATE(5701)] = 194846, - [SMALL_STATE(5702)] = 194854, - [SMALL_STATE(5703)] = 194862, - [SMALL_STATE(5704)] = 194870, - [SMALL_STATE(5705)] = 194878, - [SMALL_STATE(5706)] = 194886, - [SMALL_STATE(5707)] = 194894, - [SMALL_STATE(5708)] = 194902, - [SMALL_STATE(5709)] = 194910, - [SMALL_STATE(5710)] = 194918, - [SMALL_STATE(5711)] = 194926, - [SMALL_STATE(5712)] = 194934, - [SMALL_STATE(5713)] = 194942, - [SMALL_STATE(5714)] = 194950, - [SMALL_STATE(5715)] = 194958, - [SMALL_STATE(5716)] = 194966, - [SMALL_STATE(5717)] = 194974, - [SMALL_STATE(5718)] = 194982, - [SMALL_STATE(5719)] = 194990, - [SMALL_STATE(5720)] = 194998, - [SMALL_STATE(5721)] = 195006, - [SMALL_STATE(5722)] = 195014, - [SMALL_STATE(5723)] = 195022, - [SMALL_STATE(5724)] = 195030, - [SMALL_STATE(5725)] = 195038, - [SMALL_STATE(5726)] = 195046, - [SMALL_STATE(5727)] = 195054, - [SMALL_STATE(5728)] = 195062, - [SMALL_STATE(5729)] = 195070, - [SMALL_STATE(5730)] = 195078, - [SMALL_STATE(5731)] = 195086, - [SMALL_STATE(5732)] = 195094, - [SMALL_STATE(5733)] = 195102, - [SMALL_STATE(5734)] = 195110, - [SMALL_STATE(5735)] = 195118, - [SMALL_STATE(5736)] = 195126, - [SMALL_STATE(5737)] = 195134, - [SMALL_STATE(5738)] = 195142, - [SMALL_STATE(5739)] = 195150, - [SMALL_STATE(5740)] = 195158, - [SMALL_STATE(5741)] = 195166, - [SMALL_STATE(5742)] = 195174, - [SMALL_STATE(5743)] = 195182, - [SMALL_STATE(5744)] = 195190, - [SMALL_STATE(5745)] = 195198, - [SMALL_STATE(5746)] = 195206, - [SMALL_STATE(5747)] = 195214, - [SMALL_STATE(5748)] = 195222, - [SMALL_STATE(5749)] = 195230, - [SMALL_STATE(5750)] = 195238, - [SMALL_STATE(5751)] = 195246, - [SMALL_STATE(5752)] = 195254, - [SMALL_STATE(5753)] = 195262, - [SMALL_STATE(5754)] = 195270, - [SMALL_STATE(5755)] = 195278, - [SMALL_STATE(5756)] = 195286, - [SMALL_STATE(5757)] = 195294, - [SMALL_STATE(5758)] = 195302, - [SMALL_STATE(5759)] = 195310, - [SMALL_STATE(5760)] = 195318, - [SMALL_STATE(5761)] = 195326, - [SMALL_STATE(5762)] = 195334, - [SMALL_STATE(5763)] = 195342, - [SMALL_STATE(5764)] = 195350, - [SMALL_STATE(5765)] = 195358, - [SMALL_STATE(5766)] = 195366, - [SMALL_STATE(5767)] = 195374, - [SMALL_STATE(5768)] = 195382, - [SMALL_STATE(5769)] = 195390, - [SMALL_STATE(5770)] = 195398, - [SMALL_STATE(5771)] = 195406, - [SMALL_STATE(5772)] = 195414, - [SMALL_STATE(5773)] = 195422, - [SMALL_STATE(5774)] = 195430, - [SMALL_STATE(5775)] = 195438, - [SMALL_STATE(5776)] = 195446, - [SMALL_STATE(5777)] = 195454, - [SMALL_STATE(5778)] = 195462, - [SMALL_STATE(5779)] = 195470, - [SMALL_STATE(5780)] = 195478, - [SMALL_STATE(5781)] = 195486, - [SMALL_STATE(5782)] = 195494, - [SMALL_STATE(5783)] = 195502, - [SMALL_STATE(5784)] = 195510, - [SMALL_STATE(5785)] = 195518, - [SMALL_STATE(5786)] = 195526, - [SMALL_STATE(5787)] = 195534, - [SMALL_STATE(5788)] = 195542, - [SMALL_STATE(5789)] = 195550, - [SMALL_STATE(5790)] = 195558, - [SMALL_STATE(5791)] = 195566, - [SMALL_STATE(5792)] = 195574, - [SMALL_STATE(5793)] = 195582, - [SMALL_STATE(5794)] = 195590, - [SMALL_STATE(5795)] = 195598, - [SMALL_STATE(5796)] = 195606, - [SMALL_STATE(5797)] = 195614, - [SMALL_STATE(5798)] = 195622, - [SMALL_STATE(5799)] = 195630, - [SMALL_STATE(5800)] = 195638, - [SMALL_STATE(5801)] = 195646, - [SMALL_STATE(5802)] = 195654, - [SMALL_STATE(5803)] = 195662, - [SMALL_STATE(5804)] = 195670, - [SMALL_STATE(5805)] = 195678, - [SMALL_STATE(5806)] = 195686, - [SMALL_STATE(5807)] = 195694, - [SMALL_STATE(5808)] = 195702, - [SMALL_STATE(5809)] = 195710, - [SMALL_STATE(5810)] = 195718, - [SMALL_STATE(5811)] = 195726, - [SMALL_STATE(5812)] = 195734, - [SMALL_STATE(5813)] = 195742, - [SMALL_STATE(5814)] = 195750, - [SMALL_STATE(5815)] = 195758, - [SMALL_STATE(5816)] = 195766, - [SMALL_STATE(5817)] = 195774, - [SMALL_STATE(5818)] = 195782, - [SMALL_STATE(5819)] = 195790, - [SMALL_STATE(5820)] = 195798, - [SMALL_STATE(5821)] = 195806, - [SMALL_STATE(5822)] = 195814, - [SMALL_STATE(5823)] = 195822, - [SMALL_STATE(5824)] = 195830, - [SMALL_STATE(5825)] = 195838, - [SMALL_STATE(5826)] = 195846, - [SMALL_STATE(5827)] = 195854, - [SMALL_STATE(5828)] = 195862, - [SMALL_STATE(5829)] = 195870, - [SMALL_STATE(5830)] = 195878, - [SMALL_STATE(5831)] = 195886, - [SMALL_STATE(5832)] = 195894, - [SMALL_STATE(5833)] = 195902, - [SMALL_STATE(5834)] = 195910, - [SMALL_STATE(5835)] = 195918, - [SMALL_STATE(5836)] = 195926, - [SMALL_STATE(5837)] = 195934, - [SMALL_STATE(5838)] = 195942, - [SMALL_STATE(5839)] = 195950, - [SMALL_STATE(5840)] = 195958, - [SMALL_STATE(5841)] = 195966, - [SMALL_STATE(5842)] = 195974, - [SMALL_STATE(5843)] = 195982, - [SMALL_STATE(5844)] = 195990, - [SMALL_STATE(5845)] = 195998, - [SMALL_STATE(5846)] = 196006, - [SMALL_STATE(5847)] = 196014, - [SMALL_STATE(5848)] = 196022, - [SMALL_STATE(5849)] = 196030, - [SMALL_STATE(5850)] = 196038, - [SMALL_STATE(5851)] = 196046, - [SMALL_STATE(5852)] = 196054, - [SMALL_STATE(5853)] = 196062, - [SMALL_STATE(5854)] = 196070, - [SMALL_STATE(5855)] = 196078, - [SMALL_STATE(5856)] = 196086, - [SMALL_STATE(5857)] = 196094, - [SMALL_STATE(5858)] = 196102, - [SMALL_STATE(5859)] = 196110, - [SMALL_STATE(5860)] = 196118, - [SMALL_STATE(5861)] = 196126, - [SMALL_STATE(5862)] = 196134, - [SMALL_STATE(5863)] = 196142, - [SMALL_STATE(5864)] = 196150, - [SMALL_STATE(5865)] = 196158, - [SMALL_STATE(5866)] = 196166, - [SMALL_STATE(5867)] = 196174, - [SMALL_STATE(5868)] = 196182, - [SMALL_STATE(5869)] = 196190, - [SMALL_STATE(5870)] = 196198, - [SMALL_STATE(5871)] = 196206, - [SMALL_STATE(5872)] = 196214, - [SMALL_STATE(5873)] = 196222, - [SMALL_STATE(5874)] = 196230, - [SMALL_STATE(5875)] = 196238, - [SMALL_STATE(5876)] = 196246, - [SMALL_STATE(5877)] = 196254, - [SMALL_STATE(5878)] = 196262, - [SMALL_STATE(5879)] = 196270, - [SMALL_STATE(5880)] = 196278, - [SMALL_STATE(5881)] = 196286, - [SMALL_STATE(5882)] = 196294, + [SMALL_STATE(2192)] = 0, + [SMALL_STATE(2193)] = 123, + [SMALL_STATE(2194)] = 246, + [SMALL_STATE(2195)] = 367, + [SMALL_STATE(2196)] = 488, + [SMALL_STATE(2197)] = 608, + [SMALL_STATE(2198)] = 728, + [SMALL_STATE(2199)] = 848, + [SMALL_STATE(2200)] = 968, + [SMALL_STATE(2201)] = 1088, + [SMALL_STATE(2202)] = 1208, + [SMALL_STATE(2203)] = 1326, + [SMALL_STATE(2204)] = 1446, + [SMALL_STATE(2205)] = 1566, + [SMALL_STATE(2206)] = 1686, + [SMALL_STATE(2207)] = 1802, + [SMALL_STATE(2208)] = 1922, + [SMALL_STATE(2209)] = 2042, + [SMALL_STATE(2210)] = 2162, + [SMALL_STATE(2211)] = 2279, + [SMALL_STATE(2212)] = 2396, + [SMALL_STATE(2213)] = 2513, + [SMALL_STATE(2214)] = 2630, + [SMALL_STATE(2215)] = 2747, + [SMALL_STATE(2216)] = 2864, + [SMALL_STATE(2217)] = 2981, + [SMALL_STATE(2218)] = 3095, + [SMALL_STATE(2219)] = 3209, + [SMALL_STATE(2220)] = 3323, + [SMALL_STATE(2221)] = 3437, + [SMALL_STATE(2222)] = 3546, + [SMALL_STATE(2223)] = 3655, + [SMALL_STATE(2224)] = 3764, + [SMALL_STATE(2225)] = 3873, + [SMALL_STATE(2226)] = 3982, + [SMALL_STATE(2227)] = 4091, + [SMALL_STATE(2228)] = 4200, + [SMALL_STATE(2229)] = 4309, + [SMALL_STATE(2230)] = 4418, + [SMALL_STATE(2231)] = 4527, + [SMALL_STATE(2232)] = 4636, + [SMALL_STATE(2233)] = 4711, + [SMALL_STATE(2234)] = 4820, + [SMALL_STATE(2235)] = 4926, + [SMALL_STATE(2236)] = 5036, + [SMALL_STATE(2237)] = 5142, + [SMALL_STATE(2238)] = 5248, + [SMALL_STATE(2239)] = 5354, + [SMALL_STATE(2240)] = 5460, + [SMALL_STATE(2241)] = 5566, + [SMALL_STATE(2242)] = 5672, + [SMALL_STATE(2243)] = 5778, + [SMALL_STATE(2244)] = 5884, + [SMALL_STATE(2245)] = 5990, + [SMALL_STATE(2246)] = 6096, + [SMALL_STATE(2247)] = 6206, + [SMALL_STATE(2248)] = 6312, + [SMALL_STATE(2249)] = 6422, + [SMALL_STATE(2250)] = 6532, + [SMALL_STATE(2251)] = 6638, + [SMALL_STATE(2252)] = 6744, + [SMALL_STATE(2253)] = 6850, + [SMALL_STATE(2254)] = 6956, + [SMALL_STATE(2255)] = 7062, + [SMALL_STATE(2256)] = 7168, + [SMALL_STATE(2257)] = 7274, + [SMALL_STATE(2258)] = 7380, + [SMALL_STATE(2259)] = 7486, + [SMALL_STATE(2260)] = 7592, + [SMALL_STATE(2261)] = 7698, + [SMALL_STATE(2262)] = 7804, + [SMALL_STATE(2263)] = 7910, + [SMALL_STATE(2264)] = 8016, + [SMALL_STATE(2265)] = 8122, + [SMALL_STATE(2266)] = 8228, + [SMALL_STATE(2267)] = 8334, + [SMALL_STATE(2268)] = 8440, + [SMALL_STATE(2269)] = 8546, + [SMALL_STATE(2270)] = 8652, + [SMALL_STATE(2271)] = 8758, + [SMALL_STATE(2272)] = 8864, + [SMALL_STATE(2273)] = 8970, + [SMALL_STATE(2274)] = 9076, + [SMALL_STATE(2275)] = 9182, + [SMALL_STATE(2276)] = 9288, + [SMALL_STATE(2277)] = 9394, + [SMALL_STATE(2278)] = 9500, + [SMALL_STATE(2279)] = 9606, + [SMALL_STATE(2280)] = 9712, + [SMALL_STATE(2281)] = 9818, + [SMALL_STATE(2282)] = 9928, + [SMALL_STATE(2283)] = 10034, + [SMALL_STATE(2284)] = 10140, + [SMALL_STATE(2285)] = 10246, + [SMALL_STATE(2286)] = 10356, + [SMALL_STATE(2287)] = 10462, + [SMALL_STATE(2288)] = 10568, + [SMALL_STATE(2289)] = 10674, + [SMALL_STATE(2290)] = 10780, + [SMALL_STATE(2291)] = 10886, + [SMALL_STATE(2292)] = 10992, + [SMALL_STATE(2293)] = 11098, + [SMALL_STATE(2294)] = 11204, + [SMALL_STATE(2295)] = 11310, + [SMALL_STATE(2296)] = 11416, + [SMALL_STATE(2297)] = 11522, + [SMALL_STATE(2298)] = 11628, + [SMALL_STATE(2299)] = 11734, + [SMALL_STATE(2300)] = 11840, + [SMALL_STATE(2301)] = 11946, + [SMALL_STATE(2302)] = 12052, + [SMALL_STATE(2303)] = 12158, + [SMALL_STATE(2304)] = 12264, + [SMALL_STATE(2305)] = 12370, + [SMALL_STATE(2306)] = 12476, + [SMALL_STATE(2307)] = 12582, + [SMALL_STATE(2308)] = 12688, + [SMALL_STATE(2309)] = 12794, + [SMALL_STATE(2310)] = 12904, + [SMALL_STATE(2311)] = 13010, + [SMALL_STATE(2312)] = 13116, + [SMALL_STATE(2313)] = 13222, + [SMALL_STATE(2314)] = 13332, + [SMALL_STATE(2315)] = 13442, + [SMALL_STATE(2316)] = 13548, + [SMALL_STATE(2317)] = 13654, + [SMALL_STATE(2318)] = 13764, + [SMALL_STATE(2319)] = 13870, + [SMALL_STATE(2320)] = 13980, + [SMALL_STATE(2321)] = 14086, + [SMALL_STATE(2322)] = 14192, + [SMALL_STATE(2323)] = 14298, + [SMALL_STATE(2324)] = 14408, + [SMALL_STATE(2325)] = 14514, + [SMALL_STATE(2326)] = 14624, + [SMALL_STATE(2327)] = 14734, + [SMALL_STATE(2328)] = 14840, + [SMALL_STATE(2329)] = 14946, + [SMALL_STATE(2330)] = 15052, + [SMALL_STATE(2331)] = 15162, + [SMALL_STATE(2332)] = 15268, + [SMALL_STATE(2333)] = 15374, + [SMALL_STATE(2334)] = 15480, + [SMALL_STATE(2335)] = 15586, + [SMALL_STATE(2336)] = 15692, + [SMALL_STATE(2337)] = 15798, + [SMALL_STATE(2338)] = 15904, + [SMALL_STATE(2339)] = 16010, + [SMALL_STATE(2340)] = 16116, + [SMALL_STATE(2341)] = 16226, + [SMALL_STATE(2342)] = 16332, + [SMALL_STATE(2343)] = 16438, + [SMALL_STATE(2344)] = 16544, + [SMALL_STATE(2345)] = 16650, + [SMALL_STATE(2346)] = 16756, + [SMALL_STATE(2347)] = 16866, + [SMALL_STATE(2348)] = 16972, + [SMALL_STATE(2349)] = 17082, + [SMALL_STATE(2350)] = 17188, + [SMALL_STATE(2351)] = 17298, + [SMALL_STATE(2352)] = 17404, + [SMALL_STATE(2353)] = 17514, + [SMALL_STATE(2354)] = 17624, + [SMALL_STATE(2355)] = 17734, + [SMALL_STATE(2356)] = 17844, + [SMALL_STATE(2357)] = 17954, + [SMALL_STATE(2358)] = 18064, + [SMALL_STATE(2359)] = 18170, + [SMALL_STATE(2360)] = 18280, + [SMALL_STATE(2361)] = 18390, + [SMALL_STATE(2362)] = 18500, + [SMALL_STATE(2363)] = 18610, + [SMALL_STATE(2364)] = 18720, + [SMALL_STATE(2365)] = 18826, + [SMALL_STATE(2366)] = 18918, + [SMALL_STATE(2367)] = 19024, + [SMALL_STATE(2368)] = 19130, + [SMALL_STATE(2369)] = 19236, + [SMALL_STATE(2370)] = 19342, + [SMALL_STATE(2371)] = 19448, + [SMALL_STATE(2372)] = 19554, + [SMALL_STATE(2373)] = 19660, + [SMALL_STATE(2374)] = 19766, + [SMALL_STATE(2375)] = 19872, + [SMALL_STATE(2376)] = 19978, + [SMALL_STATE(2377)] = 20088, + [SMALL_STATE(2378)] = 20194, + [SMALL_STATE(2379)] = 20300, + [SMALL_STATE(2380)] = 20406, + [SMALL_STATE(2381)] = 20512, + [SMALL_STATE(2382)] = 20618, + [SMALL_STATE(2383)] = 20728, + [SMALL_STATE(2384)] = 20795, + [SMALL_STATE(2385)] = 20862, + [SMALL_STATE(2386)] = 20937, + [SMALL_STATE(2387)] = 21012, + [SMALL_STATE(2388)] = 21089, + [SMALL_STATE(2389)] = 21164, + [SMALL_STATE(2390)] = 21237, + [SMALL_STATE(2391)] = 21303, + [SMALL_STATE(2392)] = 21369, + [SMALL_STATE(2393)] = 21437, + [SMALL_STATE(2394)] = 21494, + [SMALL_STATE(2395)] = 21557, + [SMALL_STATE(2396)] = 21620, + [SMALL_STATE(2397)] = 21681, + [SMALL_STATE(2398)] = 21738, + [SMALL_STATE(2399)] = 21795, + [SMALL_STATE(2400)] = 21852, + [SMALL_STATE(2401)] = 21909, + [SMALL_STATE(2402)] = 21970, + [SMALL_STATE(2403)] = 22033, + [SMALL_STATE(2404)] = 22096, + [SMALL_STATE(2405)] = 22161, + [SMALL_STATE(2406)] = 22224, + [SMALL_STATE(2407)] = 22287, + [SMALL_STATE(2408)] = 22350, + [SMALL_STATE(2409)] = 22413, + [SMALL_STATE(2410)] = 22470, + [SMALL_STATE(2411)] = 22527, + [SMALL_STATE(2412)] = 22631, + [SMALL_STATE(2413)] = 22735, + [SMALL_STATE(2414)] = 22839, + [SMALL_STATE(2415)] = 22943, + [SMALL_STATE(2416)] = 23047, + [SMALL_STATE(2417)] = 23151, + [SMALL_STATE(2418)] = 23252, + [SMALL_STATE(2419)] = 23353, + [SMALL_STATE(2420)] = 23454, + [SMALL_STATE(2421)] = 23555, + [SMALL_STATE(2422)] = 23656, + [SMALL_STATE(2423)] = 23755, + [SMALL_STATE(2424)] = 23854, + [SMALL_STATE(2425)] = 23953, + [SMALL_STATE(2426)] = 24052, + [SMALL_STATE(2427)] = 24151, + [SMALL_STATE(2428)] = 24250, + [SMALL_STATE(2429)] = 24315, + [SMALL_STATE(2430)] = 24414, + [SMALL_STATE(2431)] = 24513, + [SMALL_STATE(2432)] = 24612, + [SMALL_STATE(2433)] = 24711, + [SMALL_STATE(2434)] = 24810, + [SMALL_STATE(2435)] = 24906, + [SMALL_STATE(2436)] = 25002, + [SMALL_STATE(2437)] = 25064, + [SMALL_STATE(2438)] = 25160, + [SMALL_STATE(2439)] = 25222, + [SMALL_STATE(2440)] = 25318, + [SMALL_STATE(2441)] = 25380, + [SMALL_STATE(2442)] = 25436, + [SMALL_STATE(2443)] = 25532, + [SMALL_STATE(2444)] = 25628, + [SMALL_STATE(2445)] = 25724, + [SMALL_STATE(2446)] = 25820, + [SMALL_STATE(2447)] = 25916, + [SMALL_STATE(2448)] = 26012, + [SMALL_STATE(2449)] = 26067, + [SMALL_STATE(2450)] = 26122, + [SMALL_STATE(2451)] = 26177, + [SMALL_STATE(2452)] = 26249, + [SMALL_STATE(2453)] = 26311, + [SMALL_STATE(2454)] = 26381, + [SMALL_STATE(2455)] = 26435, + [SMALL_STATE(2456)] = 26497, + [SMALL_STATE(2457)] = 26559, + [SMALL_STATE(2458)] = 26613, + [SMALL_STATE(2459)] = 26667, + [SMALL_STATE(2460)] = 26728, + [SMALL_STATE(2461)] = 26823, + [SMALL_STATE(2462)] = 26884, + [SMALL_STATE(2463)] = 26969, + [SMALL_STATE(2464)] = 27028, + [SMALL_STATE(2465)] = 27087, + [SMALL_STATE(2466)] = 27146, + [SMALL_STATE(2467)] = 27199, + [SMALL_STATE(2468)] = 27270, + [SMALL_STATE(2469)] = 27355, + [SMALL_STATE(2470)] = 27440, + [SMALL_STATE(2471)] = 27525, + [SMALL_STATE(2472)] = 27584, + [SMALL_STATE(2473)] = 27655, + [SMALL_STATE(2474)] = 27750, + [SMALL_STATE(2475)] = 27835, + [SMALL_STATE(2476)] = 27894, + [SMALL_STATE(2477)] = 27953, + [SMALL_STATE(2478)] = 28008, + [SMALL_STATE(2479)] = 28067, + [SMALL_STATE(2480)] = 28126, + [SMALL_STATE(2481)] = 28179, + [SMALL_STATE(2482)] = 28232, + [SMALL_STATE(2483)] = 28317, + [SMALL_STATE(2484)] = 28375, + [SMALL_STATE(2485)] = 28425, + [SMALL_STATE(2486)] = 28509, + [SMALL_STATE(2487)] = 28561, + [SMALL_STATE(2488)] = 28643, + [SMALL_STATE(2489)] = 28703, + [SMALL_STATE(2490)] = 28785, + [SMALL_STATE(2491)] = 28867, + [SMALL_STATE(2492)] = 28925, + [SMALL_STATE(2493)] = 28975, + [SMALL_STATE(2494)] = 29025, + [SMALL_STATE(2495)] = 29073, + [SMALL_STATE(2496)] = 29155, + [SMALL_STATE(2497)] = 29213, + [SMALL_STATE(2498)] = 29265, + [SMALL_STATE(2499)] = 29317, + [SMALL_STATE(2500)] = 29401, + [SMALL_STATE(2501)] = 29451, + [SMALL_STATE(2502)] = 29501, + [SMALL_STATE(2503)] = 29553, + [SMALL_STATE(2504)] = 29605, + [SMALL_STATE(2505)] = 29689, + [SMALL_STATE(2506)] = 29773, + [SMALL_STATE(2507)] = 29831, + [SMALL_STATE(2508)] = 29889, + [SMALL_STATE(2509)] = 29941, + [SMALL_STATE(2510)] = 29999, + [SMALL_STATE(2511)] = 30047, + [SMALL_STATE(2512)] = 30099, + [SMALL_STATE(2513)] = 30151, + [SMALL_STATE(2514)] = 30209, + [SMALL_STATE(2515)] = 30261, + [SMALL_STATE(2516)] = 30313, + [SMALL_STATE(2517)] = 30395, + [SMALL_STATE(2518)] = 30452, + [SMALL_STATE(2519)] = 30541, + [SMALL_STATE(2520)] = 30622, + [SMALL_STATE(2521)] = 30673, + [SMALL_STATE(2522)] = 30724, + [SMALL_STATE(2523)] = 30805, + [SMALL_STATE(2524)] = 30852, + [SMALL_STATE(2525)] = 30911, + [SMALL_STATE(2526)] = 31000, + [SMALL_STATE(2527)] = 31089, + [SMALL_STATE(2528)] = 31148, + [SMALL_STATE(2529)] = 31195, + [SMALL_STATE(2530)] = 31242, + [SMALL_STATE(2531)] = 31331, + [SMALL_STATE(2532)] = 31420, + [SMALL_STATE(2533)] = 31509, + [SMALL_STATE(2534)] = 31598, + [SMALL_STATE(2535)] = 31687, + [SMALL_STATE(2536)] = 31738, + [SMALL_STATE(2537)] = 31827, + [SMALL_STATE(2538)] = 31916, + [SMALL_STATE(2539)] = 32005, + [SMALL_STATE(2540)] = 32052, + [SMALL_STATE(2541)] = 32141, + [SMALL_STATE(2542)] = 32188, + [SMALL_STATE(2543)] = 32235, + [SMALL_STATE(2544)] = 32324, + [SMALL_STATE(2545)] = 32371, + [SMALL_STATE(2546)] = 32418, + [SMALL_STATE(2547)] = 32465, + [SMALL_STATE(2548)] = 32512, + [SMALL_STATE(2549)] = 32559, + [SMALL_STATE(2550)] = 32618, + [SMALL_STATE(2551)] = 32707, + [SMALL_STATE(2552)] = 32758, + [SMALL_STATE(2553)] = 32815, + [SMALL_STATE(2554)] = 32862, + [SMALL_STATE(2555)] = 32909, + [SMALL_STATE(2556)] = 32956, + [SMALL_STATE(2557)] = 33003, + [SMALL_STATE(2558)] = 33054, + [SMALL_STATE(2559)] = 33105, + [SMALL_STATE(2560)] = 33194, + [SMALL_STATE(2561)] = 33283, + [SMALL_STATE(2562)] = 33334, + [SMALL_STATE(2563)] = 33381, + [SMALL_STATE(2564)] = 33428, + [SMALL_STATE(2565)] = 33475, + [SMALL_STATE(2566)] = 33564, + [SMALL_STATE(2567)] = 33653, + [SMALL_STATE(2568)] = 33742, + [SMALL_STATE(2569)] = 33789, + [SMALL_STATE(2570)] = 33878, + [SMALL_STATE(2571)] = 33967, + [SMALL_STATE(2572)] = 34056, + [SMALL_STATE(2573)] = 34145, + [SMALL_STATE(2574)] = 34202, + [SMALL_STATE(2575)] = 34269, + [SMALL_STATE(2576)] = 34316, + [SMALL_STATE(2577)] = 34405, + [SMALL_STATE(2578)] = 34494, + [SMALL_STATE(2579)] = 34541, + [SMALL_STATE(2580)] = 34588, + [SMALL_STATE(2581)] = 34671, + [SMALL_STATE(2582)] = 34718, + [SMALL_STATE(2583)] = 34765, + [SMALL_STATE(2584)] = 34816, + [SMALL_STATE(2585)] = 34867, + [SMALL_STATE(2586)] = 34914, + [SMALL_STATE(2587)] = 34961, + [SMALL_STATE(2588)] = 35042, + [SMALL_STATE(2589)] = 35125, + [SMALL_STATE(2590)] = 35176, + [SMALL_STATE(2591)] = 35227, + [SMALL_STATE(2592)] = 35278, + [SMALL_STATE(2593)] = 35329, + [SMALL_STATE(2594)] = 35376, + [SMALL_STATE(2595)] = 35465, + [SMALL_STATE(2596)] = 35512, + [SMALL_STATE(2597)] = 35601, + [SMALL_STATE(2598)] = 35690, + [SMALL_STATE(2599)] = 35779, + [SMALL_STATE(2600)] = 35826, + [SMALL_STATE(2601)] = 35873, + [SMALL_STATE(2602)] = 35924, + [SMALL_STATE(2603)] = 35975, + [SMALL_STATE(2604)] = 36026, + [SMALL_STATE(2605)] = 36115, + [SMALL_STATE(2606)] = 36162, + [SMALL_STATE(2607)] = 36209, + [SMALL_STATE(2608)] = 36256, + [SMALL_STATE(2609)] = 36345, + [SMALL_STATE(2610)] = 36434, + [SMALL_STATE(2611)] = 36481, + [SMALL_STATE(2612)] = 36540, + [SMALL_STATE(2613)] = 36629, + [SMALL_STATE(2614)] = 36676, + [SMALL_STATE(2615)] = 36761, + [SMALL_STATE(2616)] = 36812, + [SMALL_STATE(2617)] = 36863, + [SMALL_STATE(2618)] = 36910, + [SMALL_STATE(2619)] = 36961, + [SMALL_STATE(2620)] = 37050, + [SMALL_STATE(2621)] = 37101, + [SMALL_STATE(2622)] = 37190, + [SMALL_STATE(2623)] = 37271, + [SMALL_STATE(2624)] = 37318, + [SMALL_STATE(2625)] = 37365, + [SMALL_STATE(2626)] = 37454, + [SMALL_STATE(2627)] = 37501, + [SMALL_STATE(2628)] = 37552, + [SMALL_STATE(2629)] = 37599, + [SMALL_STATE(2630)] = 37646, + [SMALL_STATE(2631)] = 37693, + [SMALL_STATE(2632)] = 37740, + [SMALL_STATE(2633)] = 37787, + [SMALL_STATE(2634)] = 37834, + [SMALL_STATE(2635)] = 37885, + [SMALL_STATE(2636)] = 37971, + [SMALL_STATE(2637)] = 38033, + [SMALL_STATE(2638)] = 38113, + [SMALL_STATE(2639)] = 38171, + [SMALL_STATE(2640)] = 38227, + [SMALL_STATE(2641)] = 38277, + [SMALL_STATE(2642)] = 38363, + [SMALL_STATE(2643)] = 38423, + [SMALL_STATE(2644)] = 38491, + [SMALL_STATE(2645)] = 38541, + [SMALL_STATE(2646)] = 38599, + [SMALL_STATE(2647)] = 38685, + [SMALL_STATE(2648)] = 38751, + [SMALL_STATE(2649)] = 38815, + [SMALL_STATE(2650)] = 38871, + [SMALL_STATE(2651)] = 38939, + [SMALL_STATE(2652)] = 38995, + [SMALL_STATE(2653)] = 39051, + [SMALL_STATE(2654)] = 39101, + [SMALL_STATE(2655)] = 39157, + [SMALL_STATE(2656)] = 39227, + [SMALL_STATE(2657)] = 39283, + [SMALL_STATE(2658)] = 39339, + [SMALL_STATE(2659)] = 39389, + [SMALL_STATE(2660)] = 39445, + [SMALL_STATE(2661)] = 39509, + [SMALL_STATE(2662)] = 39589, + [SMALL_STATE(2663)] = 39675, + [SMALL_STATE(2664)] = 39731, + [SMALL_STATE(2665)] = 39783, + [SMALL_STATE(2666)] = 39849, + [SMALL_STATE(2667)] = 39899, + [SMALL_STATE(2668)] = 39955, + [SMALL_STATE(2669)] = 40011, + [SMALL_STATE(2670)] = 40081, + [SMALL_STATE(2671)] = 40145, + [SMALL_STATE(2672)] = 40195, + [SMALL_STATE(2673)] = 40245, + [SMALL_STATE(2674)] = 40295, + [SMALL_STATE(2675)] = 40351, + [SMALL_STATE(2676)] = 40413, + [SMALL_STATE(2677)] = 40463, + [SMALL_STATE(2678)] = 40521, + [SMALL_STATE(2679)] = 40601, + [SMALL_STATE(2680)] = 40681, + [SMALL_STATE(2681)] = 40733, + [SMALL_STATE(2682)] = 40803, + [SMALL_STATE(2683)] = 40859, + [SMALL_STATE(2684)] = 40945, + [SMALL_STATE(2685)] = 41003, + [SMALL_STATE(2686)] = 41059, + [SMALL_STATE(2687)] = 41121, + [SMALL_STATE(2688)] = 41171, + [SMALL_STATE(2689)] = 41223, + [SMALL_STATE(2690)] = 41279, + [SMALL_STATE(2691)] = 41339, + [SMALL_STATE(2692)] = 41399, + [SMALL_STATE(2693)] = 41449, + [SMALL_STATE(2694)] = 41529, + [SMALL_STATE(2695)] = 41597, + [SMALL_STATE(2696)] = 41663, + [SMALL_STATE(2697)] = 41713, + [SMALL_STATE(2698)] = 41763, + [SMALL_STATE(2699)] = 41813, + [SMALL_STATE(2700)] = 41900, + [SMALL_STATE(2701)] = 41955, + [SMALL_STATE(2702)] = 42000, + [SMALL_STATE(2703)] = 42045, + [SMALL_STATE(2704)] = 42090, + [SMALL_STATE(2705)] = 42135, + [SMALL_STATE(2706)] = 42196, + [SMALL_STATE(2707)] = 42283, + [SMALL_STATE(2708)] = 42328, + [SMALL_STATE(2709)] = 42377, + [SMALL_STATE(2710)] = 42426, + [SMALL_STATE(2711)] = 42513, + [SMALL_STATE(2712)] = 42600, + [SMALL_STATE(2713)] = 42645, + [SMALL_STATE(2714)] = 42700, + [SMALL_STATE(2715)] = 42761, + [SMALL_STATE(2716)] = 42812, + [SMALL_STATE(2717)] = 42867, + [SMALL_STATE(2718)] = 42926, + [SMALL_STATE(2719)] = 42993, + [SMALL_STATE(2720)] = 43040, + [SMALL_STATE(2721)] = 43127, + [SMALL_STATE(2722)] = 43214, + [SMALL_STATE(2723)] = 43279, + [SMALL_STATE(2724)] = 43342, + [SMALL_STATE(2725)] = 43397, + [SMALL_STATE(2726)] = 43476, + [SMALL_STATE(2727)] = 43535, + [SMALL_STATE(2728)] = 43584, + [SMALL_STATE(2729)] = 43651, + [SMALL_STATE(2730)] = 43716, + [SMALL_STATE(2731)] = 43795, + [SMALL_STATE(2732)] = 43858, + [SMALL_STATE(2733)] = 43905, + [SMALL_STATE(2734)] = 43952, + [SMALL_STATE(2735)] = 44031, + [SMALL_STATE(2736)] = 44110, + [SMALL_STATE(2737)] = 44159, + [SMALL_STATE(2738)] = 44208, + [SMALL_STATE(2739)] = 44295, + [SMALL_STATE(2740)] = 44344, + [SMALL_STATE(2741)] = 44401, + [SMALL_STATE(2742)] = 44450, + [SMALL_STATE(2743)] = 44537, + [SMALL_STATE(2744)] = 44586, + [SMALL_STATE(2745)] = 44633, + [SMALL_STATE(2746)] = 44680, + [SMALL_STATE(2747)] = 44735, + [SMALL_STATE(2748)] = 44796, + [SMALL_STATE(2749)] = 44845, + [SMALL_STATE(2750)] = 44914, + [SMALL_STATE(2751)] = 44969, + [SMALL_STATE(2752)] = 45028, + [SMALL_STATE(2753)] = 45095, + [SMALL_STATE(2754)] = 45160, + [SMALL_STATE(2755)] = 45247, + [SMALL_STATE(2756)] = 45310, + [SMALL_STATE(2757)] = 45355, + [SMALL_STATE(2758)] = 45404, + [SMALL_STATE(2759)] = 45459, + [SMALL_STATE(2760)] = 45508, + [SMALL_STATE(2761)] = 45595, + [SMALL_STATE(2762)] = 45682, + [SMALL_STATE(2763)] = 45769, + [SMALL_STATE(2764)] = 45814, + [SMALL_STATE(2765)] = 45861, + [SMALL_STATE(2766)] = 45940, + [SMALL_STATE(2767)] = 46027, + [SMALL_STATE(2768)] = 46114, + [SMALL_STATE(2769)] = 46161, + [SMALL_STATE(2770)] = 46212, + [SMALL_STATE(2771)] = 46291, + [SMALL_STATE(2772)] = 46336, + [SMALL_STATE(2773)] = 46391, + [SMALL_STATE(2774)] = 46440, + [SMALL_STATE(2775)] = 46487, + [SMALL_STATE(2776)] = 46534, + [SMALL_STATE(2777)] = 46581, + [SMALL_STATE(2778)] = 46660, + [SMALL_STATE(2779)] = 46747, + [SMALL_STATE(2780)] = 46816, + [SMALL_STATE(2781)] = 46903, + [SMALL_STATE(2782)] = 46958, + [SMALL_STATE(2783)] = 47045, + [SMALL_STATE(2784)] = 47100, + [SMALL_STATE(2785)] = 47155, + [SMALL_STATE(2786)] = 47202, + [SMALL_STATE(2787)] = 47249, + [SMALL_STATE(2788)] = 47296, + [SMALL_STATE(2789)] = 47343, + [SMALL_STATE(2790)] = 47398, + [SMALL_STATE(2791)] = 47443, + [SMALL_STATE(2792)] = 47494, + [SMALL_STATE(2793)] = 47545, + [SMALL_STATE(2794)] = 47624, + [SMALL_STATE(2795)] = 47675, + [SMALL_STATE(2796)] = 47724, + [SMALL_STATE(2797)] = 47773, + [SMALL_STATE(2798)] = 47860, + [SMALL_STATE(2799)] = 47947, + [SMALL_STATE(2800)] = 48004, + [SMALL_STATE(2801)] = 48053, + [SMALL_STATE(2802)] = 48108, + [SMALL_STATE(2803)] = 48177, + [SMALL_STATE(2804)] = 48256, + [SMALL_STATE(2805)] = 48317, + [SMALL_STATE(2806)] = 48364, + [SMALL_STATE(2807)] = 48419, + [SMALL_STATE(2808)] = 48474, + [SMALL_STATE(2809)] = 48553, + [SMALL_STATE(2810)] = 48608, + [SMALL_STATE(2811)] = 48667, + [SMALL_STATE(2812)] = 48712, + [SMALL_STATE(2813)] = 48767, + [SMALL_STATE(2814)] = 48834, + [SMALL_STATE(2815)] = 48899, + [SMALL_STATE(2816)] = 48962, + [SMALL_STATE(2817)] = 49031, + [SMALL_STATE(2818)] = 49088, + [SMALL_STATE(2819)] = 49133, + [SMALL_STATE(2820)] = 49178, + [SMALL_STATE(2821)] = 49265, + [SMALL_STATE(2822)] = 49309, + [SMALL_STATE(2823)] = 49353, + [SMALL_STATE(2824)] = 49397, + [SMALL_STATE(2825)] = 49441, + [SMALL_STATE(2826)] = 49487, + [SMALL_STATE(2827)] = 49537, + [SMALL_STATE(2828)] = 49581, + [SMALL_STATE(2829)] = 49625, + [SMALL_STATE(2830)] = 49669, + [SMALL_STATE(2831)] = 49713, + [SMALL_STATE(2832)] = 49757, + [SMALL_STATE(2833)] = 49803, + [SMALL_STATE(2834)] = 49847, + [SMALL_STATE(2835)] = 49891, + [SMALL_STATE(2836)] = 49935, + [SMALL_STATE(2837)] = 49979, + [SMALL_STATE(2838)] = 50023, + [SMALL_STATE(2839)] = 50067, + [SMALL_STATE(2840)] = 50111, + [SMALL_STATE(2841)] = 50159, + [SMALL_STATE(2842)] = 50207, + [SMALL_STATE(2843)] = 50251, + [SMALL_STATE(2844)] = 50295, + [SMALL_STATE(2845)] = 50339, + [SMALL_STATE(2846)] = 50383, + [SMALL_STATE(2847)] = 50461, + [SMALL_STATE(2848)] = 50505, + [SMALL_STATE(2849)] = 50549, + [SMALL_STATE(2850)] = 50593, + [SMALL_STATE(2851)] = 50637, + [SMALL_STATE(2852)] = 50681, + [SMALL_STATE(2853)] = 50725, + [SMALL_STATE(2854)] = 50769, + [SMALL_STATE(2855)] = 50817, + [SMALL_STATE(2856)] = 50871, + [SMALL_STATE(2857)] = 50915, + [SMALL_STATE(2858)] = 50959, + [SMALL_STATE(2859)] = 51013, + [SMALL_STATE(2860)] = 51059, + [SMALL_STATE(2861)] = 51105, + [SMALL_STATE(2862)] = 51149, + [SMALL_STATE(2863)] = 51193, + [SMALL_STATE(2864)] = 51237, + [SMALL_STATE(2865)] = 51283, + [SMALL_STATE(2866)] = 51327, + [SMALL_STATE(2867)] = 51371, + [SMALL_STATE(2868)] = 51419, + [SMALL_STATE(2869)] = 51463, + [SMALL_STATE(2870)] = 51507, + [SMALL_STATE(2871)] = 51551, + [SMALL_STATE(2872)] = 51605, + [SMALL_STATE(2873)] = 51665, + [SMALL_STATE(2874)] = 51709, + [SMALL_STATE(2875)] = 51753, + [SMALL_STATE(2876)] = 51821, + [SMALL_STATE(2877)] = 51873, + [SMALL_STATE(2878)] = 51927, + [SMALL_STATE(2879)] = 51985, + [SMALL_STATE(2880)] = 52033, + [SMALL_STATE(2881)] = 52077, + [SMALL_STATE(2882)] = 52121, + [SMALL_STATE(2883)] = 52175, + [SMALL_STATE(2884)] = 52219, + [SMALL_STATE(2885)] = 52285, + [SMALL_STATE(2886)] = 52329, + [SMALL_STATE(2887)] = 52379, + [SMALL_STATE(2888)] = 52433, + [SMALL_STATE(2889)] = 52497, + [SMALL_STATE(2890)] = 52559, + [SMALL_STATE(2891)] = 52603, + [SMALL_STATE(2892)] = 52651, + [SMALL_STATE(2893)] = 52703, + [SMALL_STATE(2894)] = 52747, + [SMALL_STATE(2895)] = 52793, + [SMALL_STATE(2896)] = 52837, + [SMALL_STATE(2897)] = 52885, + [SMALL_STATE(2898)] = 52929, + [SMALL_STATE(2899)] = 52977, + [SMALL_STATE(2900)] = 53021, + [SMALL_STATE(2901)] = 53071, + [SMALL_STATE(2902)] = 53115, + [SMALL_STATE(2903)] = 53159, + [SMALL_STATE(2904)] = 53207, + [SMALL_STATE(2905)] = 53251, + [SMALL_STATE(2906)] = 53297, + [SMALL_STATE(2907)] = 53341, + [SMALL_STATE(2908)] = 53393, + [SMALL_STATE(2909)] = 53443, + [SMALL_STATE(2910)] = 53487, + [SMALL_STATE(2911)] = 53531, + [SMALL_STATE(2912)] = 53575, + [SMALL_STATE(2913)] = 53619, + [SMALL_STATE(2914)] = 53673, + [SMALL_STATE(2915)] = 53717, + [SMALL_STATE(2916)] = 53761, + [SMALL_STATE(2917)] = 53805, + [SMALL_STATE(2918)] = 53873, + [SMALL_STATE(2919)] = 53919, + [SMALL_STATE(2920)] = 53963, + [SMALL_STATE(2921)] = 54007, + [SMALL_STATE(2922)] = 54053, + [SMALL_STATE(2923)] = 54097, + [SMALL_STATE(2924)] = 54141, + [SMALL_STATE(2925)] = 54189, + [SMALL_STATE(2926)] = 54245, + [SMALL_STATE(2927)] = 54289, + [SMALL_STATE(2928)] = 54333, + [SMALL_STATE(2929)] = 54377, + [SMALL_STATE(2930)] = 54423, + [SMALL_STATE(2931)] = 54477, + [SMALL_STATE(2932)] = 54521, + [SMALL_STATE(2933)] = 54567, + [SMALL_STATE(2934)] = 54613, + [SMALL_STATE(2935)] = 54661, + [SMALL_STATE(2936)] = 54705, + [SMALL_STATE(2937)] = 54751, + [SMALL_STATE(2938)] = 54795, + [SMALL_STATE(2939)] = 54839, + [SMALL_STATE(2940)] = 54883, + [SMALL_STATE(2941)] = 54927, + [SMALL_STATE(2942)] = 54971, + [SMALL_STATE(2943)] = 55015, + [SMALL_STATE(2944)] = 55067, + [SMALL_STATE(2945)] = 55111, + [SMALL_STATE(2946)] = 55157, + [SMALL_STATE(2947)] = 55205, + [SMALL_STATE(2948)] = 55249, + [SMALL_STATE(2949)] = 55293, + [SMALL_STATE(2950)] = 55337, + [SMALL_STATE(2951)] = 55381, + [SMALL_STATE(2952)] = 55427, + [SMALL_STATE(2953)] = 55471, + [SMALL_STATE(2954)] = 55515, + [SMALL_STATE(2955)] = 55559, + [SMALL_STATE(2956)] = 55611, + [SMALL_STATE(2957)] = 55655, + [SMALL_STATE(2958)] = 55699, + [SMALL_STATE(2959)] = 55743, + [SMALL_STATE(2960)] = 55787, + [SMALL_STATE(2961)] = 55831, + [SMALL_STATE(2962)] = 55883, + [SMALL_STATE(2963)] = 55929, + [SMALL_STATE(2964)] = 55973, + [SMALL_STATE(2965)] = 56017, + [SMALL_STATE(2966)] = 56061, + [SMALL_STATE(2967)] = 56105, + [SMALL_STATE(2968)] = 56149, + [SMALL_STATE(2969)] = 56193, + [SMALL_STATE(2970)] = 56237, + [SMALL_STATE(2971)] = 56283, + [SMALL_STATE(2972)] = 56327, + [SMALL_STATE(2973)] = 56375, + [SMALL_STATE(2974)] = 56419, + [SMALL_STATE(2975)] = 56463, + [SMALL_STATE(2976)] = 56515, + [SMALL_STATE(2977)] = 56559, + [SMALL_STATE(2978)] = 56603, + [SMALL_STATE(2979)] = 56647, + [SMALL_STATE(2980)] = 56691, + [SMALL_STATE(2981)] = 56739, + [SMALL_STATE(2982)] = 56823, + [SMALL_STATE(2983)] = 56867, + [SMALL_STATE(2984)] = 56911, + [SMALL_STATE(2985)] = 56955, + [SMALL_STATE(2986)] = 56999, + [SMALL_STATE(2987)] = 57043, + [SMALL_STATE(2988)] = 57087, + [SMALL_STATE(2989)] = 57131, + [SMALL_STATE(2990)] = 57179, + [SMALL_STATE(2991)] = 57223, + [SMALL_STATE(2992)] = 57267, + [SMALL_STATE(2993)] = 57311, + [SMALL_STATE(2994)] = 57355, + [SMALL_STATE(2995)] = 57399, + [SMALL_STATE(2996)] = 57443, + [SMALL_STATE(2997)] = 57487, + [SMALL_STATE(2998)] = 57531, + [SMALL_STATE(2999)] = 57575, + [SMALL_STATE(3000)] = 57629, + [SMALL_STATE(3001)] = 57689, + [SMALL_STATE(3002)] = 57743, + [SMALL_STATE(3003)] = 57801, + [SMALL_STATE(3004)] = 57867, + [SMALL_STATE(3005)] = 57911, + [SMALL_STATE(3006)] = 57975, + [SMALL_STATE(3007)] = 58037, + [SMALL_STATE(3008)] = 58081, + [SMALL_STATE(3009)] = 58125, + [SMALL_STATE(3010)] = 58169, + [SMALL_STATE(3011)] = 58213, + [SMALL_STATE(3012)] = 58257, + [SMALL_STATE(3013)] = 58301, + [SMALL_STATE(3014)] = 58345, + [SMALL_STATE(3015)] = 58389, + [SMALL_STATE(3016)] = 58437, + [SMALL_STATE(3017)] = 58481, + [SMALL_STATE(3018)] = 58525, + [SMALL_STATE(3019)] = 58573, + [SMALL_STATE(3020)] = 58619, + [SMALL_STATE(3021)] = 58663, + [SMALL_STATE(3022)] = 58707, + [SMALL_STATE(3023)] = 58751, + [SMALL_STATE(3024)] = 58795, + [SMALL_STATE(3025)] = 58839, + [SMALL_STATE(3026)] = 58883, + [SMALL_STATE(3027)] = 58935, + [SMALL_STATE(3028)] = 58979, + [SMALL_STATE(3029)] = 59023, + [SMALL_STATE(3030)] = 59071, + [SMALL_STATE(3031)] = 59125, + [SMALL_STATE(3032)] = 59173, + [SMALL_STATE(3033)] = 59233, + [SMALL_STATE(3034)] = 59277, + [SMALL_STATE(3035)] = 59331, + [SMALL_STATE(3036)] = 59381, + [SMALL_STATE(3037)] = 59425, + [SMALL_STATE(3038)] = 59493, + [SMALL_STATE(3039)] = 59537, + [SMALL_STATE(3040)] = 59595, + [SMALL_STATE(3041)] = 59661, + [SMALL_STATE(3042)] = 59725, + [SMALL_STATE(3043)] = 59787, + [SMALL_STATE(3044)] = 59839, + [SMALL_STATE(3045)] = 59889, + [SMALL_STATE(3046)] = 59937, + [SMALL_STATE(3047)] = 59987, + [SMALL_STATE(3048)] = 60030, + [SMALL_STATE(3049)] = 60073, + [SMALL_STATE(3050)] = 60116, + [SMALL_STATE(3051)] = 60159, + [SMALL_STATE(3052)] = 60202, + [SMALL_STATE(3053)] = 60245, + [SMALL_STATE(3054)] = 60288, + [SMALL_STATE(3055)] = 60331, + [SMALL_STATE(3056)] = 60376, + [SMALL_STATE(3057)] = 60419, + [SMALL_STATE(3058)] = 60462, + [SMALL_STATE(3059)] = 60505, + [SMALL_STATE(3060)] = 60548, + [SMALL_STATE(3061)] = 60591, + [SMALL_STATE(3062)] = 60634, + [SMALL_STATE(3063)] = 60677, + [SMALL_STATE(3064)] = 60720, + [SMALL_STATE(3065)] = 60763, + [SMALL_STATE(3066)] = 60806, + [SMALL_STATE(3067)] = 60849, + [SMALL_STATE(3068)] = 60892, + [SMALL_STATE(3069)] = 60937, + [SMALL_STATE(3070)] = 60980, + [SMALL_STATE(3071)] = 61023, + [SMALL_STATE(3072)] = 61066, + [SMALL_STATE(3073)] = 61109, + [SMALL_STATE(3074)] = 61154, + [SMALL_STATE(3075)] = 61197, + [SMALL_STATE(3076)] = 61240, + [SMALL_STATE(3077)] = 61291, + [SMALL_STATE(3078)] = 61334, + [SMALL_STATE(3079)] = 61377, + [SMALL_STATE(3080)] = 61420, + [SMALL_STATE(3081)] = 61463, + [SMALL_STATE(3082)] = 61506, + [SMALL_STATE(3083)] = 61551, + [SMALL_STATE(3084)] = 61630, + [SMALL_STATE(3085)] = 61673, + [SMALL_STATE(3086)] = 61716, + [SMALL_STATE(3087)] = 61759, + [SMALL_STATE(3088)] = 61804, + [SMALL_STATE(3089)] = 61847, + [SMALL_STATE(3090)] = 61890, + [SMALL_STATE(3091)] = 61937, + [SMALL_STATE(3092)] = 61984, + [SMALL_STATE(3093)] = 62027, + [SMALL_STATE(3094)] = 62070, + [SMALL_STATE(3095)] = 62113, + [SMALL_STATE(3096)] = 62156, + [SMALL_STATE(3097)] = 62199, + [SMALL_STATE(3098)] = 62242, + [SMALL_STATE(3099)] = 62285, + [SMALL_STATE(3100)] = 62328, + [SMALL_STATE(3101)] = 62371, + [SMALL_STATE(3102)] = 62414, + [SMALL_STATE(3103)] = 62461, + [SMALL_STATE(3104)] = 62504, + [SMALL_STATE(3105)] = 62547, + [SMALL_STATE(3106)] = 62598, + [SMALL_STATE(3107)] = 62647, + [SMALL_STATE(3108)] = 62694, + [SMALL_STATE(3109)] = 62739, + [SMALL_STATE(3110)] = 62790, + [SMALL_STATE(3111)] = 62835, + [SMALL_STATE(3112)] = 62886, + [SMALL_STATE(3113)] = 62931, + [SMALL_STATE(3114)] = 62984, + [SMALL_STATE(3115)] = 63027, + [SMALL_STATE(3116)] = 63080, + [SMALL_STATE(3117)] = 63131, + [SMALL_STATE(3118)] = 63180, + [SMALL_STATE(3119)] = 63227, + [SMALL_STATE(3120)] = 63272, + [SMALL_STATE(3121)] = 63323, + [SMALL_STATE(3122)] = 63374, + [SMALL_STATE(3123)] = 63453, + [SMALL_STATE(3124)] = 63532, + [SMALL_STATE(3125)] = 63575, + [SMALL_STATE(3126)] = 63626, + [SMALL_STATE(3127)] = 63675, + [SMALL_STATE(3128)] = 63722, + [SMALL_STATE(3129)] = 63767, + [SMALL_STATE(3130)] = 63818, + [SMALL_STATE(3131)] = 63869, + [SMALL_STATE(3132)] = 63912, + [SMALL_STATE(3133)] = 63963, + [SMALL_STATE(3134)] = 64012, + [SMALL_STATE(3135)] = 64059, + [SMALL_STATE(3136)] = 64104, + [SMALL_STATE(3137)] = 64155, + [SMALL_STATE(3138)] = 64206, + [SMALL_STATE(3139)] = 64249, + [SMALL_STATE(3140)] = 64292, + [SMALL_STATE(3141)] = 64337, + [SMALL_STATE(3142)] = 64380, + [SMALL_STATE(3143)] = 64423, + [SMALL_STATE(3144)] = 64502, + [SMALL_STATE(3145)] = 64581, + [SMALL_STATE(3146)] = 64626, + [SMALL_STATE(3147)] = 64671, + [SMALL_STATE(3148)] = 64726, + [SMALL_STATE(3149)] = 64773, + [SMALL_STATE(3150)] = 64840, + [SMALL_STATE(3151)] = 64885, + [SMALL_STATE(3152)] = 64964, + [SMALL_STATE(3153)] = 65043, + [SMALL_STATE(3154)] = 65086, + [SMALL_STATE(3155)] = 65133, + [SMALL_STATE(3156)] = 65176, + [SMALL_STATE(3157)] = 65223, + [SMALL_STATE(3158)] = 65276, + [SMALL_STATE(3159)] = 65335, + [SMALL_STATE(3160)] = 65388, + [SMALL_STATE(3161)] = 65445, + [SMALL_STATE(3162)] = 65492, + [SMALL_STATE(3163)] = 65557, + [SMALL_STATE(3164)] = 65604, + [SMALL_STATE(3165)] = 65667, + [SMALL_STATE(3166)] = 65728, + [SMALL_STATE(3167)] = 65775, + [SMALL_STATE(3168)] = 65824, + [SMALL_STATE(3169)] = 65869, + [SMALL_STATE(3170)] = 65916, + [SMALL_STATE(3171)] = 65961, + [SMALL_STATE(3172)] = 66006, + [SMALL_STATE(3173)] = 66051, + [SMALL_STATE(3174)] = 66096, + [SMALL_STATE(3175)] = 66139, + [SMALL_STATE(3176)] = 66182, + [SMALL_STATE(3177)] = 66225, + [SMALL_STATE(3178)] = 66270, + [SMALL_STATE(3179)] = 66313, + [SMALL_STATE(3180)] = 66356, + [SMALL_STATE(3181)] = 66399, + [SMALL_STATE(3182)] = 66446, + [SMALL_STATE(3183)] = 66489, + [SMALL_STATE(3184)] = 66532, + [SMALL_STATE(3185)] = 66575, + [SMALL_STATE(3186)] = 66618, + [SMALL_STATE(3187)] = 66661, + [SMALL_STATE(3188)] = 66704, + [SMALL_STATE(3189)] = 66783, + [SMALL_STATE(3190)] = 66826, + [SMALL_STATE(3191)] = 66869, + [SMALL_STATE(3192)] = 66912, + [SMALL_STATE(3193)] = 66955, + [SMALL_STATE(3194)] = 66998, + [SMALL_STATE(3195)] = 67041, + [SMALL_STATE(3196)] = 67084, + [SMALL_STATE(3197)] = 67127, + [SMALL_STATE(3198)] = 67170, + [SMALL_STATE(3199)] = 67213, + [SMALL_STATE(3200)] = 67256, + [SMALL_STATE(3201)] = 67299, + [SMALL_STATE(3202)] = 67342, + [SMALL_STATE(3203)] = 67385, + [SMALL_STATE(3204)] = 67430, + [SMALL_STATE(3205)] = 67473, + [SMALL_STATE(3206)] = 67516, + [SMALL_STATE(3207)] = 67559, + [SMALL_STATE(3208)] = 67608, + [SMALL_STATE(3209)] = 67653, + [SMALL_STATE(3210)] = 67732, + [SMALL_STATE(3211)] = 67777, + [SMALL_STATE(3212)] = 67820, + [SMALL_STATE(3213)] = 67865, + [SMALL_STATE(3214)] = 67908, + [SMALL_STATE(3215)] = 67987, + [SMALL_STATE(3216)] = 68066, + [SMALL_STATE(3217)] = 68109, + [SMALL_STATE(3218)] = 68152, + [SMALL_STATE(3219)] = 68197, + [SMALL_STATE(3220)] = 68242, + [SMALL_STATE(3221)] = 68285, + [SMALL_STATE(3222)] = 68328, + [SMALL_STATE(3223)] = 68388, + [SMALL_STATE(3224)] = 68430, + [SMALL_STATE(3225)] = 68472, + [SMALL_STATE(3226)] = 68514, + [SMALL_STATE(3227)] = 68556, + [SMALL_STATE(3228)] = 68598, + [SMALL_STATE(3229)] = 68644, + [SMALL_STATE(3230)] = 68686, + [SMALL_STATE(3231)] = 68732, + [SMALL_STATE(3232)] = 68776, + [SMALL_STATE(3233)] = 68818, + [SMALL_STATE(3234)] = 68860, + [SMALL_STATE(3235)] = 68910, + [SMALL_STATE(3236)] = 68960, + [SMALL_STATE(3237)] = 69002, + [SMALL_STATE(3238)] = 69044, + [SMALL_STATE(3239)] = 69088, + [SMALL_STATE(3240)] = 69130, + [SMALL_STATE(3241)] = 69176, + [SMALL_STATE(3242)] = 69218, + [SMALL_STATE(3243)] = 69260, + [SMALL_STATE(3244)] = 69302, + [SMALL_STATE(3245)] = 69344, + [SMALL_STATE(3246)] = 69386, + [SMALL_STATE(3247)] = 69428, + [SMALL_STATE(3248)] = 69470, + [SMALL_STATE(3249)] = 69514, + [SMALL_STATE(3250)] = 69558, + [SMALL_STATE(3251)] = 69606, + [SMALL_STATE(3252)] = 69648, + [SMALL_STATE(3253)] = 69690, + [SMALL_STATE(3254)] = 69756, + [SMALL_STATE(3255)] = 69806, + [SMALL_STATE(3256)] = 69854, + [SMALL_STATE(3257)] = 69900, + [SMALL_STATE(3258)] = 69944, + [SMALL_STATE(3259)] = 69988, + [SMALL_STATE(3260)] = 70032, + [SMALL_STATE(3261)] = 70086, + [SMALL_STATE(3262)] = 70136, + [SMALL_STATE(3263)] = 70186, + [SMALL_STATE(3264)] = 70238, + [SMALL_STATE(3265)] = 70296, + [SMALL_STATE(3266)] = 70348, + [SMALL_STATE(3267)] = 70404, + [SMALL_STATE(3268)] = 70468, + [SMALL_STATE(3269)] = 70530, + [SMALL_STATE(3270)] = 70572, + [SMALL_STATE(3271)] = 70614, + [SMALL_STATE(3272)] = 70658, + [SMALL_STATE(3273)] = 70702, + [SMALL_STATE(3274)] = 70746, + [SMALL_STATE(3275)] = 70790, + [SMALL_STATE(3276)] = 70834, + [SMALL_STATE(3277)] = 70876, + [SMALL_STATE(3278)] = 70918, + [SMALL_STATE(3279)] = 70960, + [SMALL_STATE(3280)] = 71002, + [SMALL_STATE(3281)] = 71052, + [SMALL_STATE(3282)] = 71094, + [SMALL_STATE(3283)] = 71136, + [SMALL_STATE(3284)] = 71178, + [SMALL_STATE(3285)] = 71220, + [SMALL_STATE(3286)] = 71262, + [SMALL_STATE(3287)] = 71304, + [SMALL_STATE(3288)] = 71346, + [SMALL_STATE(3289)] = 71388, + [SMALL_STATE(3290)] = 71430, + [SMALL_STATE(3291)] = 71480, + [SMALL_STATE(3292)] = 71528, + [SMALL_STATE(3293)] = 71574, + [SMALL_STATE(3294)] = 71618, + [SMALL_STATE(3295)] = 71668, + [SMALL_STATE(3296)] = 71710, + [SMALL_STATE(3297)] = 71760, + [SMALL_STATE(3298)] = 71802, + [SMALL_STATE(3299)] = 71844, + [SMALL_STATE(3300)] = 71886, + [SMALL_STATE(3301)] = 71930, + [SMALL_STATE(3302)] = 71978, + [SMALL_STATE(3303)] = 72020, + [SMALL_STATE(3304)] = 72062, + [SMALL_STATE(3305)] = 72104, + [SMALL_STATE(3306)] = 72156, + [SMALL_STATE(3307)] = 72208, + [SMALL_STATE(3308)] = 72250, + [SMALL_STATE(3309)] = 72292, + [SMALL_STATE(3310)] = 72334, + [SMALL_STATE(3311)] = 72376, + [SMALL_STATE(3312)] = 72418, + [SMALL_STATE(3313)] = 72497, + [SMALL_STATE(3314)] = 72576, + [SMALL_STATE(3315)] = 72617, + [SMALL_STATE(3316)] = 72658, + [SMALL_STATE(3317)] = 72699, + [SMALL_STATE(3318)] = 72740, + [SMALL_STATE(3319)] = 72781, + [SMALL_STATE(3320)] = 72822, + [SMALL_STATE(3321)] = 72863, + [SMALL_STATE(3322)] = 72904, + [SMALL_STATE(3323)] = 72945, + [SMALL_STATE(3324)] = 72986, + [SMALL_STATE(3325)] = 73027, + [SMALL_STATE(3326)] = 73068, + [SMALL_STATE(3327)] = 73109, + [SMALL_STATE(3328)] = 73150, + [SMALL_STATE(3329)] = 73191, + [SMALL_STATE(3330)] = 73232, + [SMALL_STATE(3331)] = 73311, + [SMALL_STATE(3332)] = 73352, + [SMALL_STATE(3333)] = 73393, + [SMALL_STATE(3334)] = 73434, + [SMALL_STATE(3335)] = 73475, + [SMALL_STATE(3336)] = 73518, + [SMALL_STATE(3337)] = 73561, + [SMALL_STATE(3338)] = 73602, + [SMALL_STATE(3339)] = 73687, + [SMALL_STATE(3340)] = 73766, + [SMALL_STATE(3341)] = 73807, + [SMALL_STATE(3342)] = 73848, + [SMALL_STATE(3343)] = 73891, + [SMALL_STATE(3344)] = 73932, + [SMALL_STATE(3345)] = 73973, + [SMALL_STATE(3346)] = 74014, + [SMALL_STATE(3347)] = 74055, + [SMALL_STATE(3348)] = 74096, + [SMALL_STATE(3349)] = 74141, + [SMALL_STATE(3350)] = 74220, + [SMALL_STATE(3351)] = 74265, + [SMALL_STATE(3352)] = 74344, + [SMALL_STATE(3353)] = 74387, + [SMALL_STATE(3354)] = 74428, + [SMALL_STATE(3355)] = 74507, + [SMALL_STATE(3356)] = 74548, + [SMALL_STATE(3357)] = 74589, + [SMALL_STATE(3358)] = 74630, + [SMALL_STATE(3359)] = 74709, + [SMALL_STATE(3360)] = 74750, + [SMALL_STATE(3361)] = 74791, + [SMALL_STATE(3362)] = 74870, + [SMALL_STATE(3363)] = 74911, + [SMALL_STATE(3364)] = 74952, + [SMALL_STATE(3365)] = 74993, + [SMALL_STATE(3366)] = 75034, + [SMALL_STATE(3367)] = 75113, + [SMALL_STATE(3368)] = 75156, + [SMALL_STATE(3369)] = 75235, + [SMALL_STATE(3370)] = 75314, + [SMALL_STATE(3371)] = 75355, + [SMALL_STATE(3372)] = 75396, + [SMALL_STATE(3373)] = 75475, + [SMALL_STATE(3374)] = 75524, + [SMALL_STATE(3375)] = 75603, + [SMALL_STATE(3376)] = 75682, + [SMALL_STATE(3377)] = 75725, + [SMALL_STATE(3378)] = 75804, + [SMALL_STATE(3379)] = 75883, + [SMALL_STATE(3380)] = 75962, + [SMALL_STATE(3381)] = 76041, + [SMALL_STATE(3382)] = 76120, + [SMALL_STATE(3383)] = 76199, + [SMALL_STATE(3384)] = 76278, + [SMALL_STATE(3385)] = 76357, + [SMALL_STATE(3386)] = 76398, + [SMALL_STATE(3387)] = 76439, + [SMALL_STATE(3388)] = 76518, + [SMALL_STATE(3389)] = 76597, + [SMALL_STATE(3390)] = 76676, + [SMALL_STATE(3391)] = 76717, + [SMALL_STATE(3392)] = 76758, + [SMALL_STATE(3393)] = 76837, + [SMALL_STATE(3394)] = 76916, + [SMALL_STATE(3395)] = 76957, + [SMALL_STATE(3396)] = 76998, + [SMALL_STATE(3397)] = 77039, + [SMALL_STATE(3398)] = 77080, + [SMALL_STATE(3399)] = 77129, + [SMALL_STATE(3400)] = 77176, + [SMALL_STATE(3401)] = 77221, + [SMALL_STATE(3402)] = 77264, + [SMALL_STATE(3403)] = 77343, + [SMALL_STATE(3404)] = 77392, + [SMALL_STATE(3405)] = 77441, + [SMALL_STATE(3406)] = 77520, + [SMALL_STATE(3407)] = 77563, + [SMALL_STATE(3408)] = 77604, + [SMALL_STATE(3409)] = 77645, + [SMALL_STATE(3410)] = 77686, + [SMALL_STATE(3411)] = 77727, + [SMALL_STATE(3412)] = 77768, + [SMALL_STATE(3413)] = 77809, + [SMALL_STATE(3414)] = 77888, + [SMALL_STATE(3415)] = 77929, + [SMALL_STATE(3416)] = 77977, + [SMALL_STATE(3417)] = 78049, + [SMALL_STATE(3418)] = 78121, + [SMALL_STATE(3419)] = 78193, + [SMALL_STATE(3420)] = 78265, + [SMALL_STATE(3421)] = 78337, + [SMALL_STATE(3422)] = 78413, + [SMALL_STATE(3423)] = 78459, + [SMALL_STATE(3424)] = 78503, + [SMALL_STATE(3425)] = 78545, + [SMALL_STATE(3426)] = 78593, + [SMALL_STATE(3427)] = 78665, + [SMALL_STATE(3428)] = 78713, + [SMALL_STATE(3429)] = 78785, + [SMALL_STATE(3430)] = 78857, + [SMALL_STATE(3431)] = 78929, + [SMALL_STATE(3432)] = 78970, + [SMALL_STATE(3433)] = 79011, + [SMALL_STATE(3434)] = 79052, + [SMALL_STATE(3435)] = 79129, + [SMALL_STATE(3436)] = 79202, + [SMALL_STATE(3437)] = 79243, + [SMALL_STATE(3438)] = 79316, + [SMALL_STATE(3439)] = 79357, + [SMALL_STATE(3440)] = 79430, + [SMALL_STATE(3441)] = 79503, + [SMALL_STATE(3442)] = 79544, + [SMALL_STATE(3443)] = 79585, + [SMALL_STATE(3444)] = 79624, + [SMALL_STATE(3445)] = 79667, + [SMALL_STATE(3446)] = 79740, + [SMALL_STATE(3447)] = 79813, + [SMALL_STATE(3448)] = 79852, + [SMALL_STATE(3449)] = 79925, + [SMALL_STATE(3450)] = 79998, + [SMALL_STATE(3451)] = 80037, + [SMALL_STATE(3452)] = 80078, + [SMALL_STATE(3453)] = 80117, + [SMALL_STATE(3454)] = 80155, + [SMALL_STATE(3455)] = 80193, + [SMALL_STATE(3456)] = 80231, + [SMALL_STATE(3457)] = 80269, + [SMALL_STATE(3458)] = 80307, + [SMALL_STATE(3459)] = 80345, + [SMALL_STATE(3460)] = 80383, + [SMALL_STATE(3461)] = 80453, + [SMALL_STATE(3462)] = 80491, + [SMALL_STATE(3463)] = 80529, + [SMALL_STATE(3464)] = 80567, + [SMALL_STATE(3465)] = 80605, + [SMALL_STATE(3466)] = 80643, + [SMALL_STATE(3467)] = 80681, + [SMALL_STATE(3468)] = 80719, + [SMALL_STATE(3469)] = 80757, + [SMALL_STATE(3470)] = 80795, + [SMALL_STATE(3471)] = 80833, + [SMALL_STATE(3472)] = 80871, + [SMALL_STATE(3473)] = 80941, + [SMALL_STATE(3474)] = 80979, + [SMALL_STATE(3475)] = 81017, + [SMALL_STATE(3476)] = 81055, + [SMALL_STATE(3477)] = 81093, + [SMALL_STATE(3478)] = 81163, + [SMALL_STATE(3479)] = 81201, + [SMALL_STATE(3480)] = 81239, + [SMALL_STATE(3481)] = 81277, + [SMALL_STATE(3482)] = 81315, + [SMALL_STATE(3483)] = 81353, + [SMALL_STATE(3484)] = 81391, + [SMALL_STATE(3485)] = 81429, + [SMALL_STATE(3486)] = 81467, + [SMALL_STATE(3487)] = 81505, + [SMALL_STATE(3488)] = 81575, + [SMALL_STATE(3489)] = 81613, + [SMALL_STATE(3490)] = 81651, + [SMALL_STATE(3491)] = 81689, + [SMALL_STATE(3492)] = 81727, + [SMALL_STATE(3493)] = 81765, + [SMALL_STATE(3494)] = 81803, + [SMALL_STATE(3495)] = 81841, + [SMALL_STATE(3496)] = 81879, + [SMALL_STATE(3497)] = 81917, + [SMALL_STATE(3498)] = 81955, + [SMALL_STATE(3499)] = 81993, + [SMALL_STATE(3500)] = 82031, + [SMALL_STATE(3501)] = 82069, + [SMALL_STATE(3502)] = 82107, + [SMALL_STATE(3503)] = 82145, + [SMALL_STATE(3504)] = 82183, + [SMALL_STATE(3505)] = 82221, + [SMALL_STATE(3506)] = 82259, + [SMALL_STATE(3507)] = 82297, + [SMALL_STATE(3508)] = 82335, + [SMALL_STATE(3509)] = 82373, + [SMALL_STATE(3510)] = 82411, + [SMALL_STATE(3511)] = 82485, + [SMALL_STATE(3512)] = 82523, + [SMALL_STATE(3513)] = 82561, + [SMALL_STATE(3514)] = 82599, + [SMALL_STATE(3515)] = 82637, + [SMALL_STATE(3516)] = 82675, + [SMALL_STATE(3517)] = 82713, + [SMALL_STATE(3518)] = 82751, + [SMALL_STATE(3519)] = 82789, + [SMALL_STATE(3520)] = 82827, + [SMALL_STATE(3521)] = 82865, + [SMALL_STATE(3522)] = 82903, + [SMALL_STATE(3523)] = 82977, + [SMALL_STATE(3524)] = 83015, + [SMALL_STATE(3525)] = 83053, + [SMALL_STATE(3526)] = 83091, + [SMALL_STATE(3527)] = 83129, + [SMALL_STATE(3528)] = 83167, + [SMALL_STATE(3529)] = 83205, + [SMALL_STATE(3530)] = 83243, + [SMALL_STATE(3531)] = 83281, + [SMALL_STATE(3532)] = 83319, + [SMALL_STATE(3533)] = 83357, + [SMALL_STATE(3534)] = 83395, + [SMALL_STATE(3535)] = 83433, + [SMALL_STATE(3536)] = 83471, + [SMALL_STATE(3537)] = 83509, + [SMALL_STATE(3538)] = 83547, + [SMALL_STATE(3539)] = 83585, + [SMALL_STATE(3540)] = 83623, + [SMALL_STATE(3541)] = 83661, + [SMALL_STATE(3542)] = 83699, + [SMALL_STATE(3543)] = 83773, + [SMALL_STATE(3544)] = 83811, + [SMALL_STATE(3545)] = 83849, + [SMALL_STATE(3546)] = 83887, + [SMALL_STATE(3547)] = 83925, + [SMALL_STATE(3548)] = 83963, + [SMALL_STATE(3549)] = 84001, + [SMALL_STATE(3550)] = 84039, + [SMALL_STATE(3551)] = 84077, + [SMALL_STATE(3552)] = 84115, + [SMALL_STATE(3553)] = 84153, + [SMALL_STATE(3554)] = 84191, + [SMALL_STATE(3555)] = 84229, + [SMALL_STATE(3556)] = 84267, + [SMALL_STATE(3557)] = 84305, + [SMALL_STATE(3558)] = 84343, + [SMALL_STATE(3559)] = 84381, + [SMALL_STATE(3560)] = 84419, + [SMALL_STATE(3561)] = 84457, + [SMALL_STATE(3562)] = 84495, + [SMALL_STATE(3563)] = 84533, + [SMALL_STATE(3564)] = 84571, + [SMALL_STATE(3565)] = 84609, + [SMALL_STATE(3566)] = 84647, + [SMALL_STATE(3567)] = 84685, + [SMALL_STATE(3568)] = 84723, + [SMALL_STATE(3569)] = 84761, + [SMALL_STATE(3570)] = 84799, + [SMALL_STATE(3571)] = 84837, + [SMALL_STATE(3572)] = 84875, + [SMALL_STATE(3573)] = 84913, + [SMALL_STATE(3574)] = 84951, + [SMALL_STATE(3575)] = 84989, + [SMALL_STATE(3576)] = 85027, + [SMALL_STATE(3577)] = 85065, + [SMALL_STATE(3578)] = 85103, + [SMALL_STATE(3579)] = 85141, + [SMALL_STATE(3580)] = 85179, + [SMALL_STATE(3581)] = 85217, + [SMALL_STATE(3582)] = 85255, + [SMALL_STATE(3583)] = 85293, + [SMALL_STATE(3584)] = 85331, + [SMALL_STATE(3585)] = 85399, + [SMALL_STATE(3586)] = 85437, + [SMALL_STATE(3587)] = 85475, + [SMALL_STATE(3588)] = 85513, + [SMALL_STATE(3589)] = 85553, + [SMALL_STATE(3590)] = 85591, + [SMALL_STATE(3591)] = 85629, + [SMALL_STATE(3592)] = 85699, + [SMALL_STATE(3593)] = 85737, + [SMALL_STATE(3594)] = 85775, + [SMALL_STATE(3595)] = 85813, + [SMALL_STATE(3596)] = 85851, + [SMALL_STATE(3597)] = 85889, + [SMALL_STATE(3598)] = 85927, + [SMALL_STATE(3599)] = 85965, + [SMALL_STATE(3600)] = 86003, + [SMALL_STATE(3601)] = 86041, + [SMALL_STATE(3602)] = 86079, + [SMALL_STATE(3603)] = 86117, + [SMALL_STATE(3604)] = 86155, + [SMALL_STATE(3605)] = 86193, + [SMALL_STATE(3606)] = 86231, + [SMALL_STATE(3607)] = 86269, + [SMALL_STATE(3608)] = 86307, + [SMALL_STATE(3609)] = 86345, + [SMALL_STATE(3610)] = 86383, + [SMALL_STATE(3611)] = 86421, + [SMALL_STATE(3612)] = 86489, + [SMALL_STATE(3613)] = 86527, + [SMALL_STATE(3614)] = 86565, + [SMALL_STATE(3615)] = 86603, + [SMALL_STATE(3616)] = 86673, + [SMALL_STATE(3617)] = 86711, + [SMALL_STATE(3618)] = 86749, + [SMALL_STATE(3619)] = 86787, + [SMALL_STATE(3620)] = 86825, + [SMALL_STATE(3621)] = 86863, + [SMALL_STATE(3622)] = 86901, + [SMALL_STATE(3623)] = 86939, + [SMALL_STATE(3624)] = 86977, + [SMALL_STATE(3625)] = 87015, + [SMALL_STATE(3626)] = 87053, + [SMALL_STATE(3627)] = 87123, + [SMALL_STATE(3628)] = 87161, + [SMALL_STATE(3629)] = 87199, + [SMALL_STATE(3630)] = 87237, + [SMALL_STATE(3631)] = 87311, + [SMALL_STATE(3632)] = 87349, + [SMALL_STATE(3633)] = 87423, + [SMALL_STATE(3634)] = 87461, + [SMALL_STATE(3635)] = 87499, + [SMALL_STATE(3636)] = 87537, + [SMALL_STATE(3637)] = 87575, + [SMALL_STATE(3638)] = 87645, + [SMALL_STATE(3639)] = 87683, + [SMALL_STATE(3640)] = 87721, + [SMALL_STATE(3641)] = 87759, + [SMALL_STATE(3642)] = 87797, + [SMALL_STATE(3643)] = 87835, + [SMALL_STATE(3644)] = 87873, + [SMALL_STATE(3645)] = 87911, + [SMALL_STATE(3646)] = 87949, + [SMALL_STATE(3647)] = 87987, + [SMALL_STATE(3648)] = 88055, + [SMALL_STATE(3649)] = 88093, + [SMALL_STATE(3650)] = 88131, + [SMALL_STATE(3651)] = 88169, + [SMALL_STATE(3652)] = 88207, + [SMALL_STATE(3653)] = 88245, + [SMALL_STATE(3654)] = 88283, + [SMALL_STATE(3655)] = 88351, + [SMALL_STATE(3656)] = 88389, + [SMALL_STATE(3657)] = 88459, + [SMALL_STATE(3658)] = 88497, + [SMALL_STATE(3659)] = 88535, + [SMALL_STATE(3660)] = 88605, + [SMALL_STATE(3661)] = 88643, + [SMALL_STATE(3662)] = 88681, + [SMALL_STATE(3663)] = 88719, + [SMALL_STATE(3664)] = 88757, + [SMALL_STATE(3665)] = 88825, + [SMALL_STATE(3666)] = 88863, + [SMALL_STATE(3667)] = 88901, + [SMALL_STATE(3668)] = 88939, + [SMALL_STATE(3669)] = 88977, + [SMALL_STATE(3670)] = 89051, + [SMALL_STATE(3671)] = 89121, + [SMALL_STATE(3672)] = 89159, + [SMALL_STATE(3673)] = 89199, + [SMALL_STATE(3674)] = 89237, + [SMALL_STATE(3675)] = 89275, + [SMALL_STATE(3676)] = 89313, + [SMALL_STATE(3677)] = 89351, + [SMALL_STATE(3678)] = 89389, + [SMALL_STATE(3679)] = 89427, + [SMALL_STATE(3680)] = 89465, + [SMALL_STATE(3681)] = 89503, + [SMALL_STATE(3682)] = 89541, + [SMALL_STATE(3683)] = 89579, + [SMALL_STATE(3684)] = 89617, + [SMALL_STATE(3685)] = 89655, + [SMALL_STATE(3686)] = 89693, + [SMALL_STATE(3687)] = 89731, + [SMALL_STATE(3688)] = 89768, + [SMALL_STATE(3689)] = 89805, + [SMALL_STATE(3690)] = 89842, + [SMALL_STATE(3691)] = 89909, + [SMALL_STATE(3692)] = 89946, + [SMALL_STATE(3693)] = 89983, + [SMALL_STATE(3694)] = 90050, + [SMALL_STATE(3695)] = 90087, + [SMALL_STATE(3696)] = 90124, + [SMALL_STATE(3697)] = 90189, + [SMALL_STATE(3698)] = 90226, + [SMALL_STATE(3699)] = 90263, + [SMALL_STATE(3700)] = 90300, + [SMALL_STATE(3701)] = 90337, + [SMALL_STATE(3702)] = 90374, + [SMALL_STATE(3703)] = 90411, + [SMALL_STATE(3704)] = 90448, + [SMALL_STATE(3705)] = 90485, + [SMALL_STATE(3706)] = 90522, + [SMALL_STATE(3707)] = 90559, + [SMALL_STATE(3708)] = 90596, + [SMALL_STATE(3709)] = 90633, + [SMALL_STATE(3710)] = 90670, + [SMALL_STATE(3711)] = 90707, + [SMALL_STATE(3712)] = 90746, + [SMALL_STATE(3713)] = 90783, + [SMALL_STATE(3714)] = 90820, + [SMALL_STATE(3715)] = 90857, + [SMALL_STATE(3716)] = 90894, + [SMALL_STATE(3717)] = 90931, + [SMALL_STATE(3718)] = 90968, + [SMALL_STATE(3719)] = 91005, + [SMALL_STATE(3720)] = 91070, + [SMALL_STATE(3721)] = 91109, + [SMALL_STATE(3722)] = 91146, + [SMALL_STATE(3723)] = 91183, + [SMALL_STATE(3724)] = 91220, + [SMALL_STATE(3725)] = 91257, + [SMALL_STATE(3726)] = 91294, + [SMALL_STATE(3727)] = 91331, + [SMALL_STATE(3728)] = 91368, + [SMALL_STATE(3729)] = 91433, + [SMALL_STATE(3730)] = 91470, + [SMALL_STATE(3731)] = 91537, + [SMALL_STATE(3732)] = 91574, + [SMALL_STATE(3733)] = 91613, + [SMALL_STATE(3734)] = 91650, + [SMALL_STATE(3735)] = 91687, + [SMALL_STATE(3736)] = 91724, + [SMALL_STATE(3737)] = 91761, + [SMALL_STATE(3738)] = 91798, + [SMALL_STATE(3739)] = 91865, + [SMALL_STATE(3740)] = 91902, + [SMALL_STATE(3741)] = 91939, + [SMALL_STATE(3742)] = 91976, + [SMALL_STATE(3743)] = 92043, + [SMALL_STATE(3744)] = 92080, + [SMALL_STATE(3745)] = 92147, + [SMALL_STATE(3746)] = 92186, + [SMALL_STATE(3747)] = 92223, + [SMALL_STATE(3748)] = 92260, + [SMALL_STATE(3749)] = 92297, + [SMALL_STATE(3750)] = 92334, + [SMALL_STATE(3751)] = 92371, + [SMALL_STATE(3752)] = 92408, + [SMALL_STATE(3753)] = 92445, + [SMALL_STATE(3754)] = 92482, + [SMALL_STATE(3755)] = 92519, + [SMALL_STATE(3756)] = 92556, + [SMALL_STATE(3757)] = 92593, + [SMALL_STATE(3758)] = 92630, + [SMALL_STATE(3759)] = 92667, + [SMALL_STATE(3760)] = 92704, + [SMALL_STATE(3761)] = 92769, + [SMALL_STATE(3762)] = 92806, + [SMALL_STATE(3763)] = 92843, + [SMALL_STATE(3764)] = 92882, + [SMALL_STATE(3765)] = 92921, + [SMALL_STATE(3766)] = 92958, + [SMALL_STATE(3767)] = 92995, + [SMALL_STATE(3768)] = 93032, + [SMALL_STATE(3769)] = 93069, + [SMALL_STATE(3770)] = 93106, + [SMALL_STATE(3771)] = 93143, + [SMALL_STATE(3772)] = 93210, + [SMALL_STATE(3773)] = 93247, + [SMALL_STATE(3774)] = 93284, + [SMALL_STATE(3775)] = 93323, + [SMALL_STATE(3776)] = 93360, + [SMALL_STATE(3777)] = 93397, + [SMALL_STATE(3778)] = 93434, + [SMALL_STATE(3779)] = 93471, + [SMALL_STATE(3780)] = 93508, + [SMALL_STATE(3781)] = 93545, + [SMALL_STATE(3782)] = 93582, + [SMALL_STATE(3783)] = 93619, + [SMALL_STATE(3784)] = 93656, + [SMALL_STATE(3785)] = 93693, + [SMALL_STATE(3786)] = 93730, + [SMALL_STATE(3787)] = 93767, + [SMALL_STATE(3788)] = 93804, + [SMALL_STATE(3789)] = 93871, + [SMALL_STATE(3790)] = 93908, + [SMALL_STATE(3791)] = 93945, + [SMALL_STATE(3792)] = 93982, + [SMALL_STATE(3793)] = 94019, + [SMALL_STATE(3794)] = 94058, + [SMALL_STATE(3795)] = 94095, + [SMALL_STATE(3796)] = 94132, + [SMALL_STATE(3797)] = 94169, + [SMALL_STATE(3798)] = 94206, + [SMALL_STATE(3799)] = 94243, + [SMALL_STATE(3800)] = 94280, + [SMALL_STATE(3801)] = 94317, + [SMALL_STATE(3802)] = 94353, + [SMALL_STATE(3803)] = 94389, + [SMALL_STATE(3804)] = 94425, + [SMALL_STATE(3805)] = 94461, + [SMALL_STATE(3806)] = 94497, + [SMALL_STATE(3807)] = 94559, + [SMALL_STATE(3808)] = 94595, + [SMALL_STATE(3809)] = 94631, + [SMALL_STATE(3810)] = 94667, + [SMALL_STATE(3811)] = 94703, + [SMALL_STATE(3812)] = 94739, + [SMALL_STATE(3813)] = 94775, + [SMALL_STATE(3814)] = 94811, + [SMALL_STATE(3815)] = 94847, + [SMALL_STATE(3816)] = 94883, + [SMALL_STATE(3817)] = 94919, + [SMALL_STATE(3818)] = 94955, + [SMALL_STATE(3819)] = 94991, + [SMALL_STATE(3820)] = 95027, + [SMALL_STATE(3821)] = 95063, + [SMALL_STATE(3822)] = 95099, + [SMALL_STATE(3823)] = 95135, + [SMALL_STATE(3824)] = 95171, + [SMALL_STATE(3825)] = 95207, + [SMALL_STATE(3826)] = 95243, + [SMALL_STATE(3827)] = 95279, + [SMALL_STATE(3828)] = 95315, + [SMALL_STATE(3829)] = 95351, + [SMALL_STATE(3830)] = 95387, + [SMALL_STATE(3831)] = 95423, + [SMALL_STATE(3832)] = 95459, + [SMALL_STATE(3833)] = 95495, + [SMALL_STATE(3834)] = 95557, + [SMALL_STATE(3835)] = 95593, + [SMALL_STATE(3836)] = 95629, + [SMALL_STATE(3837)] = 95665, + [SMALL_STATE(3838)] = 95701, + [SMALL_STATE(3839)] = 95737, + [SMALL_STATE(3840)] = 95799, + [SMALL_STATE(3841)] = 95835, + [SMALL_STATE(3842)] = 95871, + [SMALL_STATE(3843)] = 95907, + [SMALL_STATE(3844)] = 95943, + [SMALL_STATE(3845)] = 95979, + [SMALL_STATE(3846)] = 96015, + [SMALL_STATE(3847)] = 96051, + [SMALL_STATE(3848)] = 96087, + [SMALL_STATE(3849)] = 96149, + [SMALL_STATE(3850)] = 96185, + [SMALL_STATE(3851)] = 96221, + [SMALL_STATE(3852)] = 96257, + [SMALL_STATE(3853)] = 96293, + [SMALL_STATE(3854)] = 96329, + [SMALL_STATE(3855)] = 96365, + [SMALL_STATE(3856)] = 96401, + [SMALL_STATE(3857)] = 96437, + [SMALL_STATE(3858)] = 96473, + [SMALL_STATE(3859)] = 96509, + [SMALL_STATE(3860)] = 96545, + [SMALL_STATE(3861)] = 96581, + [SMALL_STATE(3862)] = 96617, + [SMALL_STATE(3863)] = 96653, + [SMALL_STATE(3864)] = 96689, + [SMALL_STATE(3865)] = 96725, + [SMALL_STATE(3866)] = 96761, + [SMALL_STATE(3867)] = 96797, + [SMALL_STATE(3868)] = 96833, + [SMALL_STATE(3869)] = 96871, + [SMALL_STATE(3870)] = 96907, + [SMALL_STATE(3871)] = 96943, + [SMALL_STATE(3872)] = 96979, + [SMALL_STATE(3873)] = 97015, + [SMALL_STATE(3874)] = 97051, + [SMALL_STATE(3875)] = 97087, + [SMALL_STATE(3876)] = 97123, + [SMALL_STATE(3877)] = 97159, + [SMALL_STATE(3878)] = 97195, + [SMALL_STATE(3879)] = 97231, + [SMALL_STATE(3880)] = 97267, + [SMALL_STATE(3881)] = 97303, + [SMALL_STATE(3882)] = 97339, + [SMALL_STATE(3883)] = 97375, + [SMALL_STATE(3884)] = 97411, + [SMALL_STATE(3885)] = 97447, + [SMALL_STATE(3886)] = 97483, + [SMALL_STATE(3887)] = 97545, + [SMALL_STATE(3888)] = 97581, + [SMALL_STATE(3889)] = 97617, + [SMALL_STATE(3890)] = 97653, + [SMALL_STATE(3891)] = 97689, + [SMALL_STATE(3892)] = 97725, + [SMALL_STATE(3893)] = 97763, + [SMALL_STATE(3894)] = 97799, + [SMALL_STATE(3895)] = 97835, + [SMALL_STATE(3896)] = 97871, + [SMALL_STATE(3897)] = 97907, + [SMALL_STATE(3898)] = 97943, + [SMALL_STATE(3899)] = 97979, + [SMALL_STATE(3900)] = 98015, + [SMALL_STATE(3901)] = 98051, + [SMALL_STATE(3902)] = 98087, + [SMALL_STATE(3903)] = 98123, + [SMALL_STATE(3904)] = 98159, + [SMALL_STATE(3905)] = 98195, + [SMALL_STATE(3906)] = 98231, + [SMALL_STATE(3907)] = 98267, + [SMALL_STATE(3908)] = 98303, + [SMALL_STATE(3909)] = 98339, + [SMALL_STATE(3910)] = 98375, + [SMALL_STATE(3911)] = 98411, + [SMALL_STATE(3912)] = 98447, + [SMALL_STATE(3913)] = 98483, + [SMALL_STATE(3914)] = 98519, + [SMALL_STATE(3915)] = 98555, + [SMALL_STATE(3916)] = 98591, + [SMALL_STATE(3917)] = 98627, + [SMALL_STATE(3918)] = 98663, + [SMALL_STATE(3919)] = 98699, + [SMALL_STATE(3920)] = 98735, + [SMALL_STATE(3921)] = 98771, + [SMALL_STATE(3922)] = 98807, + [SMALL_STATE(3923)] = 98843, + [SMALL_STATE(3924)] = 98879, + [SMALL_STATE(3925)] = 98915, + [SMALL_STATE(3926)] = 98951, + [SMALL_STATE(3927)] = 98987, + [SMALL_STATE(3928)] = 99023, + [SMALL_STATE(3929)] = 99059, + [SMALL_STATE(3930)] = 99095, + [SMALL_STATE(3931)] = 99131, + [SMALL_STATE(3932)] = 99167, + [SMALL_STATE(3933)] = 99202, + [SMALL_STATE(3934)] = 99237, + [SMALL_STATE(3935)] = 99272, + [SMALL_STATE(3936)] = 99307, + [SMALL_STATE(3937)] = 99342, + [SMALL_STATE(3938)] = 99377, + [SMALL_STATE(3939)] = 99412, + [SMALL_STATE(3940)] = 99447, + [SMALL_STATE(3941)] = 99482, + [SMALL_STATE(3942)] = 99517, + [SMALL_STATE(3943)] = 99577, + [SMALL_STATE(3944)] = 99621, + [SMALL_STATE(3945)] = 99681, + [SMALL_STATE(3946)] = 99741, + [SMALL_STATE(3947)] = 99775, + [SMALL_STATE(3948)] = 99835, + [SMALL_STATE(3949)] = 99903, + [SMALL_STATE(3950)] = 99941, + [SMALL_STATE(3951)] = 100009, + [SMALL_STATE(3952)] = 100043, + [SMALL_STATE(3953)] = 100077, + [SMALL_STATE(3954)] = 100111, + [SMALL_STATE(3955)] = 100171, + [SMALL_STATE(3956)] = 100236, + [SMALL_STATE(3957)] = 100301, + [SMALL_STATE(3958)] = 100338, + [SMALL_STATE(3959)] = 100393, + [SMALL_STATE(3960)] = 100438, + [SMALL_STATE(3961)] = 100483, + [SMALL_STATE(3962)] = 100536, + [SMALL_STATE(3963)] = 100568, + [SMALL_STATE(3964)] = 100600, + [SMALL_STATE(3965)] = 100632, + [SMALL_STATE(3966)] = 100691, + [SMALL_STATE(3967)] = 100732, + [SMALL_STATE(3968)] = 100775, + [SMALL_STATE(3969)] = 100818, + [SMALL_STATE(3970)] = 100861, + [SMALL_STATE(3971)] = 100902, + [SMALL_STATE(3972)] = 100945, + [SMALL_STATE(3973)] = 100988, + [SMALL_STATE(3974)] = 101031, + [SMALL_STATE(3975)] = 101061, + [SMALL_STATE(3976)] = 101103, + [SMALL_STATE(3977)] = 101135, + [SMALL_STATE(3978)] = 101165, + [SMALL_STATE(3979)] = 101197, + [SMALL_STATE(3980)] = 101239, + [SMALL_STATE(3981)] = 101271, + [SMALL_STATE(3982)] = 101303, + [SMALL_STATE(3983)] = 101333, + [SMALL_STATE(3984)] = 101363, + [SMALL_STATE(3985)] = 101393, + [SMALL_STATE(3986)] = 101423, + [SMALL_STATE(3987)] = 101453, + [SMALL_STATE(3988)] = 101485, + [SMALL_STATE(3989)] = 101517, + [SMALL_STATE(3990)] = 101557, + [SMALL_STATE(3991)] = 101597, + [SMALL_STATE(3992)] = 101637, + [SMALL_STATE(3993)] = 101669, + [SMALL_STATE(3994)] = 101711, + [SMALL_STATE(3995)] = 101751, + [SMALL_STATE(3996)] = 101783, + [SMALL_STATE(3997)] = 101815, + [SMALL_STATE(3998)] = 101857, + [SMALL_STATE(3999)] = 101889, + [SMALL_STATE(4000)] = 101921, + [SMALL_STATE(4001)] = 101953, + [SMALL_STATE(4002)] = 101988, + [SMALL_STATE(4003)] = 102041, + [SMALL_STATE(4004)] = 102078, + [SMALL_STATE(4005)] = 102129, + [SMALL_STATE(4006)] = 102180, + [SMALL_STATE(4007)] = 102211, + [SMALL_STATE(4008)] = 102264, + [SMALL_STATE(4009)] = 102315, + [SMALL_STATE(4010)] = 102368, + [SMALL_STATE(4011)] = 102407, + [SMALL_STATE(4012)] = 102444, + [SMALL_STATE(4013)] = 102495, + [SMALL_STATE(4014)] = 102528, + [SMALL_STATE(4015)] = 102559, + [SMALL_STATE(4016)] = 102610, + [SMALL_STATE(4017)] = 102649, + [SMALL_STATE(4018)] = 102702, + [SMALL_STATE(4019)] = 102739, + [SMALL_STATE(4020)] = 102790, + [SMALL_STATE(4021)] = 102821, + [SMALL_STATE(4022)] = 102872, + [SMALL_STATE(4023)] = 102923, + [SMALL_STATE(4024)] = 102954, + [SMALL_STATE(4025)] = 102991, + [SMALL_STATE(4026)] = 103028, + [SMALL_STATE(4027)] = 103079, + [SMALL_STATE(4028)] = 103130, + [SMALL_STATE(4029)] = 103183, + [SMALL_STATE(4030)] = 103236, + [SMALL_STATE(4031)] = 103287, + [SMALL_STATE(4032)] = 103324, + [SMALL_STATE(4033)] = 103355, + [SMALL_STATE(4034)] = 103408, + [SMALL_STATE(4035)] = 103445, + [SMALL_STATE(4036)] = 103475, + [SMALL_STATE(4037)] = 103525, + [SMALL_STATE(4038)] = 103575, + [SMALL_STATE(4039)] = 103625, + [SMALL_STATE(4040)] = 103663, + [SMALL_STATE(4041)] = 103693, + [SMALL_STATE(4042)] = 103743, + [SMALL_STATE(4043)] = 103793, + [SMALL_STATE(4044)] = 103823, + [SMALL_STATE(4045)] = 103853, + [SMALL_STATE(4046)] = 103903, + [SMALL_STATE(4047)] = 103941, + [SMALL_STATE(4048)] = 103991, + [SMALL_STATE(4049)] = 104041, + [SMALL_STATE(4050)] = 104091, + [SMALL_STATE(4051)] = 104121, + [SMALL_STATE(4052)] = 104171, + [SMALL_STATE(4053)] = 104221, + [SMALL_STATE(4054)] = 104271, + [SMALL_STATE(4055)] = 104321, + [SMALL_STATE(4056)] = 104371, + [SMALL_STATE(4057)] = 104401, + [SMALL_STATE(4058)] = 104453, + [SMALL_STATE(4059)] = 104503, + [SMALL_STATE(4060)] = 104553, + [SMALL_STATE(4061)] = 104603, + [SMALL_STATE(4062)] = 104633, + [SMALL_STATE(4063)] = 104683, + [SMALL_STATE(4064)] = 104735, + [SMALL_STATE(4065)] = 104760, + [SMALL_STATE(4066)] = 104785, + [SMALL_STATE(4067)] = 104822, + [SMALL_STATE(4068)] = 104851, + [SMALL_STATE(4069)] = 104898, + [SMALL_STATE(4070)] = 104935, + [SMALL_STATE(4071)] = 104982, + [SMALL_STATE(4072)] = 105017, + [SMALL_STATE(4073)] = 105064, + [SMALL_STATE(4074)] = 105093, + [SMALL_STATE(4075)] = 105118, + [SMALL_STATE(4076)] = 105155, + [SMALL_STATE(4077)] = 105184, + [SMALL_STATE(4078)] = 105231, + [SMALL_STATE(4079)] = 105268, + [SMALL_STATE(4080)] = 105315, + [SMALL_STATE(4081)] = 105340, + [SMALL_STATE(4082)] = 105387, + [SMALL_STATE(4083)] = 105434, + [SMALL_STATE(4084)] = 105481, + [SMALL_STATE(4085)] = 105528, + [SMALL_STATE(4086)] = 105569, + [SMALL_STATE(4087)] = 105616, + [SMALL_STATE(4088)] = 105663, + [SMALL_STATE(4089)] = 105692, + [SMALL_STATE(4090)] = 105717, + [SMALL_STATE(4091)] = 105754, + [SMALL_STATE(4092)] = 105779, + [SMALL_STATE(4093)] = 105826, + [SMALL_STATE(4094)] = 105873, + [SMALL_STATE(4095)] = 105912, + [SMALL_STATE(4096)] = 105959, + [SMALL_STATE(4097)] = 105988, + [SMALL_STATE(4098)] = 106017, + [SMALL_STATE(4099)] = 106046, + [SMALL_STATE(4100)] = 106091, + [SMALL_STATE(4101)] = 106134, + [SMALL_STATE(4102)] = 106163, + [SMALL_STATE(4103)] = 106192, + [SMALL_STATE(4104)] = 106221, + [SMALL_STATE(4105)] = 106268, + [SMALL_STATE(4106)] = 106293, + [SMALL_STATE(4107)] = 106318, + [SMALL_STATE(4108)] = 106359, + [SMALL_STATE(4109)] = 106406, + [SMALL_STATE(4110)] = 106443, + [SMALL_STATE(4111)] = 106472, + [SMALL_STATE(4112)] = 106513, + [SMALL_STATE(4113)] = 106560, + [SMALL_STATE(4114)] = 106602, + [SMALL_STATE(4115)] = 106632, + [SMALL_STATE(4116)] = 106676, + [SMALL_STATE(4117)] = 106704, + [SMALL_STATE(4118)] = 106748, + [SMALL_STATE(4119)] = 106792, + [SMALL_STATE(4120)] = 106836, + [SMALL_STATE(4121)] = 106880, + [SMALL_STATE(4122)] = 106912, + [SMALL_STATE(4123)] = 106956, + [SMALL_STATE(4124)] = 107000, + [SMALL_STATE(4125)] = 107028, + [SMALL_STATE(4126)] = 107072, + [SMALL_STATE(4127)] = 107114, + [SMALL_STATE(4128)] = 107142, + [SMALL_STATE(4129)] = 107186, + [SMALL_STATE(4130)] = 107228, + [SMALL_STATE(4131)] = 107270, + [SMALL_STATE(4132)] = 107312, + [SMALL_STATE(4133)] = 107354, + [SMALL_STATE(4134)] = 107398, + [SMALL_STATE(4135)] = 107442, + [SMALL_STATE(4136)] = 107486, + [SMALL_STATE(4137)] = 107530, + [SMALL_STATE(4138)] = 107574, + [SMALL_STATE(4139)] = 107618, + [SMALL_STATE(4140)] = 107662, + [SMALL_STATE(4141)] = 107706, + [SMALL_STATE(4142)] = 107750, + [SMALL_STATE(4143)] = 107794, + [SMALL_STATE(4144)] = 107836, + [SMALL_STATE(4145)] = 107878, + [SMALL_STATE(4146)] = 107920, + [SMALL_STATE(4147)] = 107964, + [SMALL_STATE(4148)] = 108008, + [SMALL_STATE(4149)] = 108038, + [SMALL_STATE(4150)] = 108082, + [SMALL_STATE(4151)] = 108126, + [SMALL_STATE(4152)] = 108170, + [SMALL_STATE(4153)] = 108214, + [SMALL_STATE(4154)] = 108258, + [SMALL_STATE(4155)] = 108302, + [SMALL_STATE(4156)] = 108344, + [SMALL_STATE(4157)] = 108388, + [SMALL_STATE(4158)] = 108432, + [SMALL_STATE(4159)] = 108474, + [SMALL_STATE(4160)] = 108516, + [SMALL_STATE(4161)] = 108558, + [SMALL_STATE(4162)] = 108602, + [SMALL_STATE(4163)] = 108644, + [SMALL_STATE(4164)] = 108688, + [SMALL_STATE(4165)] = 108732, + [SMALL_STATE(4166)] = 108774, + [SMALL_STATE(4167)] = 108818, + [SMALL_STATE(4168)] = 108866, + [SMALL_STATE(4169)] = 108910, + [SMALL_STATE(4170)] = 108954, + [SMALL_STATE(4171)] = 108998, + [SMALL_STATE(4172)] = 109040, + [SMALL_STATE(4173)] = 109084, + [SMALL_STATE(4174)] = 109128, + [SMALL_STATE(4175)] = 109172, + [SMALL_STATE(4176)] = 109216, + [SMALL_STATE(4177)] = 109258, + [SMALL_STATE(4178)] = 109302, + [SMALL_STATE(4179)] = 109346, + [SMALL_STATE(4180)] = 109388, + [SMALL_STATE(4181)] = 109432, + [SMALL_STATE(4182)] = 109476, + [SMALL_STATE(4183)] = 109520, + [SMALL_STATE(4184)] = 109562, + [SMALL_STATE(4185)] = 109606, + [SMALL_STATE(4186)] = 109650, + [SMALL_STATE(4187)] = 109694, + [SMALL_STATE(4188)] = 109738, + [SMALL_STATE(4189)] = 109782, + [SMALL_STATE(4190)] = 109826, + [SMALL_STATE(4191)] = 109868, + [SMALL_STATE(4192)] = 109912, + [SMALL_STATE(4193)] = 109956, + [SMALL_STATE(4194)] = 110000, + [SMALL_STATE(4195)] = 110044, + [SMALL_STATE(4196)] = 110088, + [SMALL_STATE(4197)] = 110130, + [SMALL_STATE(4198)] = 110174, + [SMALL_STATE(4199)] = 110218, + [SMALL_STATE(4200)] = 110262, + [SMALL_STATE(4201)] = 110306, + [SMALL_STATE(4202)] = 110334, + [SMALL_STATE(4203)] = 110378, + [SMALL_STATE(4204)] = 110420, + [SMALL_STATE(4205)] = 110464, + [SMALL_STATE(4206)] = 110508, + [SMALL_STATE(4207)] = 110552, + [SMALL_STATE(4208)] = 110596, + [SMALL_STATE(4209)] = 110640, + [SMALL_STATE(4210)] = 110684, + [SMALL_STATE(4211)] = 110728, + [SMALL_STATE(4212)] = 110770, + [SMALL_STATE(4213)] = 110814, + [SMALL_STATE(4214)] = 110856, + [SMALL_STATE(4215)] = 110898, + [SMALL_STATE(4216)] = 110940, + [SMALL_STATE(4217)] = 110972, + [SMALL_STATE(4218)] = 111016, + [SMALL_STATE(4219)] = 111060, + [SMALL_STATE(4220)] = 111104, + [SMALL_STATE(4221)] = 111148, + [SMALL_STATE(4222)] = 111190, + [SMALL_STATE(4223)] = 111234, + [SMALL_STATE(4224)] = 111278, + [SMALL_STATE(4225)] = 111322, + [SMALL_STATE(4226)] = 111366, + [SMALL_STATE(4227)] = 111410, + [SMALL_STATE(4228)] = 111452, + [SMALL_STATE(4229)] = 111494, + [SMALL_STATE(4230)] = 111536, + [SMALL_STATE(4231)] = 111580, + [SMALL_STATE(4232)] = 111607, + [SMALL_STATE(4233)] = 111648, + [SMALL_STATE(4234)] = 111675, + [SMALL_STATE(4235)] = 111716, + [SMALL_STATE(4236)] = 111757, + [SMALL_STATE(4237)] = 111798, + [SMALL_STATE(4238)] = 111843, + [SMALL_STATE(4239)] = 111868, + [SMALL_STATE(4240)] = 111907, + [SMALL_STATE(4241)] = 111954, + [SMALL_STATE(4242)] = 111981, + [SMALL_STATE(4243)] = 112014, + [SMALL_STATE(4244)] = 112041, + [SMALL_STATE(4245)] = 112082, + [SMALL_STATE(4246)] = 112109, + [SMALL_STATE(4247)] = 112148, + [SMALL_STATE(4248)] = 112189, + [SMALL_STATE(4249)] = 112230, + [SMALL_STATE(4250)] = 112259, + [SMALL_STATE(4251)] = 112300, + [SMALL_STATE(4252)] = 112341, + [SMALL_STATE(4253)] = 112368, + [SMALL_STATE(4254)] = 112409, + [SMALL_STATE(4255)] = 112450, + [SMALL_STATE(4256)] = 112491, + [SMALL_STATE(4257)] = 112532, + [SMALL_STATE(4258)] = 112557, + [SMALL_STATE(4259)] = 112598, + [SMALL_STATE(4260)] = 112623, + [SMALL_STATE(4261)] = 112664, + [SMALL_STATE(4262)] = 112700, + [SMALL_STATE(4263)] = 112726, + [SMALL_STATE(4264)] = 112762, + [SMALL_STATE(4265)] = 112800, + [SMALL_STATE(4266)] = 112838, + [SMALL_STATE(4267)] = 112878, + [SMALL_STATE(4268)] = 112904, + [SMALL_STATE(4269)] = 112940, + [SMALL_STATE(4270)] = 112974, + [SMALL_STATE(4271)] = 113002, + [SMALL_STATE(4272)] = 113036, + [SMALL_STATE(4273)] = 113072, + [SMALL_STATE(4274)] = 113100, + [SMALL_STATE(4275)] = 113140, + [SMALL_STATE(4276)] = 113176, + [SMALL_STATE(4277)] = 113212, + [SMALL_STATE(4278)] = 113252, + [SMALL_STATE(4279)] = 113280, + [SMALL_STATE(4280)] = 113318, + [SMALL_STATE(4281)] = 113358, + [SMALL_STATE(4282)] = 113396, + [SMALL_STATE(4283)] = 113429, + [SMALL_STATE(4284)] = 113456, + [SMALL_STATE(4285)] = 113483, + [SMALL_STATE(4286)] = 113504, + [SMALL_STATE(4287)] = 113531, + [SMALL_STATE(4288)] = 113564, + [SMALL_STATE(4289)] = 113587, + [SMALL_STATE(4290)] = 113614, + [SMALL_STATE(4291)] = 113641, + [SMALL_STATE(4292)] = 113664, + [SMALL_STATE(4293)] = 113691, + [SMALL_STATE(4294)] = 113718, + [SMALL_STATE(4295)] = 113753, + [SMALL_STATE(4296)] = 113786, + [SMALL_STATE(4297)] = 113821, + [SMALL_STATE(4298)] = 113844, + [SMALL_STATE(4299)] = 113877, + [SMALL_STATE(4300)] = 113904, + [SMALL_STATE(4301)] = 113927, + [SMALL_STATE(4302)] = 113950, + [SMALL_STATE(4303)] = 113971, + [SMALL_STATE(4304)] = 113992, + [SMALL_STATE(4305)] = 114013, + [SMALL_STATE(4306)] = 114052, + [SMALL_STATE(4307)] = 114091, + [SMALL_STATE(4308)] = 114114, + [SMALL_STATE(4309)] = 114141, + [SMALL_STATE(4310)] = 114174, + [SMALL_STATE(4311)] = 114201, + [SMALL_STATE(4312)] = 114240, + [SMALL_STATE(4313)] = 114273, + [SMALL_STATE(4314)] = 114298, + [SMALL_STATE(4315)] = 114325, + [SMALL_STATE(4316)] = 114352, + [SMALL_STATE(4317)] = 114375, + [SMALL_STATE(4318)] = 114408, + [SMALL_STATE(4319)] = 114445, + [SMALL_STATE(4320)] = 114478, + [SMALL_STATE(4321)] = 114501, + [SMALL_STATE(4322)] = 114534, + [SMALL_STATE(4323)] = 114559, + [SMALL_STATE(4324)] = 114589, + [SMALL_STATE(4325)] = 114629, + [SMALL_STATE(4326)] = 114661, + [SMALL_STATE(4327)] = 114695, + [SMALL_STATE(4328)] = 114727, + [SMALL_STATE(4329)] = 114759, + [SMALL_STATE(4330)] = 114799, + [SMALL_STATE(4331)] = 114839, + [SMALL_STATE(4332)] = 114861, + [SMALL_STATE(4333)] = 114885, + [SMALL_STATE(4334)] = 114919, + [SMALL_STATE(4335)] = 114949, + [SMALL_STATE(4336)] = 114987, + [SMALL_STATE(4337)] = 115025, + [SMALL_STATE(4338)] = 115047, + [SMALL_STATE(4339)] = 115079, + [SMALL_STATE(4340)] = 115109, + [SMALL_STATE(4341)] = 115141, + [SMALL_STATE(4342)] = 115173, + [SMALL_STATE(4343)] = 115205, + [SMALL_STATE(4344)] = 115227, + [SMALL_STATE(4345)] = 115259, + [SMALL_STATE(4346)] = 115281, + [SMALL_STATE(4347)] = 115313, + [SMALL_STATE(4348)] = 115335, + [SMALL_STATE(4349)] = 115375, + [SMALL_STATE(4350)] = 115405, + [SMALL_STATE(4351)] = 115437, + [SMALL_STATE(4352)] = 115459, + [SMALL_STATE(4353)] = 115485, + [SMALL_STATE(4354)] = 115515, + [SMALL_STATE(4355)] = 115555, + [SMALL_STATE(4356)] = 115595, + [SMALL_STATE(4357)] = 115627, + [SMALL_STATE(4358)] = 115659, + [SMALL_STATE(4359)] = 115691, + [SMALL_STATE(4360)] = 115721, + [SMALL_STATE(4361)] = 115753, + [SMALL_STATE(4362)] = 115787, + [SMALL_STATE(4363)] = 115817, + [SMALL_STATE(4364)] = 115843, + [SMALL_STATE(4365)] = 115865, + [SMALL_STATE(4366)] = 115899, + [SMALL_STATE(4367)] = 115929, + [SMALL_STATE(4368)] = 115959, + [SMALL_STATE(4369)] = 115985, + [SMALL_STATE(4370)] = 116023, + [SMALL_STATE(4371)] = 116061, + [SMALL_STATE(4372)] = 116091, + [SMALL_STATE(4373)] = 116127, + [SMALL_STATE(4374)] = 116151, + [SMALL_STATE(4375)] = 116173, + [SMALL_STATE(4376)] = 116205, + [SMALL_STATE(4377)] = 116227, + [SMALL_STATE(4378)] = 116249, + [SMALL_STATE(4379)] = 116279, + [SMALL_STATE(4380)] = 116305, + [SMALL_STATE(4381)] = 116345, + [SMALL_STATE(4382)] = 116383, + [SMALL_STATE(4383)] = 116421, + [SMALL_STATE(4384)] = 116459, + [SMALL_STATE(4385)] = 116481, + [SMALL_STATE(4386)] = 116503, + [SMALL_STATE(4387)] = 116525, + [SMALL_STATE(4388)] = 116547, + [SMALL_STATE(4389)] = 116587, + [SMALL_STATE(4390)] = 116609, + [SMALL_STATE(4391)] = 116633, + [SMALL_STATE(4392)] = 116655, + [SMALL_STATE(4393)] = 116684, + [SMALL_STATE(4394)] = 116713, + [SMALL_STATE(4395)] = 116744, + [SMALL_STATE(4396)] = 116773, + [SMALL_STATE(4397)] = 116802, + [SMALL_STATE(4398)] = 116833, + [SMALL_STATE(4399)] = 116866, + [SMALL_STATE(4400)] = 116895, + [SMALL_STATE(4401)] = 116926, + [SMALL_STATE(4402)] = 116967, + [SMALL_STATE(4403)] = 116996, + [SMALL_STATE(4404)] = 117025, + [SMALL_STATE(4405)] = 117054, + [SMALL_STATE(4406)] = 117083, + [SMALL_STATE(4407)] = 117112, + [SMALL_STATE(4408)] = 117143, + [SMALL_STATE(4409)] = 117172, + [SMALL_STATE(4410)] = 117201, + [SMALL_STATE(4411)] = 117222, + [SMALL_STATE(4412)] = 117243, + [SMALL_STATE(4413)] = 117272, + [SMALL_STATE(4414)] = 117301, + [SMALL_STATE(4415)] = 117330, + [SMALL_STATE(4416)] = 117361, + [SMALL_STATE(4417)] = 117390, + [SMALL_STATE(4418)] = 117419, + [SMALL_STATE(4419)] = 117440, + [SMALL_STATE(4420)] = 117471, + [SMALL_STATE(4421)] = 117502, + [SMALL_STATE(4422)] = 117531, + [SMALL_STATE(4423)] = 117560, + [SMALL_STATE(4424)] = 117589, + [SMALL_STATE(4425)] = 117620, + [SMALL_STATE(4426)] = 117661, + [SMALL_STATE(4427)] = 117690, + [SMALL_STATE(4428)] = 117719, + [SMALL_STATE(4429)] = 117750, + [SMALL_STATE(4430)] = 117779, + [SMALL_STATE(4431)] = 117808, + [SMALL_STATE(4432)] = 117837, + [SMALL_STATE(4433)] = 117868, + [SMALL_STATE(4434)] = 117899, + [SMALL_STATE(4435)] = 117930, + [SMALL_STATE(4436)] = 117959, + [SMALL_STATE(4437)] = 117980, + [SMALL_STATE(4438)] = 118009, + [SMALL_STATE(4439)] = 118050, + [SMALL_STATE(4440)] = 118071, + [SMALL_STATE(4441)] = 118100, + [SMALL_STATE(4442)] = 118131, + [SMALL_STATE(4443)] = 118160, + [SMALL_STATE(4444)] = 118191, + [SMALL_STATE(4445)] = 118212, + [SMALL_STATE(4446)] = 118241, + [SMALL_STATE(4447)] = 118282, + [SMALL_STATE(4448)] = 118313, + [SMALL_STATE(4449)] = 118344, + [SMALL_STATE(4450)] = 118373, + [SMALL_STATE(4451)] = 118414, + [SMALL_STATE(4452)] = 118437, + [SMALL_STATE(4453)] = 118458, + [SMALL_STATE(4454)] = 118487, + [SMALL_STATE(4455)] = 118528, + [SMALL_STATE(4456)] = 118557, + [SMALL_STATE(4457)] = 118586, + [SMALL_STATE(4458)] = 118627, + [SMALL_STATE(4459)] = 118658, + [SMALL_STATE(4460)] = 118681, + [SMALL_STATE(4461)] = 118710, + [SMALL_STATE(4462)] = 118751, + [SMALL_STATE(4463)] = 118782, + [SMALL_STATE(4464)] = 118803, + [SMALL_STATE(4465)] = 118824, + [SMALL_STATE(4466)] = 118855, + [SMALL_STATE(4467)] = 118876, + [SMALL_STATE(4468)] = 118905, + [SMALL_STATE(4469)] = 118934, + [SMALL_STATE(4470)] = 118963, + [SMALL_STATE(4471)] = 118992, + [SMALL_STATE(4472)] = 119021, + [SMALL_STATE(4473)] = 119050, + [SMALL_STATE(4474)] = 119071, + [SMALL_STATE(4475)] = 119100, + [SMALL_STATE(4476)] = 119129, + [SMALL_STATE(4477)] = 119158, + [SMALL_STATE(4478)] = 119187, + [SMALL_STATE(4479)] = 119216, + [SMALL_STATE(4480)] = 119237, + [SMALL_STATE(4481)] = 119258, + [SMALL_STATE(4482)] = 119287, + [SMALL_STATE(4483)] = 119316, + [SMALL_STATE(4484)] = 119347, + [SMALL_STATE(4485)] = 119376, + [SMALL_STATE(4486)] = 119405, + [SMALL_STATE(4487)] = 119426, + [SMALL_STATE(4488)] = 119455, + [SMALL_STATE(4489)] = 119486, + [SMALL_STATE(4490)] = 119515, + [SMALL_STATE(4491)] = 119544, + [SMALL_STATE(4492)] = 119573, + [SMALL_STATE(4493)] = 119604, + [SMALL_STATE(4494)] = 119637, + [SMALL_STATE(4495)] = 119666, + [SMALL_STATE(4496)] = 119697, + [SMALL_STATE(4497)] = 119726, + [SMALL_STATE(4498)] = 119755, + [SMALL_STATE(4499)] = 119784, + [SMALL_STATE(4500)] = 119813, + [SMALL_STATE(4501)] = 119842, + [SMALL_STATE(4502)] = 119871, + [SMALL_STATE(4503)] = 119902, + [SMALL_STATE(4504)] = 119931, + [SMALL_STATE(4505)] = 119952, + [SMALL_STATE(4506)] = 119981, + [SMALL_STATE(4507)] = 120015, + [SMALL_STATE(4508)] = 120043, + [SMALL_STATE(4509)] = 120067, + [SMALL_STATE(4510)] = 120095, + [SMALL_STATE(4511)] = 120129, + [SMALL_STATE(4512)] = 120157, + [SMALL_STATE(4513)] = 120187, + [SMALL_STATE(4514)] = 120225, + [SMALL_STATE(4515)] = 120259, + [SMALL_STATE(4516)] = 120297, + [SMALL_STATE(4517)] = 120335, + [SMALL_STATE(4518)] = 120365, + [SMALL_STATE(4519)] = 120403, + [SMALL_STATE(4520)] = 120433, + [SMALL_STATE(4521)] = 120465, + [SMALL_STATE(4522)] = 120503, + [SMALL_STATE(4523)] = 120533, + [SMALL_STATE(4524)] = 120571, + [SMALL_STATE(4525)] = 120601, + [SMALL_STATE(4526)] = 120631, + [SMALL_STATE(4527)] = 120661, + [SMALL_STATE(4528)] = 120699, + [SMALL_STATE(4529)] = 120729, + [SMALL_STATE(4530)] = 120763, + [SMALL_STATE(4531)] = 120797, + [SMALL_STATE(4532)] = 120835, + [SMALL_STATE(4533)] = 120867, + [SMALL_STATE(4534)] = 120905, + [SMALL_STATE(4535)] = 120935, + [SMALL_STATE(4536)] = 120965, + [SMALL_STATE(4537)] = 120995, + [SMALL_STATE(4538)] = 121033, + [SMALL_STATE(4539)] = 121071, + [SMALL_STATE(4540)] = 121109, + [SMALL_STATE(4541)] = 121141, + [SMALL_STATE(4542)] = 121179, + [SMALL_STATE(4543)] = 121217, + [SMALL_STATE(4544)] = 121255, + [SMALL_STATE(4545)] = 121283, + [SMALL_STATE(4546)] = 121321, + [SMALL_STATE(4547)] = 121351, + [SMALL_STATE(4548)] = 121369, + [SMALL_STATE(4549)] = 121399, + [SMALL_STATE(4550)] = 121427, + [SMALL_STATE(4551)] = 121457, + [SMALL_STATE(4552)] = 121491, + [SMALL_STATE(4553)] = 121515, + [SMALL_STATE(4554)] = 121545, + [SMALL_STATE(4555)] = 121573, + [SMALL_STATE(4556)] = 121603, + [SMALL_STATE(4557)] = 121633, + [SMALL_STATE(4558)] = 121661, + [SMALL_STATE(4559)] = 121691, + [SMALL_STATE(4560)] = 121721, + [SMALL_STATE(4561)] = 121749, + [SMALL_STATE(4562)] = 121779, + [SMALL_STATE(4563)] = 121817, + [SMALL_STATE(4564)] = 121847, + [SMALL_STATE(4565)] = 121871, + [SMALL_STATE(4566)] = 121901, + [SMALL_STATE(4567)] = 121939, + [SMALL_STATE(4568)] = 121963, + [SMALL_STATE(4569)] = 121993, + [SMALL_STATE(4570)] = 122023, + [SMALL_STATE(4571)] = 122061, + [SMALL_STATE(4572)] = 122099, + [SMALL_STATE(4573)] = 122119, + [SMALL_STATE(4574)] = 122147, + [SMALL_STATE(4575)] = 122177, + [SMALL_STATE(4576)] = 122207, + [SMALL_STATE(4577)] = 122237, + [SMALL_STATE(4578)] = 122269, + [SMALL_STATE(4579)] = 122301, + [SMALL_STATE(4580)] = 122331, + [SMALL_STATE(4581)] = 122361, + [SMALL_STATE(4582)] = 122393, + [SMALL_STATE(4583)] = 122421, + [SMALL_STATE(4584)] = 122459, + [SMALL_STATE(4585)] = 122489, + [SMALL_STATE(4586)] = 122519, + [SMALL_STATE(4587)] = 122557, + [SMALL_STATE(4588)] = 122595, + [SMALL_STATE(4589)] = 122623, + [SMALL_STATE(4590)] = 122655, + [SMALL_STATE(4591)] = 122693, + [SMALL_STATE(4592)] = 122727, + [SMALL_STATE(4593)] = 122759, + [SMALL_STATE(4594)] = 122787, + [SMALL_STATE(4595)] = 122821, + [SMALL_STATE(4596)] = 122851, + [SMALL_STATE(4597)] = 122879, + [SMALL_STATE(4598)] = 122909, + [SMALL_STATE(4599)] = 122939, + [SMALL_STATE(4600)] = 122969, + [SMALL_STATE(4601)] = 122997, + [SMALL_STATE(4602)] = 123027, + [SMALL_STATE(4603)] = 123059, + [SMALL_STATE(4604)] = 123097, + [SMALL_STATE(4605)] = 123127, + [SMALL_STATE(4606)] = 123157, + [SMALL_STATE(4607)] = 123176, + [SMALL_STATE(4608)] = 123195, + [SMALL_STATE(4609)] = 123220, + [SMALL_STATE(4610)] = 123239, + [SMALL_STATE(4611)] = 123262, + [SMALL_STATE(4612)] = 123291, + [SMALL_STATE(4613)] = 123322, + [SMALL_STATE(4614)] = 123351, + [SMALL_STATE(4615)] = 123380, + [SMALL_STATE(4616)] = 123403, + [SMALL_STATE(4617)] = 123432, + [SMALL_STATE(4618)] = 123455, + [SMALL_STATE(4619)] = 123480, + [SMALL_STATE(4620)] = 123511, + [SMALL_STATE(4621)] = 123540, + [SMALL_STATE(4622)] = 123565, + [SMALL_STATE(4623)] = 123590, + [SMALL_STATE(4624)] = 123619, + [SMALL_STATE(4625)] = 123638, + [SMALL_STATE(4626)] = 123663, + [SMALL_STATE(4627)] = 123692, + [SMALL_STATE(4628)] = 123715, + [SMALL_STATE(4629)] = 123732, + [SMALL_STATE(4630)] = 123761, + [SMALL_STATE(4631)] = 123790, + [SMALL_STATE(4632)] = 123815, + [SMALL_STATE(4633)] = 123844, + [SMALL_STATE(4634)] = 123873, + [SMALL_STATE(4635)] = 123902, + [SMALL_STATE(4636)] = 123921, + [SMALL_STATE(4637)] = 123944, + [SMALL_STATE(4638)] = 123963, + [SMALL_STATE(4639)] = 123982, + [SMALL_STATE(4640)] = 124001, + [SMALL_STATE(4641)] = 124022, + [SMALL_STATE(4642)] = 124041, + [SMALL_STATE(4643)] = 124060, + [SMALL_STATE(4644)] = 124083, + [SMALL_STATE(4645)] = 124100, + [SMALL_STATE(4646)] = 124129, + [SMALL_STATE(4647)] = 124158, + [SMALL_STATE(4648)] = 124187, + [SMALL_STATE(4649)] = 124216, + [SMALL_STATE(4650)] = 124235, + [SMALL_STATE(4651)] = 124264, + [SMALL_STATE(4652)] = 124295, + [SMALL_STATE(4653)] = 124324, + [SMALL_STATE(4654)] = 124353, + [SMALL_STATE(4655)] = 124372, + [SMALL_STATE(4656)] = 124391, + [SMALL_STATE(4657)] = 124414, + [SMALL_STATE(4658)] = 124433, + [SMALL_STATE(4659)] = 124450, + [SMALL_STATE(4660)] = 124481, + [SMALL_STATE(4661)] = 124510, + [SMALL_STATE(4662)] = 124539, + [SMALL_STATE(4663)] = 124568, + [SMALL_STATE(4664)] = 124589, + [SMALL_STATE(4665)] = 124618, + [SMALL_STATE(4666)] = 124643, + [SMALL_STATE(4667)] = 124672, + [SMALL_STATE(4668)] = 124701, + [SMALL_STATE(4669)] = 124730, + [SMALL_STATE(4670)] = 124749, + [SMALL_STATE(4671)] = 124766, + [SMALL_STATE(4672)] = 124795, + [SMALL_STATE(4673)] = 124816, + [SMALL_STATE(4674)] = 124841, + [SMALL_STATE(4675)] = 124870, + [SMALL_STATE(4676)] = 124899, + [SMALL_STATE(4677)] = 124930, + [SMALL_STATE(4678)] = 124951, + [SMALL_STATE(4679)] = 124980, + [SMALL_STATE(4680)] = 125005, + [SMALL_STATE(4681)] = 125030, + [SMALL_STATE(4682)] = 125059, + [SMALL_STATE(4683)] = 125076, + [SMALL_STATE(4684)] = 125101, + [SMALL_STATE(4685)] = 125130, + [SMALL_STATE(4686)] = 125159, + [SMALL_STATE(4687)] = 125178, + [SMALL_STATE(4688)] = 125203, + [SMALL_STATE(4689)] = 125232, + [SMALL_STATE(4690)] = 125263, + [SMALL_STATE(4691)] = 125286, + [SMALL_STATE(4692)] = 125307, + [SMALL_STATE(4693)] = 125326, + [SMALL_STATE(4694)] = 125351, + [SMALL_STATE(4695)] = 125374, + [SMALL_STATE(4696)] = 125399, + [SMALL_STATE(4697)] = 125420, + [SMALL_STATE(4698)] = 125437, + [SMALL_STATE(4699)] = 125466, + [SMALL_STATE(4700)] = 125495, + [SMALL_STATE(4701)] = 125524, + [SMALL_STATE(4702)] = 125555, + [SMALL_STATE(4703)] = 125576, + [SMALL_STATE(4704)] = 125604, + [SMALL_STATE(4705)] = 125634, + [SMALL_STATE(4706)] = 125664, + [SMALL_STATE(4707)] = 125692, + [SMALL_STATE(4708)] = 125722, + [SMALL_STATE(4709)] = 125752, + [SMALL_STATE(4710)] = 125782, + [SMALL_STATE(4711)] = 125810, + [SMALL_STATE(4712)] = 125832, + [SMALL_STATE(4713)] = 125856, + [SMALL_STATE(4714)] = 125888, + [SMALL_STATE(4715)] = 125904, + [SMALL_STATE(4716)] = 125934, + [SMALL_STATE(4717)] = 125950, + [SMALL_STATE(4718)] = 125972, + [SMALL_STATE(4719)] = 126004, + [SMALL_STATE(4720)] = 126022, + [SMALL_STATE(4721)] = 126050, + [SMALL_STATE(4722)] = 126082, + [SMALL_STATE(4723)] = 126098, + [SMALL_STATE(4724)] = 126114, + [SMALL_STATE(4725)] = 126132, + [SMALL_STATE(4726)] = 126160, + [SMALL_STATE(4727)] = 126190, + [SMALL_STATE(4728)] = 126218, + [SMALL_STATE(4729)] = 126248, + [SMALL_STATE(4730)] = 126278, + [SMALL_STATE(4731)] = 126306, + [SMALL_STATE(4732)] = 126336, + [SMALL_STATE(4733)] = 126364, + [SMALL_STATE(4734)] = 126392, + [SMALL_STATE(4735)] = 126410, + [SMALL_STATE(4736)] = 126438, + [SMALL_STATE(4737)] = 126462, + [SMALL_STATE(4738)] = 126484, + [SMALL_STATE(4739)] = 126506, + [SMALL_STATE(4740)] = 126526, + [SMALL_STATE(4741)] = 126550, + [SMALL_STATE(4742)] = 126580, + [SMALL_STATE(4743)] = 126604, + [SMALL_STATE(4744)] = 126622, + [SMALL_STATE(4745)] = 126654, + [SMALL_STATE(4746)] = 126684, + [SMALL_STATE(4747)] = 126712, + [SMALL_STATE(4748)] = 126744, + [SMALL_STATE(4749)] = 126772, + [SMALL_STATE(4750)] = 126802, + [SMALL_STATE(4751)] = 126830, + [SMALL_STATE(4752)] = 126854, + [SMALL_STATE(4753)] = 126884, + [SMALL_STATE(4754)] = 126914, + [SMALL_STATE(4755)] = 126936, + [SMALL_STATE(4756)] = 126956, + [SMALL_STATE(4757)] = 126974, + [SMALL_STATE(4758)] = 127002, + [SMALL_STATE(4759)] = 127026, + [SMALL_STATE(4760)] = 127044, + [SMALL_STATE(4761)] = 127072, + [SMALL_STATE(4762)] = 127096, + [SMALL_STATE(4763)] = 127128, + [SMALL_STATE(4764)] = 127144, + [SMALL_STATE(4765)] = 127160, + [SMALL_STATE(4766)] = 127176, + [SMALL_STATE(4767)] = 127192, + [SMALL_STATE(4768)] = 127208, + [SMALL_STATE(4769)] = 127224, + [SMALL_STATE(4770)] = 127248, + [SMALL_STATE(4771)] = 127270, + [SMALL_STATE(4772)] = 127290, + [SMALL_STATE(4773)] = 127308, + [SMALL_STATE(4774)] = 127332, + [SMALL_STATE(4775)] = 127356, + [SMALL_STATE(4776)] = 127384, + [SMALL_STATE(4777)] = 127402, + [SMALL_STATE(4778)] = 127426, + [SMALL_STATE(4779)] = 127444, + [SMALL_STATE(4780)] = 127462, + [SMALL_STATE(4781)] = 127480, + [SMALL_STATE(4782)] = 127502, + [SMALL_STATE(4783)] = 127520, + [SMALL_STATE(4784)] = 127552, + [SMALL_STATE(4785)] = 127580, + [SMALL_STATE(4786)] = 127612, + [SMALL_STATE(4787)] = 127640, + [SMALL_STATE(4788)] = 127670, + [SMALL_STATE(4789)] = 127698, + [SMALL_STATE(4790)] = 127726, + [SMALL_STATE(4791)] = 127750, + [SMALL_STATE(4792)] = 127780, + [SMALL_STATE(4793)] = 127795, + [SMALL_STATE(4794)] = 127814, + [SMALL_STATE(4795)] = 127837, + [SMALL_STATE(4796)] = 127866, + [SMALL_STATE(4797)] = 127895, + [SMALL_STATE(4798)] = 127924, + [SMALL_STATE(4799)] = 127951, + [SMALL_STATE(4800)] = 127980, + [SMALL_STATE(4801)] = 128009, + [SMALL_STATE(4802)] = 128032, + [SMALL_STATE(4803)] = 128061, + [SMALL_STATE(4804)] = 128090, + [SMALL_STATE(4805)] = 128119, + [SMALL_STATE(4806)] = 128140, + [SMALL_STATE(4807)] = 128169, + [SMALL_STATE(4808)] = 128198, + [SMALL_STATE(4809)] = 128227, + [SMALL_STATE(4810)] = 128256, + [SMALL_STATE(4811)] = 128275, + [SMALL_STATE(4812)] = 128304, + [SMALL_STATE(4813)] = 128333, + [SMALL_STATE(4814)] = 128362, + [SMALL_STATE(4815)] = 128385, + [SMALL_STATE(4816)] = 128414, + [SMALL_STATE(4817)] = 128443, + [SMALL_STATE(4818)] = 128472, + [SMALL_STATE(4819)] = 128493, + [SMALL_STATE(4820)] = 128514, + [SMALL_STATE(4821)] = 128543, + [SMALL_STATE(4822)] = 128562, + [SMALL_STATE(4823)] = 128585, + [SMALL_STATE(4824)] = 128614, + [SMALL_STATE(4825)] = 128637, + [SMALL_STATE(4826)] = 128658, + [SMALL_STATE(4827)] = 128687, + [SMALL_STATE(4828)] = 128710, + [SMALL_STATE(4829)] = 128737, + [SMALL_STATE(4830)] = 128764, + [SMALL_STATE(4831)] = 128783, + [SMALL_STATE(4832)] = 128812, + [SMALL_STATE(4833)] = 128835, + [SMALL_STATE(4834)] = 128864, + [SMALL_STATE(4835)] = 128893, + [SMALL_STATE(4836)] = 128922, + [SMALL_STATE(4837)] = 128945, + [SMALL_STATE(4838)] = 128972, + [SMALL_STATE(4839)] = 129001, + [SMALL_STATE(4840)] = 129030, + [SMALL_STATE(4841)] = 129055, + [SMALL_STATE(4842)] = 129082, + [SMALL_STATE(4843)] = 129105, + [SMALL_STATE(4844)] = 129128, + [SMALL_STATE(4845)] = 129157, + [SMALL_STATE(4846)] = 129186, + [SMALL_STATE(4847)] = 129213, + [SMALL_STATE(4848)] = 129234, + [SMALL_STATE(4849)] = 129257, + [SMALL_STATE(4850)] = 129282, + [SMALL_STATE(4851)] = 129305, + [SMALL_STATE(4852)] = 129334, + [SMALL_STATE(4853)] = 129357, + [SMALL_STATE(4854)] = 129378, + [SMALL_STATE(4855)] = 129401, + [SMALL_STATE(4856)] = 129422, + [SMALL_STATE(4857)] = 129451, + [SMALL_STATE(4858)] = 129472, + [SMALL_STATE(4859)] = 129493, + [SMALL_STATE(4860)] = 129514, + [SMALL_STATE(4861)] = 129537, + [SMALL_STATE(4862)] = 129558, + [SMALL_STATE(4863)] = 129587, + [SMALL_STATE(4864)] = 129606, + [SMALL_STATE(4865)] = 129623, + [SMALL_STATE(4866)] = 129646, + [SMALL_STATE(4867)] = 129669, + [SMALL_STATE(4868)] = 129688, + [SMALL_STATE(4869)] = 129717, + [SMALL_STATE(4870)] = 129746, + [SMALL_STATE(4871)] = 129769, + [SMALL_STATE(4872)] = 129784, + [SMALL_STATE(4873)] = 129799, + [SMALL_STATE(4874)] = 129814, + [SMALL_STATE(4875)] = 129829, + [SMALL_STATE(4876)] = 129850, + [SMALL_STATE(4877)] = 129879, + [SMALL_STATE(4878)] = 129898, + [SMALL_STATE(4879)] = 129915, + [SMALL_STATE(4880)] = 129944, + [SMALL_STATE(4881)] = 129973, + [SMALL_STATE(4882)] = 130002, + [SMALL_STATE(4883)] = 130025, + [SMALL_STATE(4884)] = 130046, + [SMALL_STATE(4885)] = 130075, + [SMALL_STATE(4886)] = 130104, + [SMALL_STATE(4887)] = 130127, + [SMALL_STATE(4888)] = 130150, + [SMALL_STATE(4889)] = 130177, + [SMALL_STATE(4890)] = 130206, + [SMALL_STATE(4891)] = 130235, + [SMALL_STATE(4892)] = 130254, + [SMALL_STATE(4893)] = 130283, + [SMALL_STATE(4894)] = 130306, + [SMALL_STATE(4895)] = 130335, + [SMALL_STATE(4896)] = 130364, + [SMALL_STATE(4897)] = 130385, + [SMALL_STATE(4898)] = 130404, + [SMALL_STATE(4899)] = 130433, + [SMALL_STATE(4900)] = 130452, + [SMALL_STATE(4901)] = 130473, + [SMALL_STATE(4902)] = 130502, + [SMALL_STATE(4903)] = 130527, + [SMALL_STATE(4904)] = 130556, + [SMALL_STATE(4905)] = 130573, + [SMALL_STATE(4906)] = 130602, + [SMALL_STATE(4907)] = 130625, + [SMALL_STATE(4908)] = 130654, + [SMALL_STATE(4909)] = 130683, + [SMALL_STATE(4910)] = 130712, + [SMALL_STATE(4911)] = 130737, + [SMALL_STATE(4912)] = 130758, + [SMALL_STATE(4913)] = 130783, + [SMALL_STATE(4914)] = 130812, + [SMALL_STATE(4915)] = 130841, + [SMALL_STATE(4916)] = 130862, + [SMALL_STATE(4917)] = 130889, + [SMALL_STATE(4918)] = 130918, + [SMALL_STATE(4919)] = 130947, + [SMALL_STATE(4920)] = 130970, + [SMALL_STATE(4921)] = 130999, + [SMALL_STATE(4922)] = 131020, + [SMALL_STATE(4923)] = 131039, + [SMALL_STATE(4924)] = 131056, + [SMALL_STATE(4925)] = 131079, + [SMALL_STATE(4926)] = 131102, + [SMALL_STATE(4927)] = 131131, + [SMALL_STATE(4928)] = 131152, + [SMALL_STATE(4929)] = 131181, + [SMALL_STATE(4930)] = 131200, + [SMALL_STATE(4931)] = 131229, + [SMALL_STATE(4932)] = 131250, + [SMALL_STATE(4933)] = 131265, + [SMALL_STATE(4934)] = 131289, + [SMALL_STATE(4935)] = 131315, + [SMALL_STATE(4936)] = 131341, + [SMALL_STATE(4937)] = 131367, + [SMALL_STATE(4938)] = 131393, + [SMALL_STATE(4939)] = 131419, + [SMALL_STATE(4940)] = 131445, + [SMALL_STATE(4941)] = 131467, + [SMALL_STATE(4942)] = 131493, + [SMALL_STATE(4943)] = 131519, + [SMALL_STATE(4944)] = 131543, + [SMALL_STATE(4945)] = 131567, + [SMALL_STATE(4946)] = 131591, + [SMALL_STATE(4947)] = 131617, + [SMALL_STATE(4948)] = 131641, + [SMALL_STATE(4949)] = 131657, + [SMALL_STATE(4950)] = 131683, + [SMALL_STATE(4951)] = 131701, + [SMALL_STATE(4952)] = 131725, + [SMALL_STATE(4953)] = 131749, + [SMALL_STATE(4954)] = 131775, + [SMALL_STATE(4955)] = 131793, + [SMALL_STATE(4956)] = 131817, + [SMALL_STATE(4957)] = 131835, + [SMALL_STATE(4958)] = 131861, + [SMALL_STATE(4959)] = 131887, + [SMALL_STATE(4960)] = 131911, + [SMALL_STATE(4961)] = 131935, + [SMALL_STATE(4962)] = 131959, + [SMALL_STATE(4963)] = 131983, + [SMALL_STATE(4964)] = 132007, + [SMALL_STATE(4965)] = 132023, + [SMALL_STATE(4966)] = 132041, + [SMALL_STATE(4967)] = 132065, + [SMALL_STATE(4968)] = 132083, + [SMALL_STATE(4969)] = 132107, + [SMALL_STATE(4970)] = 132133, + [SMALL_STATE(4971)] = 132159, + [SMALL_STATE(4972)] = 132185, + [SMALL_STATE(4973)] = 132211, + [SMALL_STATE(4974)] = 132235, + [SMALL_STATE(4975)] = 132259, + [SMALL_STATE(4976)] = 132283, + [SMALL_STATE(4977)] = 132307, + [SMALL_STATE(4978)] = 132333, + [SMALL_STATE(4979)] = 132359, + [SMALL_STATE(4980)] = 132381, + [SMALL_STATE(4981)] = 132407, + [SMALL_STATE(4982)] = 132433, + [SMALL_STATE(4983)] = 132459, + [SMALL_STATE(4984)] = 132485, + [SMALL_STATE(4985)] = 132511, + [SMALL_STATE(4986)] = 132537, + [SMALL_STATE(4987)] = 132561, + [SMALL_STATE(4988)] = 132581, + [SMALL_STATE(4989)] = 132603, + [SMALL_STATE(4990)] = 132629, + [SMALL_STATE(4991)] = 132655, + [SMALL_STATE(4992)] = 132681, + [SMALL_STATE(4993)] = 132707, + [SMALL_STATE(4994)] = 132731, + [SMALL_STATE(4995)] = 132757, + [SMALL_STATE(4996)] = 132777, + [SMALL_STATE(4997)] = 132797, + [SMALL_STATE(4998)] = 132819, + [SMALL_STATE(4999)] = 132845, + [SMALL_STATE(5000)] = 132871, + [SMALL_STATE(5001)] = 132897, + [SMALL_STATE(5002)] = 132921, + [SMALL_STATE(5003)] = 132945, + [SMALL_STATE(5004)] = 132969, + [SMALL_STATE(5005)] = 132991, + [SMALL_STATE(5006)] = 133017, + [SMALL_STATE(5007)] = 133039, + [SMALL_STATE(5008)] = 133065, + [SMALL_STATE(5009)] = 133079, + [SMALL_STATE(5010)] = 133097, + [SMALL_STATE(5011)] = 133117, + [SMALL_STATE(5012)] = 133143, + [SMALL_STATE(5013)] = 133169, + [SMALL_STATE(5014)] = 133195, + [SMALL_STATE(5015)] = 133221, + [SMALL_STATE(5016)] = 133247, + [SMALL_STATE(5017)] = 133273, + [SMALL_STATE(5018)] = 133299, + [SMALL_STATE(5019)] = 133323, + [SMALL_STATE(5020)] = 133349, + [SMALL_STATE(5021)] = 133373, + [SMALL_STATE(5022)] = 133399, + [SMALL_STATE(5023)] = 133425, + [SMALL_STATE(5024)] = 133449, + [SMALL_STATE(5025)] = 133471, + [SMALL_STATE(5026)] = 133497, + [SMALL_STATE(5027)] = 133521, + [SMALL_STATE(5028)] = 133547, + [SMALL_STATE(5029)] = 133571, + [SMALL_STATE(5030)] = 133589, + [SMALL_STATE(5031)] = 133605, + [SMALL_STATE(5032)] = 133631, + [SMALL_STATE(5033)] = 133645, + [SMALL_STATE(5034)] = 133663, + [SMALL_STATE(5035)] = 133689, + [SMALL_STATE(5036)] = 133713, + [SMALL_STATE(5037)] = 133739, + [SMALL_STATE(5038)] = 133763, + [SMALL_STATE(5039)] = 133789, + [SMALL_STATE(5040)] = 133815, + [SMALL_STATE(5041)] = 133841, + [SMALL_STATE(5042)] = 133859, + [SMALL_STATE(5043)] = 133885, + [SMALL_STATE(5044)] = 133911, + [SMALL_STATE(5045)] = 133937, + [SMALL_STATE(5046)] = 133963, + [SMALL_STATE(5047)] = 133989, + [SMALL_STATE(5048)] = 134013, + [SMALL_STATE(5049)] = 134039, + [SMALL_STATE(5050)] = 134063, + [SMALL_STATE(5051)] = 134087, + [SMALL_STATE(5052)] = 134111, + [SMALL_STATE(5053)] = 134135, + [SMALL_STATE(5054)] = 134159, + [SMALL_STATE(5055)] = 134183, + [SMALL_STATE(5056)] = 134201, + [SMALL_STATE(5057)] = 134219, + [SMALL_STATE(5058)] = 134245, + [SMALL_STATE(5059)] = 134267, + [SMALL_STATE(5060)] = 134289, + [SMALL_STATE(5061)] = 134311, + [SMALL_STATE(5062)] = 134335, + [SMALL_STATE(5063)] = 134359, + [SMALL_STATE(5064)] = 134383, + [SMALL_STATE(5065)] = 134409, + [SMALL_STATE(5066)] = 134435, + [SMALL_STATE(5067)] = 134461, + [SMALL_STATE(5068)] = 134487, + [SMALL_STATE(5069)] = 134513, + [SMALL_STATE(5070)] = 134537, + [SMALL_STATE(5071)] = 134563, + [SMALL_STATE(5072)] = 134585, + [SMALL_STATE(5073)] = 134607, + [SMALL_STATE(5074)] = 134633, + [SMALL_STATE(5075)] = 134659, + [SMALL_STATE(5076)] = 134685, + [SMALL_STATE(5077)] = 134709, + [SMALL_STATE(5078)] = 134735, + [SMALL_STATE(5079)] = 134757, + [SMALL_STATE(5080)] = 134781, + [SMALL_STATE(5081)] = 134799, + [SMALL_STATE(5082)] = 134825, + [SMALL_STATE(5083)] = 134851, + [SMALL_STATE(5084)] = 134877, + [SMALL_STATE(5085)] = 134903, + [SMALL_STATE(5086)] = 134929, + [SMALL_STATE(5087)] = 134955, + [SMALL_STATE(5088)] = 134981, + [SMALL_STATE(5089)] = 135007, + [SMALL_STATE(5090)] = 135033, + [SMALL_STATE(5091)] = 135059, + [SMALL_STATE(5092)] = 135083, + [SMALL_STATE(5093)] = 135109, + [SMALL_STATE(5094)] = 135133, + [SMALL_STATE(5095)] = 135159, + [SMALL_STATE(5096)] = 135185, + [SMALL_STATE(5097)] = 135211, + [SMALL_STATE(5098)] = 135229, + [SMALL_STATE(5099)] = 135255, + [SMALL_STATE(5100)] = 135279, + [SMALL_STATE(5101)] = 135305, + [SMALL_STATE(5102)] = 135327, + [SMALL_STATE(5103)] = 135349, + [SMALL_STATE(5104)] = 135373, + [SMALL_STATE(5105)] = 135397, + [SMALL_STATE(5106)] = 135411, + [SMALL_STATE(5107)] = 135433, + [SMALL_STATE(5108)] = 135457, + [SMALL_STATE(5109)] = 135483, + [SMALL_STATE(5110)] = 135509, + [SMALL_STATE(5111)] = 135533, + [SMALL_STATE(5112)] = 135557, + [SMALL_STATE(5113)] = 135581, + [SMALL_STATE(5114)] = 135607, + [SMALL_STATE(5115)] = 135633, + [SMALL_STATE(5116)] = 135655, + [SMALL_STATE(5117)] = 135681, + [SMALL_STATE(5118)] = 135707, + [SMALL_STATE(5119)] = 135733, + [SMALL_STATE(5120)] = 135759, + [SMALL_STATE(5121)] = 135785, + [SMALL_STATE(5122)] = 135811, + [SMALL_STATE(5123)] = 135837, + [SMALL_STATE(5124)] = 135863, + [SMALL_STATE(5125)] = 135887, + [SMALL_STATE(5126)] = 135911, + [SMALL_STATE(5127)] = 135935, + [SMALL_STATE(5128)] = 135961, + [SMALL_STATE(5129)] = 135985, + [SMALL_STATE(5130)] = 136009, + [SMALL_STATE(5131)] = 136033, + [SMALL_STATE(5132)] = 136055, + [SMALL_STATE(5133)] = 136081, + [SMALL_STATE(5134)] = 136107, + [SMALL_STATE(5135)] = 136131, + [SMALL_STATE(5136)] = 136157, + [SMALL_STATE(5137)] = 136183, + [SMALL_STATE(5138)] = 136209, + [SMALL_STATE(5139)] = 136235, + [SMALL_STATE(5140)] = 136261, + [SMALL_STATE(5141)] = 136287, + [SMALL_STATE(5142)] = 136313, + [SMALL_STATE(5143)] = 136339, + [SMALL_STATE(5144)] = 136363, + [SMALL_STATE(5145)] = 136385, + [SMALL_STATE(5146)] = 136403, + [SMALL_STATE(5147)] = 136427, + [SMALL_STATE(5148)] = 136451, + [SMALL_STATE(5149)] = 136475, + [SMALL_STATE(5150)] = 136501, + [SMALL_STATE(5151)] = 136527, + [SMALL_STATE(5152)] = 136551, + [SMALL_STATE(5153)] = 136572, + [SMALL_STATE(5154)] = 136593, + [SMALL_STATE(5155)] = 136606, + [SMALL_STATE(5156)] = 136623, + [SMALL_STATE(5157)] = 136640, + [SMALL_STATE(5158)] = 136657, + [SMALL_STATE(5159)] = 136680, + [SMALL_STATE(5160)] = 136703, + [SMALL_STATE(5161)] = 136726, + [SMALL_STATE(5162)] = 136743, + [SMALL_STATE(5163)] = 136764, + [SMALL_STATE(5164)] = 136781, + [SMALL_STATE(5165)] = 136798, + [SMALL_STATE(5166)] = 136821, + [SMALL_STATE(5167)] = 136844, + [SMALL_STATE(5168)] = 136865, + [SMALL_STATE(5169)] = 136888, + [SMALL_STATE(5170)] = 136909, + [SMALL_STATE(5171)] = 136932, + [SMALL_STATE(5172)] = 136949, + [SMALL_STATE(5173)] = 136962, + [SMALL_STATE(5174)] = 136983, + [SMALL_STATE(5175)] = 137004, + [SMALL_STATE(5176)] = 137027, + [SMALL_STATE(5177)] = 137044, + [SMALL_STATE(5178)] = 137061, + [SMALL_STATE(5179)] = 137078, + [SMALL_STATE(5180)] = 137095, + [SMALL_STATE(5181)] = 137118, + [SMALL_STATE(5182)] = 137141, + [SMALL_STATE(5183)] = 137158, + [SMALL_STATE(5184)] = 137171, + [SMALL_STATE(5185)] = 137194, + [SMALL_STATE(5186)] = 137211, + [SMALL_STATE(5187)] = 137228, + [SMALL_STATE(5188)] = 137249, + [SMALL_STATE(5189)] = 137266, + [SMALL_STATE(5190)] = 137283, + [SMALL_STATE(5191)] = 137302, + [SMALL_STATE(5192)] = 137319, + [SMALL_STATE(5193)] = 137334, + [SMALL_STATE(5194)] = 137347, + [SMALL_STATE(5195)] = 137368, + [SMALL_STATE(5196)] = 137383, + [SMALL_STATE(5197)] = 137400, + [SMALL_STATE(5198)] = 137421, + [SMALL_STATE(5199)] = 137444, + [SMALL_STATE(5200)] = 137461, + [SMALL_STATE(5201)] = 137482, + [SMALL_STATE(5202)] = 137505, + [SMALL_STATE(5203)] = 137522, + [SMALL_STATE(5204)] = 137543, + [SMALL_STATE(5205)] = 137556, + [SMALL_STATE(5206)] = 137569, + [SMALL_STATE(5207)] = 137590, + [SMALL_STATE(5208)] = 137603, + [SMALL_STATE(5209)] = 137626, + [SMALL_STATE(5210)] = 137649, + [SMALL_STATE(5211)] = 137670, + [SMALL_STATE(5212)] = 137691, + [SMALL_STATE(5213)] = 137714, + [SMALL_STATE(5214)] = 137735, + [SMALL_STATE(5215)] = 137756, + [SMALL_STATE(5216)] = 137777, + [SMALL_STATE(5217)] = 137800, + [SMALL_STATE(5218)] = 137821, + [SMALL_STATE(5219)] = 137842, + [SMALL_STATE(5220)] = 137863, + [SMALL_STATE(5221)] = 137880, + [SMALL_STATE(5222)] = 137903, + [SMALL_STATE(5223)] = 137926, + [SMALL_STATE(5224)] = 137941, + [SMALL_STATE(5225)] = 137962, + [SMALL_STATE(5226)] = 137983, + [SMALL_STATE(5227)] = 138004, + [SMALL_STATE(5228)] = 138027, + [SMALL_STATE(5229)] = 138048, + [SMALL_STATE(5230)] = 138061, + [SMALL_STATE(5231)] = 138084, + [SMALL_STATE(5232)] = 138101, + [SMALL_STATE(5233)] = 138114, + [SMALL_STATE(5234)] = 138131, + [SMALL_STATE(5235)] = 138148, + [SMALL_STATE(5236)] = 138169, + [SMALL_STATE(5237)] = 138190, + [SMALL_STATE(5238)] = 138213, + [SMALL_STATE(5239)] = 138234, + [SMALL_STATE(5240)] = 138257, + [SMALL_STATE(5241)] = 138278, + [SMALL_STATE(5242)] = 138295, + [SMALL_STATE(5243)] = 138312, + [SMALL_STATE(5244)] = 138333, + [SMALL_STATE(5245)] = 138346, + [SMALL_STATE(5246)] = 138363, + [SMALL_STATE(5247)] = 138380, + [SMALL_STATE(5248)] = 138395, + [SMALL_STATE(5249)] = 138412, + [SMALL_STATE(5250)] = 138429, + [SMALL_STATE(5251)] = 138450, + [SMALL_STATE(5252)] = 138467, + [SMALL_STATE(5253)] = 138482, + [SMALL_STATE(5254)] = 138499, + [SMALL_STATE(5255)] = 138512, + [SMALL_STATE(5256)] = 138533, + [SMALL_STATE(5257)] = 138556, + [SMALL_STATE(5258)] = 138571, + [SMALL_STATE(5259)] = 138594, + [SMALL_STATE(5260)] = 138615, + [SMALL_STATE(5261)] = 138636, + [SMALL_STATE(5262)] = 138657, + [SMALL_STATE(5263)] = 138680, + [SMALL_STATE(5264)] = 138701, + [SMALL_STATE(5265)] = 138722, + [SMALL_STATE(5266)] = 138743, + [SMALL_STATE(5267)] = 138764, + [SMALL_STATE(5268)] = 138785, + [SMALL_STATE(5269)] = 138806, + [SMALL_STATE(5270)] = 138827, + [SMALL_STATE(5271)] = 138840, + [SMALL_STATE(5272)] = 138857, + [SMALL_STATE(5273)] = 138872, + [SMALL_STATE(5274)] = 138893, + [SMALL_STATE(5275)] = 138910, + [SMALL_STATE(5276)] = 138927, + [SMALL_STATE(5277)] = 138942, + [SMALL_STATE(5278)] = 138965, + [SMALL_STATE(5279)] = 138982, + [SMALL_STATE(5280)] = 139005, + [SMALL_STATE(5281)] = 139026, + [SMALL_STATE(5282)] = 139039, + [SMALL_STATE(5283)] = 139060, + [SMALL_STATE(5284)] = 139081, + [SMALL_STATE(5285)] = 139102, + [SMALL_STATE(5286)] = 139125, + [SMALL_STATE(5287)] = 139146, + [SMALL_STATE(5288)] = 139165, + [SMALL_STATE(5289)] = 139182, + [SMALL_STATE(5290)] = 139197, + [SMALL_STATE(5291)] = 139218, + [SMALL_STATE(5292)] = 139239, + [SMALL_STATE(5293)] = 139262, + [SMALL_STATE(5294)] = 139281, + [SMALL_STATE(5295)] = 139294, + [SMALL_STATE(5296)] = 139315, + [SMALL_STATE(5297)] = 139338, + [SMALL_STATE(5298)] = 139359, + [SMALL_STATE(5299)] = 139374, + [SMALL_STATE(5300)] = 139386, + [SMALL_STATE(5301)] = 139402, + [SMALL_STATE(5302)] = 139422, + [SMALL_STATE(5303)] = 139442, + [SMALL_STATE(5304)] = 139462, + [SMALL_STATE(5305)] = 139474, + [SMALL_STATE(5306)] = 139494, + [SMALL_STATE(5307)] = 139514, + [SMALL_STATE(5308)] = 139534, + [SMALL_STATE(5309)] = 139554, + [SMALL_STATE(5310)] = 139568, + [SMALL_STATE(5311)] = 139584, + [SMALL_STATE(5312)] = 139596, + [SMALL_STATE(5313)] = 139614, + [SMALL_STATE(5314)] = 139626, + [SMALL_STATE(5315)] = 139646, + [SMALL_STATE(5316)] = 139666, + [SMALL_STATE(5317)] = 139678, + [SMALL_STATE(5318)] = 139690, + [SMALL_STATE(5319)] = 139702, + [SMALL_STATE(5320)] = 139722, + [SMALL_STATE(5321)] = 139742, + [SMALL_STATE(5322)] = 139762, + [SMALL_STATE(5323)] = 139776, + [SMALL_STATE(5324)] = 139792, + [SMALL_STATE(5325)] = 139812, + [SMALL_STATE(5326)] = 139830, + [SMALL_STATE(5327)] = 139850, + [SMALL_STATE(5328)] = 139870, + [SMALL_STATE(5329)] = 139890, + [SMALL_STATE(5330)] = 139910, + [SMALL_STATE(5331)] = 139922, + [SMALL_STATE(5332)] = 139934, + [SMALL_STATE(5333)] = 139946, + [SMALL_STATE(5334)] = 139964, + [SMALL_STATE(5335)] = 139984, + [SMALL_STATE(5336)] = 140002, + [SMALL_STATE(5337)] = 140022, + [SMALL_STATE(5338)] = 140040, + [SMALL_STATE(5339)] = 140060, + [SMALL_STATE(5340)] = 140076, + [SMALL_STATE(5341)] = 140090, + [SMALL_STATE(5342)] = 140110, + [SMALL_STATE(5343)] = 140128, + [SMALL_STATE(5344)] = 140148, + [SMALL_STATE(5345)] = 140168, + [SMALL_STATE(5346)] = 140182, + [SMALL_STATE(5347)] = 140198, + [SMALL_STATE(5348)] = 140210, + [SMALL_STATE(5349)] = 140222, + [SMALL_STATE(5350)] = 140240, + [SMALL_STATE(5351)] = 140252, + [SMALL_STATE(5352)] = 140272, + [SMALL_STATE(5353)] = 140292, + [SMALL_STATE(5354)] = 140312, + [SMALL_STATE(5355)] = 140332, + [SMALL_STATE(5356)] = 140352, + [SMALL_STATE(5357)] = 140372, + [SMALL_STATE(5358)] = 140384, + [SMALL_STATE(5359)] = 140402, + [SMALL_STATE(5360)] = 140422, + [SMALL_STATE(5361)] = 140438, + [SMALL_STATE(5362)] = 140456, + [SMALL_STATE(5363)] = 140468, + [SMALL_STATE(5364)] = 140480, + [SMALL_STATE(5365)] = 140500, + [SMALL_STATE(5366)] = 140512, + [SMALL_STATE(5367)] = 140532, + [SMALL_STATE(5368)] = 140550, + [SMALL_STATE(5369)] = 140562, + [SMALL_STATE(5370)] = 140582, + [SMALL_STATE(5371)] = 140594, + [SMALL_STATE(5372)] = 140614, + [SMALL_STATE(5373)] = 140626, + [SMALL_STATE(5374)] = 140638, + [SMALL_STATE(5375)] = 140650, + [SMALL_STATE(5376)] = 140670, + [SMALL_STATE(5377)] = 140690, + [SMALL_STATE(5378)] = 140702, + [SMALL_STATE(5379)] = 140714, + [SMALL_STATE(5380)] = 140734, + [SMALL_STATE(5381)] = 140754, + [SMALL_STATE(5382)] = 140766, + [SMALL_STATE(5383)] = 140786, + [SMALL_STATE(5384)] = 140798, + [SMALL_STATE(5385)] = 140818, + [SMALL_STATE(5386)] = 140830, + [SMALL_STATE(5387)] = 140850, + [SMALL_STATE(5388)] = 140870, + [SMALL_STATE(5389)] = 140890, + [SMALL_STATE(5390)] = 140910, + [SMALL_STATE(5391)] = 140930, + [SMALL_STATE(5392)] = 140950, + [SMALL_STATE(5393)] = 140970, + [SMALL_STATE(5394)] = 140990, + [SMALL_STATE(5395)] = 141010, + [SMALL_STATE(5396)] = 141030, + [SMALL_STATE(5397)] = 141050, + [SMALL_STATE(5398)] = 141068, + [SMALL_STATE(5399)] = 141080, + [SMALL_STATE(5400)] = 141098, + [SMALL_STATE(5401)] = 141118, + [SMALL_STATE(5402)] = 141138, + [SMALL_STATE(5403)] = 141158, + [SMALL_STATE(5404)] = 141178, + [SMALL_STATE(5405)] = 141194, + [SMALL_STATE(5406)] = 141206, + [SMALL_STATE(5407)] = 141224, + [SMALL_STATE(5408)] = 141244, + [SMALL_STATE(5409)] = 141264, + [SMALL_STATE(5410)] = 141284, + [SMALL_STATE(5411)] = 141304, + [SMALL_STATE(5412)] = 141322, + [SMALL_STATE(5413)] = 141342, + [SMALL_STATE(5414)] = 141362, + [SMALL_STATE(5415)] = 141374, + [SMALL_STATE(5416)] = 141394, + [SMALL_STATE(5417)] = 141414, + [SMALL_STATE(5418)] = 141434, + [SMALL_STATE(5419)] = 141446, + [SMALL_STATE(5420)] = 141458, + [SMALL_STATE(5421)] = 141478, + [SMALL_STATE(5422)] = 141498, + [SMALL_STATE(5423)] = 141518, + [SMALL_STATE(5424)] = 141538, + [SMALL_STATE(5425)] = 141550, + [SMALL_STATE(5426)] = 141570, + [SMALL_STATE(5427)] = 141582, + [SMALL_STATE(5428)] = 141596, + [SMALL_STATE(5429)] = 141612, + [SMALL_STATE(5430)] = 141632, + [SMALL_STATE(5431)] = 141652, + [SMALL_STATE(5432)] = 141672, + [SMALL_STATE(5433)] = 141684, + [SMALL_STATE(5434)] = 141700, + [SMALL_STATE(5435)] = 141712, + [SMALL_STATE(5436)] = 141732, + [SMALL_STATE(5437)] = 141752, + [SMALL_STATE(5438)] = 141772, + [SMALL_STATE(5439)] = 141784, + [SMALL_STATE(5440)] = 141796, + [SMALL_STATE(5441)] = 141814, + [SMALL_STATE(5442)] = 141826, + [SMALL_STATE(5443)] = 141846, + [SMALL_STATE(5444)] = 141864, + [SMALL_STATE(5445)] = 141880, + [SMALL_STATE(5446)] = 141892, + [SMALL_STATE(5447)] = 141912, + [SMALL_STATE(5448)] = 141932, + [SMALL_STATE(5449)] = 141952, + [SMALL_STATE(5450)] = 141968, + [SMALL_STATE(5451)] = 141988, + [SMALL_STATE(5452)] = 142008, + [SMALL_STATE(5453)] = 142020, + [SMALL_STATE(5454)] = 142040, + [SMALL_STATE(5455)] = 142052, + [SMALL_STATE(5456)] = 142072, + [SMALL_STATE(5457)] = 142092, + [SMALL_STATE(5458)] = 142112, + [SMALL_STATE(5459)] = 142132, + [SMALL_STATE(5460)] = 142148, + [SMALL_STATE(5461)] = 142166, + [SMALL_STATE(5462)] = 142186, + [SMALL_STATE(5463)] = 142198, + [SMALL_STATE(5464)] = 142218, + [SMALL_STATE(5465)] = 142230, + [SMALL_STATE(5466)] = 142250, + [SMALL_STATE(5467)] = 142270, + [SMALL_STATE(5468)] = 142288, + [SMALL_STATE(5469)] = 142304, + [SMALL_STATE(5470)] = 142322, + [SMALL_STATE(5471)] = 142334, + [SMALL_STATE(5472)] = 142354, + [SMALL_STATE(5473)] = 142366, + [SMALL_STATE(5474)] = 142386, + [SMALL_STATE(5475)] = 142402, + [SMALL_STATE(5476)] = 142422, + [SMALL_STATE(5477)] = 142442, + [SMALL_STATE(5478)] = 142458, + [SMALL_STATE(5479)] = 142478, + [SMALL_STATE(5480)] = 142492, + [SMALL_STATE(5481)] = 142508, + [SMALL_STATE(5482)] = 142528, + [SMALL_STATE(5483)] = 142548, + [SMALL_STATE(5484)] = 142564, + [SMALL_STATE(5485)] = 142576, + [SMALL_STATE(5486)] = 142596, + [SMALL_STATE(5487)] = 142616, + [SMALL_STATE(5488)] = 142636, + [SMALL_STATE(5489)] = 142656, + [SMALL_STATE(5490)] = 142676, + [SMALL_STATE(5491)] = 142688, + [SMALL_STATE(5492)] = 142700, + [SMALL_STATE(5493)] = 142712, + [SMALL_STATE(5494)] = 142730, + [SMALL_STATE(5495)] = 142742, + [SMALL_STATE(5496)] = 142754, + [SMALL_STATE(5497)] = 142774, + [SMALL_STATE(5498)] = 142786, + [SMALL_STATE(5499)] = 142806, + [SMALL_STATE(5500)] = 142826, + [SMALL_STATE(5501)] = 142846, + [SMALL_STATE(5502)] = 142866, + [SMALL_STATE(5503)] = 142878, + [SMALL_STATE(5504)] = 142894, + [SMALL_STATE(5505)] = 142914, + [SMALL_STATE(5506)] = 142934, + [SMALL_STATE(5507)] = 142954, + [SMALL_STATE(5508)] = 142968, + [SMALL_STATE(5509)] = 142984, + [SMALL_STATE(5510)] = 143004, + [SMALL_STATE(5511)] = 143024, + [SMALL_STATE(5512)] = 143044, + [SMALL_STATE(5513)] = 143056, + [SMALL_STATE(5514)] = 143076, + [SMALL_STATE(5515)] = 143096, + [SMALL_STATE(5516)] = 143114, + [SMALL_STATE(5517)] = 143126, + [SMALL_STATE(5518)] = 143138, + [SMALL_STATE(5519)] = 143158, + [SMALL_STATE(5520)] = 143170, + [SMALL_STATE(5521)] = 143186, + [SMALL_STATE(5522)] = 143206, + [SMALL_STATE(5523)] = 143226, + [SMALL_STATE(5524)] = 143238, + [SMALL_STATE(5525)] = 143256, + [SMALL_STATE(5526)] = 143276, + [SMALL_STATE(5527)] = 143296, + [SMALL_STATE(5528)] = 143316, + [SMALL_STATE(5529)] = 143336, + [SMALL_STATE(5530)] = 143356, + [SMALL_STATE(5531)] = 143368, + [SMALL_STATE(5532)] = 143383, + [SMALL_STATE(5533)] = 143400, + [SMALL_STATE(5534)] = 143411, + [SMALL_STATE(5535)] = 143428, + [SMALL_STATE(5536)] = 143445, + [SMALL_STATE(5537)] = 143456, + [SMALL_STATE(5538)] = 143467, + [SMALL_STATE(5539)] = 143478, + [SMALL_STATE(5540)] = 143489, + [SMALL_STATE(5541)] = 143500, + [SMALL_STATE(5542)] = 143515, + [SMALL_STATE(5543)] = 143526, + [SMALL_STATE(5544)] = 143541, + [SMALL_STATE(5545)] = 143552, + [SMALL_STATE(5546)] = 143563, + [SMALL_STATE(5547)] = 143578, + [SMALL_STATE(5548)] = 143593, + [SMALL_STATE(5549)] = 143610, + [SMALL_STATE(5550)] = 143621, + [SMALL_STATE(5551)] = 143636, + [SMALL_STATE(5552)] = 143647, + [SMALL_STATE(5553)] = 143664, + [SMALL_STATE(5554)] = 143675, + [SMALL_STATE(5555)] = 143692, + [SMALL_STATE(5556)] = 143709, + [SMALL_STATE(5557)] = 143720, + [SMALL_STATE(5558)] = 143735, + [SMALL_STATE(5559)] = 143746, + [SMALL_STATE(5560)] = 143757, + [SMALL_STATE(5561)] = 143774, + [SMALL_STATE(5562)] = 143785, + [SMALL_STATE(5563)] = 143802, + [SMALL_STATE(5564)] = 143817, + [SMALL_STATE(5565)] = 143828, + [SMALL_STATE(5566)] = 143843, + [SMALL_STATE(5567)] = 143860, + [SMALL_STATE(5568)] = 143877, + [SMALL_STATE(5569)] = 143888, + [SMALL_STATE(5570)] = 143903, + [SMALL_STATE(5571)] = 143918, + [SMALL_STATE(5572)] = 143929, + [SMALL_STATE(5573)] = 143940, + [SMALL_STATE(5574)] = 143957, + [SMALL_STATE(5575)] = 143968, + [SMALL_STATE(5576)] = 143979, + [SMALL_STATE(5577)] = 143996, + [SMALL_STATE(5578)] = 144011, + [SMALL_STATE(5579)] = 144026, + [SMALL_STATE(5580)] = 144041, + [SMALL_STATE(5581)] = 144056, + [SMALL_STATE(5582)] = 144067, + [SMALL_STATE(5583)] = 144078, + [SMALL_STATE(5584)] = 144095, + [SMALL_STATE(5585)] = 144112, + [SMALL_STATE(5586)] = 144123, + [SMALL_STATE(5587)] = 144140, + [SMALL_STATE(5588)] = 144151, + [SMALL_STATE(5589)] = 144168, + [SMALL_STATE(5590)] = 144185, + [SMALL_STATE(5591)] = 144196, + [SMALL_STATE(5592)] = 144211, + [SMALL_STATE(5593)] = 144222, + [SMALL_STATE(5594)] = 144239, + [SMALL_STATE(5595)] = 144252, + [SMALL_STATE(5596)] = 144269, + [SMALL_STATE(5597)] = 144284, + [SMALL_STATE(5598)] = 144299, + [SMALL_STATE(5599)] = 144314, + [SMALL_STATE(5600)] = 144325, + [SMALL_STATE(5601)] = 144340, + [SMALL_STATE(5602)] = 144351, + [SMALL_STATE(5603)] = 144368, + [SMALL_STATE(5604)] = 144379, + [SMALL_STATE(5605)] = 144390, + [SMALL_STATE(5606)] = 144401, + [SMALL_STATE(5607)] = 144412, + [SMALL_STATE(5608)] = 144427, + [SMALL_STATE(5609)] = 144438, + [SMALL_STATE(5610)] = 144455, + [SMALL_STATE(5611)] = 144472, + [SMALL_STATE(5612)] = 144489, + [SMALL_STATE(5613)] = 144500, + [SMALL_STATE(5614)] = 144517, + [SMALL_STATE(5615)] = 144532, + [SMALL_STATE(5616)] = 144543, + [SMALL_STATE(5617)] = 144560, + [SMALL_STATE(5618)] = 144571, + [SMALL_STATE(5619)] = 144582, + [SMALL_STATE(5620)] = 144597, + [SMALL_STATE(5621)] = 144612, + [SMALL_STATE(5622)] = 144623, + [SMALL_STATE(5623)] = 144634, + [SMALL_STATE(5624)] = 144645, + [SMALL_STATE(5625)] = 144660, + [SMALL_STATE(5626)] = 144671, + [SMALL_STATE(5627)] = 144682, + [SMALL_STATE(5628)] = 144699, + [SMALL_STATE(5629)] = 144716, + [SMALL_STATE(5630)] = 144727, + [SMALL_STATE(5631)] = 144738, + [SMALL_STATE(5632)] = 144749, + [SMALL_STATE(5633)] = 144760, + [SMALL_STATE(5634)] = 144777, + [SMALL_STATE(5635)] = 144792, + [SMALL_STATE(5636)] = 144807, + [SMALL_STATE(5637)] = 144822, + [SMALL_STATE(5638)] = 144833, + [SMALL_STATE(5639)] = 144850, + [SMALL_STATE(5640)] = 144865, + [SMALL_STATE(5641)] = 144882, + [SMALL_STATE(5642)] = 144899, + [SMALL_STATE(5643)] = 144914, + [SMALL_STATE(5644)] = 144931, + [SMALL_STATE(5645)] = 144942, + [SMALL_STATE(5646)] = 144953, + [SMALL_STATE(5647)] = 144968, + [SMALL_STATE(5648)] = 144979, + [SMALL_STATE(5649)] = 144996, + [SMALL_STATE(5650)] = 145013, + [SMALL_STATE(5651)] = 145024, + [SMALL_STATE(5652)] = 145041, + [SMALL_STATE(5653)] = 145052, + [SMALL_STATE(5654)] = 145067, + [SMALL_STATE(5655)] = 145084, + [SMALL_STATE(5656)] = 145099, + [SMALL_STATE(5657)] = 145116, + [SMALL_STATE(5658)] = 145133, + [SMALL_STATE(5659)] = 145148, + [SMALL_STATE(5660)] = 145165, + [SMALL_STATE(5661)] = 145182, + [SMALL_STATE(5662)] = 145199, + [SMALL_STATE(5663)] = 145216, + [SMALL_STATE(5664)] = 145229, + [SMALL_STATE(5665)] = 145240, + [SMALL_STATE(5666)] = 145251, + [SMALL_STATE(5667)] = 145266, + [SMALL_STATE(5668)] = 145277, + [SMALL_STATE(5669)] = 145288, + [SMALL_STATE(5670)] = 145299, + [SMALL_STATE(5671)] = 145310, + [SMALL_STATE(5672)] = 145321, + [SMALL_STATE(5673)] = 145332, + [SMALL_STATE(5674)] = 145343, + [SMALL_STATE(5675)] = 145358, + [SMALL_STATE(5676)] = 145375, + [SMALL_STATE(5677)] = 145392, + [SMALL_STATE(5678)] = 145403, + [SMALL_STATE(5679)] = 145418, + [SMALL_STATE(5680)] = 145429, + [SMALL_STATE(5681)] = 145444, + [SMALL_STATE(5682)] = 145459, + [SMALL_STATE(5683)] = 145476, + [SMALL_STATE(5684)] = 145493, + [SMALL_STATE(5685)] = 145508, + [SMALL_STATE(5686)] = 145519, + [SMALL_STATE(5687)] = 145536, + [SMALL_STATE(5688)] = 145547, + [SMALL_STATE(5689)] = 145558, + [SMALL_STATE(5690)] = 145569, + [SMALL_STATE(5691)] = 145580, + [SMALL_STATE(5692)] = 145593, + [SMALL_STATE(5693)] = 145604, + [SMALL_STATE(5694)] = 145619, + [SMALL_STATE(5695)] = 145632, + [SMALL_STATE(5696)] = 145643, + [SMALL_STATE(5697)] = 145654, + [SMALL_STATE(5698)] = 145669, + [SMALL_STATE(5699)] = 145686, + [SMALL_STATE(5700)] = 145699, + [SMALL_STATE(5701)] = 145716, + [SMALL_STATE(5702)] = 145727, + [SMALL_STATE(5703)] = 145738, + [SMALL_STATE(5704)] = 145749, + [SMALL_STATE(5705)] = 145760, + [SMALL_STATE(5706)] = 145771, + [SMALL_STATE(5707)] = 145782, + [SMALL_STATE(5708)] = 145793, + [SMALL_STATE(5709)] = 145808, + [SMALL_STATE(5710)] = 145823, + [SMALL_STATE(5711)] = 145838, + [SMALL_STATE(5712)] = 145849, + [SMALL_STATE(5713)] = 145861, + [SMALL_STATE(5714)] = 145875, + [SMALL_STATE(5715)] = 145889, + [SMALL_STATE(5716)] = 145903, + [SMALL_STATE(5717)] = 145917, + [SMALL_STATE(5718)] = 145931, + [SMALL_STATE(5719)] = 145945, + [SMALL_STATE(5720)] = 145959, + [SMALL_STATE(5721)] = 145973, + [SMALL_STATE(5722)] = 145987, + [SMALL_STATE(5723)] = 146001, + [SMALL_STATE(5724)] = 146015, + [SMALL_STATE(5725)] = 146029, + [SMALL_STATE(5726)] = 146043, + [SMALL_STATE(5727)] = 146057, + [SMALL_STATE(5728)] = 146071, + [SMALL_STATE(5729)] = 146083, + [SMALL_STATE(5730)] = 146097, + [SMALL_STATE(5731)] = 146111, + [SMALL_STATE(5732)] = 146125, + [SMALL_STATE(5733)] = 146139, + [SMALL_STATE(5734)] = 146153, + [SMALL_STATE(5735)] = 146167, + [SMALL_STATE(5736)] = 146181, + [SMALL_STATE(5737)] = 146195, + [SMALL_STATE(5738)] = 146209, + [SMALL_STATE(5739)] = 146223, + [SMALL_STATE(5740)] = 146237, + [SMALL_STATE(5741)] = 146251, + [SMALL_STATE(5742)] = 146265, + [SMALL_STATE(5743)] = 146279, + [SMALL_STATE(5744)] = 146293, + [SMALL_STATE(5745)] = 146307, + [SMALL_STATE(5746)] = 146321, + [SMALL_STATE(5747)] = 146335, + [SMALL_STATE(5748)] = 146349, + [SMALL_STATE(5749)] = 146363, + [SMALL_STATE(5750)] = 146377, + [SMALL_STATE(5751)] = 146391, + [SMALL_STATE(5752)] = 146405, + [SMALL_STATE(5753)] = 146419, + [SMALL_STATE(5754)] = 146433, + [SMALL_STATE(5755)] = 146447, + [SMALL_STATE(5756)] = 146461, + [SMALL_STATE(5757)] = 146475, + [SMALL_STATE(5758)] = 146489, + [SMALL_STATE(5759)] = 146503, + [SMALL_STATE(5760)] = 146517, + [SMALL_STATE(5761)] = 146529, + [SMALL_STATE(5762)] = 146543, + [SMALL_STATE(5763)] = 146557, + [SMALL_STATE(5764)] = 146571, + [SMALL_STATE(5765)] = 146585, + [SMALL_STATE(5766)] = 146599, + [SMALL_STATE(5767)] = 146613, + [SMALL_STATE(5768)] = 146627, + [SMALL_STATE(5769)] = 146641, + [SMALL_STATE(5770)] = 146655, + [SMALL_STATE(5771)] = 146669, + [SMALL_STATE(5772)] = 146683, + [SMALL_STATE(5773)] = 146697, + [SMALL_STATE(5774)] = 146711, + [SMALL_STATE(5775)] = 146725, + [SMALL_STATE(5776)] = 146739, + [SMALL_STATE(5777)] = 146753, + [SMALL_STATE(5778)] = 146767, + [SMALL_STATE(5779)] = 146781, + [SMALL_STATE(5780)] = 146795, + [SMALL_STATE(5781)] = 146809, + [SMALL_STATE(5782)] = 146823, + [SMALL_STATE(5783)] = 146837, + [SMALL_STATE(5784)] = 146851, + [SMALL_STATE(5785)] = 146865, + [SMALL_STATE(5786)] = 146879, + [SMALL_STATE(5787)] = 146893, + [SMALL_STATE(5788)] = 146907, + [SMALL_STATE(5789)] = 146921, + [SMALL_STATE(5790)] = 146935, + [SMALL_STATE(5791)] = 146949, + [SMALL_STATE(5792)] = 146963, + [SMALL_STATE(5793)] = 146977, + [SMALL_STATE(5794)] = 146991, + [SMALL_STATE(5795)] = 147005, + [SMALL_STATE(5796)] = 147015, + [SMALL_STATE(5797)] = 147029, + [SMALL_STATE(5798)] = 147041, + [SMALL_STATE(5799)] = 147055, + [SMALL_STATE(5800)] = 147067, + [SMALL_STATE(5801)] = 147081, + [SMALL_STATE(5802)] = 147095, + [SMALL_STATE(5803)] = 147109, + [SMALL_STATE(5804)] = 147123, + [SMALL_STATE(5805)] = 147137, + [SMALL_STATE(5806)] = 147151, + [SMALL_STATE(5807)] = 147165, + [SMALL_STATE(5808)] = 147179, + [SMALL_STATE(5809)] = 147193, + [SMALL_STATE(5810)] = 147207, + [SMALL_STATE(5811)] = 147221, + [SMALL_STATE(5812)] = 147235, + [SMALL_STATE(5813)] = 147249, + [SMALL_STATE(5814)] = 147263, + [SMALL_STATE(5815)] = 147275, + [SMALL_STATE(5816)] = 147287, + [SMALL_STATE(5817)] = 147299, + [SMALL_STATE(5818)] = 147313, + [SMALL_STATE(5819)] = 147325, + [SMALL_STATE(5820)] = 147339, + [SMALL_STATE(5821)] = 147353, + [SMALL_STATE(5822)] = 147367, + [SMALL_STATE(5823)] = 147381, + [SMALL_STATE(5824)] = 147395, + [SMALL_STATE(5825)] = 147409, + [SMALL_STATE(5826)] = 147423, + [SMALL_STATE(5827)] = 147437, + [SMALL_STATE(5828)] = 147451, + [SMALL_STATE(5829)] = 147465, + [SMALL_STATE(5830)] = 147479, + [SMALL_STATE(5831)] = 147493, + [SMALL_STATE(5832)] = 147507, + [SMALL_STATE(5833)] = 147521, + [SMALL_STATE(5834)] = 147535, + [SMALL_STATE(5835)] = 147549, + [SMALL_STATE(5836)] = 147563, + [SMALL_STATE(5837)] = 147577, + [SMALL_STATE(5838)] = 147591, + [SMALL_STATE(5839)] = 147605, + [SMALL_STATE(5840)] = 147619, + [SMALL_STATE(5841)] = 147633, + [SMALL_STATE(5842)] = 147647, + [SMALL_STATE(5843)] = 147661, + [SMALL_STATE(5844)] = 147675, + [SMALL_STATE(5845)] = 147689, + [SMALL_STATE(5846)] = 147703, + [SMALL_STATE(5847)] = 147717, + [SMALL_STATE(5848)] = 147731, + [SMALL_STATE(5849)] = 147745, + [SMALL_STATE(5850)] = 147759, + [SMALL_STATE(5851)] = 147773, + [SMALL_STATE(5852)] = 147787, + [SMALL_STATE(5853)] = 147801, + [SMALL_STATE(5854)] = 147815, + [SMALL_STATE(5855)] = 147829, + [SMALL_STATE(5856)] = 147843, + [SMALL_STATE(5857)] = 147857, + [SMALL_STATE(5858)] = 147871, + [SMALL_STATE(5859)] = 147885, + [SMALL_STATE(5860)] = 147899, + [SMALL_STATE(5861)] = 147913, + [SMALL_STATE(5862)] = 147927, + [SMALL_STATE(5863)] = 147941, + [SMALL_STATE(5864)] = 147955, + [SMALL_STATE(5865)] = 147969, + [SMALL_STATE(5866)] = 147983, + [SMALL_STATE(5867)] = 147997, + [SMALL_STATE(5868)] = 148011, + [SMALL_STATE(5869)] = 148025, + [SMALL_STATE(5870)] = 148039, + [SMALL_STATE(5871)] = 148053, + [SMALL_STATE(5872)] = 148067, + [SMALL_STATE(5873)] = 148081, + [SMALL_STATE(5874)] = 148095, + [SMALL_STATE(5875)] = 148109, + [SMALL_STATE(5876)] = 148123, + [SMALL_STATE(5877)] = 148137, + [SMALL_STATE(5878)] = 148151, + [SMALL_STATE(5879)] = 148165, + [SMALL_STATE(5880)] = 148179, + [SMALL_STATE(5881)] = 148193, + [SMALL_STATE(5882)] = 148207, + [SMALL_STATE(5883)] = 148221, + [SMALL_STATE(5884)] = 148235, + [SMALL_STATE(5885)] = 148249, + [SMALL_STATE(5886)] = 148263, + [SMALL_STATE(5887)] = 148277, + [SMALL_STATE(5888)] = 148291, + [SMALL_STATE(5889)] = 148305, + [SMALL_STATE(5890)] = 148319, + [SMALL_STATE(5891)] = 148333, + [SMALL_STATE(5892)] = 148347, + [SMALL_STATE(5893)] = 148361, + [SMALL_STATE(5894)] = 148375, + [SMALL_STATE(5895)] = 148389, + [SMALL_STATE(5896)] = 148403, + [SMALL_STATE(5897)] = 148417, + [SMALL_STATE(5898)] = 148431, + [SMALL_STATE(5899)] = 148445, + [SMALL_STATE(5900)] = 148459, + [SMALL_STATE(5901)] = 148473, + [SMALL_STATE(5902)] = 148487, + [SMALL_STATE(5903)] = 148501, + [SMALL_STATE(5904)] = 148515, + [SMALL_STATE(5905)] = 148529, + [SMALL_STATE(5906)] = 148543, + [SMALL_STATE(5907)] = 148555, + [SMALL_STATE(5908)] = 148569, + [SMALL_STATE(5909)] = 148583, + [SMALL_STATE(5910)] = 148597, + [SMALL_STATE(5911)] = 148611, + [SMALL_STATE(5912)] = 148625, + [SMALL_STATE(5913)] = 148639, + [SMALL_STATE(5914)] = 148653, + [SMALL_STATE(5915)] = 148667, + [SMALL_STATE(5916)] = 148681, + [SMALL_STATE(5917)] = 148693, + [SMALL_STATE(5918)] = 148707, + [SMALL_STATE(5919)] = 148717, + [SMALL_STATE(5920)] = 148731, + [SMALL_STATE(5921)] = 148745, + [SMALL_STATE(5922)] = 148759, + [SMALL_STATE(5923)] = 148773, + [SMALL_STATE(5924)] = 148787, + [SMALL_STATE(5925)] = 148797, + [SMALL_STATE(5926)] = 148811, + [SMALL_STATE(5927)] = 148825, + [SMALL_STATE(5928)] = 148839, + [SMALL_STATE(5929)] = 148853, + [SMALL_STATE(5930)] = 148867, + [SMALL_STATE(5931)] = 148881, + [SMALL_STATE(5932)] = 148895, + [SMALL_STATE(5933)] = 148909, + [SMALL_STATE(5934)] = 148923, + [SMALL_STATE(5935)] = 148937, + [SMALL_STATE(5936)] = 148951, + [SMALL_STATE(5937)] = 148965, + [SMALL_STATE(5938)] = 148979, + [SMALL_STATE(5939)] = 148991, + [SMALL_STATE(5940)] = 149005, + [SMALL_STATE(5941)] = 149017, + [SMALL_STATE(5942)] = 149031, + [SMALL_STATE(5943)] = 149043, + [SMALL_STATE(5944)] = 149057, + [SMALL_STATE(5945)] = 149071, + [SMALL_STATE(5946)] = 149085, + [SMALL_STATE(5947)] = 149099, + [SMALL_STATE(5948)] = 149113, + [SMALL_STATE(5949)] = 149127, + [SMALL_STATE(5950)] = 149141, + [SMALL_STATE(5951)] = 149155, + [SMALL_STATE(5952)] = 149169, + [SMALL_STATE(5953)] = 149183, + [SMALL_STATE(5954)] = 149197, + [SMALL_STATE(5955)] = 149211, + [SMALL_STATE(5956)] = 149225, + [SMALL_STATE(5957)] = 149239, + [SMALL_STATE(5958)] = 149253, + [SMALL_STATE(5959)] = 149263, + [SMALL_STATE(5960)] = 149277, + [SMALL_STATE(5961)] = 149291, + [SMALL_STATE(5962)] = 149305, + [SMALL_STATE(5963)] = 149319, + [SMALL_STATE(5964)] = 149333, + [SMALL_STATE(5965)] = 149347, + [SMALL_STATE(5966)] = 149361, + [SMALL_STATE(5967)] = 149375, + [SMALL_STATE(5968)] = 149389, + [SMALL_STATE(5969)] = 149403, + [SMALL_STATE(5970)] = 149417, + [SMALL_STATE(5971)] = 149431, + [SMALL_STATE(5972)] = 149445, + [SMALL_STATE(5973)] = 149459, + [SMALL_STATE(5974)] = 149473, + [SMALL_STATE(5975)] = 149487, + [SMALL_STATE(5976)] = 149501, + [SMALL_STATE(5977)] = 149515, + [SMALL_STATE(5978)] = 149529, + [SMALL_STATE(5979)] = 149543, + [SMALL_STATE(5980)] = 149557, + [SMALL_STATE(5981)] = 149571, + [SMALL_STATE(5982)] = 149585, + [SMALL_STATE(5983)] = 149599, + [SMALL_STATE(5984)] = 149613, + [SMALL_STATE(5985)] = 149623, + [SMALL_STATE(5986)] = 149637, + [SMALL_STATE(5987)] = 149651, + [SMALL_STATE(5988)] = 149665, + [SMALL_STATE(5989)] = 149679, + [SMALL_STATE(5990)] = 149693, + [SMALL_STATE(5991)] = 149707, + [SMALL_STATE(5992)] = 149721, + [SMALL_STATE(5993)] = 149735, + [SMALL_STATE(5994)] = 149749, + [SMALL_STATE(5995)] = 149763, + [SMALL_STATE(5996)] = 149777, + [SMALL_STATE(5997)] = 149791, + [SMALL_STATE(5998)] = 149805, + [SMALL_STATE(5999)] = 149817, + [SMALL_STATE(6000)] = 149831, + [SMALL_STATE(6001)] = 149845, + [SMALL_STATE(6002)] = 149859, + [SMALL_STATE(6003)] = 149873, + [SMALL_STATE(6004)] = 149887, + [SMALL_STATE(6005)] = 149901, + [SMALL_STATE(6006)] = 149915, + [SMALL_STATE(6007)] = 149929, + [SMALL_STATE(6008)] = 149943, + [SMALL_STATE(6009)] = 149957, + [SMALL_STATE(6010)] = 149971, + [SMALL_STATE(6011)] = 149985, + [SMALL_STATE(6012)] = 149999, + [SMALL_STATE(6013)] = 150013, + [SMALL_STATE(6014)] = 150027, + [SMALL_STATE(6015)] = 150041, + [SMALL_STATE(6016)] = 150055, + [SMALL_STATE(6017)] = 150069, + [SMALL_STATE(6018)] = 150083, + [SMALL_STATE(6019)] = 150097, + [SMALL_STATE(6020)] = 150111, + [SMALL_STATE(6021)] = 150123, + [SMALL_STATE(6022)] = 150137, + [SMALL_STATE(6023)] = 150151, + [SMALL_STATE(6024)] = 150165, + [SMALL_STATE(6025)] = 150179, + [SMALL_STATE(6026)] = 150193, + [SMALL_STATE(6027)] = 150207, + [SMALL_STATE(6028)] = 150221, + [SMALL_STATE(6029)] = 150235, + [SMALL_STATE(6030)] = 150249, + [SMALL_STATE(6031)] = 150263, + [SMALL_STATE(6032)] = 150277, + [SMALL_STATE(6033)] = 150291, + [SMALL_STATE(6034)] = 150305, + [SMALL_STATE(6035)] = 150319, + [SMALL_STATE(6036)] = 150333, + [SMALL_STATE(6037)] = 150347, + [SMALL_STATE(6038)] = 150361, + [SMALL_STATE(6039)] = 150375, + [SMALL_STATE(6040)] = 150389, + [SMALL_STATE(6041)] = 150403, + [SMALL_STATE(6042)] = 150417, + [SMALL_STATE(6043)] = 150431, + [SMALL_STATE(6044)] = 150445, + [SMALL_STATE(6045)] = 150459, + [SMALL_STATE(6046)] = 150473, + [SMALL_STATE(6047)] = 150487, + [SMALL_STATE(6048)] = 150501, + [SMALL_STATE(6049)] = 150515, + [SMALL_STATE(6050)] = 150529, + [SMALL_STATE(6051)] = 150543, + [SMALL_STATE(6052)] = 150557, + [SMALL_STATE(6053)] = 150571, + [SMALL_STATE(6054)] = 150583, + [SMALL_STATE(6055)] = 150597, + [SMALL_STATE(6056)] = 150611, + [SMALL_STATE(6057)] = 150621, + [SMALL_STATE(6058)] = 150635, + [SMALL_STATE(6059)] = 150647, + [SMALL_STATE(6060)] = 150661, + [SMALL_STATE(6061)] = 150675, + [SMALL_STATE(6062)] = 150689, + [SMALL_STATE(6063)] = 150703, + [SMALL_STATE(6064)] = 150717, + [SMALL_STATE(6065)] = 150731, + [SMALL_STATE(6066)] = 150745, + [SMALL_STATE(6067)] = 150759, + [SMALL_STATE(6068)] = 150773, + [SMALL_STATE(6069)] = 150787, + [SMALL_STATE(6070)] = 150797, + [SMALL_STATE(6071)] = 150811, + [SMALL_STATE(6072)] = 150825, + [SMALL_STATE(6073)] = 150839, + [SMALL_STATE(6074)] = 150853, + [SMALL_STATE(6075)] = 150867, + [SMALL_STATE(6076)] = 150881, + [SMALL_STATE(6077)] = 150895, + [SMALL_STATE(6078)] = 150909, + [SMALL_STATE(6079)] = 150923, + [SMALL_STATE(6080)] = 150937, + [SMALL_STATE(6081)] = 150951, + [SMALL_STATE(6082)] = 150961, + [SMALL_STATE(6083)] = 150971, + [SMALL_STATE(6084)] = 150985, + [SMALL_STATE(6085)] = 150999, + [SMALL_STATE(6086)] = 151013, + [SMALL_STATE(6087)] = 151027, + [SMALL_STATE(6088)] = 151041, + [SMALL_STATE(6089)] = 151055, + [SMALL_STATE(6090)] = 151069, + [SMALL_STATE(6091)] = 151083, + [SMALL_STATE(6092)] = 151097, + [SMALL_STATE(6093)] = 151111, + [SMALL_STATE(6094)] = 151125, + [SMALL_STATE(6095)] = 151139, + [SMALL_STATE(6096)] = 151153, + [SMALL_STATE(6097)] = 151167, + [SMALL_STATE(6098)] = 151181, + [SMALL_STATE(6099)] = 151195, + [SMALL_STATE(6100)] = 151207, + [SMALL_STATE(6101)] = 151221, + [SMALL_STATE(6102)] = 151235, + [SMALL_STATE(6103)] = 151249, + [SMALL_STATE(6104)] = 151263, + [SMALL_STATE(6105)] = 151273, + [SMALL_STATE(6106)] = 151287, + [SMALL_STATE(6107)] = 151301, + [SMALL_STATE(6108)] = 151315, + [SMALL_STATE(6109)] = 151329, + [SMALL_STATE(6110)] = 151343, + [SMALL_STATE(6111)] = 151355, + [SMALL_STATE(6112)] = 151369, + [SMALL_STATE(6113)] = 151383, + [SMALL_STATE(6114)] = 151395, + [SMALL_STATE(6115)] = 151409, + [SMALL_STATE(6116)] = 151419, + [SMALL_STATE(6117)] = 151433, + [SMALL_STATE(6118)] = 151447, + [SMALL_STATE(6119)] = 151461, + [SMALL_STATE(6120)] = 151473, + [SMALL_STATE(6121)] = 151487, + [SMALL_STATE(6122)] = 151501, + [SMALL_STATE(6123)] = 151515, + [SMALL_STATE(6124)] = 151529, + [SMALL_STATE(6125)] = 151541, + [SMALL_STATE(6126)] = 151555, + [SMALL_STATE(6127)] = 151569, + [SMALL_STATE(6128)] = 151583, + [SMALL_STATE(6129)] = 151597, + [SMALL_STATE(6130)] = 151609, + [SMALL_STATE(6131)] = 151623, + [SMALL_STATE(6132)] = 151637, + [SMALL_STATE(6133)] = 151651, + [SMALL_STATE(6134)] = 151665, + [SMALL_STATE(6135)] = 151679, + [SMALL_STATE(6136)] = 151693, + [SMALL_STATE(6137)] = 151707, + [SMALL_STATE(6138)] = 151721, + [SMALL_STATE(6139)] = 151735, + [SMALL_STATE(6140)] = 151749, + [SMALL_STATE(6141)] = 151759, + [SMALL_STATE(6142)] = 151773, + [SMALL_STATE(6143)] = 151787, + [SMALL_STATE(6144)] = 151801, + [SMALL_STATE(6145)] = 151815, + [SMALL_STATE(6146)] = 151829, + [SMALL_STATE(6147)] = 151843, + [SMALL_STATE(6148)] = 151857, + [SMALL_STATE(6149)] = 151871, + [SMALL_STATE(6150)] = 151885, + [SMALL_STATE(6151)] = 151899, + [SMALL_STATE(6152)] = 151913, + [SMALL_STATE(6153)] = 151927, + [SMALL_STATE(6154)] = 151941, + [SMALL_STATE(6155)] = 151955, + [SMALL_STATE(6156)] = 151969, + [SMALL_STATE(6157)] = 151983, + [SMALL_STATE(6158)] = 151997, + [SMALL_STATE(6159)] = 152011, + [SMALL_STATE(6160)] = 152025, + [SMALL_STATE(6161)] = 152039, + [SMALL_STATE(6162)] = 152053, + [SMALL_STATE(6163)] = 152067, + [SMALL_STATE(6164)] = 152081, + [SMALL_STATE(6165)] = 152095, + [SMALL_STATE(6166)] = 152109, + [SMALL_STATE(6167)] = 152123, + [SMALL_STATE(6168)] = 152137, + [SMALL_STATE(6169)] = 152151, + [SMALL_STATE(6170)] = 152165, + [SMALL_STATE(6171)] = 152179, + [SMALL_STATE(6172)] = 152193, + [SMALL_STATE(6173)] = 152207, + [SMALL_STATE(6174)] = 152221, + [SMALL_STATE(6175)] = 152235, + [SMALL_STATE(6176)] = 152249, + [SMALL_STATE(6177)] = 152263, + [SMALL_STATE(6178)] = 152277, + [SMALL_STATE(6179)] = 152291, + [SMALL_STATE(6180)] = 152301, + [SMALL_STATE(6181)] = 152315, + [SMALL_STATE(6182)] = 152329, + [SMALL_STATE(6183)] = 152343, + [SMALL_STATE(6184)] = 152357, + [SMALL_STATE(6185)] = 152371, + [SMALL_STATE(6186)] = 152385, + [SMALL_STATE(6187)] = 152399, + [SMALL_STATE(6188)] = 152413, + [SMALL_STATE(6189)] = 152427, + [SMALL_STATE(6190)] = 152441, + [SMALL_STATE(6191)] = 152455, + [SMALL_STATE(6192)] = 152469, + [SMALL_STATE(6193)] = 152483, + [SMALL_STATE(6194)] = 152497, + [SMALL_STATE(6195)] = 152511, + [SMALL_STATE(6196)] = 152525, + [SMALL_STATE(6197)] = 152539, + [SMALL_STATE(6198)] = 152553, + [SMALL_STATE(6199)] = 152567, + [SMALL_STATE(6200)] = 152581, + [SMALL_STATE(6201)] = 152595, + [SMALL_STATE(6202)] = 152609, + [SMALL_STATE(6203)] = 152623, + [SMALL_STATE(6204)] = 152637, + [SMALL_STATE(6205)] = 152651, + [SMALL_STATE(6206)] = 152663, + [SMALL_STATE(6207)] = 152677, + [SMALL_STATE(6208)] = 152691, + [SMALL_STATE(6209)] = 152705, + [SMALL_STATE(6210)] = 152719, + [SMALL_STATE(6211)] = 152733, + [SMALL_STATE(6212)] = 152747, + [SMALL_STATE(6213)] = 152761, + [SMALL_STATE(6214)] = 152775, + [SMALL_STATE(6215)] = 152789, + [SMALL_STATE(6216)] = 152803, + [SMALL_STATE(6217)] = 152817, + [SMALL_STATE(6218)] = 152831, + [SMALL_STATE(6219)] = 152845, + [SMALL_STATE(6220)] = 152859, + [SMALL_STATE(6221)] = 152873, + [SMALL_STATE(6222)] = 152887, + [SMALL_STATE(6223)] = 152901, + [SMALL_STATE(6224)] = 152915, + [SMALL_STATE(6225)] = 152929, + [SMALL_STATE(6226)] = 152943, + [SMALL_STATE(6227)] = 152957, + [SMALL_STATE(6228)] = 152971, + [SMALL_STATE(6229)] = 152985, + [SMALL_STATE(6230)] = 152999, + [SMALL_STATE(6231)] = 153013, + [SMALL_STATE(6232)] = 153027, + [SMALL_STATE(6233)] = 153039, + [SMALL_STATE(6234)] = 153049, + [SMALL_STATE(6235)] = 153063, + [SMALL_STATE(6236)] = 153075, + [SMALL_STATE(6237)] = 153089, + [SMALL_STATE(6238)] = 153103, + [SMALL_STATE(6239)] = 153117, + [SMALL_STATE(6240)] = 153131, + [SMALL_STATE(6241)] = 153145, + [SMALL_STATE(6242)] = 153159, + [SMALL_STATE(6243)] = 153173, + [SMALL_STATE(6244)] = 153187, + [SMALL_STATE(6245)] = 153201, + [SMALL_STATE(6246)] = 153215, + [SMALL_STATE(6247)] = 153227, + [SMALL_STATE(6248)] = 153241, + [SMALL_STATE(6249)] = 153255, + [SMALL_STATE(6250)] = 153269, + [SMALL_STATE(6251)] = 153283, + [SMALL_STATE(6252)] = 153297, + [SMALL_STATE(6253)] = 153311, + [SMALL_STATE(6254)] = 153325, + [SMALL_STATE(6255)] = 153339, + [SMALL_STATE(6256)] = 153353, + [SMALL_STATE(6257)] = 153365, + [SMALL_STATE(6258)] = 153379, + [SMALL_STATE(6259)] = 153393, + [SMALL_STATE(6260)] = 153407, + [SMALL_STATE(6261)] = 153421, + [SMALL_STATE(6262)] = 153431, + [SMALL_STATE(6263)] = 153445, + [SMALL_STATE(6264)] = 153459, + [SMALL_STATE(6265)] = 153473, + [SMALL_STATE(6266)] = 153487, + [SMALL_STATE(6267)] = 153501, + [SMALL_STATE(6268)] = 153515, + [SMALL_STATE(6269)] = 153529, + [SMALL_STATE(6270)] = 153543, + [SMALL_STATE(6271)] = 153557, + [SMALL_STATE(6272)] = 153571, + [SMALL_STATE(6273)] = 153585, + [SMALL_STATE(6274)] = 153599, + [SMALL_STATE(6275)] = 153613, + [SMALL_STATE(6276)] = 153627, + [SMALL_STATE(6277)] = 153641, + [SMALL_STATE(6278)] = 153655, + [SMALL_STATE(6279)] = 153669, + [SMALL_STATE(6280)] = 153683, + [SMALL_STATE(6281)] = 153697, + [SMALL_STATE(6282)] = 153711, + [SMALL_STATE(6283)] = 153725, + [SMALL_STATE(6284)] = 153739, + [SMALL_STATE(6285)] = 153753, + [SMALL_STATE(6286)] = 153763, + [SMALL_STATE(6287)] = 153777, + [SMALL_STATE(6288)] = 153791, + [SMALL_STATE(6289)] = 153805, + [SMALL_STATE(6290)] = 153819, + [SMALL_STATE(6291)] = 153833, + [SMALL_STATE(6292)] = 153847, + [SMALL_STATE(6293)] = 153861, + [SMALL_STATE(6294)] = 153875, + [SMALL_STATE(6295)] = 153889, + [SMALL_STATE(6296)] = 153903, + [SMALL_STATE(6297)] = 153917, + [SMALL_STATE(6298)] = 153931, + [SMALL_STATE(6299)] = 153945, + [SMALL_STATE(6300)] = 153959, + [SMALL_STATE(6301)] = 153973, + [SMALL_STATE(6302)] = 153987, + [SMALL_STATE(6303)] = 154001, + [SMALL_STATE(6304)] = 154015, + [SMALL_STATE(6305)] = 154029, + [SMALL_STATE(6306)] = 154043, + [SMALL_STATE(6307)] = 154057, + [SMALL_STATE(6308)] = 154071, + [SMALL_STATE(6309)] = 154083, + [SMALL_STATE(6310)] = 154097, + [SMALL_STATE(6311)] = 154111, + [SMALL_STATE(6312)] = 154125, + [SMALL_STATE(6313)] = 154139, + [SMALL_STATE(6314)] = 154153, + [SMALL_STATE(6315)] = 154165, + [SMALL_STATE(6316)] = 154176, + [SMALL_STATE(6317)] = 154185, + [SMALL_STATE(6318)] = 154196, + [SMALL_STATE(6319)] = 154207, + [SMALL_STATE(6320)] = 154218, + [SMALL_STATE(6321)] = 154229, + [SMALL_STATE(6322)] = 154240, + [SMALL_STATE(6323)] = 154249, + [SMALL_STATE(6324)] = 154260, + [SMALL_STATE(6325)] = 154271, + [SMALL_STATE(6326)] = 154280, + [SMALL_STATE(6327)] = 154289, + [SMALL_STATE(6328)] = 154300, + [SMALL_STATE(6329)] = 154311, + [SMALL_STATE(6330)] = 154320, + [SMALL_STATE(6331)] = 154331, + [SMALL_STATE(6332)] = 154340, + [SMALL_STATE(6333)] = 154349, + [SMALL_STATE(6334)] = 154360, + [SMALL_STATE(6335)] = 154371, + [SMALL_STATE(6336)] = 154380, + [SMALL_STATE(6337)] = 154391, + [SMALL_STATE(6338)] = 154402, + [SMALL_STATE(6339)] = 154413, + [SMALL_STATE(6340)] = 154424, + [SMALL_STATE(6341)] = 154435, + [SMALL_STATE(6342)] = 154444, + [SMALL_STATE(6343)] = 154453, + [SMALL_STATE(6344)] = 154462, + [SMALL_STATE(6345)] = 154471, + [SMALL_STATE(6346)] = 154480, + [SMALL_STATE(6347)] = 154489, + [SMALL_STATE(6348)] = 154498, + [SMALL_STATE(6349)] = 154507, + [SMALL_STATE(6350)] = 154518, + [SMALL_STATE(6351)] = 154529, + [SMALL_STATE(6352)] = 154538, + [SMALL_STATE(6353)] = 154547, + [SMALL_STATE(6354)] = 154556, + [SMALL_STATE(6355)] = 154565, + [SMALL_STATE(6356)] = 154574, + [SMALL_STATE(6357)] = 154585, + [SMALL_STATE(6358)] = 154594, + [SMALL_STATE(6359)] = 154605, + [SMALL_STATE(6360)] = 154616, + [SMALL_STATE(6361)] = 154627, + [SMALL_STATE(6362)] = 154638, + [SMALL_STATE(6363)] = 154649, + [SMALL_STATE(6364)] = 154658, + [SMALL_STATE(6365)] = 154667, + [SMALL_STATE(6366)] = 154676, + [SMALL_STATE(6367)] = 154687, + [SMALL_STATE(6368)] = 154698, + [SMALL_STATE(6369)] = 154709, + [SMALL_STATE(6370)] = 154720, + [SMALL_STATE(6371)] = 154729, + [SMALL_STATE(6372)] = 154740, + [SMALL_STATE(6373)] = 154749, + [SMALL_STATE(6374)] = 154758, + [SMALL_STATE(6375)] = 154767, + [SMALL_STATE(6376)] = 154776, + [SMALL_STATE(6377)] = 154785, + [SMALL_STATE(6378)] = 154796, + [SMALL_STATE(6379)] = 154805, + [SMALL_STATE(6380)] = 154816, + [SMALL_STATE(6381)] = 154827, + [SMALL_STATE(6382)] = 154838, + [SMALL_STATE(6383)] = 154847, + [SMALL_STATE(6384)] = 154856, + [SMALL_STATE(6385)] = 154865, + [SMALL_STATE(6386)] = 154876, + [SMALL_STATE(6387)] = 154887, + [SMALL_STATE(6388)] = 154896, + [SMALL_STATE(6389)] = 154907, + [SMALL_STATE(6390)] = 154918, + [SMALL_STATE(6391)] = 154927, + [SMALL_STATE(6392)] = 154936, + [SMALL_STATE(6393)] = 154947, + [SMALL_STATE(6394)] = 154958, + [SMALL_STATE(6395)] = 154967, + [SMALL_STATE(6396)] = 154978, + [SMALL_STATE(6397)] = 154989, + [SMALL_STATE(6398)] = 155000, + [SMALL_STATE(6399)] = 155011, + [SMALL_STATE(6400)] = 155022, + [SMALL_STATE(6401)] = 155031, + [SMALL_STATE(6402)] = 155040, + [SMALL_STATE(6403)] = 155051, + [SMALL_STATE(6404)] = 155060, + [SMALL_STATE(6405)] = 155071, + [SMALL_STATE(6406)] = 155080, + [SMALL_STATE(6407)] = 155091, + [SMALL_STATE(6408)] = 155100, + [SMALL_STATE(6409)] = 155111, + [SMALL_STATE(6410)] = 155122, + [SMALL_STATE(6411)] = 155133, + [SMALL_STATE(6412)] = 155144, + [SMALL_STATE(6413)] = 155155, + [SMALL_STATE(6414)] = 155166, + [SMALL_STATE(6415)] = 155177, + [SMALL_STATE(6416)] = 155188, + [SMALL_STATE(6417)] = 155197, + [SMALL_STATE(6418)] = 155208, + [SMALL_STATE(6419)] = 155217, + [SMALL_STATE(6420)] = 155228, + [SMALL_STATE(6421)] = 155239, + [SMALL_STATE(6422)] = 155250, + [SMALL_STATE(6423)] = 155261, + [SMALL_STATE(6424)] = 155272, + [SMALL_STATE(6425)] = 155283, + [SMALL_STATE(6426)] = 155292, + [SMALL_STATE(6427)] = 155303, + [SMALL_STATE(6428)] = 155314, + [SMALL_STATE(6429)] = 155325, + [SMALL_STATE(6430)] = 155336, + [SMALL_STATE(6431)] = 155347, + [SMALL_STATE(6432)] = 155356, + [SMALL_STATE(6433)] = 155367, + [SMALL_STATE(6434)] = 155378, + [SMALL_STATE(6435)] = 155389, + [SMALL_STATE(6436)] = 155400, + [SMALL_STATE(6437)] = 155411, + [SMALL_STATE(6438)] = 155422, + [SMALL_STATE(6439)] = 155433, + [SMALL_STATE(6440)] = 155444, + [SMALL_STATE(6441)] = 155453, + [SMALL_STATE(6442)] = 155464, + [SMALL_STATE(6443)] = 155475, + [SMALL_STATE(6444)] = 155484, + [SMALL_STATE(6445)] = 155495, + [SMALL_STATE(6446)] = 155506, + [SMALL_STATE(6447)] = 155517, + [SMALL_STATE(6448)] = 155528, + [SMALL_STATE(6449)] = 155539, + [SMALL_STATE(6450)] = 155550, + [SMALL_STATE(6451)] = 155561, + [SMALL_STATE(6452)] = 155572, + [SMALL_STATE(6453)] = 155581, + [SMALL_STATE(6454)] = 155592, + [SMALL_STATE(6455)] = 155601, + [SMALL_STATE(6456)] = 155612, + [SMALL_STATE(6457)] = 155623, + [SMALL_STATE(6458)] = 155634, + [SMALL_STATE(6459)] = 155645, + [SMALL_STATE(6460)] = 155656, + [SMALL_STATE(6461)] = 155667, + [SMALL_STATE(6462)] = 155678, + [SMALL_STATE(6463)] = 155689, + [SMALL_STATE(6464)] = 155700, + [SMALL_STATE(6465)] = 155711, + [SMALL_STATE(6466)] = 155722, + [SMALL_STATE(6467)] = 155731, + [SMALL_STATE(6468)] = 155740, + [SMALL_STATE(6469)] = 155751, + [SMALL_STATE(6470)] = 155762, + [SMALL_STATE(6471)] = 155773, + [SMALL_STATE(6472)] = 155784, + [SMALL_STATE(6473)] = 155795, + [SMALL_STATE(6474)] = 155806, + [SMALL_STATE(6475)] = 155817, + [SMALL_STATE(6476)] = 155828, + [SMALL_STATE(6477)] = 155839, + [SMALL_STATE(6478)] = 155850, + [SMALL_STATE(6479)] = 155861, + [SMALL_STATE(6480)] = 155872, + [SMALL_STATE(6481)] = 155883, + [SMALL_STATE(6482)] = 155894, + [SMALL_STATE(6483)] = 155903, + [SMALL_STATE(6484)] = 155912, + [SMALL_STATE(6485)] = 155923, + [SMALL_STATE(6486)] = 155934, + [SMALL_STATE(6487)] = 155945, + [SMALL_STATE(6488)] = 155956, + [SMALL_STATE(6489)] = 155967, + [SMALL_STATE(6490)] = 155978, + [SMALL_STATE(6491)] = 155987, + [SMALL_STATE(6492)] = 155998, + [SMALL_STATE(6493)] = 156009, + [SMALL_STATE(6494)] = 156018, + [SMALL_STATE(6495)] = 156027, + [SMALL_STATE(6496)] = 156038, + [SMALL_STATE(6497)] = 156047, + [SMALL_STATE(6498)] = 156058, + [SMALL_STATE(6499)] = 156069, + [SMALL_STATE(6500)] = 156078, + [SMALL_STATE(6501)] = 156089, + [SMALL_STATE(6502)] = 156100, + [SMALL_STATE(6503)] = 156109, + [SMALL_STATE(6504)] = 156118, + [SMALL_STATE(6505)] = 156127, + [SMALL_STATE(6506)] = 156136, + [SMALL_STATE(6507)] = 156145, + [SMALL_STATE(6508)] = 156156, + [SMALL_STATE(6509)] = 156167, + [SMALL_STATE(6510)] = 156176, + [SMALL_STATE(6511)] = 156187, + [SMALL_STATE(6512)] = 156196, + [SMALL_STATE(6513)] = 156207, + [SMALL_STATE(6514)] = 156218, + [SMALL_STATE(6515)] = 156229, + [SMALL_STATE(6516)] = 156240, + [SMALL_STATE(6517)] = 156251, + [SMALL_STATE(6518)] = 156260, + [SMALL_STATE(6519)] = 156271, + [SMALL_STATE(6520)] = 156280, + [SMALL_STATE(6521)] = 156291, + [SMALL_STATE(6522)] = 156300, + [SMALL_STATE(6523)] = 156311, + [SMALL_STATE(6524)] = 156322, + [SMALL_STATE(6525)] = 156331, + [SMALL_STATE(6526)] = 156342, + [SMALL_STATE(6527)] = 156353, + [SMALL_STATE(6528)] = 156362, + [SMALL_STATE(6529)] = 156373, + [SMALL_STATE(6530)] = 156382, + [SMALL_STATE(6531)] = 156393, + [SMALL_STATE(6532)] = 156404, + [SMALL_STATE(6533)] = 156415, + [SMALL_STATE(6534)] = 156424, + [SMALL_STATE(6535)] = 156433, + [SMALL_STATE(6536)] = 156444, + [SMALL_STATE(6537)] = 156455, + [SMALL_STATE(6538)] = 156466, + [SMALL_STATE(6539)] = 156477, + [SMALL_STATE(6540)] = 156486, + [SMALL_STATE(6541)] = 156497, + [SMALL_STATE(6542)] = 156508, + [SMALL_STATE(6543)] = 156517, + [SMALL_STATE(6544)] = 156526, + [SMALL_STATE(6545)] = 156535, + [SMALL_STATE(6546)] = 156546, + [SMALL_STATE(6547)] = 156557, + [SMALL_STATE(6548)] = 156566, + [SMALL_STATE(6549)] = 156575, + [SMALL_STATE(6550)] = 156586, + [SMALL_STATE(6551)] = 156595, + [SMALL_STATE(6552)] = 156606, + [SMALL_STATE(6553)] = 156615, + [SMALL_STATE(6554)] = 156624, + [SMALL_STATE(6555)] = 156633, + [SMALL_STATE(6556)] = 156644, + [SMALL_STATE(6557)] = 156655, + [SMALL_STATE(6558)] = 156666, + [SMALL_STATE(6559)] = 156677, + [SMALL_STATE(6560)] = 156686, + [SMALL_STATE(6561)] = 156697, + [SMALL_STATE(6562)] = 156706, + [SMALL_STATE(6563)] = 156715, + [SMALL_STATE(6564)] = 156726, + [SMALL_STATE(6565)] = 156737, + [SMALL_STATE(6566)] = 156746, + [SMALL_STATE(6567)] = 156757, + [SMALL_STATE(6568)] = 156766, + [SMALL_STATE(6569)] = 156777, + [SMALL_STATE(6570)] = 156786, + [SMALL_STATE(6571)] = 156795, + [SMALL_STATE(6572)] = 156804, + [SMALL_STATE(6573)] = 156815, + [SMALL_STATE(6574)] = 156826, + [SMALL_STATE(6575)] = 156835, + [SMALL_STATE(6576)] = 156844, + [SMALL_STATE(6577)] = 156855, + [SMALL_STATE(6578)] = 156864, + [SMALL_STATE(6579)] = 156875, + [SMALL_STATE(6580)] = 156884, + [SMALL_STATE(6581)] = 156893, + [SMALL_STATE(6582)] = 156904, + [SMALL_STATE(6583)] = 156915, + [SMALL_STATE(6584)] = 156924, + [SMALL_STATE(6585)] = 156935, + [SMALL_STATE(6586)] = 156946, + [SMALL_STATE(6587)] = 156957, + [SMALL_STATE(6588)] = 156966, + [SMALL_STATE(6589)] = 156977, + [SMALL_STATE(6590)] = 156986, + [SMALL_STATE(6591)] = 156995, + [SMALL_STATE(6592)] = 157006, + [SMALL_STATE(6593)] = 157015, + [SMALL_STATE(6594)] = 157026, + [SMALL_STATE(6595)] = 157037, + [SMALL_STATE(6596)] = 157046, + [SMALL_STATE(6597)] = 157054, + [SMALL_STATE(6598)] = 157062, + [SMALL_STATE(6599)] = 157070, + [SMALL_STATE(6600)] = 157078, + [SMALL_STATE(6601)] = 157086, + [SMALL_STATE(6602)] = 157094, + [SMALL_STATE(6603)] = 157102, + [SMALL_STATE(6604)] = 157110, + [SMALL_STATE(6605)] = 157118, + [SMALL_STATE(6606)] = 157126, + [SMALL_STATE(6607)] = 157134, + [SMALL_STATE(6608)] = 157142, + [SMALL_STATE(6609)] = 157150, + [SMALL_STATE(6610)] = 157158, + [SMALL_STATE(6611)] = 157166, + [SMALL_STATE(6612)] = 157174, + [SMALL_STATE(6613)] = 157182, + [SMALL_STATE(6614)] = 157190, + [SMALL_STATE(6615)] = 157198, + [SMALL_STATE(6616)] = 157206, + [SMALL_STATE(6617)] = 157214, + [SMALL_STATE(6618)] = 157222, + [SMALL_STATE(6619)] = 157230, + [SMALL_STATE(6620)] = 157238, + [SMALL_STATE(6621)] = 157246, + [SMALL_STATE(6622)] = 157254, + [SMALL_STATE(6623)] = 157262, + [SMALL_STATE(6624)] = 157270, + [SMALL_STATE(6625)] = 157278, + [SMALL_STATE(6626)] = 157286, + [SMALL_STATE(6627)] = 157294, + [SMALL_STATE(6628)] = 157302, + [SMALL_STATE(6629)] = 157310, + [SMALL_STATE(6630)] = 157318, + [SMALL_STATE(6631)] = 157326, + [SMALL_STATE(6632)] = 157334, + [SMALL_STATE(6633)] = 157342, + [SMALL_STATE(6634)] = 157350, + [SMALL_STATE(6635)] = 157358, + [SMALL_STATE(6636)] = 157366, + [SMALL_STATE(6637)] = 157374, + [SMALL_STATE(6638)] = 157382, + [SMALL_STATE(6639)] = 157390, + [SMALL_STATE(6640)] = 157398, + [SMALL_STATE(6641)] = 157406, + [SMALL_STATE(6642)] = 157414, + [SMALL_STATE(6643)] = 157422, + [SMALL_STATE(6644)] = 157430, + [SMALL_STATE(6645)] = 157438, + [SMALL_STATE(6646)] = 157446, + [SMALL_STATE(6647)] = 157454, + [SMALL_STATE(6648)] = 157462, + [SMALL_STATE(6649)] = 157470, + [SMALL_STATE(6650)] = 157478, + [SMALL_STATE(6651)] = 157486, + [SMALL_STATE(6652)] = 157494, + [SMALL_STATE(6653)] = 157502, + [SMALL_STATE(6654)] = 157510, + [SMALL_STATE(6655)] = 157518, + [SMALL_STATE(6656)] = 157526, + [SMALL_STATE(6657)] = 157534, + [SMALL_STATE(6658)] = 157542, + [SMALL_STATE(6659)] = 157550, + [SMALL_STATE(6660)] = 157558, + [SMALL_STATE(6661)] = 157566, + [SMALL_STATE(6662)] = 157574, + [SMALL_STATE(6663)] = 157582, + [SMALL_STATE(6664)] = 157590, + [SMALL_STATE(6665)] = 157598, + [SMALL_STATE(6666)] = 157606, + [SMALL_STATE(6667)] = 157614, + [SMALL_STATE(6668)] = 157622, + [SMALL_STATE(6669)] = 157630, + [SMALL_STATE(6670)] = 157638, + [SMALL_STATE(6671)] = 157646, + [SMALL_STATE(6672)] = 157654, + [SMALL_STATE(6673)] = 157662, + [SMALL_STATE(6674)] = 157670, + [SMALL_STATE(6675)] = 157678, + [SMALL_STATE(6676)] = 157686, + [SMALL_STATE(6677)] = 157694, + [SMALL_STATE(6678)] = 157702, + [SMALL_STATE(6679)] = 157710, + [SMALL_STATE(6680)] = 157718, + [SMALL_STATE(6681)] = 157726, + [SMALL_STATE(6682)] = 157734, + [SMALL_STATE(6683)] = 157742, + [SMALL_STATE(6684)] = 157750, + [SMALL_STATE(6685)] = 157758, + [SMALL_STATE(6686)] = 157766, + [SMALL_STATE(6687)] = 157774, + [SMALL_STATE(6688)] = 157782, + [SMALL_STATE(6689)] = 157790, + [SMALL_STATE(6690)] = 157798, + [SMALL_STATE(6691)] = 157806, + [SMALL_STATE(6692)] = 157814, + [SMALL_STATE(6693)] = 157822, + [SMALL_STATE(6694)] = 157830, + [SMALL_STATE(6695)] = 157838, + [SMALL_STATE(6696)] = 157846, + [SMALL_STATE(6697)] = 157854, + [SMALL_STATE(6698)] = 157862, + [SMALL_STATE(6699)] = 157870, + [SMALL_STATE(6700)] = 157878, + [SMALL_STATE(6701)] = 157886, + [SMALL_STATE(6702)] = 157894, + [SMALL_STATE(6703)] = 157902, + [SMALL_STATE(6704)] = 157910, + [SMALL_STATE(6705)] = 157918, + [SMALL_STATE(6706)] = 157926, + [SMALL_STATE(6707)] = 157934, + [SMALL_STATE(6708)] = 157942, + [SMALL_STATE(6709)] = 157950, + [SMALL_STATE(6710)] = 157958, + [SMALL_STATE(6711)] = 157966, + [SMALL_STATE(6712)] = 157974, + [SMALL_STATE(6713)] = 157982, + [SMALL_STATE(6714)] = 157990, + [SMALL_STATE(6715)] = 157998, + [SMALL_STATE(6716)] = 158006, + [SMALL_STATE(6717)] = 158014, + [SMALL_STATE(6718)] = 158022, + [SMALL_STATE(6719)] = 158030, + [SMALL_STATE(6720)] = 158038, + [SMALL_STATE(6721)] = 158046, + [SMALL_STATE(6722)] = 158054, + [SMALL_STATE(6723)] = 158062, + [SMALL_STATE(6724)] = 158070, + [SMALL_STATE(6725)] = 158078, + [SMALL_STATE(6726)] = 158086, + [SMALL_STATE(6727)] = 158094, + [SMALL_STATE(6728)] = 158102, + [SMALL_STATE(6729)] = 158110, + [SMALL_STATE(6730)] = 158118, + [SMALL_STATE(6731)] = 158126, + [SMALL_STATE(6732)] = 158134, + [SMALL_STATE(6733)] = 158142, + [SMALL_STATE(6734)] = 158150, + [SMALL_STATE(6735)] = 158158, + [SMALL_STATE(6736)] = 158166, + [SMALL_STATE(6737)] = 158174, + [SMALL_STATE(6738)] = 158182, + [SMALL_STATE(6739)] = 158190, + [SMALL_STATE(6740)] = 158198, + [SMALL_STATE(6741)] = 158206, + [SMALL_STATE(6742)] = 158214, + [SMALL_STATE(6743)] = 158222, + [SMALL_STATE(6744)] = 158230, + [SMALL_STATE(6745)] = 158238, + [SMALL_STATE(6746)] = 158246, + [SMALL_STATE(6747)] = 158254, + [SMALL_STATE(6748)] = 158262, + [SMALL_STATE(6749)] = 158270, + [SMALL_STATE(6750)] = 158278, + [SMALL_STATE(6751)] = 158286, + [SMALL_STATE(6752)] = 158294, + [SMALL_STATE(6753)] = 158302, + [SMALL_STATE(6754)] = 158310, + [SMALL_STATE(6755)] = 158318, + [SMALL_STATE(6756)] = 158326, + [SMALL_STATE(6757)] = 158334, + [SMALL_STATE(6758)] = 158342, + [SMALL_STATE(6759)] = 158350, + [SMALL_STATE(6760)] = 158358, + [SMALL_STATE(6761)] = 158366, + [SMALL_STATE(6762)] = 158374, + [SMALL_STATE(6763)] = 158382, + [SMALL_STATE(6764)] = 158390, + [SMALL_STATE(6765)] = 158398, + [SMALL_STATE(6766)] = 158406, + [SMALL_STATE(6767)] = 158414, + [SMALL_STATE(6768)] = 158422, + [SMALL_STATE(6769)] = 158430, + [SMALL_STATE(6770)] = 158438, + [SMALL_STATE(6771)] = 158446, + [SMALL_STATE(6772)] = 158454, + [SMALL_STATE(6773)] = 158462, + [SMALL_STATE(6774)] = 158470, + [SMALL_STATE(6775)] = 158478, + [SMALL_STATE(6776)] = 158486, + [SMALL_STATE(6777)] = 158494, + [SMALL_STATE(6778)] = 158502, + [SMALL_STATE(6779)] = 158510, + [SMALL_STATE(6780)] = 158518, + [SMALL_STATE(6781)] = 158526, + [SMALL_STATE(6782)] = 158534, + [SMALL_STATE(6783)] = 158542, + [SMALL_STATE(6784)] = 158550, + [SMALL_STATE(6785)] = 158558, + [SMALL_STATE(6786)] = 158566, + [SMALL_STATE(6787)] = 158574, + [SMALL_STATE(6788)] = 158582, + [SMALL_STATE(6789)] = 158590, + [SMALL_STATE(6790)] = 158598, + [SMALL_STATE(6791)] = 158606, + [SMALL_STATE(6792)] = 158614, + [SMALL_STATE(6793)] = 158622, + [SMALL_STATE(6794)] = 158630, + [SMALL_STATE(6795)] = 158638, + [SMALL_STATE(6796)] = 158646, + [SMALL_STATE(6797)] = 158654, + [SMALL_STATE(6798)] = 158662, + [SMALL_STATE(6799)] = 158670, + [SMALL_STATE(6800)] = 158678, + [SMALL_STATE(6801)] = 158686, + [SMALL_STATE(6802)] = 158694, + [SMALL_STATE(6803)] = 158702, + [SMALL_STATE(6804)] = 158710, + [SMALL_STATE(6805)] = 158718, + [SMALL_STATE(6806)] = 158726, + [SMALL_STATE(6807)] = 158734, + [SMALL_STATE(6808)] = 158742, + [SMALL_STATE(6809)] = 158750, + [SMALL_STATE(6810)] = 158758, + [SMALL_STATE(6811)] = 158766, + [SMALL_STATE(6812)] = 158774, + [SMALL_STATE(6813)] = 158782, + [SMALL_STATE(6814)] = 158790, + [SMALL_STATE(6815)] = 158798, + [SMALL_STATE(6816)] = 158806, + [SMALL_STATE(6817)] = 158814, + [SMALL_STATE(6818)] = 158822, + [SMALL_STATE(6819)] = 158830, + [SMALL_STATE(6820)] = 158838, + [SMALL_STATE(6821)] = 158846, + [SMALL_STATE(6822)] = 158854, + [SMALL_STATE(6823)] = 158862, + [SMALL_STATE(6824)] = 158870, + [SMALL_STATE(6825)] = 158878, + [SMALL_STATE(6826)] = 158886, + [SMALL_STATE(6827)] = 158894, + [SMALL_STATE(6828)] = 158902, + [SMALL_STATE(6829)] = 158910, + [SMALL_STATE(6830)] = 158918, + [SMALL_STATE(6831)] = 158926, + [SMALL_STATE(6832)] = 158934, + [SMALL_STATE(6833)] = 158942, + [SMALL_STATE(6834)] = 158950, + [SMALL_STATE(6835)] = 158958, + [SMALL_STATE(6836)] = 158966, + [SMALL_STATE(6837)] = 158974, + [SMALL_STATE(6838)] = 158982, + [SMALL_STATE(6839)] = 158990, + [SMALL_STATE(6840)] = 158998, + [SMALL_STATE(6841)] = 159006, + [SMALL_STATE(6842)] = 159014, + [SMALL_STATE(6843)] = 159022, + [SMALL_STATE(6844)] = 159030, + [SMALL_STATE(6845)] = 159038, + [SMALL_STATE(6846)] = 159046, + [SMALL_STATE(6847)] = 159054, + [SMALL_STATE(6848)] = 159062, + [SMALL_STATE(6849)] = 159070, + [SMALL_STATE(6850)] = 159078, + [SMALL_STATE(6851)] = 159086, + [SMALL_STATE(6852)] = 159094, + [SMALL_STATE(6853)] = 159102, + [SMALL_STATE(6854)] = 159110, + [SMALL_STATE(6855)] = 159118, + [SMALL_STATE(6856)] = 159126, + [SMALL_STATE(6857)] = 159134, + [SMALL_STATE(6858)] = 159142, + [SMALL_STATE(6859)] = 159150, + [SMALL_STATE(6860)] = 159158, + [SMALL_STATE(6861)] = 159166, + [SMALL_STATE(6862)] = 159174, + [SMALL_STATE(6863)] = 159182, + [SMALL_STATE(6864)] = 159190, + [SMALL_STATE(6865)] = 159198, + [SMALL_STATE(6866)] = 159206, + [SMALL_STATE(6867)] = 159214, + [SMALL_STATE(6868)] = 159222, + [SMALL_STATE(6869)] = 159230, + [SMALL_STATE(6870)] = 159238, + [SMALL_STATE(6871)] = 159246, + [SMALL_STATE(6872)] = 159254, + [SMALL_STATE(6873)] = 159262, + [SMALL_STATE(6874)] = 159270, + [SMALL_STATE(6875)] = 159278, + [SMALL_STATE(6876)] = 159286, + [SMALL_STATE(6877)] = 159294, + [SMALL_STATE(6878)] = 159302, + [SMALL_STATE(6879)] = 159310, + [SMALL_STATE(6880)] = 159318, + [SMALL_STATE(6881)] = 159326, + [SMALL_STATE(6882)] = 159334, + [SMALL_STATE(6883)] = 159342, + [SMALL_STATE(6884)] = 159350, + [SMALL_STATE(6885)] = 159358, + [SMALL_STATE(6886)] = 159366, + [SMALL_STATE(6887)] = 159374, + [SMALL_STATE(6888)] = 159382, + [SMALL_STATE(6889)] = 159390, + [SMALL_STATE(6890)] = 159398, + [SMALL_STATE(6891)] = 159406, + [SMALL_STATE(6892)] = 159414, + [SMALL_STATE(6893)] = 159422, + [SMALL_STATE(6894)] = 159430, + [SMALL_STATE(6895)] = 159438, + [SMALL_STATE(6896)] = 159446, + [SMALL_STATE(6897)] = 159454, + [SMALL_STATE(6898)] = 159462, + [SMALL_STATE(6899)] = 159470, + [SMALL_STATE(6900)] = 159478, + [SMALL_STATE(6901)] = 159486, + [SMALL_STATE(6902)] = 159494, + [SMALL_STATE(6903)] = 159502, + [SMALL_STATE(6904)] = 159510, + [SMALL_STATE(6905)] = 159518, + [SMALL_STATE(6906)] = 159526, + [SMALL_STATE(6907)] = 159534, + [SMALL_STATE(6908)] = 159542, + [SMALL_STATE(6909)] = 159550, + [SMALL_STATE(6910)] = 159558, + [SMALL_STATE(6911)] = 159566, + [SMALL_STATE(6912)] = 159574, + [SMALL_STATE(6913)] = 159582, + [SMALL_STATE(6914)] = 159590, + [SMALL_STATE(6915)] = 159598, + [SMALL_STATE(6916)] = 159606, + [SMALL_STATE(6917)] = 159614, + [SMALL_STATE(6918)] = 159622, + [SMALL_STATE(6919)] = 159630, + [SMALL_STATE(6920)] = 159638, + [SMALL_STATE(6921)] = 159646, + [SMALL_STATE(6922)] = 159654, + [SMALL_STATE(6923)] = 159662, + [SMALL_STATE(6924)] = 159670, + [SMALL_STATE(6925)] = 159678, + [SMALL_STATE(6926)] = 159686, + [SMALL_STATE(6927)] = 159694, + [SMALL_STATE(6928)] = 159702, + [SMALL_STATE(6929)] = 159710, + [SMALL_STATE(6930)] = 159718, + [SMALL_STATE(6931)] = 159726, + [SMALL_STATE(6932)] = 159734, + [SMALL_STATE(6933)] = 159742, + [SMALL_STATE(6934)] = 159750, + [SMALL_STATE(6935)] = 159758, + [SMALL_STATE(6936)] = 159766, + [SMALL_STATE(6937)] = 159774, + [SMALL_STATE(6938)] = 159782, + [SMALL_STATE(6939)] = 159790, + [SMALL_STATE(6940)] = 159798, + [SMALL_STATE(6941)] = 159806, + [SMALL_STATE(6942)] = 159814, + [SMALL_STATE(6943)] = 159822, + [SMALL_STATE(6944)] = 159830, + [SMALL_STATE(6945)] = 159838, + [SMALL_STATE(6946)] = 159846, + [SMALL_STATE(6947)] = 159854, + [SMALL_STATE(6948)] = 159862, + [SMALL_STATE(6949)] = 159870, + [SMALL_STATE(6950)] = 159878, + [SMALL_STATE(6951)] = 159886, + [SMALL_STATE(6952)] = 159894, + [SMALL_STATE(6953)] = 159902, + [SMALL_STATE(6954)] = 159910, + [SMALL_STATE(6955)] = 159918, + [SMALL_STATE(6956)] = 159926, + [SMALL_STATE(6957)] = 159934, + [SMALL_STATE(6958)] = 159942, + [SMALL_STATE(6959)] = 159950, + [SMALL_STATE(6960)] = 159958, + [SMALL_STATE(6961)] = 159966, + [SMALL_STATE(6962)] = 159974, + [SMALL_STATE(6963)] = 159982, + [SMALL_STATE(6964)] = 159990, + [SMALL_STATE(6965)] = 159998, + [SMALL_STATE(6966)] = 160006, + [SMALL_STATE(6967)] = 160014, + [SMALL_STATE(6968)] = 160022, + [SMALL_STATE(6969)] = 160030, + [SMALL_STATE(6970)] = 160038, + [SMALL_STATE(6971)] = 160046, + [SMALL_STATE(6972)] = 160054, + [SMALL_STATE(6973)] = 160062, + [SMALL_STATE(6974)] = 160070, + [SMALL_STATE(6975)] = 160078, + [SMALL_STATE(6976)] = 160086, + [SMALL_STATE(6977)] = 160094, + [SMALL_STATE(6978)] = 160102, + [SMALL_STATE(6979)] = 160110, + [SMALL_STATE(6980)] = 160118, + [SMALL_STATE(6981)] = 160126, + [SMALL_STATE(6982)] = 160134, + [SMALL_STATE(6983)] = 160142, + [SMALL_STATE(6984)] = 160150, + [SMALL_STATE(6985)] = 160158, + [SMALL_STATE(6986)] = 160166, + [SMALL_STATE(6987)] = 160174, + [SMALL_STATE(6988)] = 160182, + [SMALL_STATE(6989)] = 160190, + [SMALL_STATE(6990)] = 160198, + [SMALL_STATE(6991)] = 160206, + [SMALL_STATE(6992)] = 160214, + [SMALL_STATE(6993)] = 160222, + [SMALL_STATE(6994)] = 160230, + [SMALL_STATE(6995)] = 160238, + [SMALL_STATE(6996)] = 160246, + [SMALL_STATE(6997)] = 160254, + [SMALL_STATE(6998)] = 160262, + [SMALL_STATE(6999)] = 160270, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -294343,5119 +354154,5932 @@ 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(1975), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [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(5512), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [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(5614), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [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(3344), - [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(5772), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [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(5723), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [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(5254), - [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(4701), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4236), - [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(5512), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5409), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5284), - [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(5614), - [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(5845), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5566), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5806), - [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(5862), - [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(3344), - [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(5600), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4813), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5824), - [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(3430), - [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(5554), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3752), - [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(4939), - [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(5723), - [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(5838), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5725), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5839), - [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(3480), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [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(5869), - [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(5288), - [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(5472), - [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(5486), - [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(5313), - [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(5297), - [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(3344), - [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(4079), - [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), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5675), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5037), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1276), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(968), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6416), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6567), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6344), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6865), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(990), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6790), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6989), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2386), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6680), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(687), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4141), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3374), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2528), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2529), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6428), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6581), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6340), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2428), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2232), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6646), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6276), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6905), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2415), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2770), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3769), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6764), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4524), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1944), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6826), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6953), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6648), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6828), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6954), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(828), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2246), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(829), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2321), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1817), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4141), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), [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(4018), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [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(5818), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [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(5102), - [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(3344), - [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(3541), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [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(5634), - [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(3421), - [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(3422), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [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(5741), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [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(5820), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [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(5783), - [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(3418), - [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(5834), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [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(3415), - [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(5833), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [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(3424), - [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(5836), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [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(3412), - [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(5831), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [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(3421), - [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(3412), - [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(3413), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [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(3415), - [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(3416), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [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(3277), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [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(5684), - [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(5785), - [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(5669), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [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(3298), - [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(5766), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [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(5753), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [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(5826), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [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(3418), - [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(3419), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [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(5579), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [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(3190), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [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(5051), - [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(5856), - [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(5861), - [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(3987), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [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(3929), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [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(5542), - [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(5666), - [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(4999), - [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(4791), - [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(5033), - [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(4875), - [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(3431), - [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(3429), - [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(3434), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [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(5523), - [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(3687), - [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(3749), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [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(4973), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [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(3286), - [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(3308), - [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(3296), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [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(5847), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [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(3527), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [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(3570), - [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(3632), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [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(3570), - [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(5649), - [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(3632), - [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), - [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), - [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3341), - [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(5577), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4582), - [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), - [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5874), - [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(3730), - [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(3291), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [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(3291), - [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5569), - [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(3480), - [4360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [4363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), - [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(5704), - [4372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4419), - [4375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5705), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5848), - [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(5880), - [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(5695), - [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(5529), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [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(5695), - [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(3752), - [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(5850), - [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(5689), - [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(5667), - [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(5615), - [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(5638), - [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(5782), - [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(5686), - [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(3777), - [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(3798), - [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(3769), - [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_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(5787), - [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(3756), - [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3755), - [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(3810), - [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(3793), - [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(5688), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [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(5859), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [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(3462), - [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(5300), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [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(3925), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [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(3385), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [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(5837), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [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(3391), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [5161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3291), - [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(3480), - [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [5182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), - [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(5705), - [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(4008), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [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(4417), - [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(5150), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [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(4454), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [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(3570), - [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(3632), - [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), - [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), - [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [5498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3341), - [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(4164), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [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(3454), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [5601] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5640), - [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(5770), - [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(3465), - [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(3680), - [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(3364), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [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(3358), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [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(3400), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [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(3378), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [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(3519), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1725), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5640), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3210), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [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}}, SHIFT(3499), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5694), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5640), - [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3210), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3601), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), - [5772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), - [5775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3480), - [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [5781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [5788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5640), - [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3210), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5640), - [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3210), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [5818] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5640), - [5822] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3210), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), - [5895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), - [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5523), - [5937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), - [5940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), - [5945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5529), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), - [5952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), - [5965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), - [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), - [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(5640), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3210), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [6041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(5640), - [6044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3210), - [6047] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5640), - [6051] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3210), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(5640), - [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3210), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(5640), - [6070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3210), - [6073] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5640), - [6077] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3210), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [6087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), - [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), - [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), - [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), - [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), - [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), - [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), - [6120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), - [6123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3688), - [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3688), - [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3207), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), - [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), - [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [6159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3207), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), - [6167] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3210), - [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [6179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), - [6182] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3210), - [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [6198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3767), - [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3767), - [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), - [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), - [6211] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3210), - [6215] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3210), - [6219] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3210), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5809), - [6228] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3210), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5703), - [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5738), - [6253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1778), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [6320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), - [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), SHIFT(3210), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), - [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), - [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), - [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), SHIFT(3210), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), - [6385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), SHIFT(3210), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), - [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), SHIFT(3210), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(3210), - [6402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), SHIFT(3210), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), - [6407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), SHIFT(3210), - [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), - [6412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), SHIFT(3210), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), - [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3210), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), - [6422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), SHIFT(3210), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), - [6427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), SHIFT(3210), - [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), SHIFT(3210), - [6433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), SHIFT(3210), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), - [6438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3210), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), - [6443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(3210), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), - [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), SHIFT(3210), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), - [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3210), - [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3210), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), - [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3210), - [6470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), - [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), - [6476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3225), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [6481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3210), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [6504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3210), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3746), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(987), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [6549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [6607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [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 = true}}, SHIFT(3182), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [6642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [6645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [6689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3225), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [6712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [6722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1808), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), - [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), - [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), - [6737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [6759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1928), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [6780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1653), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), - [6787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [6841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1625), - [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1634), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1803), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [7074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1614), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [7125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [7128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 52), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1908), - [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [7200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [7203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), - [7206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), - [7260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5854), - [7263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [7294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [7297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5875), - [7300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5618), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), - [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 127), - [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 173), - [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 92), - [7635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1644), - [7681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 139), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 138), - [7712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 138), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 140), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 84), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), - [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 87), - [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), - [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 103), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), - [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), - [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 99), - [7810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 99), - [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 100), - [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 100), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), - [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [7864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1916), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), - [7873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), - [7881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 64), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 64), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), - [7891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 205), - [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 207), - [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [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}}, SHIFT(4982), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [7980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 54), - [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [8097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3169), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [8106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [8123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [8125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4497), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 174), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 174), - [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [8206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4551), - [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 205), - [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 207), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [8263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [8296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), - [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), - [8374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1700), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), - [8409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(4822), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [8418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5745), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [8449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), SHIFT_REPEAT(2888), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 1, 0, 0), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [8466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [8514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), - [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [8571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), SHIFT_REPEAT(5652), - [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2886), - [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 77), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 77), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 139), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 139), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 140), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 140), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 173), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 173), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 4, 0, 42), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 4, 0, 42), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 67), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 67), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 68), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 68), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 67), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 67), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 107), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 107), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 107), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 107), + [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1484), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1960), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 105), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 105), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1311), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), + [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1982), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1964), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1968), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 88), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 88), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 88), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 88), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 160), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 160), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 160), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 160), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 58), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 58), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 51), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 51), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 61), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 61), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 74), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 74), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 76), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 76), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 1, 0, 65), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_IF_statement_repeat1, 1, 0, 65), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 97), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 97), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 77), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 77), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 115), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 115), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 116), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 116), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 4, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 143), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 143), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 144), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 144), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 148), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 148), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 150), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 150), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 213), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 213), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 217), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 217), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 155), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 155), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 166), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 166), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 5, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 42), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 42), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 177), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 177), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 179), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 179), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELIF_clause, 4, 0, 42), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELIF_clause, 4, 0, 42), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELIF_clause, 5, 0, 68), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELIF_clause, 5, 0, 68), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 201), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 201), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 46), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 46), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 68), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 68), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 242), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 242), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 19), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 19), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 160), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 160), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 130), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 130), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 130), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 130), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 87), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 87), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 131), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 131), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 161), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 161), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 87), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 87), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 162), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 162), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 131), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 131), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 163), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 163), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 164), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 164), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 165), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 165), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 60), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 60), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 167), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 167), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 168), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 168), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 169), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 169), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 170), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 170), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 171), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 171), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 58), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 58), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 172), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 172), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 77), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 77), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 88), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 88), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 131), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 131), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 187), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 187), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 188), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 188), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 189), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 189), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 190), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 190), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 81), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 81), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 191), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 191), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 82), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 82), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 192), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 192), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 160), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 160), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 83), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 83), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 193), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 193), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 87), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 87), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 194), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 194), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 131), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 131), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 195), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 195), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 164), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 164), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 196), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 196), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 165), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 165), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 197), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 197), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 198), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 198), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 199), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 199), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 200), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 200), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 60), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 60), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 202), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 202), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 203), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 203), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 204), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 204), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 56), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 56), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 87), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 87), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 219), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 219), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 220), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 220), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 221), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 221), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 222), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 222), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 223), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 223), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 88), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 88), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 224), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 224), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 225), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 225), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 192), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 192), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 226), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 226), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 227), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 227), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 131), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 131), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 228), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 228), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 164), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 164), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 229), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 229), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 87), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 87), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 165), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 165), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 230), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 230), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 198), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 198), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 231), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 231), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 232), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 232), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 233), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 233), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 234), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 234), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 58), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 58), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 235), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 235), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 236), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 236), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 245), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 245), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 246), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 246), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 247), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 247), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 248), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 248), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 89), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 89), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 249), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 249), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 250), + [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 250), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 251), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 251), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 164), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 164), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 252), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 252), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 253), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 253), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 165), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 165), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 254), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 254), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 198), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 198), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 255), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 255), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 131), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 131), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 256), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 256), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 257), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 257), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 258), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 258), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 259), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 259), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 260), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 260), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 56), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 56), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 261), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 261), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 126), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 126), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 96), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 96), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 266), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 266), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 267), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 267), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 268), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 268), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 269), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 269), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 270), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 270), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 198), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 198), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 271), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 271), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 272), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 272), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 273), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 273), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 274), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 274), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 87), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 87), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 275), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 275), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 277), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 277), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 60), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 60), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 278), + [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 278), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 12, 0, 279), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 12, 0, 279), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), + [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 50), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 50), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 132), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 132), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 133), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 133), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 131), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 131), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 60), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 60), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), + [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), + [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 123), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 123), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 124), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 124), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 125), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 125), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 134), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 134), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 135), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 135), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 136), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 136), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 137), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 137), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), + [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 153), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 153), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 156), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 156), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 157), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 157), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 158), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 158), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), + [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), + [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 78), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 78), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_DEF_statement, 5, 0, 18), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_DEF_statement, 5, 0, 18), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 66), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 66), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 211), + [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 211), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 212), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 212), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 214), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 214), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 215), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 215), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 79), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 79), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 216), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 216), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 218), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 218), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 241), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 241), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 243), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 243), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 244), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 244), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 106), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 106), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 265), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 265), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 108), + [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 108), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 109), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 109), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 112), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 112), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 114), + [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 114), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 58), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 58), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 119), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 119), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 44), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 44), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 49), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 49), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 104), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 104), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 106), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 106), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 49), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 49), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 69), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 69), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 70), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 70), + [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 72), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 72), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 73), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 73), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 75), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 75), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 141), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 141), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 142), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 142), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 146), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 146), + [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 147), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 147), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 149), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 149), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 77), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 77), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 151), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 151), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 152), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 152), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELSE_clause, 3, 0, 48), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELSE_clause, 3, 0, 48), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 7, 0, 141), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 7, 0, 141), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 145), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 145), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 176), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 176), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 178), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 178), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 180), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 180), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 181), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 181), + [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 182), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 182), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 183), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 183), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 185), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 185), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 186), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 186), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELSE_clause, 4, 0, 77), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELSE_clause, 4, 0, 77), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 3, 0, 0), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 5, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), + [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [4546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 59), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 59), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 59), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 59), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 94), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 94), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 94), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 94), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 29), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4370), + [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), + [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(6681), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4480), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4071), + [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4313), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4267), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4138), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2730), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(6688), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(6689), + [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(6992), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4528), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), + [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6603), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3659), + [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4288), + [4759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2384), + [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [4765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4241), + [4768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4201), + [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4305), + [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), + [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6716), + [4780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), + [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6719), + [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6963), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), + [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2441), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), + [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2448), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), + [4867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2449), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), + [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), + [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2450), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4524), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2466), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [5071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2480), + [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2481), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_integer_type, 2, 0, 0), + [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_integer_type, 2, 0, 0), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [5127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2486), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_integer_type, 1, 0, 0), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_integer_type, 1, 0, 0), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [5202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2497), + [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2498), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2502), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2503), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2508), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2511), + [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2512), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2514), + [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2515), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), + [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 3, 0, 0), + [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 3, 0, 0), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [5396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2368), + [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(6891), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2222), + [5405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2368), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis, 1, 0, 0), + [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ellipsis, 1, 0, 0), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), + [5414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), + [5434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 38), + [5444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 38), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2379), + [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2223), + [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2379), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4601), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [5486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [5492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2561), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 38), + [5497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 38), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 39), + [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 39), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [5555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [5561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), + [5564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2584), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 38), + [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 38), + [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2591), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), + [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), + [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_integer_type, 3, 0, 0), + [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_integer_type, 3, 0, 0), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [5610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2265), + [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2229), + [5618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2265), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [5623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2615), + [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2616), + [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4556), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2627), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [5654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [5658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 27), + [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 27), + [5664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2278), + [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2231), + [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2278), + [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4604), + [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2337), + [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2221), + [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2337), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4519), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [5754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), + [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2676), + [5760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2234), + [5763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2224), + [5766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2234), + [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2331), + [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2233), + [5775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2331), + [5778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2696), + [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2697), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2708), + [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2709), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [5834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2253), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2227), + [5840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2253), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2748), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [5891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2237), + [5894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2225), + [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2237), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2322), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2228), + [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2322), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 28), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 28), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 54), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 54), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2240), + [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2226), + [5959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2240), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2934), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 22), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [5971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 22), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4550), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), + [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1805), + [5987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1386), + [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1379), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1339), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1346), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1372), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1407), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2279), + [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2230), + [6077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2279), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1552), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1544), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1400), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1393), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), + [6269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [6272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4288), + [6275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2384), + [6278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [6281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4241), + [6284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4201), + [6287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4305), + [6290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), + [6293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(6719), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1680), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3769), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [6480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4370), + [6519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), + [6522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [6525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4480), + [6528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4071), + [6531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4313), + [6534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4267), + [6537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4138), + [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [6558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [6573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), + [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [6580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1355), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [6591] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(6621), + [6595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), + [6598] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3510), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), + [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [6628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 21), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 21), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), + [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 21), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(6621), + [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3510), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [6708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(6621), + [6711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3510), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4372), + [6727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4149), + [6730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4288), + [6733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [6736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4241), + [6739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4201), + [6742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4128), + [6745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [6751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [6766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(6621), + [6769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3510), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [6784] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(6621), + [6788] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3510), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [6794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(6621), + [6797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3510), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [6866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), + [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), + [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), + [6891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2215), + [6894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), + [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), + [6911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), + [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), + [6932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [6934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6682), + [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [6941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), + [6944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), + [6946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), + [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), + [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [6963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), + [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [6976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(6621), + [6979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3510), + [6982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), + [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [6988] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(6621), + [6992] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3510), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [6998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(6621), + [7001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3510), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), + [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [7026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(6621), + [7029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3510), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [7034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(6621), + [7037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3510), + [7040] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(6621), + [7044] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3510), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [7066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), + [7069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4444), + [7072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4444), + [7075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3632), + [7078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [7087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), + [7090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4452), + [7093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4452), + [7096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), + [7099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), + [7102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6745), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), + [7110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4572), + [7122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4572), + [7125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [7128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [7130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6806), + [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6695), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6775), + [7141] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3510), + [7145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), + [7148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [7154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6840), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), + [7159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7167] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3510), + [7171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [7177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), + [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [7185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6789), + [7188] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3510), + [7192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3632), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7199] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3510), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7205] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3510), + [7209] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3510), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [7221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), + [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [7234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), + [7236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), + [7242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [7246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [7250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [7252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), + [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [7273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6749), + [7281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [7289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), + [7292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [7298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), + [7300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), + [7302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [7314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), + [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), + [7350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), SHIFT(3510), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), + [7355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), SHIFT(3510), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), + [7360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3510), + [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), + [7365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3510), + [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), + [7370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), SHIFT(3510), + [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), + [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), SHIFT(3510), + [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), + [7384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4776), + [7393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4776), + [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), + [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), + [7403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3510), + [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), SHIFT(3510), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), + [7411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3510), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), + [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), + [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3510), + [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), SHIFT(3510), + [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3510), + [7437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), SHIFT(3510), + [7440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(3510), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), + [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(3510), + [7448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), SHIFT(3510), + [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), + [7453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), SHIFT(3510), + [7456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), SHIFT(3510), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), SHIFT(3510), + [7464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), SHIFT(3510), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3510), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(4563), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [7529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4814), + [7532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4814), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6870), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [7642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [7656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(853), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [7715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), + [7717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [7721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4640), + [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1197), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [7751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4672), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [7758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), + [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [7762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(2006), + [7783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4696), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), + [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1443), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [7937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1521), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1602), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1300), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 52), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4843), + [8167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4843), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [8182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1836), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [8195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1645), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6831), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1912), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [8288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1526), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [8339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1976), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [8412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6816), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [8433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6737), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [8488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), + [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), + [8494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2207), + [8497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), + [8512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(6975), + [8515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [8530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), + [8533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(6991), + [8536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2205), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [8543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1243), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [8664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), - [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [8700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), SHIFT_REPEAT(1163), - [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 52), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [8747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), SHIFT_REPEAT(3111), - [8750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2902), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2901), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [8949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [9040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(990), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5246), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [9138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 53), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [9188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1965), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1049), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [9238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), - [9240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [9259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(999), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(5483), - [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [9301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [9380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1707), - [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [9389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [9415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), - [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 87), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [9454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [9457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5663), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5282), - [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [9510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [9524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [9559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5286), - [9562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [9590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [9597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [9642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2896), - [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 209), - [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 210), - [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), - [9680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [9690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 175), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [9700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 262), - [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 91), - [9720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 263), - [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 264), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_argument_type, 5, 0, 0), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 276), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 101), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 102), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 65), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [9842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 208), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [9896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [9942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 237), - [9966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 238), - [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [9974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 174), - [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [9980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [9984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 239), - [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 240), - [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [10002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [10304] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [10456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [8734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 173), + [8846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), + [8849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 138), + [8873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 138), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 139), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 140), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), + [8911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), + [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 99), + [8915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 99), + [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 100), + [8919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 100), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [8927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 103), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), + [8937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), + [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), + [8943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), + [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 64), + [8947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 64), + [8949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1575), + [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), + [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [8969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 84), + [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [9001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [9011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 92), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [9041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [9047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 127), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(997), + [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [9064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), + [9066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [9068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), + [9070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), + [9072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3152), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), + [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), + [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 87), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(996), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [9150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1986), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [9159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [9165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [9167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [9185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 54), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [9209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3215), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [9228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 205), + [9230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [9233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [9235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5319), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [9256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [9266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1363), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [9307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [9329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [9333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [9341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [9345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [9349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 174), + [9351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [9353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [9359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [9393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [9471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 207), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [9481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 207), + [9569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [9581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [9606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [9608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(5520), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 174), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [9627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 205), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [9647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [9650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [9680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [9702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), + [9704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1959), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [9711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [9743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [9775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), SHIFT_REPEAT(2683), + [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), + [9780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 1, 0, 0), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [9822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [9841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), + [9844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2646), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [9851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [9853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [9855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6799), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), + [9884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), + [9886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [9888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), + [9890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5837), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [9941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 53), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [9953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), SHIFT_REPEAT(2981), + [10001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [10005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [10118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [10154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), + [10156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [10164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1358), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(928), + [10206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [10228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6504), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [10243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1120), + [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [10288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [10316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(578), + [10319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [10349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), + [10351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [10370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), SHIFT_REPEAT(1045), + [10373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [10403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [10408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), + [10411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [10573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), SHIFT_REPEAT(6610), + [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [10584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [10678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [10689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [10692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 87), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [10726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4849), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [10731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2210), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [10754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [10766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), + [10769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [10776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [10799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(6328), + [10802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [10820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), + [10834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4205), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [10849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5819), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), + [10858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [10867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [10904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2214), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [10981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [10990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [11001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1187), + [11004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [11048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [11107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3209), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [11130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [11143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [11176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6696), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [11211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 52), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [11227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 264), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [11239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [11245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), + [11247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [11251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [11265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), + [11267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [11271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 175), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [11279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 91), + [11281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [11283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [11287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [11297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 174), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [11305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 237), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 238), + [11311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), + [11313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [11315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), + [11317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [11327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [11329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [11335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [11343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [11433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 65), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [11497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 276), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [11507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 209), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [11511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 239), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [11529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 240), + [11531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [11537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [11555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 101), + [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 102), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [11567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 208), + [11569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 210), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [11587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 262), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [11591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_argument_type, 5, 0, 0), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [11603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [11625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 263), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [11681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [11755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [12081] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [12091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [12197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index 174df22..6e4b767 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -16,6 +16,23 @@ Integers 0O1_1 0L +1_0 +1_0L +1_0LL +1_0UL +10ULL + +1_0l +1_0ll +1_0ul +10ull + +1_0l +1_0lL +10ulL + +1_0u + -------------------------------------------------------------------------------- (module @@ -46,7 +63,52 @@ Integers (expression_statement (integer)) (expression_statement - (integer))) + (integer + (c_integer_type))) + (expression_statement + (integer)) + (expression_statement + (integer + (c_integer_type))) + (expression_statement + (integer + (c_integer_type))) + (expression_statement + (integer + (c_integer_type + (c_integer_signedness)))) + (expression_statement + (integer + (c_integer_type + (c_integer_signedness)))) + (expression_statement + (integer + (c_integer_type))) + (expression_statement + (integer + (c_integer_type))) + (expression_statement + (integer + (c_integer_type + (c_integer_signedness)))) + (expression_statement + (integer + (c_integer_type + (c_integer_signedness)))) + (expression_statement + (integer + (c_integer_type))) + (expression_statement + (integer + (c_integer_type))) + (expression_statement + (integer + (c_integer_type + (c_integer_signedness)))) + (expression_statement + (integer + (c_integer_type + (c_integer_signedness))))) ================================================================================ Floats